/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 03 2026 | 13:34:47 */
/* Wrapper poori screen par phaila rahega aur extra slides ko chhupaye ga */
.carousel-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* Inner Container */
.custom-services-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 25px !important;
    width: 100% !important;
}

/* Cards Layout */
.custom-service-card {
   display: flex !important;
    flex-direction: column !important; /* Elements ko upar se neeche tarteeb dene ke liye */
    background: #ffffff !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    
    /* MAGIC LINE: Yeh line har card ko majboor karegi ke woh row ki poori height le */
    height: auto !important;
    padding:20px;
}
/* Card Image wala main box */
.card-image {
    width: 100%;
    overflow: hidden;
}

/* Asli Image element */
.card-image img {
    width: 100% !important;
    height: auto !important; /* Ye height ko "lock" nahi hone deta, width ke mutabiq chalata hai */
    aspect-ratio: 16 / 9;   /* Yeh sab se bara jugar hai, image ka frame fix kar deta hai */
    object-fit: cover !important;
    object-position: center !important; /* Image hamesha beech mein rahegi */
    display: block !important;
}
.card-content {
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
    
    /* MAGIC LINE: Yeh safaid dabbay ko upar se neeche tak poora stretch (khinch) kar dega */
    flex-grow: 1 !important; 
    
    justify-content: flex-start !important;
    position: relative !important;
    border:1px solid #d5d5d5;
    border-top:0;
    
}
.card-content h3{
    text-align:center;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    color:#000;
    margin:20px 0;
}
.card-content p{
    text-align:center;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    color:#000;
    line-height: 1.4em;
}
.card-content a{
     font-family: roboto;
    background: #20306e;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    position: relative;
    text-align: center;
    font-weight: 700;
    z-index: 1;
    padding: 6px 10px;
    border: 0;
    border-radius: 0;
    margin-bottom: 15px;
}
.card-content a:hover{
opacity: 0.8;
	color: #fff;
}
.card-content a:after{
    position: absolute;
    content: '';
    background: #20306e;
    left: 11%;
    top: 0;
    -webkit-transform: skew(-35deg);
    transform: skew(-35deg);
    height: 100%;
    width: 100%;
    z-index: -1;
}
.more-info-btn {
    margin-top: auto !important;
    
    /* MAGIC LINE: Yeh Flexbox ke stretch wale qanoon ko torti hai 
       aur button ko sirf utni width deti hai jitna uske andar text hai */
    align-self: flex-start !important; 
    
    /* Baqi aapki styling (padding, background wagera) yahan aayegi */
    display: inline-block !important;
}
/* DESKTOP VIEW BUTTONS (Ab yeh har haal mein baahar show honge) */
.carousel-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    
    /* Perfect Circle Shape */
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    
    /* Colors */
    background-color: #fff !important; 
    color: #888888 !important;
    font-size: 20px !important;
    
    border: none !important;
    outline: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 99999 !important; /* Sab se upar */
    
    transition: background-color 0.3s ease !important;
}

.carousel-btn:hover {
    background-color: rgba(25, 42, 86, 1) !important;
}

/* Buttons ko wrapper ke border se baahar khinchna */
.prev-btn {
    left: -50px !important; 
}

.next-btn {
    right: -50px !important; 
}