/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* ==========================
   TOP BAR
========================== */

.topbar{
    width:100%;
    background:#fff;
    border-bottom:1px solid #e9e9e9;
}

.topbar-container{
    max-width:1400px;
    width:95%;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:52px; /* Compact height */
}

/* Left Side */

.topbar-left{
    display:flex;
    align-items:center;
    gap:28px;
}

.top-item{
    display:flex;
    align-items:center;
    gap:8px;

    color:#555;
    font-size:14px;
}

.top-item i{
    color:#284682;
    font-size:14px;
}

.top-item a{
    text-decoration:none;
    color:#555;
    transition:.3s;
}

.top-item a:hover{
    color:#284682;
}

/* Right Side */

.topbar-right{
    display:flex;
    align-items:center;
}

.topbar-btn{
    background:rgb(40,30,170);
    color:white;
    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;

    height:42px;
    padding:0 20px;
    border-radius:8px;
    font-weight:600;
}

.topbar-btn:hover{
    transform:translateY(-2px);
    background: #ffcc54;
    color:rgb(40)
}
.topbar-btn{
    display:flex;
    align-items:center;
    gap:8px;
}

.topbar-btn i{
    font-size:14px;
    transition:all .3s ease;
}

.topbar-btn:hover i{
    transform:translateX(6px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .topbar-container{
        flex-direction:column;
        height:auto;
        padding:12px 0;
        gap:12px;
    }

    .topbar-left{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .topbar-container{
        width:92%;
        padding:12px 0;
    }

    .topbar-left{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .top-item{
        width:100%;
    }

    .topbar-right{
        width:100%;
    }

    .topbar-btn{
        width:100%;
        justify-content:center;
        top:0;
    }

}





/* ==========================
   STICKY NAVBAR`
========================== */

.navbar{
    position:sticky;
    top:0;
    z-index:9999;

    background:#fff;
    border-bottom:1px solid #eee;
    box-shadow:0 2px 15px rgba(0,0,0,.06);
}

.navbar-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;

    max-width:1400px;
    margin:auto;

    padding:12px 25px;
}

/* ==========================
   LOGO
========================== */

.logo-container{
    display:flex;
    flex-direction:column;
}

.logos{
    display:flex;
    align-items:center;
    gap:12px;
}

.logos img{
    height:60px;
    width:auto;
    display:block;
}

.tagline{
    color:#284682;
    font-size:14px;
    font-weight:600;
    margin-top:4px;
    margin-left:55px;
}

/* ==========================
   DESKTOP MENU
========================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
    
    list-style:none;

    transform:translateX(-200px);
}
.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    color:#222;
    font-size:16px;
   
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#284682;
}

/* Dropdown Icon */

.nav-links li a i{
    font-size:11px;
    color:#284682;
    margin-left:6px;
    transition:.3s;
}

.dropdown:hover > a i{
    transform:rotate(180deg);
}

.dropdown.active > a i{
    transform:rotate(180deg);
}

/* ==========================
   DROPDOWN
========================== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;

    width:320px;

    background:#284682;

    list-style:none;

    display:none;

    border-radius:0 0 12px 12px;

    max-height:70vh;
    overflow-y:auto;

    z-index:9999;
}

.dropdown:hover .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    border-bottom:1px solid rgba(255,255,255,.08);
}

.dropdown-menu li:last-child{
    border-bottom:none;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#fff;
    font-size:14px;
}

.dropdown-menu li a:hover{
    background:rgba(255,255,255,.08);
    color:#ffc83d;
}

/* ==========================
   HAMBURGER
========================== */

.menu-toggle{
    display:none;

    width:40px;
    height:40px;

    align-items:center;
    justify-content:center;

    cursor:pointer;
}

.menu-toggle i{
    font-size:26px;
    color:#284682;
}

/* ==========================
   TABLET + MOBILE
========================== */

@media(max-width:992px){

    html,
    body{
        overflow-x:hidden;
    }
.navbar{
        position:fixed;
        top:0;
        left:0;
        width:100%;

        z-index:99999;

        background:#fff;

        padding:0;
    }

    .navbar-inner{
        padding:12px 15px;
    }

    body{
        padding-top:85px;
    }

    .nav-links{
        top:85px;
    }



    .logo-container{
        max-width:80%;
    }

    .logos img{
        height:38px;
    }

    .tagline{
        margin-left:0;
        font-size:12px;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-links{

        position:fixed;

        top:75px;
        left:50%;

        transform:translateX(-50%);

        width:95%;
        max-width:500px;

        background:#fff;

        border-radius:15px;

        box-shadow:0 10px 30px rgba(0,0,0,.15);

        display:none;

        flex-direction:column;

        gap:0;

        overflow:hidden;

        z-index:9998;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        width:100%;
        border-bottom:1px solid #eee;
    }

    .nav-links li:last-child{
        border-bottom:none;
    }

    .nav-links li a{

        width:100%;

        padding:15px 20px;

        display:flex;

        justify-content:space-between;
        align-items:center;
    }

    /* MOBILE DROPDOWN */
.dropdown-menu{

    position:static;

    width:100%;

    display:none;

    background:#284682;

    border-radius:0;

    max-height:250px;   /* add */

    overflow-y:auto;    /* add */

    overflow-x:hidden;  /* add */
}
.dropdown-menu::-webkit-scrollbar{
    width:5px;
}

.dropdown-menu::-webkit-scrollbar-track{
    background:#1f376b;
}

.dropdown-menu::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.5);
    border-radius:10px;
}
    .dropdown.active .dropdown-menu{
       display:block !important;
    }

    .dropdown:hover .dropdown-menu{
        display:none;
    }

    .dropdown-menu li a{
        padding:14px 25px;
        font-size:14px;
    }
       
   

}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

    .navbar{
        padding:10px 12px;
    }

    .logos{
        gap:8px;
    }

    .logos img{
        height:32px;
    }

    .tagline{
        font-size:11px;
    }

    .menu-toggle i{
        font-size:24px;
    }

    .nav-links{
        width:96%;
        top:70px;
    }

    .nav-links li a{
        font-size:14px;
        padding:14px 16px;
    }

    .dropdown-menu li a{
        font-size:13px;
        padding:12px 20px;
    }
}

/* ==========================
   EXTRA SMALL DEVICES
========================== */

@media(max-width:380px){

    .logos img{
        height:28px;
    }

    .tagline{
        font-size:10px;
    }

    .menu-toggle i{
        font-size:22px;
    }
}
.dropdown.active .dropdown-menu{
    display:block;
}

@media(max-width:992px){

    .dropdown:hover .dropdown-menu{
        display:none;
    }

}

  @media(max-width:992px){

    .nav-links li{
        position:relative;
    }

    .dropdown-toggle{
        position:absolute;
        right:0;
        top:0;
        width:50px;
        height:52px;

        display:flex;
        align-items:center;
        justify-content:center;

        cursor:pointer;
        z-index:2;
    }

    .dropdown > a{
        width:100%;
        justify-content:flex-start !important;
        padding-right:55px !important;
    }
}









/* =========================
   PEDIATRIC SECTION
========================= */

.pediatric-section{
    position:relative;
    background:url("../images/care2.png") center center/cover no-repeat;
    min-height:200px;
    overflow:visible;
}

/* Overlay */

.overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.75);
}

/* Content */

.content{
    position:relative;
    z-index:2;
    max-width:1400px;
    margin:auto;
    padding:180px 20px 0;
}

/* =========================
   HEADING
========================= */

.content h2{
    text-align:center;
    color:#294a94;
    font-size:40px;
    font-weight:700;
    line-height:1.2;
    max-width:1200px;
    margin:0 auto;
}

/* =========================
   CARDS ROW
========================= */

.cards{
    display:flex;
    justify-content:center;
    align-items:stretch;
    gap:25px;

    position:relative;
    top:120px; /* Floating effect */
}

/* =========================
   SINGLE CARD
========================= */

.card{
    flex:1;
    max-width:280px;
    min-height:220px;

    background:#fff;
    border-radius:25px;

    padding:35px 20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s ease;
}

.card:hover{
    transform:translateY(-8px);
}

/* Icon */

.icon{
    margin-bottom:20px;
}

.icon i{
    font-size:48px;
    color:#294a94;
}

/* Text */

.card p{
    font-size:17px;
    line-height:1.6;
    color:#111;
    margin:0;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .content{
        padding-top:140px;
    }

    .content h2{
        font-size:32px;
    }

    .cards{
        gap:15px;
        top:90px;
    }

    .card{
        max-width:240px;
        min-height:200px;
        padding:30px 15px;
    }

    .icon i{
        font-size:40px;
    }

    .card p{
        font-size:15px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .pediatric-section{
        min-height:auto;
        padding-bottom:80px;
    }

    .content{
        padding-top:80px;
    }

    .content h2{
        font-size:26px;
        line-height:1.3;
    }

    .cards{
        flex-direction:column;
        align-items:center;
        gap:20px;

        top:40px;
    }

    .card{
        width:100%;
        max-width:320px;
        min-height:auto;
        padding:30px 20px;
    }

    .icon{
        margin-bottom:15px;
    }

    .icon i{
        font-size:38px;
    }

    .card p{
        font-size:15px;
        line-height:1.5;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .content h2{
        font-size:22px;
    }

    .card{
        max-width:100%;
    }

    .card p{
        font-size:14px;
    }
}
.nicu-subtitle{
    font-size:25px;
    line-height:1.4;
    font-style:italic;
    font-weight:400;

    color:#001f54;

    text-align:center;

    max-width:1600px;
    margin:40px auto 0;

    letter-spacing:0.5px;
}
@media(max-width:991px){

    .nicu-subtitle{
        font-size:36px;
        line-height:1.4;
    }
}

@media(max-width:576px){

    .nicu-subtitle{
        font-size:24px;
        line-height:1.5;
    }
}


























/* =========================
   GENERAL PEDIATRICS SECTION
========================= */
.general-pediatrics{
    background:#f0ccc5;
    padding:50px 20px;
    margin-top:160px;
    min-height: 200px;
    overflow:hidden;
}

/* Container */

.general-pediatrics .container{
    max-width:1600px;
    margin:auto;

    padding-left:60px;
    padding-right:60px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:100px;
}

/* Left Content */

.content-box{
    flex:0 0 65%;
}

.content-box h2{
    font-size:26px;
    line-height:1.15;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.content-box h2 span{
    display:block;
}

.content-box p{
    font-size:16px;
    text-align: justify;
    line-height:1.6;
    color:black;
    margin-bottom:5px;
}

/* Right Image */

.image-box{
    flex:0 0 30%;
}

.image-box img{
    width:100%;
    height: 450px;
    display:block;
    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.ima-box img{
    width:100%;
    height: 250px;
    display:block;
    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

/* =========================
   TABLET
========================= */

@media (max-width:1199px){

    .general-pediatrics .container{
        gap:50px;
        padding-left:40px;
        padding-right:40px;
    }

    .content-box h2{
        font-size:48px;
    }

    .content-box p{
        font-size:19px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:991px){

    .general-pediatrics{
        padding:70px 0;
    }

    .general-pediatrics .container{
        flex-direction:column-reverse;
        gap:35px;

        text-align:center;

        padding-left:20px;
        padding-right:20px;
    }

    .content-box,
    .image-box{
        flex:0 0 100%;
        width:100%;
    }

    .content-box h2{
        font-size:36px;
        margin-bottom:20px;
    }

    .content-box p{
        font-size:16px;
        line-height:1.7;
        text-align: justify;
        margin-bottom:10px;
    }

    .image-box img{
        max-width:500px;
        margin:auto;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:576px){

    .general-pediatrics{
        padding:50px 0;
    }

    .general-pediatrics .container{
        padding-left:15px;
        padding-right:15px;
    }

    .content-box h2{
        font-size:28px;
        line-height:1.3;
    }

    .content-box p{
        font-size:15px;
        line-height:1.7;
    }

    .image-box img{
        border-radius:12px;
    }
}



















/* ==========================
   OBG TREATMENT SECTION
========================== */

.obg-treatment-section{
    padding:50px 5%;
    overflow: hidden;
    background:white;
}

.obg-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
}

.obg-content{
    flex:1;
     background:linear-gradient(
        to bottom,
        #faf7f6 0%,
       
        #f0ccc5 100%
    );
    padding:45px 50px;
    border-radius:28px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.obg-content h2{
    font-size:23px;
    line-height:1.2;
    color:#000;
    margin-bottom:22px;
    font-weight:700;
    max-width:700px;
}

.obg-content p{
    font-size:16px;
    margin-bottom:5px;
    color:#111;
}

.obg-content ul{
    padding-left:35px;
    margin:0;
}

.obg-content ul li{
    font-size:16px;
    line-height:1.5;
    color:#111;
    margin-bottom:6px;
}

.obg-image{
    flex:0 0 42%;
}

.obg-image img{
    width:100%;
    display:block;
    border-radius:25px;
    box-shadow:0 5px 20px rgba(0,0,0,0.12);
    object-fit:cover;
}

/* ==========================
   TABLET
========================== */

@media (max-width:1024px){

    .obg-container{
        gap:30px;
    }

    .obg-content{
        padding:35px;
    }

    .obg-content h2{
        font-size:2.3rem;
    }

    .obg-content p,
    .obg-content ul li{
        font-size:1.05rem;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .obg-treatment-section{
        padding:40px 20px;
    }

    .obg-container{
        flex-direction:column-reverse;
        gap:25px;
    }

    .obg-content{
        padding:28px 24px;
        border-radius:20px;
    }

    .obg-content h2{
        font-size:1.9rem;
        margin-bottom:15px;
    }

    .obg-content p{
        font-size:1rem;
        margin-bottom:12px;
    }

    .obg-content ul{
        padding-left:22px;
    }

    .obg-content ul li{
        font-size:0.95rem;
        line-height:1.6;
        margin-bottom:4px;
    }

    .obg-image{
        width:100%;
    }

    .obg-image img{
        border-radius:20px;
    }

}

@media (max-width:480px){

    .obg-content{
        padding:24px 20px;
    }

    .obg-content h2{
        font-size:1.65rem;
    }

    .obg-content ul li{
        font-size:0.92rem;
    }

}
















/*=========================
  OBG SERVICES SECTION
=========================*/

.obg-services-section{
    padding:50px 5%;
    overflow: hidden;
    background:#ffffff;
}

.obg-services-container{
    max-width:1450px;
    margin:auto;
    display:flex;
    align-items:stretch;
    gap:30px;
}

.obg-services-image{
    flex:0 0 50%;
}

.obg-services-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.obg-services-content{
    flex:0 0 50%;
      background:linear-gradient(
        to bottom,
        #faf7f6 0%,
       
        #f0ccc5 100%
    );
    padding:22px 34px;
    border-radius:22px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.obg-services-content h2{
    font-size:25px;
    line-height:1.15;
    font-weight:700;
    color:#000;
    margin-bottom:20px;
}

.service-item{
    margin-bottom:22px;
}

.service-item:last-child{
    margin-bottom:0;
}

.service-item h3{
    font-size:18px;
    font-weight:700;
    color:#000;
    margin-bottom:5px;
    line-height:1.3;
}

.service-item p{
    font-size:18px;
    line-height:1.6;
    color:#111;
    margin:0;
}

/*=========================
  TABLET
=========================*/

@media(max-width:1024px){

    .obg-services-section{
        padding:50px 4%;
    }

    .obg-services-container{
        gap:20px;
    }

    .obg-services-content{
        padding:25px;
    }

    .obg-services-content h2{
        font-size:2.3rem;
    }

    .service-item h3{
        font-size:1.2rem;
    }

    .service-item p{
        font-size:1rem;
    }

}

/*=========================
  MOBILE
=========================*/

@media(max-width:768px){

    .obg-services-section{
        padding:40px 20px;
    }

    .obg-services-container{
        flex-direction:column;
        gap:20px;
    }

    .obg-services-image,
    .obg-services-content{
        flex:100%;
        width:100%;
    }

    .obg-services-content{
        padding:25px 20px;
        border-radius:18px;
    }

    .obg-services-content h2{
        font-size:1.9rem;
        margin-bottom:18px;
    }

    .service-item{
        margin-bottom:18px;
    }

    .service-item h3{
        font-size:1.05rem;
    }

    .service-item p{
        font-size:.95rem;
        line-height:1.7;
    }

}

@media(max-width:480px){

    .obg-services-content h2{
        font-size:1.65rem;
    }

    .service-item h3{
        font-size:1rem;
    }

    .service-item p{
        font-size:.92rem;
    }

}














/*=========================
  VISIT GYNO SECTION
=========================*/

.visit-gyno-section{
    padding:50px 5%;
    overflow: hidden;
    background:#ffffff;
}

.visit-gyno-container{
    max-width:1450px;
    margin:auto;
    display:flex;
    gap:20px;
    align-items:stretch;
}

.visit-card{
    flex:1;
    background:linear-gradient(
        to bottom,
        #faf7f6 0%,
       
        #f0ccc5 100%
    );

  
    padding:28px 35px;
    border-radius:24px;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.left-card h2{
    font-size:25px;
    line-height:1.15;
    font-weight:700;
    color:#000;
    margin-bottom:25px;
}

.right-card h3{
    font-size:25px;
    line-height:1.2;
    font-weight:700;
    color:#000;
    margin-bottom:12px;
}

.intro-text{
    font-size:18px;
    line-height:1.7;
    margin-bottom:10px;
}

.visit-card ul{
    padding-left:30px;
    margin:0;
}

.visit-card ul li{
    font-size:18px;
    line-height:1.7;
    margin-bottom:4px;
    color:#111;
}

.bottom-text{
    font-size:18px;
    line-height:1.7;
    margin-top:18px;
    color:#111;
}

/*=========================
  TABLET
=========================*/

@media(max-width:1024px){

    .visit-card{
        padding:25px;
    }

    .left-card h2{
        font-size:2.3rem;
    }

    .right-card h3{
        font-size:1.9rem;
    }

    .visit-card ul li,
    .intro-text,
    .bottom-text{
        font-size:1rem;
    }

}

/*=========================
  MOBILE
=========================*/

@media(max-width:768px){

    .visit-gyno-section{
        padding:40px 20px;
    }

    .visit-gyno-container{
        flex-direction:column;
        gap:20px;
    }

    .visit-card{
        padding:24px 20px;
        border-radius:18px;
    }

    .left-card h2{
        font-size:1.9rem;
        margin-bottom:15px;
    }

    .right-card h3{
        font-size:1.6rem;
        margin-bottom:15px;
    }

    .visit-card ul{
        padding-left:22px;
    }

    .visit-card ul li{
        font-size:.95rem;
        line-height:1.7;
    }

    .intro-text,
    .bottom-text{
        font-size:.95rem;
    }

}

@media(max-width:480px){

    .left-card h2{
        font-size:1.65rem;
    }

    .right-card h3{
        font-size:1.4rem;
    }

}





















.faq-section {
    padding: 50px 50px;
    overflow: hidden;
   background:linear-gradient(
        to bottom,
        #faf7f6 0%,
       
        #f0ccc5 100%
    );

    overflow: hidden;
}

.faq-section .container {
    max-width: 1300px;
    margin: auto;
    padding: 0 15px;

    display: grid;
    grid-template-columns: 58% 42%;
    gap: 35px;
    align-items: center;
}

/* Left Image */

.faq-image img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

/* Right Content */

.faq-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #6d7680;
    margin-bottom: 10px;
}

.faq-content h2 {
    font-size: 40px;
    color:#284682;
    margin-bottom: 35px;
    line-height: 1.1;
    font-weight: 700;
}

/* FAQ */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 25px;
    border: 1px solid #dde6ed;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 25px 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;

    font-size: 20px;
    font-weight: 600;
    color: #071c35;
    text-align: left;
}

.faq-question span {
    font-size: 32px;
    font-weight: 400;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}

.faq-answer p {
    padding: 0 35px 30px;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Responsive */

@media(max-width:991px){

    .faq-section .container{
        grid-template-columns:1fr;
    }

    .faq-image img{
        height:500px;
    }

    .faq-content h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .faq-section{
        padding:60px 0;
    }

    .faq-image img{
        height:350px;
    }

    .faq-content h2{
        font-size:32px;
        margin-bottom:25px;
    }

    .faq-question{
        padding:20px;
        font-size:17px;
    }

    .faq-answer p{
        padding:0 20px 20px;
    }
}














/*=========================
  HOSPITAL SUMMARY SECTION
=========================*/

.hospital-summary-section{
    padding:50px 3%;
    overflow: hidden;
    background:#ffffff;
}

.hospital-summary-box{
    position:relative;
    max-width:1400px;
    margin:auto;
    background:#05294a;
    border-radius:24px;
    padding:70px 50px;
    overflow:hidden;
}

/* Text */
.hospital-summary-box p{
    max-width:1250px;
    margin:0;
    color:#ffffff;
    font-size:18px;
    line-height:1.7;
    font-weight:500;
    position:relative;
    z-index:2;
}

/* Decorative Arcs */
.circle-shape{
    position: absolute;
    width: 700px;
    height: 700px;

    /* Bottom Left */
    left: -450px;
    bottom: -400px;

    border: 3px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.circle-shape::before{
    content: "";
    position: absolute;

    width: 550px;
    height: 550px;

    left: 75px;
    top: 75px;

    border: 3px solid rgba(255,255,255,0.08);
    border-radius: 50%;
}

/*=========================
  TABLET
=========================*/

@media (max-width:1024px){

    .hospital-summary-box{
        padding:70px 45px;
    }

    .hospital-summary-box p{
        font-size:17px;
    }

    .circle-shape{
        width:550px;
        height:550px;
        left:-250px;
        bottom:-250px;
    }

    .circle-shape::before{
        width:420px;
        height:420px;
        top:65px;
        left:65px;
    }
}

/*=========================
  MOBILE
=========================*/

@media (max-width:768px){

    .hospital-summary-section{
        padding:30px 20px;
    }

    .hospital-summary-box{
        padding:40px 25px;
        border-radius:18px;
    }

    .hospital-summary-box p{
        font-size:15px;
        line-height:1.8;
    }

    .circle-shape{
        width:280px;
        height:280px;
        left:-120px;
        bottom:-120px;
    }

    .circle-shape::before{
        width:200px;
        height:200px;
        top:40px;
        left:40px;
    }
}




.blogs-section{
    padding:50px 50px;
    overflow-x: hidden;
    background:#f8f8f8;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.blog-header{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-bottom:50px;
}

.sub-title{
    font-size:14px;
    color:#666;
}

.blog-header h2{
    font-size:42px;
    color:#0f233b;
    margin-top:10px;
}

.header-right{
    max-width:450px;
}

.header-right p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.all-btn{
    display:inline-block;
    background:#264796;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:10px;
    font-weight:600;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.blog-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:18px;
    overflow:hidden;
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.blog-image{
    position:relative;
    padding:14px;
}

.blog-image img{
    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:14px;
}

.date-box{
    position:absolute;
    top:20px;
    left:20px;
    background:#ffc83d;
    width:50px;
    height:60px;
    border-radius:4px;
    text-align:center;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.date-box span{
    font-size:22px;
    font-weight:700;
}

.date-box small{
    font-size:12px;
}

.blog-content{
    padding:0 16px 20px;
}

.blog-content h3{
    font-size:20px;
    line-height:1.6;
    color:#1d2b42;
    margin-bottom:25px;
    min-height:100px;
}

.blog-content a{
    color:#1d2b42;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:991px){

    .blog-header{
        flex-direction:column;
    }

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-header h2{
        font-size:32px;
    }
}
.blog-image{
    position:relative;
    padding:14px;
}

.blog-image img{
    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:14px;
}

.image-overlay{
    position:absolute;
    bottom:25px;
    left:25px;
    color:#fff;
    font-size:12px;
    font-weight:500;
    z-index:2;
}

.blog-image::after{
    content:"";
    position:absolute;
    left:14px;
    right:14px;
    bottom:14px;
    height:120px;
    border-radius:0 0 14px 14px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0)
    );
}













/*=========================
PREGNANCY SERVICES
=========================*/

.pregnancy-services-section{
    padding:80px 5%;
    background:#f3e4e0;
    overflow: hidden;
}

.pregnancy-services-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.pregnancy-services-content{
    flex:0 0 55%;
}

.pregnancy-services-image{
    flex:0 0 40%;
    min-height:550px; /* image space */
    display:flex;
    align-items:center;
    justify-content:center;
}

.pregnancy-services-image img{
    width:100%;
    height:auto;
    display:block;
}

/* Heading */

.pregnancy-services-content h2{
    font-size:25px;
    line-height:1.1;
    font-weight:700;
    color:#000;
    margin-bottom:40px;
}

/* Items */

.service-item{
    margin-bottom:35px;
}

.service-item h3{
    font-size:20px;
    font-weight:700;
    color:#000;
    margin-bottom:10px;
}

.service-item p{
    font-size:18px;
    line-height:1.7;
    color:#222;
    margin:0;
}

/*=========================
TABLET
=========================*/

@media(max-width:1024px){

    .pregnancy-services-container{
        gap:50px;
    }

    .pregnancy-services-content h2{
        font-size:42px;
    }

    .service-item h3{
        font-size:24px;
    }

    .service-item p{
        font-size:18px;
    }

}

/*=========================
MOBILE
=========================*/

@media(max-width:768px){

    .pregnancy-services-section{
        padding:50px 20px;
    }

    .pregnancy-services-container{
        flex-direction:column;
        gap:40px;
    }

    .pregnancy-services-content,
    .pregnancy-services-image{
        flex:100%;
        width:100%;
    }

    .pregnancy-services-content h2{
        font-size:32px;
    }

    .service-item h3{
        font-size:20px;
    }

    .service-item p{
        font-size:16px;
        line-height:1.8;
    }

    .pregnancy-services-image{
        min-height:300px;
    }

}






















/*==================================
  VBAC SERVICES SECTION
==================================*/

.vbac-services-section{
    padding:50px 5%;
    overflow: hidden;
    background:#fff;
}

.vbac-services-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    gap:12px;
    align-items:stretch; /* Same height */
}

/* Left Card */

.vbac-services-content{
    flex:0 0 72%;
    background:#F3E4E0;
    padding:45px;

    /* Left card */
    border-radius:25px 0 0 25px;

    box-shadow:0 4px 20px rgba(0,0,0,.08);
}



.vbac-services-content h2{
    font-size:35px;
    line-height:1.2;
    font-weight:600;
    color:#000;
    margin-bottom:15px;
}

.vbac-service-item{
    margin-bottom:20px;
}

.vbac-service-item:last-child{
    margin-bottom:0;
}

.vbac-service-item h3{
    font-size:20px;
    font-weight:700;
    color:#000;
    margin-bottom:5px;
}

.vbac-service-item p{
    font-size:18px;
    line-height:1.7;
    color:#222;
    margin-bottom: 5px;
    margin:0;
}

/* Right Image */

.vbac-services-image{
    flex:0 0 27%;
    display:flex;
}

.vbac-services-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    /* Left side no radius */
    border-radius:0 25px 25px 0;
}

/*==================================
  TABLET
==================================*/

@media (max-width:1024px){

    .vbac-services-section{
        padding:60px 4%;
    }

    .vbac-services-container{
        gap:15px;
    }

    .vbac-services-content{
        padding:35px;
    }

    .vbac-services-content h2{
        font-size:2.3rem;
        margin-bottom:25px;
    }

    .vbac-service-item{
        margin-bottom:30px;
    }

    .vbac-service-item h3{
        font-size:1.3rem;
    }

    .vbac-service-item p{
        font-size:1rem;
        line-height:1.7;
    }

    .vbac-services-content{
        flex:0 0 68%;
    }

    .vbac-services-image{
        flex:0 0 30%;
    }

}

/*==================================
  MOBILE
==================================*/

@media (max-width:768px){

    .vbac-services-section{
        padding:40px 20px;
    }

    .vbac-services-container{
        flex-direction:column;
        gap:20px;
    }

    .vbac-services-content{
        flex:100%;
        width:100%;
        padding:25px 20px;
        border-radius:20px;
        order:2;
    }

    .vbac-services-image{
        width:100%;
        flex:100%;
        order:1;
    }

    .vbac-services-image img{
        width:100%;
        height:350px;
        object-fit:cover;
        border-radius:20px;
    }

    .vbac-services-content h2{
        font-size:2rem;
        line-height:1.3;
        margin-bottom:20px;
    }

    .vbac-service-item{
        margin-bottom:25px;
    }

    .vbac-service-item h3{
        font-size:1.1rem;
        line-height:1.5;
        margin-bottom:8px;
    }

    .vbac-service-item p{
        font-size:0.95rem;
        line-height:1.8;
    }

}

/*==================================
  SMALL MOBILE
==================================*/

@media (max-width:480px){

    .vbac-services-content{
        padding:22px 18px;
    }

    .vbac-services-content h2{
        font-size:1.7rem;
    }

    .vbac-service-item h3{
        font-size:1rem;
    }

    .vbac-service-item p{
        font-size:0.9rem;
    }

    .vbac-services-image img{
        height:280px;
    }

}














/*==================================
  CHILDBIRTH CLASSES COVER
==================================*/

.childbirth-cover-section{
    padding:50px 5%;
    overflow: hidden;
}

.section-heading{
    text-align:center;
    margin-bottom:30px;
}

.section-heading h2{
    font-size:35px;
    color:#000;
    margin:0;
}

.childbirth-cover-box{
    max-width:1400px;
    margin:auto;
    background:#EFD7D2;
    border-radius:30px;
    padding:35px 60px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.childbirth-cover-content{
    flex:0 0 55%;
}

.childbirth-cover-content p{
    font-size:18px;
    margin-bottom:15px;
    color:#000;
}

.childbirth-cover-content ul{
    margin:0;
    padding-left:28px;
}

.childbirth-cover-content ul li{
    font-size:18px;
    line-height:1.9;
    color:#000;
}

.childbirth-cover-image{
    flex:0 0 35%;
    text-align:center;
}

.childbirth-cover-image img{
    max-width:100%;
    height:auto;
    display:block;
}

/*==================================
  TABLET
==================================*/

@media(max-width:1024px){

    .childbirth-cover-box{
        padding:30px;
        gap:30px;
    }

    .section-heading h2{
        font-size:2.4rem;
    }

    .childbirth-cover-content ul li{
        font-size:1.1rem;
        line-height:1.8;
    }
}

/*==================================
  MOBILE
==================================*/

@media(max-width:768px){

    .childbirth-cover-section{
        padding:50px 20px;
    }

    .section-heading h2{
        font-size:2rem;
        line-height:1.3;
    }

    .childbirth-cover-box{
        flex-direction:column;
        padding:25px 20px;
        gap:25px;
        border-radius:20px;
    }

    .childbirth-cover-content,
    .childbirth-cover-image{
        flex:100%;
        width:100%;
    }

    .childbirth-cover-content p{
        font-size:1.1rem;
    }

    .childbirth-cover-content ul li{
        font-size:1rem;
        line-height:1.8;
    }

    .childbirth-cover-image img{
        max-width:280px;
        margin:auto;
    }
}













/* Endoscopic Conditions Section */

.endo-conditions-section{
    padding: 50px 5%;
    overflow: hidden;
}

.endo-conditions-section .section-heading{
    text-align: center;
    margin-bottom: 40px;
}

.endo-conditions-section .section-heading h2{
    font-size: 35px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin: 0;
}

.endo-conditions-box{
    max-width: 650px;
    background:linear-gradient(
        to bottom,
        #faf7f6 0%,
       
        #f0ccc5 100%
    );
   border-radius:25px 0 0 25px;

    padding: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.endo-conditions-box p{
    font-size: 18px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.7;
}

.endo-conditions-box ul{
    margin: 0;
    padding-left: 28px;
}

.endo-conditions-box ul li{
    font-size: 18px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media(max-width:991px){

    .endo-conditions-section{
        padding: 60px 20px;
    }

    .endo-conditions-section .section-heading h2{
        font-size: 38px;
    }

    .endo-conditions-box{
        max-width: 100%;
        padding: 30px;
    }
}

@media(max-width:576px){

    .endo-conditions-section .section-heading h2{
        font-size: 30px;
    }

    .endo-conditions-box{
        padding: 25px 20px;
    }

    .endo-conditions-box p,
    .endo-conditions-box ul li{
        font-size: 18px;
    }
}










/* =========================
   MENOPAUSE INFO SECTION
========================= */

.meno-info-section{
    padding: 50px 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.meno-info-card{
    max-width: 650px;
    width: 100%;
    background: #ead8d4;
    border-radius: 24px;
    padding: 35px 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.meno-info-card:hover{
    transform: translateY(-3px);
}

.meno-info-title{
    font-size: 25px;
    line-height: 1.15;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
}

.meno-info-list{
    padding-left: 30px;
    margin-bottom: 25px;
}

.meno-info-list li{
    font-size: 1.25rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 18px;
}

.meno-info-list li strong{
    font-weight: 700;
}

.meno-info-text{
    font-size: 1.25rem;
    line-height: 1.8;
    color: #000;
    margin: 0;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px){

    .meno-info-section{
        padding: 40px 15px;
    }

    .meno-info-card{
        padding: 30px;
    }

    .meno-info-title{
        font-size: 2.4rem;
    }

    .meno-info-list li,
    .meno-info-text{
        font-size: 1.2rem;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px){

    .meno-info-section{
        padding: 25px 15px;
    }

    .meno-info-card{
        padding: 25px 20px;
        border-radius: 18px;
    }

    .meno-info-title{
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .meno-info-list{
        padding-left: 22px;
        margin-bottom: 20px;
    }

    .meno-info-list li{
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 14px;
    }

    .meno-info-text{
        font-size: 1rem;
        line-height: 1.7;
    }

}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px){

    .meno-info-card{
        padding: 20px 18px;
    }

    .meno-info-title{
        font-size: 1.7rem;
    }

    .meno-info-list li,
    .meno-info-text{
        font-size: 0.95rem;
    }

}










.nutrition-importance-section {
    padding: 50px 50px;
    background: #f3f3f3;
}

.nutrition-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: stretch;
}

/* Left Card */
.nutrition-card {
    flex: 1;
    background: #efe5e2;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.nutrition-card h2 {
    font-size: 35px;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #000;
    font-weight: 700;
}

.nutrition-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
}

.nutrition-card ul {
    padding-left: 28px;
}

.nutrition-card li {
    font-size: 20px;
    line-height: 1.8;
    color: #000;
}

/* Right Image */
.nutrition-image {
    flex: 1;
}

.nutrition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
}
@media (max-width: 991px) {

    .nutrition-container {
        flex-direction: column;
    }

    .nutrition-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .nutrition-card h2 {
        font-size: 36px;
    }

    .nutrition-card p {
        font-size: 18px;
    }

    .nutrition-card li {
        font-size: 17px;
        line-height: 1.7;
    }

    .nutrition-image img {
        height: 350px;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {

    .nutrition-importance-section {
        padding: 30px 15px;
    }

    .nutrition-card {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .nutrition-card h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .nutrition-card p {
        font-size: 17px;
    }

    .nutrition-card li {
        font-size: 16px;
        line-height: 1.6;
    }

    .nutrition-image img {
        height: 260px;
    }
}




























.ovulation-section{
    padding:50px 50px;
    background:#f4f4f4;
}

.ovulation-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:stretch;
    gap:10px;
}

.ovulation-content{
    flex:1;
    background:#f0dfdb;
    padding:40px 32px;
    border-radius:22px;
    box-shadow:0 3px 15px rgba(0,0,0,0.12);
}

.ovulation-content h2{
    font-size:35px;
    line-height:1.1;
    font-weight:700;
    color:#000;
    margin-bottom:25px;
}

.ovulation-content p{
    font-size:18px;
    line-height:1.7;
    color:#000;
    margin-bottom:10px;
}

.ovulation-image{
    flex:1;
}

.ovulation-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media (max-width:991px){

    .ovulation-container{
        flex-direction:column;
    }

    .ovulation-content{
        padding:30px 25px;
        border-radius:20px;
    }

    .ovulation-content h2{
        font-size:42px;
        margin-bottom:20px;
    }

    .ovulation-content p{
        font-size:18px;
        line-height:1.7;
    }

    .ovulation-image img{
        height:400px;
        margin-top:15px;
    }
}

@media (max-width:576px){

    .ovulation-section{
        padding:35px 15px;
    }

    .ovulation-content{
        padding:25px 20px;
        border-radius:18px;
    }

    .ovulation-content h2{
        font-size:32px;
        line-height:1.2;
    }

    .ovulation-content p{
        font-size:16px;
        line-height:1.8;
    }

    .ovulation-image img{
        height:250px;
        object-fit:cover;
    }
}