/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* =========================
   VARIABLES
========================= */

:root{
    --primary:#00b3ad;
    --secondary:#1047c0;
    --dark:#333333;
    --white:#ffffff;
    --border:#eeeeee;
}

/* =========================
   HEADER
========================= */

.header{
    position:sticky;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    z-index:9999;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 0;
}

/* =========================
   LOGO
========================= */

.logo img{
    height:65px;
    display:block;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.nav-links{
    display:flex;
    align-items:center;
    gap:25px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    color:var(--primary);
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.nav-links a:hover{
    color:var(--secondary);
}

/* =========================
   DROPDOWN
========================= */

.dropdown > a{
    display:flex;
    align-items:center;
    gap:8px;
}

.dropdown > a i{
    font-size:10px;
    transition:.3s ease;
}

.dropdown:hover > a i{
    transform:rotate(180deg);
}

.dropdown-menu{
    position:absolute;
    top:45px;
    left:0;
    width:270px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    padding:12px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.35s ease;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;
    padding:14px 25px;
    color:#333;
    font-weight:500;
    transition:.3s ease;
}

.dropdown-menu li a:hover{
    background:#f6fefe;
    color:var(--primary);
    padding-left:35px;
}

/* =========================
   APPOINTMENT BUTTON
========================= */

.appointment-btn{
    background:var(--primary);
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    font-size:15px;
    font-weight:600;
    transition:.3s ease;
}

.appointment-btn:hover{
    background:var(--secondary);
}

/* =========================
   HAMBURGER
========================= */

.hamburger{
    display:none;
    font-size:28px;
    color:var(--secondary);
    cursor:pointer;
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu{
    display:none;
}

/* ==================================================
   TABLET & MOBILE
================================================== */

@media(max-width:991px){

    .navbar,
    .appointment-btn{
        display:none !important;
    }

    .hamburger{
        display:block;
    }

    .logo img{
        height:55px;
    }

    .mobile-menu{
        position:fixed;
        top:85px;
        left:-100%;
        width:300px;
        height:calc(100vh - 85px);
        background:#fff;
        display:block;
        overflow-y:auto;
        transition:.4s ease;
        box-shadow:0 5px 25px rgba(0,0,0,.12);
        z-index:9998;
    }

    .mobile-menu.active{
        left:0;
    }

    .mobile-menu ul li{
        border-bottom:1px solid var(--border);
    }

    .mobile-menu ul li a{
        display:block;
        padding:18px 20px;
        color:#333;
        font-size:15px;
        font-weight:600;
    }

    /* Dropdown Header */

    .mobile-dropdown-header{
        display:flex;
        align-items:center;
        justify-content:space-between;
        padding:18px 20px;
    }

    .mobile-dropdown-header a{
        padding:0 !important;
        color:#333;
        font-size:15px;
        font-weight:600;
    }

    .dropdown-toggle{
        border:none;
        background:none;
        cursor:pointer;
        color:var(--secondary);
        font-size:14px;
    }

    .dropdown-toggle i{
        transition:.3s ease;
    }

    .mobile-dropdown.open .dropdown-toggle i{
        transform:rotate(180deg);
    }

    /* Sub Menu */

    .mobile-dropdown ul{
        max-height:0;
        overflow:hidden;
        background:#f8fdfd;
        transition:max-height .4s ease;
    }

    .mobile-dropdown.open ul{
        max-height:500px;
    }

    .mobile-dropdown ul li a{
        padding:15px 35px;
        color:#555;
        font-size:14px;
        font-weight:500;
    }

}

/* ==================================================
   MOBILE
================================================== */

@media(max-width:576px){

    .container{
        width:95%;
    }

    .logo img{
        height:50px;
    }

    .mobile-menu{
        width:100%;
        top:80px;
        height:calc(100vh - 80px);
    }

}
/* INFO DROPDOWN MOBILE */

.mobile-dropdown > span{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 20px;
    color:#333;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.mobile-dropdown > span i{
    color:var(--secondary);
    font-size:14px;
    transition:.3s ease;
}

.mobile-dropdown.open > span i{
    transform:rotate(180deg);
}





















.page-hero{
    position:relative;
    height:320px;
    background:#f4f5fa;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    
    border-bottom-right-radius:300px;
    border-top-right-radius:0;

}

/* Heading */

.hero-content{
    position:relative;
    z-index:10;
}

.hero-content h1{
    font-size:52px;
    font-weight:800;
    color:#1447c4;
    font-family:'Arial',sans-serif;
}

/* Big Circles */

.circle-one{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.7);
    top:20px;
    left:220px;
}

.circle-two{
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.6);
    top:-80px;
    right:120px;
}

/* Capsules */

.capsule{
    position:absolute;
    width:120px;
    height:24px;
    background:#cfd7f6;
    border-radius:50px;
}

.capsule::after{
    content:"";
    position:absolute;
    top:4px;
    left:12px;
    width:70px;
    height:4px;
    background:white;
    opacity:.8;
    transform:rotate(-55deg);
}

.capsule-one{
    left:230px;
    top:150px;
    transform:rotate(40deg);
}

.capsule-two{
    left:700px;
    top:80px;
    transform:rotate(-60deg);
}

/* Triangles */

.triangle{
    position:absolute;
    width:0;
    height:0;
}

.triangle-one{
    border-left:40px solid transparent;
    border-right:40px solid transparent;
    border-bottom:80px solid #ffd8de;
    top:0;
    left:400px;
    transform:rotate(35deg);
}

.triangle-two{
    border-left:35px solid transparent;
    border-right:35px solid transparent;
    border-bottom:70px solid #ffd8de;
    right:300px;
    top:100px;
    transform:rotate(15deg);
}



/* Dot Pattern */

.dot-grid{
    position:absolute;
    width:180px;
    height:180px;
    background-image:
    radial-gradient(#b8f0ea 2px, transparent 2px);
    background-size:28px 28px;
}

.dot-grid-one{
    right:500px;
    top:160px;
}

.dot-grid-two{
    left:900px;
    bottom:-20px;
}

/* Stars */

.hero-star{
    position:absolute;
    width:80px;
    opacity:.8;
}

.star-one{
    left:100px;
    top:100px;
}

.star-two{
    right:100px;
    bottom:50px;
}

/* Bottom Wave */

.bottom-wave{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:40px;
    background:white;
}

.bottom-wave::before{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    top:-38px;
    width:220px;
    height:80px;
    background:white;
    border-radius:120px 120px 0 0;
}
/* ==========================
   TABLET
========================== */

@media (max-width: 991px){

    .page-hero{
        height:260px;
        border-bottom-right-radius:180px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .circle-one{
        width:130px;
        height:130px;
        left:80px;
        top:20px;
    }

    .circle-two{
        width:130px;
        height:130px;
        right:40px;
        top:-40px;
    }

    .capsule-one{
        left:50px;
        top:120px;
    }

    .capsule-two{
        right:40px;
        left:auto;
        top:50px;
    }

    .triangle-one{
        left:250px;
    }

    .triangle-two{
        right:100px;
    }

    .dot-grid-one{
        left:20px;
        top:140px;
    }

    .dot-grid-two{
        display:none;
    }

    .hero-star{
        width:50px;
    }

    .star-one{
        left:20px;
        top:60px;
    }

    .star-two{
        right:20px;
        bottom:40px;
    }

    .bottom-wave::before{
        width:160px;
        height:60px;
        top:-25px;
    }
}


/* ==========================
   MOBILE
========================== */

@media (max-width: 768px){

    .page-hero{
        height:220px;
        border-bottom-right-radius:120px;
    }

    .hero-content h1{
        font-size:32px;
        text-align:center;
        padding:0 15px;
    }

    .circle-one{
        width:100px;
        height:100px;
        left:-20px;
        top:20px;
    }

    .circle-two{
        width:90px;
        height:90px;
        right:-10px;
        top:-20px;
    }

    .capsule{
        width:70px;
        height:14px;
    }

    .capsule::after{
        width:35px;
        height:2px;
        top:3px;
    }

    .capsule-one{
        left:15px;
        top:110px;
    }

    .capsule-two{
        right:15px;
        top:40px;
        left:auto;
    }

    .triangle-one{
        left:120px;
        border-left:20px solid transparent;
        border-right:20px solid transparent;
        border-bottom:40px solid #ffd8de;
    }

    .triangle-two{
        right:50px;
        top:90px;
        border-left:18px solid transparent;
        border-right:18px solid transparent;
        border-bottom:36px solid #ffd8de;
    }

    .dot-grid{
        width:90px;
        height:90px;
        background-size:18px 18px;
    }

    .dot-grid-one{
        left:10px;
        top:140px;
    }

    .dot-grid-two{
        display:none;
    }

    .hero-star{
        width:35px;
    }

    .star-one{
        left:20px;
        top:40px;
    }

    .star-two{
        right:20px;
        bottom:30px;
    }

    .bottom-wave{
        height:25px;
    }

    .bottom-wave::before{
        width:110px;
        height:40px;
        top:-18px;
    }
}


/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px){

    .page-hero{
        height:180px;
        border-bottom-right-radius:90px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .capsule,
    .star-two,
    .dot-grid-two,
    .triangle-two{
        display:none;
    }

    .circle-one{
        width:70px;
        height:70px;
    }

    .circle-two{
        width:60px;
        height:60px;
    }

    .bottom-wave::before{
        width:80px;
        height:30px;
    }
}
























.picu-section{
    background:white;
    padding:50px 10px;
}

.picu-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.subtitle{
    display:block;
    text-align:center;
    color:#00a99d;
    font-size:18px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.main-title{
    text-align:center;
    font-size:35px;
    font-weight:800; /* 800/900 diben na */
    color:#1147b7;
    line-height:1.15;
    letter-spacing:-1px;
    margin-bottom:70px;
}

.content-wrapper{
    display:flex;
    align-items:center;
    gap:30px;
}

.image-box{
    flex:0.9;
}

.image-box img{
    width:100%;
    border-radius:20px;
    display:block;
}

.content-box{
    flex:1;
}

.overview{
    color:#00a99d;
    font-size:18px;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.content-title{
    font-size:20px;
    font-weight:600;
    color:#1147b7;
    line-height:1.2;
    margin-bottom:25px;
}

.content-box p{
    font-size:16px;
    line-height:1.7;
    color:#555;
    text-align: justify;
    margin-bottom: 10px;
}

/* Mobile */
@media(max-width:991px){

    .content-wrapper{
        flex-direction:column;
    }

    .main-title{
        font-size:42px;
    }

    .content-title{
        font-size:32px;
    }
}















.facility-bottom{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    width:100%;
    margin-top:30px;
}

.facility-bottom .facility-card{
    width:100%;
    margin:0;
}

@media(max-width:768px){
    .facility-bottom{
        grid-template-columns:1fr;
    }
}


.facility-highlights{
    padding:30px 3%;
    background:white;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    color:var(--secondary);
    font-size:35px;
    font-weight:800;
    margin:0;
}

.facility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:30px;
}

.facility-card{
    background:#fff;
    border-radius:24px;
    padding:45px 35px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.4s;
}

.facility-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.facility-card img{
    width:150px;
    height:100px;
    object-fit:contain;
    margin-bottom:20px;
}

.facility-card h3{
    font-size:15px;
    font-weight:600;
    color:#111;
    text-transform: uppercase;
    margin-bottom:20px;
    line-height:1.4;
}

.facility-card p{
    color:#666;
    font-size:15px;
    text-align: justify;
    line-height:1.9;
}

.facility-full{
    width:100%;
    max-width:100%;
}

.facility-full img{
    width:150px;
}


@media(max-width:768px){
    .facility-full{
        grid-template-columns:1fr;
    }
}
@media(max-width:991px){

    .facility-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title h2{
        font-size:40px;
    }
}

@media(max-width:768px){

    .facility-grid{
        grid-template-columns:1fr;
    }

    .facility-highlights{
        padding:80px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .facility-card{
        padding:35px 25px;
    }
}



























.ambulance-section{
    position: relative;
    padding: 50px 40px;
    background: white;
    overflow: hidden;
}

.amub-container{
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.section-title{
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    color: #0d47c5;
}

.ambulance-wrapper{
    display: flex;
    align-items: center;
    gap: 40px;
}

.ambulance-image{
    flex: 0.7;
}

.ambulance-image img{
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.ambulance-content{
    flex: 1;
}

.ambulance-content h3{
    font-size: 30px;
    color: #0d47c5;
    margin-bottom: 25px;
    font-weight: 700;
}

.ambulance-content p{
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 18px;
}

.ambulance-content strong{
    color: #333;
}

/* Star Decoration */
.star-shape{
    position: absolute;
    left: 80px;
    top: 180px;
    width: 150px;
    z-index: 1;

    animation: floatStar 4s ease-in-out infinite;
}

@keyframes floatStar{
    0%,100%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-15px);
    }
}

/* Tablet */
@media (max-width: 991px){

    .ambulance-wrapper{
        flex-direction: column;
    }

    .section-title{
        font-size: 42px;
    }

    .ambulance-content h3{
        font-size: 34px;
    }

    .star-shape{
        width: 100px;
        left: 20px;
        top: 120px;
    }
}

/* Mobile */
@media (max-width: 576px){

    .section-title{
        font-size: 32px;
    }

    .ambulance-content h3{
        font-size: 28px;
    }

    .ambulance-content p{
        font-size: 16px;
        text-align: justify;
        line-height: 1.8;
    }

    .star-shape{
        width: 70px;
    }
}














.emergency-banner{
    position: relative;
    min-height: 350px;

    background-image: url("../images/amub1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    background-attachment: fixed; /* Sticky BG */

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ambulance-content-wrap{
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 20px;
}

.ambulance-label{
    display: block;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ambulance-heading{
    color: #ff6b2d;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 40px;
}

.ambulance-btn{
    display: inline-block;
    background: #12b8bb;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.ambulance-btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(18,184,187,.4);
}
/* Tablet */
@media (max-width: 991px){

    .emergency-banner{
        min-height: 550px;
           background-attachment: scroll;
        padding: 80px 20px;
    }

    .ambulance-heading{
        font-size: 32px;
    }

    .ambulance-label{
        font-size: 18px;
    }

    .ambulance-btn{
        padding: 16px 34px;
        font-size: 18px;
    }
}













.hospital-location-section{
    padding: 50px 50px;
    background: white;
}

.loc-container{
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.location-title{
    font-size: 50px;
    font-weight: 700;
    color: #0d47c5;
    margin-bottom: 50px;
    line-height: 1.1;
}

.location-map{
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.location-map iframe{
    display: block;
    width: 100%;
}
@media (max-width: 991px){

    .hospital-location-section{
        padding: 80px 0;
    }

    .location-title{
        font-size: 42px;
    }

    .location-map iframe{
        height: 400px;
    }
}

@media (max-width: 767px){

    .location-title{
        font-size: 32px;
        margin-bottom: 30px;
    }

    .location-map{
        border-radius: 15px;
    }

    .location-map iframe{
        height: 300px;
    }
}

























.xray-section{
    padding: 50px 30px;
    background: white;
    overflow: hidden;
}

.x-container{
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */

.xray-header{
    text-align: center;
    margin-bottom: 70px;
}

.xray-tag{
    display: inline-block;
    color: #00a8a8;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.xray-main-title{
    max-width: 900px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #1147b7;
}

/* Layout */

.xray-wrapper{
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.xray-images{
    flex: 1;
}

.xray-content{
    flex: 1.2;
}

/* Images */

.xray-image-card{
    margin-bottom: 25px;
}

.xray-image-card img{
    width: 100%;
    display: block;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.xray-image-card img:hover{
    transform: translateY(-8px);
}

/* Content */

.xray-content-title{
    font-size: 24px;
    color: #1147b7;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.xray-content p{
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
    margin-bottom: 18px;
}

.xray-content strong{
    color: #333;
}

/* Features */

.xray-features{
    margin-top: 25px;
    padding-left: 25px;
}

.xray-features li{
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.xray-features li strong{
    color: #333;
}








/* Features */

.xray-features{
    margin-top: 25px;
}

.xray-features{
    list-style: disc;
    padding-left: 30px;
    margin-top: 25px;
}

.xray-features li{
    display: list-item;
    list-style: disc;
    margin-bottom: 18px;
    color: #555;
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
}
.xray-features li strong{
    color: #333;
    font-weight: 700;
}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width:767px){

    .xray-section{
        padding:50px 15px;
    }

    .x-container{
        width:100%;
    }

    .xray-wrapper{
        display:flex;
        flex-direction:column;
        gap:25px;
    }

    .xray-images,
    .xray-content{
        width:100%;
        flex:none;
    }

    .xray-image-card{
        margin-bottom:15px;
    }

    .xray-image-card img{
        width:100%;
        height:auto;
        border-radius:12px;
    }

    .xray-header{
        margin-bottom:30px;
    }

    .xray-tag{
        font-size:14px;
    }

    .xray-main-title{
        font-size:24px;
        line-height:1.4;
    }

    .xray-content-title{
        font-size:18px;
        line-height:1.4;
        margin-bottom:15px;
    }

    .xray-content p{
        font-size:15px;
        line-height:1.8;
        text-align:left;
    }

    .xray-features{
        padding-left:20px;
        margin-top:20px;
    }

    .xray-features li{
        font-size:15px;
        line-height:1.7;
        margin-bottom:12px;
        text-align:left;
    }
}









.services-section{
    padding:50px 40px 40px 10px;
    overflow: hidden;
    background-color: white;
}

.containe{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-title{
    text-align:center;
    color:var(--secondary);
    font-size:30px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:70px;
}

.services-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:start;
}

.left-images{
    position:relative;
}

.image-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    margin-bottom:22px;
}

.image-card img{
    width:100%;
    display:block;
    object-fit:cover;
}

/* Decorative stars */

.decorative-stars{
    position:absolute;
    top:10px;
    left:-70px;
    z-index:2;
}

.decorative-stars img{
    width:120px;   /* adjust */
    height:auto;
    display:block;
    transition:all 0.5s ease;
    animation:floatStar 3s ease-in-out infinite;
}

/* Hover Effect */
.decorative-stars img:hover{
    transform:rotate(20deg) scale(1.15);
}

/* Floating Animation */
@keyframes floatStar{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}
/* Content */

.content-area h3{
    color:#0f4ec7;
    font-size:38px;
    margin-bottom:25px;
}

.content-area p{
    color:#555;
    line-height:1.6;
    margin-bottom:20px;
    text-align: justify;
    font-size:16px;
}

.content-area h4{
    margin:30px 0 15px;
    color:#333;
}

.content-area ul{
    padding-left:25px;
}

.content-area li{
    margin-bottom:15px;
    color:#555;
    list-style:disc;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:34px;
    }

    .content-area h3{
        font-size:30px;
    }

    .decorative-stars{
        left:0;
        top:-25px;
    }
}

@media(max-width:576px){

    .section-title{
        font-size:28px;
    }

    .content-area h3{
        font-size:24px;
    }
}






.inpatient-section{
    padding:10px 40px 40px 30px;
}

.services-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:start;
}

.left-images{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.image-card{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.image-card img{
    width:100%;
    display:block;
    transition:all .7s ease;
}

.image-card:hover img{
    transform:scale(1.08);
}

.content-area h3{
    color:#0f4ec7;
    font-size:42px;
    margin-bottom:15px;
}

.content-area p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

.content-area ul{
    padding-left:25px;
    margin:20px 0;
}

.content-area li{
    margin-bottom:15px;
    line-height:1.8;
}
/* Tablet */

@media (max-width: 991px){

    .services-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-images{
        max-width: 500px;
        margin: 0 auto;
    }

    .content-area h3{
        font-size: 34px;
    }

}
/* Mobile */

@media (max-width: 767px){

    .inpatient-section{
        padding: 60px 0;
    }

    .container{
        width: 92%;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .left-images{
        gap: 18px;
    }

    .image-card{
        border-radius: 12px;
    }

    .image-card img{
        width: 100%;
        height: auto;
    }

    .content-area{
        text-align: left;
    }

    .content-area h3{
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .content-area p{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .content-area h4{
        font-size: 18px;
        margin: 20px 0 15px;
    }

    .content-area ul{
        padding-left: 20px;
    }

    .content-area li{
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 12px;
    }

}














.op-banner{
    background:white;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    position:relative;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.op-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.top-text{
    display:inline-block;
    color:#ff6533;
    font-size:18px;
    font-weight:500;
    letter-spacing:1px;
    margin-bottom:25px;
    text-transform:uppercase;
}

.op-content{
    position:relative;
}

.op-content h1{
    font-size:42px;
    line-height:1.15;
    color:var(--primary);
    font-weight:700;
    margin-bottom:40px;
}

.working-days{
    position:absolute;
    right:-120px;
    top:140px;
    color:red;
    font-size:18px;
    font-weight:600;
}

.appointment-btn{
    display:inline-block;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    padding:18px 30px;
    border-radius:10px;
    font-size:18px;
    font-weight:500;
    transition:.4s;
    box-shadow:0 10px 25px rgba(255,212,59,.45);
}

.appointment-btn:hover{
    transform:translateY(-5px);
}

.op-image{
    text-align:center;
}

.op-image img{
    width:100%;
    max-width:650px;
   
}



@media(max-width:991px){

    .op-wrapper{
        grid-template-columns:1fr;
        text-align:center;
        gap:50px;
    }

    .op-content{
        order:2;
    }

    .op-image{
        order:1;
    }

    .op-content h1{
        font-size:52px;
    }

    .working-days{
        position:static;
        margin-bottom:30px;
    }
}

@media(max-width:768px){

    .op-banner{
        min-height:auto;
        padding:80px 0;
    }

    .op-content h1{
        font-size:38px;
    }

    .top-text{
        font-size:15px;
    }

    .working-days{
        font-size:16px;
    }

    .appointment-btn{
        padding:15px 30px;
        font-size:18px;
    }

    .op-image img{
        max-width:350px;
    }
}

@media(max-width:480px){

    .op-content h1{
        font-size:32px;
        line-height:1.25;
    }

    .appointment-btn{
        width:100%;
        text-align:center;
    }

    .op-image img{
        max-width:280px;
    }
}



















.ot-section{
    padding:50px 10px;
    background:white;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.small-title{
    display:block;
    color:#06b6b2;
    font-size:20px;
    font-weight:500;
    margin-bottom:15px;
}

.section-heading h2{
    color:var(--secondary);
    font-size:30px;
    font-weight:800;
    line-height:1.25;
    max-width:1000px;
    margin:auto;
}

.ot-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.ot-image{
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.ot-image img{
    width:100%;
    display:block;
    transition:.6s ease;
}

.ot-image:hover img{
    transform:scale(1.08);
}

.ot-content h3{
    color:var(--secondary);
    font-size:24px;
    line-height:1.3;
    margin-bottom:25px;
}

.ot-content p{
    color:#555;
    font-size:16px;
    line-height:1.6;
    text-align: justify;
    margin-bottom:12px;
}

.ot-content strong{
    color:#444;
}
@media(max-width:991px){

    .ot-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .ot-content h3{
        font-size:32px;
    }
}

@media(max-width:768px){

    .ot-section{
        padding:70px 0;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:30px;
        line-height:1.4;
    }

    .small-title{
        font-size:16px;
    }

    .ot-content h3{
        font-size:24px;
        margin-bottom:15px;
    }

    .ot-content p{
        font-size:15px;
        text-align: justify;
        line-height:1.8;
    }
}

@media(max-width:480px){

    .section-heading h2{
        font-size:26px;
    }

    .ot-content h3{
        font-size:22px;
    }
}















/* =========================
   FOOTER
========================= */

.footer {
    position: relative;
    background: white;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

/* =========================
   MAIN LAYOUT
========================= */

.footer-container {
    max-width: 1400px;
    margin: auto;
    padding: 70px 30px 40px;

    display: grid;
    grid-template-columns:
        1.3fr
        1.2fr
        .9fr
        .7fr
        .9fr;

    gap: 40px;
    position: relative;
    z-index: 2;
}

/* =========================
   LOGO SECTION
========================= */

.footer-logo {
    width: 300px;
    max-width: 100%;
}

.footer-brand p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    max-width: 320px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-links a {
    width: 48px;
    height: 48px;
    background: #08b8b2;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;
    font-size: 20px;

    border-radius: 12px;
    text-decoration: none;

    transition: .3s;
}

.social-links a:hover {
    transform: translateY(-4px);
}

/* =========================
   DOCTOR IMAGE
========================= */

.footer-doctor {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.footer-doctor img {
    width: 420px;
    max-width: 100%;
    transform: translateY(60px);
}

/* =========================
   COLUMN HEADINGS
========================= */

.footer-services h3,
.footer-support h3,
.footer-timings h3 {
    color: #1247c4;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

/* =========================
   LISTS
========================= */

.footer-services ul,
.footer-support ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li,
.footer-support li {
    margin-bottom: 12px;
    color: #444;
    font-size: 18px;
}

.footer-support a {
    text-decoration: none;
    color: #444;
}

.footer-support a:hover {
    color: #08b8b2;
}

/* =========================
   TIMINGS
========================= */

.footer-timings p {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
}

.footer-timings .green {
    color: var(--primary);
    font-weight: 600;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter-row {
    max-width: 1400px;
    margin: auto;
    padding: 0 30px 60px;

    position: relative;
    z-index: 2;
}

.newsletter-line {
    margin-left: 50%;
    border-top: 1px solid #d8d8d8;
    margin-bottom: 35px;
}

.newsletter-row h2 {
    margin-left: 50%;

    max-width: 450px;

    color: #4b4b4b;
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
}

/* =========================
   COPYRIGHT
========================= */

.footer-bottom {
    background: var(--primary);
    padding: 32px;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: white;
    font-size: 18px;
    margin: 0;
}

/* =========================
   WHATSAPP
========================= */
.footer-services ul li a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.footer-services ul li a:hover{
    color:#08b8b2;
    padding-left:5px;
}
/* =========================
   CLOUDS
========================= */

.cloud1,
.cloud2 {
    position: absolute;
    background: #f7efd9;
    opacity: .6;
    border-radius: 100px;
}

.cloud1 {
    width: 220px;
    height: 70px;
    top: 100px;
    left: 32%;
}

.cloud1::before,
.cloud1::after {
    content: "";
    position: absolute;
    background: #f7efd9;
    border-radius: 50%;
}

.cloud1::before {
    width: 80px;
    height: 80px;
    left: 25px;
    top: -35px;
}

.cloud1::after {
    width: 90px;
    height: 90px;
    right: 25px;
    top: -40px;
}

.cloud2 {
    width: 280px;
    height: 80px;
    top: 120px;
    right: 6%;
}

.cloud2::before,
.cloud2::after {
    content: "";
    position: absolute;
    background: #f7efd9;
    border-radius: 50%;
}

.cloud2::before {
    width: 100px;
    height: 100px;
    left: 30px;
    top: -40px;
}

.cloud2::after {
    width: 110px;
    height: 110px;
    right: 40px;
    top: -50px;
}
/* =========================
   HILLS
========================= */

.hill1,
.hill2 {
    position: absolute;
    background: #f8f0f0;
    opacity: .6;
}

.hill1 {
    width: 380px;
    height: 170px;
    right: 18%;
    bottom: 130px;

    border-radius: 200px 200px 0 0;
}

.hill2 {
    width: 260px;
    height: 120px;
    right: 3%;
    bottom: 130px;

    border-radius: 200px 200px 0 0;
}

/* =========================
   DECORATIVE CIRCLES
========================= */

.circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.pink {
    width: 50px;
    height: 50px;

    background: #ffc5cf;

    top: 320px;
    right: 360px;
}

.purple {
    width: 22px;
    height: 22px;

    background: #d8c1ff;

    top: 350px;
    right: 430px;
}

.yellow {
    width: 35px;
    height: 35px;

    background: #ffe48a;

    top: 200px;
    right: 800px;
}

/* =========================
   TABLET
========================= */

@media(max-width:1200px){

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-doctor{
        grid-column:span 2;
    }

    .newsletter-line,
    .newsletter-row h2{
        margin-left:0;
    }

}

/* =========================
   MOBILE
========================= */

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer-container{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer-brand{
        align-items:flex-start;
        text-align:left;
    }

    .footer-logo{
        width:220px;
    }

    .footer-services{
        margin-top:10px;
    }

    .footer-doctor{
        display:none;
    }
    .footer-bottom p {
    color: white;
    font-size: 12px;
    margin: 0;
}
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .footer-container{
        padding:50px 20px 20px;
    }

    .footer-services h3,
    .footer-support h3,
    .footer-timings h3{
        font-size:24px;
    }

    .footer-services li,
    .footer-support li,
    .footer-timings p{
        font-size:16px;
    }

    .newsletter-row h2{
        font-size:20px;
        line-height:1.5;
    }

}







.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
    z-index:99999;
    transition:.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

@media(max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:30px;
        bottom:15px;
        right:15px;
    }
}