*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    }
    
    body{
    font-family:'Inter',sans-serif;
    background:#f5f8fc;
    color:#333;
    }
    
    /* Container */
    
    .container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    }
    
    /* Header */
    
    .header{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    z-index:1000;
    }
    
    .header.hide{
    transform: translateY(-100px);
    opacity:0;
    }
    
    .nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:3px 0;
    }
    
    .logo-area{
    display:flex;
    align-items:center;
    gap:10px;
    }
    
    .logo{
    width:150px;
    }
    
    .logo-area h1{
    font-size:30px;
    font-family:'Playfair Display',serif;
    color:#004a80;
    }
    
    /* Menu */
    
    .menu a{
    text-decoration:none;
    margin-left:27px;
    color:#333;
    font-weight:700;
    position:relative;
    padding-bottom:5px;
    }
    
    /* underline */
    
    .menu a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0%;
    height:2px;
    background:#0077cc;
    transition:0.4s;
    }
    
    /* hover effect */
    
    .menu a:hover::after{
    width:100%;
    }
    
    /* Hero */
    
    .hero{
    background:linear-gradient(rgba(0,85,150,0.8),rgba(0,85,150,0.8)),
    url("images/hospital-bg.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:50px 20px;
    }
    
    .hero h2{
    font-size:36px;
    margin-bottom:15px;
    }
    
    .hero p{
    font-size:18px;
    }
    
    /* Sections */
    
    .section{
    padding:80px 0;
    }
    
    .section.light{
    background:#eef3f9;
    }
    
    h2{
    text-align:center;
    margin-bottom:40px;
    color:#003e70;
    }
    
    /* Two Column */
    
    .two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    font-size:20px;
    }
    
    .two-col img{
    width:100%;
    border-radius:10px;
    }
    
    /* Grid */
    
    .grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    }
    
    /* Cards */
    
    .card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    text-align:center;
    }
    
    .card img{
    width:100%;
    height:170px;
    object-fit:cover;
    }
    
    .card h3{
    margin:15px 0 10px;
    color:#004a80;
    }
    
    .card p{
    padding:0 15px 20px;
    }
    
    /* Gallery */
    
    .gallery{
        display:grid;
        grid-template-columns:repeat(4,1fr);
        gap:20px;
        }
        
        .gallery img{
        width:100%;
        height:200px;
        object-fit:cover;
        border-radius:8px;
        }
    
    /* ABOUT SLIDER */
    
    .about-slider{
    position:relative;
    width:100%;
    height:300px;
    overflow:hidden;
    border-radius:10px;
    }
    
    .slider{
    width:100%;
    height:100%;
    position:relative;
    }
    
    .slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 0.6s ease;
    }
    
    .slide.active{
    opacity:1;
    }
    
    /* ARROWS */
    
    .prev,.next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0.5);
    color:white;
    border:none;
    font-size:22px;
    padding:10px 15px;
    cursor:pointer;
    border-radius:50%;
    }
    
    .prev{ left:10px; }
    .next{ right:10px; }
    
    .prev:hover,.next:hover{
    background:#0077cc;
    }
    
    /* DOTS */
    
    .dots{
    position:absolute;
    bottom:10px;
    width:100%;
    text-align:center;
    }
    
    .dot{
    height:10px;
    width:10px;
    margin:0 5px;
    background:#ccc;
    display:inline-block;
    border-radius:50%;
    cursor:pointer;
    }
    
    .dot.active{
    background:#0077cc;
    }
    
    
    /* Insurance */
    
    .insurance-grid{
    display:flex;
    justify-content:center;
    gap:70px;
    flex-wrap:wrap;
    }
    
    .insurance-grid img{
    height:80px;
    }
    
    /* Doctors */
    
    .doctor-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
    }
    
    .doctor-card{
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    }
    
    .doctor-card img{
    width:250px;
    height:400px;
    border-radius: 5%;
    object-fit:cover;
    margin-bottom:15px;
    }
    
    
    /* ================= SPECIALTIES & FACILITIES TEXT ================= */
    
    .facility-text{
    margin-top:40px;
    font-size:18px;
    line-height:1.8;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    }
    
    
    /* ================= SUPPORT / FAQ ================= */
    
    .faq{
    font-size:18px;
    line-height:1.8;
    max-width:1200px;
    margin:auto;
    }
    
    .faq h3{
    margin-bottom:20px;
    color:#004a80;
    }
    
    .faq p{
    margin-bottom:18px;
    }
    

/* ================= FOOTER ================= */

:root{
--logo-blue:#4b4b91;
--logo-red:#ef292e;

--f-bg:#ffffff;
--f-bg2:#f7f8ff;
--f-ink:#111111;
--f-muted:rgba(17,17,17,.70);
--f-line:rgba(17,17,17,.10);
}

footer{
background:
/* radial-gradient(900px 520px at 12% 0%, rgba(75,75,145,.10), transparent 60%),
radial-gradient(900px 520px at 90% 10%, rgba(239,41,46,.08), transparent 60%),
linear-gradient(180deg,var(--f-bg) 0%,var(--f-bg2) 100%); */
white;
color:var(--f-ink);
padding:70px 0 22px;
border-top:1px solid var(--f-line);
}

.footer-wrap{
width:min(1200px,100%);
margin:auto;
padding:0 24px;
}

/* GRID */

.footer-grid{
display:grid;
grid-template-columns:1.5fr 1fr 1fr 1.2fr;
gap:34px;
padding-bottom:34px;
border-bottom:1px solid var(--f-line);
}

/* LOGO */

/* .footer-logoimg img{
height:70px;
width:auto;
display:block;
margin-bottom:10px;
} */

.footer-logoimg img{
height:70px;
width:auto;
}

/* TEXT */

.footer-desc{
font-size:14.8px;
line-height:1.8;
color:var(--f-muted);
margin-bottom:14px;
}

.footer-meta{
font-size:12.6px;
color:rgba(17,17,17,.55);
margin-bottom:16px;
}

/* SOCIAL */

/* .footer-social{
display:flex;
gap:10px;
}

.footer-social a{
width:40px;
height:40px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
border:1px solid rgba(17,17,17,.14);
text-decoration:none;
color:#333;
transition:.3s;
}

.footer-social a:hover{
transform:translateY(-3px);
background:#fff;
} */

.footer-social{
display:flex;
gap:10px;
}

.footer-social a{
width:40px;
height:40px;
border-radius:999px;
display:grid;
place-items:center;
/* justify-content:center; */
border:1px solid rgba(17,17,17,.14);
color: rgba(17,17,17,.78);
background: rgba(225,225,225,.75);
text-decoration:none;
transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.footer-social svg{
width:18px;
height:18px;
}

.footer-social a:hover{
transform: translateY(-3px);
background: #fff;
background-color: rgba(17,17,17,.22);
color: rgba(17,17,17,.92);
}


/* COLUMN */

.footer-head{
font-weight:800;
font-size:15px;
margin-bottom:14px;
padding-left: 20px;
}

.footer-col{
display:flex;
flex-direction:column;
gap:10px;
padding-left: 20px;
}

.footer-link{
text-decoration:none;
color:var(--f-muted);
font-size:14px;
transition:.3s;
padding-left: 20px;

}
.footer-headcon{
font-weight:800;
font-size:15px;
margin-bottom:14px;
padding-left: 0px;
}
.footer-con{
    padding-left: 0px;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.footer-link-con{
text-decoration:none;
color:var(--f-muted);
font-size:14px;
transition:.3s;
padding-left: 0px;
padding-bottom: 10px;
}
.footer-link-con:hover{
color:var(--logo-blue);
transform:translateX(3px);
}
.footer-link:hover{
color:var(--logo-blue);
transform:translateX(3px);
}

/* CONTACT */

.footer-contact{
display:grid;
gap:12px;
}

/* .container ctrow{
display:grid;
grid-template-columns:20px 1fr;
gap:10px;
} */

.ctrow{
display:grid;
grid-template-columns:20px 1fr;
gap:10px;
}


.footer_addr{
font-size:14px;
line-height:1.7;
color:var(--f-muted);
padding-bottom: 10px;
}

/* RESPONSIVE */

@media(max-width:980px){

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:560px){

.footer-grid{
grid-template-columns:1fr;
}

.footer-logoimg img{
height:58px;
}

.two-col{
grid-template-columns:1fr;
}

.nav-container{
flex-direction:column;
gap:10px;
}

.menu{
display:flex;
flex-wrap:wrap;
justify-content:center;
}

.menu a{
margin:10px;
}

}

/* Image Popup */

.image-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:2000;
}

.image-popup img{
max-width:90%;
max-height:90%;
border-radius:8px;
}

.image-popup .close{
position:absolute;
top:20px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}


.facility-popup{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
justify-content:center;
align-items:center;
z-index:2000;
}

.facility-popup img{
max-width:85%;
max-height:85%;
border-radius:10px;
}

.facility-popup .close{
position:absolute;
top:20px;
right:40px;
font-size:40px;
color:white;
cursor:pointer;
}

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:50px;
color:white;
cursor:pointer;
}

.arrow.left{
left:40px;
}

.arrow.right{
right:40px;
}



nav.abc-aidoctor{
display:flex;
justify-content:space-between;
/* align-items:center; */
/* align-content: right; */
padding:4px 0;

}


nav ul{
margin-left: 850px;
display:flex;
list-style:none;
}

nav ul li{
margin-left:10px;
margin-top: 3px;
font-size: 18px;
align-items: right;
}

nav ul li a{
text-decoration:none;
color:#222;
font-weight:500;
transition:0.3s;
align-items: right;
}

nav ul li a:hover{
color:#cedff3;
}


.abc-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding-bottom: 100px;
    padding: clamp(10px, 2.5vw, 14px) clamp(20px, 5vw, 20px);
    font-size: clamp(13px, 2.5vw, 14px);
    border-radius: 8px;
    font-family: Montserrat, sans-serif;
    font-weight: 1000;
    letter-spacing: .08em;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(90deg,rgba(0, 85, 150, 0.8), rgba(0, 50, 88, 0.8));
    box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.elementor *, .elementor :after, .elementor :before {
    box-sizing: border-box;
}