/* 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:#defbff;
    padding:50px 20px;
    margin-top:160px;
    overflow:hidden;
}

/* Container */

.general-pediatrics .container{
    max-width:1400px;
    margin:auto;

    padding-left:60px;
    padding-right:60px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

/* Left Content */

.content-box{
    flex:0 0 65%;
}

.content-box h2{
    font-size:30px;
    line-height:1.15;
    font-weight:700;
    color:#000;
    margin-bottom:30px;
}

.content-box h2 span{
    display:block;
}

.content-box p{
    font-size:18px;
    text-align: justify;
    line-height:1.6;
    color:black;
    margin-bottom:25px;
}

/* Right Image */

.image-box{
    flex:0 0 30%;
}

.image-box img{
    width:100%;
    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;
    }
}








/* =========================
   PEDIATRIC SERVICES
========================= */

.pediatric-services{
  overflow: hidden;
    padding:50px 50px;
}

.pediatric-service{
  overflow: hidden;
  background-color: #bcddeb;
    padding:50px 50px;
}

.pediatric-services .container{
    max-width:1400px;
    margin:auto;
    padding:0 60px;
}

/* Title */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    color:#000;
    line-height:1.2;
}

/* Layout */

.services-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

/* Left */

.services-content{
    flex:0 0 60%;
}

.intro{
    font-size:18px;
    color:black;
    margin-bottom:25px;
}

.services-content ul{
    padding-left:35px;
    margin:0;
}

.services-content ul li{
    font-size:18px;
    line-height:1.7;
    color:black;
    margin-bottom:2px;
}

.bottom-text{
    margin-top:40px;
    font-size:18px;
    line-height:1.7;
    color:black;
}

/* Right Image */

.services-image{
    flex:0 0 35%;
}

.services-image img{
    width:100%;
    display:block;
   height: 400px;
    border-radius:18px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.12);
}

/* =========================
   TABLET
========================= */

@media(max-width:1199px){

    .section-title h2{
        font-size:48px;
    }

    .services-wrapper{
        gap:50px;
    }

    .services-content ul li,
    .intro,
    .bottom-text{
        font-size:18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .pediatric-services{
        padding:70px 0;
    }

    .pediatric-services .container{
        padding:0 20px;
    }

    .services-wrapper{
        flex-direction:column-reverse;
        gap:40px;
    }

    .services-content,
    .services-image{
        width:100%;
        flex:0 0 100%;
    }

    .section-title h2{
        font-size:34px;
    }

    .intro{
        font-size:18px;
    }

    .services-content ul li{
        font-size:17px;
        line-height:1.6;
    }

    .bottom-text{
        font-size:18px;
    }

    .services-image img{
        max-width:500px;
        margin:auto;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .section-title{
        margin-bottom:35px;
    }

    .section-title h2{
        font-size:28px;
    }

    .intro,
    .bottom-text{
        font-size:16px;
    }

    .services-content ul{
        padding-left:22px;
    }

    .services-content ul li{
        font-size:15px;
    }
}



















/* =========================
   WHY PARENTS CHOOSE
========================= */

.why-pediatric-care{
   
    overflow: hidden;
    padding:50px 50px;
}

.why-pediatric-care .container{
    max-width:1400px;
    margin:auto;
    padding:0 60px;
}

/* Title */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title h2{
    font-size:35px;
    font-weight:700;
    color:#000;
    line-height:1.2;
}

/* Layout */

.why-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

/* Left Content */

.why-content{
    flex:0 0 60%;
}

.why-list{
    list-style:none;
    padding:0;
    margin:0;
}

.why-list li{
    position:relative;
    padding-left:30px;
    margin-bottom:10px;

    font-size:18px;
    line-height:1.5;
    color:#5d6773;
}

.why-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    font-weight:700;
    color:#5d6773;
}

.why-text{
    margin-top:35px;
    font-size:18px;
    line-height:1.6;
    color:#5d6773;
}

/* Right Image */

.why-image{
    flex:0 0 35%;
}

.why-image img{
    width:100%;
    display:block;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

/* =========================
   TABLET
========================= */

@media(max-width:1199px){

    .section-title h2{
        font-size:46px;
    }

    .why-wrapper{
        gap:50px;
    }

    .why-list li,
    .why-text{
        font-size:18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

    .why-pediatric-care{
        padding:70px 0;
    }

    .why-pediatric-care .container{
        padding:0 20px;
    }

    .why-wrapper{
        flex-direction:column-reverse;
        gap:40px;
    }

    .why-content,
    .why-image{
        width:100%;
        flex:0 0 100%;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:34px;
    }

    .why-list li{
        font-size:17px;
        padding-left:25px;
    }

    .why-text{
        font-size:17px;
        margin-top:25px;
    }

    .why-image img{
        max-width:500px;
        margin:auto;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:576px){

    .section-title h2{
        font-size:28px;
        line-height:1.3;
    }

    .why-list li{
        font-size:15px;
        margin-bottom:12px;
    }

    .why-text{
        font-size:15px;
    }
}


















/* =========================
   PEDIATRIC GRID SECTION
========================= */

.pediatric-services-grid{
    padding:50px 50px;
    background:#fff;
    overflow: hidden;
}

.pediatric-services-grid .container{
    max-width:1400px;
    margin:auto;
    padding:0 60px; /* side gap */
}

/* Title */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:35px;
    font-weight:700;
    color:#000;
}

/* Grid */

.service-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

/* Cards */

.service-card,
.service-image{
    height:350px;
    border-radius:16px;
    overflow:hidden;
}

.service-card{
    display:flex;
    align-items:center;
    justify-content:center;

    padding:25px;
    text-align:left;

    font-size:20px;
    line-height:1.5;
    font-weight:500;
}

/* Image */

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Colors */

.light-gray{
    background:#f1f1f1;
}

.light-blue{
    background:#dff3fb;
}

.dark-blue{
    background:#2f4f95;
    color:#fff;
}

.yellow{
    background:#f6d36c;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .pediatric-services-grid .container{
        padding:0 25px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .service-card,
    .service-image{
        height:220px;
    }

    .service-card{
        font-size:18px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .pediatric-services-grid{
        padding:60px 0;
    }

    .pediatric-services-grid .container{
        padding:0 15px;
    }

    .section-title h2{
        font-size:28px;
    }

    .service-grid{
        grid-template-columns:1fr;
    }

    .service-card,
    .service-image{
        height:200px;
    }

    .service-card{
        font-size:16px;
        padding:20px;
    }
}














.faq-section {
    padding: 50px 50px;
    background: #eef6fb;
    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;
    }
}















.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)
    );
}



























/* ==========================
   NICU SERVICES
========================== */

.nicu-services{
    padding:90px 0;
    background:#fff;
}

.nicu-services .container{
    max-width:1400px;
    margin:auto;
    padding:0 40px; /* side padding */
}

/* Heading */

.nicu-heading{
    text-align:center;
    margin-bottom:50px;
}

.nicu-heading h2{
    font-size:48px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.nicu-heading p{
    font-size:24px;
    font-weight:600;
    margin-bottom:10px;
}

.nicu-heading span{
    font-size:18px;
    color:#555;
}

/* Grid */

.nicu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px; /* neat gap */
}

/* Cards */

.nicu-card{
    border-radius:20px;
    padding:35px;
    min-height:250px;
}

.nicu-card h3{
    font-size:22px;
    margin-bottom:20px;
    line-height:1.4;
}

.nicu-card ul{
    padding-left:20px;
}

.nicu-card ul li{
    margin-bottom:10px;
    line-height:1.6;
    font-size:16px;
}

.nicu-card p{
    font-size:16px;
    line-height:1.7;
}

/* Colors */

.gray{
    background:#f2f2f2;
}

.blue-light{
    background:#dff3fb;
}

.yellow{
    background:#f7d36d;
}

.blue-dark{
    background:#2f4d94;
    color:#fff;
}

.blue-dark h3,
.blue-dark p{
    color:#fff;
}
/* ==========================
   NICU SERVICES
========================== */

.nicu-services{
    padding:90px 0;
    background:#fff;
}

.nicu-services .container{
    max-width:1400px;
    margin:auto;
    padding:0 40px; /* side padding */
}

/* Heading */

.nicu-heading{
    text-align:center;
    margin-bottom:50px;
}

.nicu-heading h2{
    font-size:40px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.nicu-heading p{
    font-size:24px;
    font-weight:600;
    margin-bottom:10px;
}

.nicu-heading span{
    font-size:18px;
    color:#555;
}

/* Grid */

.nicu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px; /* neat gap */
}

/* Cards */

.nicu-card{
    border-radius:20px;
    padding:35px;
    min-height:250px;
}

.nicu-card h3{
    font-size:18px;
    margin-bottom:20px;
    line-height:1.4;
}

.nicu-card ul{
    padding-left:20px;
}

.nicu-card ul li{
    margin-bottom:5px;
    line-height:1.6;
    font-size:14px;
}

.nicu-card p{
    font-size:16px;
    line-height:1.7;
}

/* Colors */

.gray{
    background:#f2f2f2;
}

.blue-light{
    background:#dff3fb;
}

.yellow{
    background:#f7d36d;
}

.blue-dark{
    background:#2f4d94;
    color:#fff;
}

.blue-dark h3,
.blue-dark p{
    color:#fff;
}















/* ==========================
   PICU SERVICES
========================== */

.picu-services{
    padding:50px 0;
    background:#fff;
}

.picu-services .container{
    max-width:1900px;
    margin:auto;
    padding:0 40px;
}

/* Heading */

.picu-heading{
    text-align:center;
    margin-bottom:50px;
}

.picu-heading h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.picu-heading p{
    max-width:1500px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
    color:#555;
}

/* Grid */

.picu-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

/* Cards */

.picu-card,
.picu-image{
    min-height:230px;
    border-radius:18px;
    overflow:hidden;
}

.picu-card{
    padding:30px;
}

.picu-card h3{
    font-size:18px;
    margin-top: 100px;
    margin-bottom:20px;
    line-height:1.4;
}

.picu-card ul{
    padding-left:20px;
}

.picu-card ul li{
    margin-bottom:8px;
    line-height:1.6;
}

.picu-card p{
    line-height:1.5;
}

/* Images */

.picu-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Colors */

.gray{
    background:#f1f1f1;
}

.blue-light{
    background:#dff3fb;
}

.yellow{
    background:#f6d06c;
}

.blue-dark{
    background:#2f4f95;
    color:#fff;
}

.blue-dark h3,
.blue-dark p,
.blue-dark li{
    color:#fff;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .picu-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .picu-services .container{
        padding:0 20px;
    }

    .picu-heading h2{
        font-size:32px;
    }

    .picu-card h3{
        font-size:20px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

    .picu-grid{
        grid-template-columns:1fr;
    }

    .picu-services{
        padding:60px 0;
    }

    .picu-heading h2{
        font-size:28px;
    }

    .picu-heading p{
        font-size:14px;
    }

    .picu-card,
    .picu-image{
        min-height:auto;
    }

    .picu-card{
        padding:22px;
    }

    .picu-card h3{
        font-size:18px;
    }

    .picu-card ul li,
    .picu-card p{
        font-size:14px;
    }
}











/* ==========================
   CHILD NUTRITION SECTION
========================== */

.child-nutrition{
    background:#defbff;
    overflow: hidden;
    margin-top: 190px;
    padding:50px 10px;
}

.child-nutrition .container{
    max-width:1400px;
    margin:auto;

    padding:0 50px; /* side padding */

    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:30px;
}

/* Left Content */

.nutrition-content{
    flex:0 0 68%;
}

.nutrition-content h2{
    font-size:35px;
    font-weight:700;
    color:#000;
    margin-bottom:25px;
    line-height:1.2;
}

.nutrition-content h3{
    font-size:35px;
    font-weight:700;
    margin:35px 0 20px;
    color:#000;
}

.nutrition-content p{
    font-size:16px;
    line-height:1.6;
    color:#222;
    margin-bottom:10px;
}

.nutrition-content ul{
    padding-left:35px;
    margin-bottom:20px;
}

.nutrition-content ul li{
    font-size:16px;
    line-height:1.8;
    margin-bottom:5px;
}

.bottom-text{
    margin-top:15px;
}

/* Right Image */

.nutrition-image{
    flex:0 0 35%;
}
.nutrition-image img{
    width:100%;
    height:600px;
    object-fit:cover;

    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}
@media(max-width:991px){

    .child-nutrition{
        padding:60px 0;
    }

    .child-nutrition .container{
        flex-direction:column-reverse;
        gap:35px;
        padding:0 20px;
    }

    .nutrition-content,
    .nutrition-image{
        width:100%;
        flex:0 0 100%;
    }

    .nutrition-content h2{
        font-size:34px;
    }

    .nutrition-content h3{
        font-size:28px;
    }

    .nutrition-content p,
    .nutrition-content ul li{
        font-size:17px;
        line-height:1.7;
    }

    .nutrition-image img{
        max-width:500px;
        margin:auto;
    }
}

@media(max-width:576px){

    .nutrition-content h2{
        font-size:28px;
    }

    .nutrition-content h3{
        font-size:24px;
    }

    .nutrition-content p,
    .nutrition-content ul li{
        font-size:15px;
    }

    .child-nutrition .container{
        padding:0 15px;
    }
}










/* ==========================
   ALLERGY CONDITIONS
========================== */

.allergy-conditions{
    padding:50px 0px;
    background:#fff;
}

.allergy-conditions .container{
    max-width:1900px;
    margin:auto;
    padding:0 0px;
}

/* Heading */

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading h2{
    font-size:35px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
  
}

.section-heading p{
    font-size:18px;
    line-height:1.7;
    color:#333;
}

.sub-text{
    max-width:1000px;
    margin:auto;
}

/* Grid */

.conditions-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
}


.condition-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}

/* Cards */

.condition-card{
    min-height:370px;

    padding:35px 35px;

    border-radius:24px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    transition:.3s;
}

.condition-card:hover{
    transform:translateY(-5px);
}

/* Heading */

.condition-card h3{
    font-size:18px;
    line-height:1.4;
    font-weight:700;

    margin-bottom:22px;

    color:#002855;
}

/* List */

.condition-card ul{
    padding-left:22px;
   
    margin:0;
}

.condition-card ul li{
    font-size:14px;
    line-height:1.5;
    margin-bottom:6px;
    text-align: justify;
    color:#111;
}

/* Colors */

.gray{
    background:#f2f2f2;
}

.blue{
    background:#dff5fb;
}

.yellow{
    background:#f8d46f;
}

/* ==========================
   LARGE TABLET
========================== */

@media(max-width:1200px){

    .conditions-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .condition-card{
        min-height:320px;
    }
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .allergy-conditions{
        padding:70px 0;
    }

    .allergy-conditions .container{
        padding:0 20px;
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:16px;
    }

    .conditions-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .condition-card{
        min-height:auto;
        padding:25px 20px;
    }

    .condition-card h3{
        font-size:18px;
        margin-bottom:18px;
    }

    .condition-card ul li{
        font-size:15px;
        line-height:1.7;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:576px){

    .allergy-conditions{
        padding:60px 0;
    }

    .allergy-conditions .container{
        padding:0 15px;
    }

    .section-heading h2{
        font-size:28px;
    }

    .section-heading p{
        font-size:15px;
    }

    .conditions-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .condition-card{
        padding:22px 18px;
        border-radius:18px;
    }

    .condition-card h3{
        font-size:18px;
    }

    .condition-card ul{
        padding-left:20px;
    }

    .condition-card ul li{
        font-size:14px;
        line-height:1.7;
    }
}















.laparoscopy-section {
    background: #dff1f8;
    padding: 80px 0;
}

.laparoscopy-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.laparoscopy-content h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #111;
}

.laparoscopy-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.laparoscopy-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.laparoscopy-content ul {
    padding-left: 22px;
    margin-bottom: 25px;
}

.laparoscopy-content ul li {
    font-size: 18px;
    line-height: 1.9;
}

.bottom-text {
    margin-top: 25px;
}

.laparoscopy-image-box img {
    width: 100%;
    max-width: 500px;
    border-radius: 14px;
    display: block;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.procedure-list {
    margin-top: 25px;
}

.procedure-list h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.procedure-list ul {
    padding-left: 22px;
}

.procedure-list li {
    font-size: 18px;
    line-height: 1.8;
}
@media (max-width: 991px) {

    .laparoscopy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .laparoscopy-content h2 {
        font-size: 36px;
    }

    .laparoscopy-image-box img {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .laparoscopy-section {
        padding: 60px 0;
    }

    .laparoscopy-content h2 {
        font-size: 30px;
    }

    .laparoscopy-content p,
    .laparoscopy-content ul li,
    .procedure-list li {
        font-size: 16px;
    }

    .laparoscopy-content h4,
    .procedure-list h4 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {

    .laparoscopy-content h2 {
        font-size: 26px;
    }

    .laparoscopy-wrapper {
        gap: 30px;
    }
}

















.support-section{
    padding:90px 0;
    background:#fff;
}

.support-heading{
    text-align:center;
    margin-bottom:70px;
}

.support-heading h2{
    font-size:35px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

.support-heading p{
    font-size:20px;
    color:#444;
}

.support-timeline{
    position:relative;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.timeline-line{
    position:absolute;
    top:235px;
    left:5%;
    width:90%;
    height:1px;
    background:#d9d9d9;
    z-index:0;
}

.support-item{
    position:relative;
    text-align:center;
    z-index:2;
}

.support-item img{
    width:180px;
    height:180px;
    border-radius:50%;
    object-fit:cover;
    margin:auto;
    display:block;
}

.step-circle{
    width:48px;
    height:48px;
    background:#001f3f;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    margin:30px auto 35px;
    position:relative;
    z-index:3;
}

.support-item h3{
    font-size:20px;
    line-height:1.5;
    font-weight:700;
    color:#10243e;
    margin-bottom:20px;
    min-height:80px;
}

.support-item ul{
    list-style:none;
    padding:0;
    margin:0;
}

.support-item ul li{
    font-size:16px;
    color:#666;
    line-height:1.9;
}
@media(max-width:991px){

    .support-timeline{
        grid-template-columns:1fr 1fr;
        gap:50px 30px;
    }

    .timeline-line{
        display:none;
    }

    .support-heading h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .support-section{
        padding:60px 0;
    }

    .support-timeline{
        grid-template-columns:1fr;
    }

    .support-item img{
        width:140px;
        height:140px;
    }

    .step-circle{
        width:42px;
        height:42px;
        font-size:18px;
    }

    .support-heading h2{
        font-size:30px;
    }

    .support-heading p{
        font-size:16px;
    }

    .support-item h3{
        font-size:22px;
        min-height:auto;
    }

    .support-item ul li{
        font-size:16px;
    }
}