

/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    overflow-x:hidden;
}

/* ===== TOP BAR ===== */
.top-bar{
    background:#ff8291;
    color:white;
    display:flex;
    justify-content:space-around;
    padding:12px 12px;
    font-size:14px;
}
.top-bar a {
    color: inherit;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}



/* =================================
   HEADER
=================================*/
header{
    width:100%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
}

/* =================================
   NAVBAR
=================================*/
.navbar{
    width:100%;
    max-width:1250px;
    margin:auto;
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    
}

/* LOGO */
.logo img{
    /* margin-top: 6px; */
    width:265px;
    /* height:250px; */
    
}

/* =================================
   NAV LINKS
=================================*/
#navLinks{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

#navLinks li{
    position:relative;
}

/* ONLY MAIN NAV LINKS */
#navLinks > li > a{
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    padding:30px 0;
    display:block;
    transition:.3s;
}

#navLinks > li > a:hover{
    color:#ff8291;
}

/* =================================
   DROPDOWN ARROW
=================================*/
.dropdown > a::after{
    content:"";
    display:inline-block;
    margin-left:7px;
    border:solid #333;
    border-width:0 2px 2px 0;
    padding:3px;
    transform:rotate(45deg);
    transition:.3s;
}

.dropdown:hover > a::after{
    transform:rotate(-135deg);
}

/* =================================
   DROPDOWN MENU (COMPACT FIX)
=================================*/
.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:300px;
    background:#f3f3f3;
    border-radius:8px;
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
    padding:4px 0;
    margin:0;
    list-style:none;
    z-index:999;

    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:0.25s ease;
}

.dropdown-menu li{
    margin:0;
    padding:0;
}

.dropdown-menu li a{
    display:block;
    padding:9px 16px;
    font-size:16px;
    line-height:1.25;
    color:#222;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu li a:hover{
    background:#fff;
    color:#ff8291;
}

/* SHOW */
.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

















/* =================================
   CALL BUTTON
=================================*/
.call-btn{
    background:#ff8291;
    color:#fff;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.call-btn:hover{
    background:#ff8291;
}

/* =================================
   MENU TOGGLE
=================================*/
#menuToggle{
    display:none;
    width:44px;
    height:44px;
    border:none;
    background:#ff8291;
    border-radius:10px;
    cursor:pointer;

    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:6px;
}

#menuToggle span{
    width:22px;
    height:2.5px;
    background:#fff;
    border-radius:3px;
    transition:.3s;
}

#menuToggle.active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
#menuToggle.active span:nth-child(2){
    opacity:0;
}
#menuToggle.active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}




/* =================================
   SMALL MOBILE
=================================*/
@media (max-width:480px){

    /* LOGO */
    .logo img{
        width:140px;
        margin-left:10px;
    }

    /* NAVBAR HEIGHT */
    .navbar{
        height:68px;
    }

    /* TOP BAR HIDE */
    .top-bar{
        display:none;
    }

    /* HERO SLIDER */
    .hero-slider{
        height:45vh;          /* mobile perfect height */
        min-height:200px;
    }

    /* SLIDE IMAGE FIX */
    .slide img{
        width:60%;          
        height:40%;         
        object-fit:cover;     
        object-position:center;
        display:block;
    }

    /* HERO CONTENT (optional better position) */
    .hero-content{
        left:15px;
        bottom:px;
        max-width:92%;
    }

    .hero-content h1{
        font-size:22px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:13px;
        line-height:1.5;
    }

    .btn{
        padding:9px 14px;
        font-size:13px;
    }
}



/* ===============================
   TABLET / LARGE MOBILE
=================================*/
@media (max-width:768px){

    /* HERO SIZE FIX */
    .hero-slider{
        height:55vh;
        min-height:360px;
    }

    .slide img{
        width:90%;
        height:80%;
        object-fit:cover;
        object-position:center;
        display:block;
    }

    /* TEXT POSITION UP */
    .hero-content{
        top:50%;
        left:25px;
        transform:translateY(-50%);
        bottom:auto;
        max-width:90%;
    }

    .hero-content h1{
        font-size:28px;
        line-height:1.3;
        margin-bottom:12px;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.5;
        margin-bottom:16px;
    }

    .btn{
        padding:10px 18px;
        font-size:14px;
    }
}







































/* ===================================
   HERO SLIDER MAIN
===================================*/
.hero-slider{
    position:relative;
    width:100%;
    height:82vh;
    min-height:520px;
    overflow:hidden;
}

/* ===================================
   SLIDE
===================================*/
.slide{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    opacity:0;
    transform:scale(1.05);
    transition:opacity 1s ease, transform 5s ease;
}

.slide.active{
    opacity:1;
    transform:scale(1);
    z-index:1;
}

/* ===================================
   IMAGE
===================================*/
.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

/* DARK OVERLAY FOR TEXT */
.slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(251, 208, 208, 0.35);
    z-index:1;
}

/* ===================================
   HERO CONTENT
===================================*/
.hero-content{
    position:absolute;
    left:60px;
    bottom:180px;
    max-width:620px;
    color:black;
    z-index:2;
}

/* HEADING */
.hero-content h1{
    font-size:46px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:16px;
}

/* PARAGRAPH */
.hero-content p{
    font-size:17px;
    line-height:1.6;
    margin-bottom:24px;
    color:#0d0d0d;
    font-style: italic;
    font-weight: 500;
}

/* BUTTON GROUP */
.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* ===================================
   BUTTON STYLE
===================================*/
.btn{
    background:#ff8291;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    transition:0.3s;
}

.btn:hover{
    background:#e53935;
    transform:translateY(-3px);
}

/* SECOND BUTTON OPTIONAL STYLE */
.btn.secondary{
    background:transparent;
    border:2px solid #fff;
}

.btn.secondary:hover{
    background:#fff;
    color:#222;
}

/* ===================================
   SLIDER NAV DOTS (OPTIONAL)
===================================*/
.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:8px;
    z-index:3;
}

.slider-dots span{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.5;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.slider-dots span.active{
    opacity:1;
    background:#ff4b3e;
}

/* ===================================
   TABLET RESPONSIVE
===================================*/
@media(max-width:992px){

    .hero-slider{
        height:70vh;
        min-height:450px;
    }

    .hero-content{
        left:30px;
        bottom:50px;
        max-width:90%;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:15px;
    }

    .btn{
        padding:11px 20px;
    }
}

/* ===================================
   MOBILE RESPONSIVE
===================================*/
@media(max-width:768px){

    .hero-slider{
        height:60vh;
        min-height:380px;
    }

    .hero-content{
        left:20px;
        bottom:28px;
        max-width:92%;
    }

    .hero-content h1{
        font-size:26px;
        line-height:1.3;
    }

    .hero-content p{
        font-size:14px;
        line-height:1.5;
        margin-bottom:18px;
    }

    .hero-buttons{
        gap:10px;
    }

    .btn{
        padding:10px 16px;
        font-size:14px;
    }
}

/* ===================================
   EXTRA SMALL MOBILE
===================================*/
@media(max-width:480px){

    .hero-slider{
        height:55vh;
        min-height:340px;
    }

    .hero-content h1{
        font-size:22px;
    }

    .hero-content p{
        font-size:13px;
    }
}











/* =================================
   MAIN SECTION
=================================*/
.premium-doctor{
    display:grid;
    grid-template-columns:1.1fr 1.4fr;
    min-height:620px;
    background:#fff;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* =================================
   LEFT SIDE (PREMIUM LOOK)
=================================*/
.doctor-left{
    padding:70px 55px;
    background:linear-gradient(135deg,#fafafa,#ffffff);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.doctor-left h2{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin-bottom:22px;
}

.doctor-left p{
    font-size:17px;
    line-height:1.7;
    color:#555;
    margin-bottom:30px;
}

/* BUTTONS */
.doctor-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.p-btn{
    background:#ff8291;
    color:#fff;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.p-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(255,75,62,0.35);
}

/* outline button */
.p-btn.outline{
    background:transparent;
    border:2px solid #ff8291;
    color:#ff8291;
}

.p-btn.outline:hover{
    background:#ff4b3e;
    color:#fff;
}

/* =================================
   RIGHT GRID
=================================*/
.doctor-right{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

/* CARD */
.service-card{
    background:#fff9f9;
    border:1px solid #ececec;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:35px 20px;
    transition:.35s;
}

.service-card.blue{
    background:#fea7b1;
}

/* ICON CIRCLE (PREMIUM TOUCH) */
.service-card i{
    width:78px;
    height:78px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    color:#ff8291;
    margin-bottom:18px;
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* TEXT */
.service-card h4{
    font-size:22px;
    font-weight:600;
    color:#222;
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-6px);
    background:#fff;
    box-shadow:0 12px 25px rgba(0,0,0,0.10);
}

/* =================================
   TABLET
=================================*/
@media(max-width:992px){

    .premium-doctor{
        grid-template-columns:1fr;
    }

    .doctor-left{
        padding:50px 30px;
    }

    .doctor-left h2{
        font-size:34px;
    }

    .doctor-right{
        grid-template-columns:repeat(2,1fr);
    }
}

/* =================================
   MOBILE
=================================*/
@media(max-width:768px){

    .doctor-left h2{
        font-size:28px;
    }

    .doctor-left p{
        font-size:15px;
    }

    .doctor-right{
        grid-template-columns:1fr;
    }

    .service-card{
        padding:28px 15px;
    }

    .service-card h4{
        font-size:20px;
    }
}



















/* =================================
   FEATURES SECTION
=================================*/
.hospital-features{
    width:100%;
    background:linear-gradient(#fce3e3,#fff);
    padding:55px 5%;
    display:flex;
    gap:25px;
    justify-content:center;
    flex-wrap:wrap;
    margin-top: 50px;
}

/* CARD */
.feature-card{
    background:#fff;
    width:240px;
    min-height:180px;
    border-radius:10px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 3px 12px rgba(214, 82, 82, 0.08);
    transition:.3s;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* ICON */
.feature-card i{
    font-size:48px;
    margin-bottom:18px;
}

/* ICON COLORS */
.feature-card:nth-child(1) i{ color:#1e73e8; }
.feature-card:nth-child(2) i{ color:#1f9d66; }
.feature-card:nth-child(3) i{ color:#e63946; }
.feature-card:nth-child(4) i{ color:#f4b400; }
.feature-card:nth-child(5) i{ color:#21b5d8; }

/* TITLE */
.feature-card h4{
    font-size:24px;
    font-weight:600;
    color:#111;
    line-height:1.4;
    margin-bottom:8px;
}

/* SUBTEXT */
.feature-card p{
    font-size:22px;
    color:#333;
    margin:0;
}

/* HOVER */
.feature-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(0,0,0,0.12);
}

/* =================================
   TABLET
=================================*/
@media(max-width:992px){
    .feature-card{
        width:45%;
    }
}

/* =================================
   MOBILE
=================================*/
@media(max-width:768px){
    .feature-card{
        width:100%;
        max-width:340px;
    }
}



































/* ===============================
   FLOATING ICONS (ALL SCREENS)
=================================*/
.floating-icons{
    position:fixed !important;
    left:15px !important;
    bottom:40px !important;
    display:flex !important;
    flex-direction:column !important;
    gap:12px !important;
    z-index:999999 !important;
    pointer-events:auto !important;
    visibility:visible !important;
    opacity:1 !important;
}

a.float-btn{
    width:52px !important;
    height:52px !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#fff !important;
    font-size:20px !important;
    text-decoration:none !important;
    box-shadow:0 8px 20px rgba(0,0,0,0.25) !important;
    transition:all 0.35s ease !important;
    pointer-events:auto !important;
    visibility:visible !important;
    opacity:1 !important;
}

/* COLORS */
a.float-btn.call{
    background:linear-gradient(135deg,#007bff,#0056d2) !important;
}

a.float-btn.whatsapp{
    background:linear-gradient(135deg,#25D366,#1DA851) !important;
}

a.float-btn.location{
    background:linear-gradient(135deg,#ff4b3e,#ff704d) !important;
}

/* HOVER EFFECT */
a.float-btn:hover{
    transform:translateY(-5px) scale(1.1) !important;
    box-shadow:0 12px 24px rgba(0,0,0,0.35) !important;
}


/* ===============================
   TABLET (768px - 992px)
=================================*/
@media(max-width:992px) and (min-width:769px){
    .floating-icons{
        left:15px !important;
        bottom:35px !important;
        display:flex !important;
        z-index:999999 !important;
        visibility:visible !important;
    }

    a.float-btn{
        width:50px !important;
        height:50px !important;
        font-size:19px !important;
        display:flex !important;
        visibility:visible !important;
    }
}


/* ===============================
   MOBILE (481px - 768px)
=================================*/
@media(max-width:768px) and (min-width:481px){
    .floating-icons{
        left:12px !important;
        bottom:30px !important;
        display:flex !important;
        z-index:999999 !important;
        visibility:visible !important;
    }

    a.float-btn{
        width:48px !important;
        height:48px !important;
        font-size:18px !important;
        display:flex !important;
        visibility:visible !important;
    }
}

/* ===============================
   SMALL MOBILE (up to 480px)
=================================*/
@media (max-width:480px){
    .floating-icons{
        left:12px !important;
        bottom:25px !important;
        gap:10px !important;
        display:flex !important;
        z-index:999999 !important;
        visibility:visible !important;
        opacity:1 !important;
    }

    a.float-btn{
        width:46px !important;
        height:46px !important;
        font-size:18px !important;
        display:flex !important;
        visibility:visible !important;
        opacity:1 !important;
    }
}

/* ===============================
   LARGE SCREENS (Desktop/Laptop)
=================================*/
@media(min-width:993px){
    .floating-icons{
        left:20px !important;
        bottom:40px !important;
        display:flex !important;
        z-index:999999 !important;
        visibility:visible !important;
    }

    a.float-btn{
        width:54px !important;
        height:54px !important;
        font-size:21px !important;
        display:flex !important;
        visibility:visible !important;
    }
}



/* ===== MOBILE ===== */
@media(max-width:992px){

    #menuToggle{
        display:block;
    }

    #navLinks{
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        max-height:calc(100vh - 85px);
        background:#fff;
        flex-direction:column;
        align-items:center;
        padding:15px 20px;
        display:none;
        box-shadow:0 8px 20px rgba(0,0,0,0.1);
        z-index:999;
        overflow-y:auto;
        overflow-x:hidden;
        gap:8px;
    }

    #navLinks.active{
        display:flex;
    }

    #navLinks > li{
        width:100%;
        margin:0;
        text-align:center;
    }

    #navLinks > li > a{
        padding:12px 0;
        display:block;
        text-align:center;
    }

    /* MOBILE DROPDOWN FIX */
    .dropdown{
        width:100%;
        text-align:center;
    }

    .dropdown > a{
        text-align:center;
        display:block;
    }

    .dropdown > a::after{
        display:inline-block;
    }

    .dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        background:transparent;
        display:none;
        width:100%;
        padding:4px 0;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }

    .dropdown-menu li{
        text-align:center;
    }

    .dropdown-menu li a{
        padding:8px 20px;
        font-size:14px;
        background:#f9f9f9;
        margin:3px auto;
        border-radius:6px;
        display:block;
        text-align:center;
    }

    .call-btn{
        display:none;
    }

    .top-bar{
        flex-direction:column;
        text-align:center;
        gap:4px;
    }

    .hero-slider{
        height:60vh;
    }

    .hero-content{
        left:20px;
        bottom:20px;
    }

    .btn{
        padding:10px 16px;
        font-size:14px;
    }
}






















/* ==============================
   ABOUT SECTION
==============================*/
.about-doctor{
 background:linear-gradient(#fce3e3,#fff);
    padding:70px 20px;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* IMAGE */
.about-image img{
    width:90%;
    height: 60%;
    /* display:block; */
    border-radius:10px;
    box-shadow:0 8px 20px rgba(255, 215, 215, 0.15);
}

/* CONTENT */
.about-content{
    color:#111;
}

.about-tag{
    color:#ff8291;
    font-size:18px;
    font-weight:600;
    display:inline-block;
    margin-bottom:8px;
}

.about-content h2{
    font-size:36px;
    margin-bottom:15px;
    font-weight:700;
}

.about-content p{
    font-size:16px;
    line-height:1.7;
    color:#444;
    margin-bottom:14px;
}

.highlight b{
    color:#ff8291;
    font-weight:600;
}

/* LIST */
.about-content ul{
    list-style:none;
    padding:0;
    margin:18px 0 25px;
}

.about-content ul li{
    position:relative;
    padding-left:22px;
    margin-bottom:10px;
    font-size:15px;
    color:#333;
}

.about-content ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#ff8291;
}

/* BUTTON */
.about-btn{
    display:inline-block;
    background:#ff8291;
    color:#fff;
    padding:11px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#ff667b;
    transform:translateY(-2px);
}

/* ==============================
   TABLET
==============================*/
@media (max-width:992px){

    .about-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    /* IMAGE CENTER */
    .about-image{
        display:flex;
        justify-content:center;
        align-items:center;
        margin-bottom:20px;
    }

    .about-image img{
        max-width:320px;
        width:100%;
    }

    .about-content h2{
        font-size:30px;
    }
}


/* ==============================
   MOBILE
==============================*/
@media (max-width:768px){

    .about-doctor{
        padding:50px 15px;
    }

    /* IMAGE PERFECT CENTER */
    .about-image{
        display:flex;
        justify-content:center;
        align-items:center;
        text-align:center;
        margin-bottom:20px;
    }

    .about-image img{
        width:100%;
        max-width:400px;
        margin:auto;
        display:block;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:26px;
    }

    .about-content p,
    .about-content ul li{
        font-size:14px;
    }
}
































/* ===============================
   SECTION
=================================*/
.contact-section{
    background:#f6f6f6;
    padding:70px 20px;
}

/* MAIN CARD */
.contact-card{
    max-width:1150px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* LEFT SIDE */
.contact-left{
    background:#fff;
    padding:45px 35px;
}

.contact-left h2{
    font-size:28px;
    margin-bottom:25px;
}

.info{
    display:flex;
    gap:14px;
    margin-bottom:22px;
}

.info i{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ff8291;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.info h4{
    margin:0;
    font-size:15px;
}

.info p{
    margin:3px 0 0;
    font-size:14px;
    color:#555;
}

/* RIGHT FORM */
.contact-right{
    background:#fff8fa;
    padding:45px 35px;
}

.contact-right h3{
    margin-bottom:20px;
    font-size:24px;
}

#waForm{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

#waForm input,
#waForm select,
#waForm textarea{
    width:100%;
    padding:13px 14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:14px;
    outline:none;
}

#waForm input:focus,
#waForm select:focus,
#waForm textarea:focus{
    border-color:#ff8291;
    box-shadow:0 0 0 3px rgba(255,130,145,.15);
}

#waForm button{
    background:#ff8291;
    color:#fff;
    border:none;
    padding:13px;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

#waForm button:hover{
    background:#ff6578;
    transform:translateY(-2px);
}

/* MAP */
.map-wrap{
    max-width:1150px;
    margin:24px auto 0;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.map-wrap iframe{
    width:100%;
    height:350px;
    border:0;
}

/* MOBILE */
@media(max-width:768px){
    .contact-card{
        grid-template-columns:1fr;
    }

    .row{
        grid-template-columns:1fr;
    }

    .contact-left,
    .contact-right{
        padding:30px 20px;
    }
}


















/* CARE SECTION */
.care-section{
    width:80%;
    margin:auto;
    padding:40px 0;
     background:linear-gradient(#fce3e3,#fff);
}

/* HEADING */
.heading{
    text-align:center;
    margin-bottom:30px;
}

.heading p{
    font-style:italic;
    font-size:18px;
    color:#222;
}

.heading h2{
    font-size:40px;
    font-weight:600;
    margin-top:8px;
}

/* GRID */
.cards-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

/* CARD */
.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    align-items:stretch;          /* FIX alignment */
    min-height:220px;
    box-shadow:0 4px 14px rgba(0,0,0,0.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 24px rgba(0,0,0,0.12);
}

/* IMAGE FIX */
.card img{
    width:240px;
    height:100%;                  /* FULL CARD HEIGHT */
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .6s ease;
}


.card img{
    transition: transform 0.6s ease;
}



/* ===== IMAGE FLIP (LEFT ↔ RIGHT) ===== */

/* OPTION 2 → Flip on hover (Recommended) */
.card:hover img{
    transform: scaleX(-1);
}

/* CONTENT */
.card-content{
  flex:1;
    padding:18px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.card-content h3{
    font-size:28px;
    margin-bottom:8px;
    color:#222;
}

.card-content p{
    color:#444;
    margin-bottom:12px;
    font-size:16px;
    line-height:1.5;
}

.card-content a{
    color:#00a8ff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.card-content a:hover{
    text-decoration:underline;
}

/* MOBILE */
@media(max-width:900px){

    .cards-container{
        grid-template-columns:1fr;
    }

    .card{
        flex-direction:column;
        align-items:flex-start;
    }

    .card img{
        width:100%;
        height:220px;
    }

    .card-content h3{
        font-size:24px;
    }
}



















/* ==============================
   CARE SECTION (FIXED PREMIUM)
=================================*/
.care-section{
    width:100%;
    padding:70px 6%;
    background:linear-gradient(180deg,#fff3f6,#ffffff); /* background color */
}

/* HEADING */
.care-section .heading{
    text-align:center;
    margin-bottom:45px;
}

.care-section .heading p{
    font-style:italic;
    font-size:18px;
    color:#666;
}

.care-section .heading h2{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin-top:8px;
}

/* GRID */
.cards-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

/* CARD */
.card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    align-items:center;
    min-height:200px;
    box-shadow:0 4px 14px rgba(0,0,0,0.06);
    transition:0.35s ease;
}

.card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

/* IMAGE */
.card img{
    width:240px;
    height:200px;
    object-fit:cover;
    transition:transform .6s ease;
}

/* IMAGE ANIMATION */
.card:hover img{
    transform:scale(1.08);
}

/* CONTENT */
.card-content{
    padding:20px 22px;
    flex:1;
}

.card-content h3{
    font-size:24px;
    margin-bottom:8px;
    color:#222;
    line-height:1.3;
}

.card-content p{
    font-size:15px;
    color:#555;
    line-height:1.6;
    margin-bottom:12px;
}

.card-content a{
    color:#ff5a6e;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.card-content a:hover{
    color:#e53935;
    text-decoration:underline;
}

/* ==============================
   TABLET
=================================*/
@media(max-width:900px){

    .cards-container{
        grid-template-columns:1fr;
    }

    .card{
        flex-direction:column;
        align-items:flex-start;
    }

    .card img{
        width:100%;
        height:230px;
    }

    .card-content{
        padding:18px;
    }

    .card-content h3{
        font-size:22px;
    }
}

/* ==============================
   MOBILE
=================================*/
@media(max-width:480px){

    .care-section{
        padding:50px 15px;
    }

    .care-section .heading h2{
        font-size:30px;
    }

    .card img{
        height:200px;
    }

    .card-content h3{
        font-size:20px;
    }

    .card-content p{
        font-size:14px;
    }
}






/* ===== STATS SECTION ===== */
.stats-section{
    position: relative;
    width: 100%;
    padding: 70px 20px;
    background: linear-gradient(rgba(247, 189, 207, 0.9),
                rgba(255, 255, 255, 0.9)),
                url('assets/banner\ 2.jpg'); 
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 10px;
}

.stats-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box i{
    font-size: 34px;
    color: #000;
    margin-bottom: 15px;
}

.stat-box h2{
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.stat-box p{
    font-size: 28px;
    color: #000;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .stats-container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .stats-container{
        grid-template-columns: 1fr;
    }

    .stat-box h2{
        font-size: 40px;
    }
}





/* ===== GALLERY SECTION ===== */
.gallery-section{
    width: 100%;
    background: linear-gradient(rgba(247,189,207,0.9),
                rgba(255,255,255,0.9)),
                url('assets/banner 1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px 20px;
}

/* ===== HEADING ===== */
.gallery-heading{
    text-align: center;
    margin-bottom: 35px;
}

.gallery-heading span{
    font-size: 28px;
    color: #ff8291;
    font-family: cursive;
}

.gallery-heading h2{
    font-size: 45px;
    font-weight: 700;
    color: #000;
    margin: 5px 0 15px;
}

.gallery-heading .line{
    width: 120px;
    height: 3px;
    background: #ff8291;
    margin: auto;
    border-radius: 5px;
}

/* ===== GRID ===== */
.gallery-container{
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

/* ===== IMAGE BOX ===== */
.gallery-item{
    position: relative;       /* VERY IMPORTANT */
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid #ff8291;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    background: #fff;
    transition: 0.3s ease;
}

.gallery-item img{
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

/* hover animation */
.gallery-item:hover{
    transform: translateY(-5px);
}

.gallery-item:hover img{
    transform: scale(1.05);
}

/* ===== DARK OVERLAY ===== */
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-item:hover .overlay{
    opacity: 1;
}

/* ===== PLUS BUTTON ===== */
.plus{
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    font-size: 42px;
    font-weight: bold;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}

.plus:hover{
    transform: scale(1.1);
}

/* ===== LIGHTBOX ===== */
.lightbox{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox-img{
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
}

/* arrows */
.prev,.next{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 35px;
    padding: 10px 15px;
    cursor: pointer;
}

.prev{ left: 30px; }
.next{ right: 30px; }

.close{
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 45px;
    color: #fff;
    cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .gallery-container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-container{
        grid-template-columns: 1fr;
    }

    .gallery-heading h2{
        font-size: 32px;
    }
}
















/* ===== VIDEO GALLERY SECTION ===== */
.video-gallery{
    width: 100%;
    background: linear-gradient(rgba(247,189,207,0.9),
                rgba(255,255,255,0.9));
    padding: 60px 20px;
}

/* heading */
.video-heading{
    text-align: center;
    margin-bottom: 35px;
}

.video-heading h2{
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.video-heading p{
    font-size: 22px;
    color: #666;
}

/* video grid */
.video-container{
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

/* video box */
.video-box{
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    background: #000;
    transition: 0.3s ease;
}

.video-box iframe{
    width: 100%;
    height: 250px;
    border: none;
    display: block;
}

/* hover */
.video-box:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.25);
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
    .video-container{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){
    .video-container{
        grid-template-columns: 1fr;
    }

    .video-heading h2{
        font-size: 32px;
    }
}

















/* ===== SECTION ===== */
.testimonial-section{
    width:100%;
    padding:80px 40px;
    background:linear-gradient(rgba(247,189,207,0.9),
               rgba(255,255,255,0.9));
    font-family:'Poppins', sans-serif;
    box-sizing:border-box;
}

/* HEADING */
.testimonial-heading{
    text-align:center;
    margin-bottom:35px;
}

.testimonial-heading h2{
    font-size:36px;
    font-weight:700;
    margin:0;
}

/* ===== CONTAINER (ROW) ===== */
.testimonial-container{
    width:100%;
    max-width:1400px;
    margin:auto;
   

    display:flex;
    gap:20px;

    overflow-x:auto;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

/* SCROLLBAR LOOK */
/* .testimonial-container::-webkit-scrollbar{
    height:8px;
}
.testimonial-container::-webkit-scrollbar-thumb{
    background:#999;
    border-radius:10px;
} */

/* ===== CARD ===== */
.testimonial-card{
    width:320px;
    height:380px;

    background:#fff;
    border-radius:16px;
    padding:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);

    display:flex;
    flex-direction:column;
    gap:12px;

    /* flex-shrink:0; */
    box-sizing:border-box;
    overflow:hidden;

    transition:0.3s ease;
}

.testimonial-card:hover{
    transform:translateY(-4px);
}

/* IMAGE */
.testimonial-card img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

/* CONTENT */
.testimonial-content{
    flex:1;
    overflow-y:auto;
}

.testimonial-content h5{
    margin:0 0 8px;
    font-size:24px;
    font-weight:700;
}

.testimonial-content p{
    margin:0;
    font-size:16px;
    line-height:1.6;
    color:#444;
}

/* ===== TABLET ===== */
@media (max-width:992px){

    .testimonial-container{
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        padding-bottom:10px;
    }

    .testimonial-container::-webkit-scrollbar{
        display:none;
    }

    .testimonial-card{
        flex:0 0 100%;
        max-width:100%;
        scroll-snap-align:center;
    }
}


/* ===== MOBILE ===== */
@media (max-width:768px){

    .testimonial-container{
        overflow-x:auto;
        scroll-snap-type:x mandatory;
        gap:15px;
    }

    .testimonial-card{
        flex:0 0 100%;
        max-width:100%;
        min-width:100%;
        scroll-snap-align:center;
    }
}






















/* ===== BANNER SECTION ===== */
.banner{
    width:100%;
    height:380px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;

    /* background image */
    background:url("assets/about\ banner.jpg") center center/cover no-repeat;
}

/* light overlay effect */
.banner::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    /* background:rgba(255,255,255,0.55); */
    z-index:1;
}

/* Banner Box */
.banner-box{
    position:relative;
    z-index:2;
    width:75%;
    max-width:1100px;
    padding:15px 18px;
    border:2px solid #ff8291;
    border-radius:80px;
    text-align:center;
    background:rgba(255,255,255,0.25);
    backdrop-filter:blur(4px);
}

/* Heading */
.banner-box h1{
    font-size:48px;
    font-weight:700;
    color:#000;
    margin-bottom:15px;
}

/* Breadcrumb */
.breadcrumb{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.breadcrumb a{
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    color:#000;
    transition:0.3s;
}

.breadcrumb a:hover{
    color:#ff8291;
}

.breadcrumb span{
    font-size:20px;
    font-weight:600;
}

/* ===== Responsive ===== */
@media(max-width:768px){

    .banner{
        height:280px;
    }

    .banner-box{
        width:95%;
        padding:25px 15px;
        border-radius:35px;
    }

    .banner-box h1{
        font-size:24px;
        line-height:1.3;
    }

    .breadcrumb a{
        font-size:14px;
    }
}








/* ===============================
   FAQ SECTION
=================================*/
.faq-section{
    background:#f7f7f7;
    padding:70px 20px;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-container h2{
    text-align:center;
    font-size:34px;
    margin-bottom:10px;
    color:#111;
}

.faq-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:35px;
}

/* FAQ ITEM */
.faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:14px;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
    overflow:hidden;
}

/* QUESTION */
.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:18px 20px;
    font-size:17px;
    font-weight:600;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    transition:.3s;
}

.faq-question:hover{
    background:#fff5f7;
}

.faq-question span{
    font-size:22px;
    color:#ff8291;
    transition:.3s;
}

/* ANSWER */
.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    background:#fff;
}

.faq-answer p{
    padding:0 20px 18px;
    margin:0;
    color:#555;
    line-height:1.6;
    font-size:15px;
}

/* ACTIVE */
.faq-item.active .faq-answer{
    max-height:180px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

/* MOBILE */
@media(max-width:768px){
    .faq-container h2{
        font-size:26px;
    }

    .faq-question{
        font-size:15px;
    }
}




































/* ===============================
   FOOTER MAIN
=================================*/
.footer{
    background: linear-gradient(135deg,#fea7b1,#fefefe);
    color:#000;
    padding:70px 0 25px;
    position:relative;
    overflow:hidden;
}

.footer::before{
    content:"";
    position:absolute;
    top:-80px;
    right:-80px;
    width:220px;
    height:220px;
    background:rgba(255,75,62,0.18);
    border-radius:50%;
    filter:blur(70px);
}




/* ===============================
   CONTAINER
=================================*/
.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:50px;
}





/* ===============================
   LOGO + ABOUT
=================================*/
.footer-logo{
    width:265px;
    margin-bottom:18px;
    border-radius: 10px;
}

.footer-points{
    list-style:none;
    color:#000;
    line-height:1.8;
    font-size:15px;
    margin-bottom:20px;
}






/* ===============================
   HEADINGS
=================================*/
.footer-col h3{
    font-size:22px;
    margin-bottom:18px;
    position:relative;
    font-weight:600;
}

.footer-col h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:38px;
    height:3px;
    background:#ff4b3e;
    border-radius:4px;
}








/* ===============================
   LINKS
=================================*/
.footer-col a{
    display:block;
    margin-bottom:12px;
    color:#000;
    text-decoration:none;
    font-size:15px;
    transition:0.3s;
}

.footer-col a:hover{
    color:#ff4b3e;
    padding-left:6px;
}





/* ===============================
   CONTACT ITEMS FIX
=================================*/

.contact-item{
    display:flex;
    align-items:center;   /* ✅ center alignment */
    gap:12px;
    margin-bottom:14px;
}

.contact-item i{
    min-width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    color:#fff;
    background:linear-gradient(135deg,#ff4b3e,#ff6a5c);
    box-shadow:0 4px 10px rgba(255,75,62,0.35);
}

.contact-item p{
    margin:0;
    font-size:15px;
    line-height:1.6;
    color:#000;
}
.contact-item:hover p{
    color:#ff4b3e;
}

/* ===============================
   SOCIAL ICONS
=================================*/
.social-icons{
    display:flex;
    gap:12px;
    margin-top:15px;
    flex-wrap:wrap;
}

.social-icons a{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:17px;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 6px 14px rgba(0,0,0,.25);
}

.social-icons a:hover{
    transform:translateY(-5px) scale(1.1);
}


.facebook{background:#1877f2;}
.whatsapp{background:#25D366;}
.instagram{background:#E1306C;}
.youtube{background:#FF0000;}
.gmail{background:#EA4335;}














/* ===============================
   FOOTER BOTTOM
=================================*/
.footer-bottom{
    border-top:2px solid rgba(16, 15, 15, 0.15);
    margin-top:40px;
    padding-top:16px;
    width:90%;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;

    font-size:14px;
    color:#000;
}

.footer-bottom span{
    color:#ffb347;
}

.footer-bottom .designer{
    display:flex;
    align-items:center;
    gap:8px;
}

.footer-bottom .designer img{
    height:26px;
    width:auto;
}




/* ===============================
   RESPONSIVE TABLET
=================================*/
@media(max-width:992px){

    .footer-container{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

    .footer-container,
    .footer-col{
        text-align:left;
    }
}

/* ===============================
   RESPONSIVE MOBILE
=================================*/
@media(max-width:768px){

    .footer{
        padding:55px 0 20px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-col h3::after{
        left:0;
        transform:none;
    }

    .social-icons{
        justify-content:flex-start;
    }

    .contact-item{
        justify-content:flex-start;
        text-align:left;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;   
        text-align:left;
    }

    .footer-bottom .designer{
        justify-content:flex-start;
    }

     
    .floating-btn,
    .floating-buttons,
    .floating-icons{
        display:none !important;
    }
}




/* ===============================
   SMALL MOBILE (extra)
=================================*/
@media(max-width:480px){

    .footer-logo{
        width:170px;
    }

    .footer-col h3{
        font-size:20px;
    }

    .footer-col a,
    .contact-item p{
        font-size:14px;
    }
}





/* 

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
     background: linear-gradient(rgba(243, 193, 199, 0.4),
                rgba(255,255,255,0.9)); 

} */






/* =====================================
   ECTOPIC / VAGINAL PROLAPSE SECTION
=====================================*/

.ectopic-section{
    width:100%;
    padding:70px 0;
    position:relative;
    overflow:hidden;

    background:linear-gradient(-45deg,
        #f8e6e6,
        #fff5f7,
        #ffeef1,
        #ffffff
    );
    background-size:400% 400%;
    animation:bgMove 10s ease infinite;
}

/* Animated Background */
@keyframes bgMove{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

/* ===== SECTION TITLE ===== */
.ectopic-title{
    width:92%;
    max-width:1300px;
    margin:0 auto 35px;
    font-size:40px;
    font-weight:700;
    color:#111;
    font-family:'Playfair Display', serif;
}

/* ===== MAIN CONTAINER ===== */
.ectopic-container{
    width:92%;
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;
}

/* ===== LEFT CONTENT ===== */
.ectopic-content{
    width:100%;
}

/* IMAGE */
.ectopic-content img{
    width:70%;
    height:420px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin-bottom:28px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* HEADINGS */
.ectopic-content h3{
    font-size:26px;
    font-weight:700;
    color:#ff5d73;
    margin:28px 0 14px;
    font-family:'Playfair Display', serif;
    line-height:1.3;
}

/* PARAGRAPH */
.ectopic-content p{
    font-size:16px;
    line-height:1.9;
    color:#333;
    margin-bottom:18px;
    font-family:'Poppins', sans-serif;
}

/* STRONG TEXT */
.ectopic-content strong{
    color:#111;
    font-weight:600;
}

/* LISTS */
.ectopic-content ul,
.ectopic-content ol{
    padding-left:24px;
    margin-bottom:22px;
}

/* LIST ITEMS */
.ectopic-content li{
    font-size:16px;
    line-height:1.8;
    color:#333;
    margin-bottom:10px;
    font-family:'Poppins', sans-serif;
}

/* BULLET COLOR */
.ectopic-content ul li::marker,
.ectopic-content ol li::marker{
    color:#ff5d73;
    font-weight:700;
}

/* ===== RIGHT SERVICE BOX ===== */
.service-box{
    width:100%;
    background:#fff;
    border:2px solid #ff8291;
    border-radius:12px;
    padding:22px;
    position:sticky;
    top:20px;
    box-shadow:0 6px 18px rgba(255,130,145,.25);
}

.service-box h3{
    text-align:center;
    color:#ff5d73;
    font-size:26px;
    margin-bottom:18px;
    font-family:'Playfair Display', serif;
}

/* SERVICE LIST */
.service-inner ol{
    list-style:none;
    padding:0;
    margin:0;
    counter-reset:service;
}

.service-inner li{
    counter-increment:service;
    margin:10px 0;
}

/* LINK ROW */
.service-inner a{
    display:flex;
    align-items:center;
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    text-decoration:none;
    color:#222;
    font-size:16px;
    font-weight:500;
    transition:.3s;
    font-family:'Poppins', sans-serif;
}

/* AUTO NUMBER */
.service-inner a::before{
    content:counter(service) ".";
    margin-right:10px;
    font-weight:700;
    color:#ff5d73;
}

/* HOVER */
.service-inner a:hover{
    background:#ff8291;
    color:#fff;
    transform:translateX(5px);
}

.service-inner a:hover::before{
    color:#fff;
}

/* ===============================
   TABLET
================================*/
@media(max-width:992px){

    .ectopic-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .service-box{
        position:relative;
        top:0;
    }

    .ectopic-content img{
        height:320px;
    }
}

/* ===============================
   MOBILE
================================*/
@media(max-width:768px){

    .ectopic-section{
        padding:45px 0;
    }

    .ectopic-container{
        width:94%;
    }

    .ectopic-title{
        width:94%;
        font-size:28px;
    }

    .ectopic-content h3{
        font-size:22px;
        margin-top:22px;
    }

    .ectopic-content p{
        font-size:15px;
        line-height:1.7;
    }

    .ectopic-content li{
        font-size:15px;
    }

    .ectopic-content img{
        width:95%;
        height:280px;
        margin:0 auto 20px;
        display:block;
    }

    .service-box{
        padding:16px;
    }

    .service-inner a{
        font-size:15px;
        padding:10px 12px;
    }
}

/* ===============================
   SMALL MOBILE
================================*/
@media(max-width:480px){

    .ectopic-title{
        font-size:22px;
    }

    .ectopic-content img{
        width:100%;
        height:240px;
        margin:0 auto 20px;
        display:block;
    }
}











/* ===== Pregnancy SECTION ===== */
/* .pregnancy-section{
    width:100%;
    padding:70px 0;
    background:#f8e6e6;    
} */


.pregnancy-section{
    width:100%;
    padding:70px 0;

    position:relative;    
    overflow:hidden;      

    background:linear-gradient(-45deg,
        #f8e6e6,
        #fff5f7,
        #ffeef1,
        #ffffff
    );
    background-size:400% 400%;
    animation:bgMove 10s ease infinite;
}

/* animated gradient */
@keyframes bgMove{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

/* FLOATING GLOW */
.pregnancy-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,130,145,0.25);
    filter:blur(90px);

    top:-80px;
    left:-80px;

    animation:float 6s ease-in-out infinite;
    z-index:0;
}

/* second glow (extra premium) */
.pregnancy-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,130,145,0.18);
    filter:blur(80px);

    bottom:-80px;
    right:-80px;

    animation:float 7s ease-in-out infinite;
    z-index:0;
}

@keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-30px); }
}



/* CONTENT UPPER LAYER */
.pregnancy-container,
.pregnancy-title{
    position:relative;
    z-index:2;
}

/* HEADING */
.pregnancy-title{
    width:92%;
    max-width:1300px;
    margin:0 auto 35px;
    font-size:40px;
    font-weight:700;
    color:#111;
    font-family:'Playfair Display', serif;
}

/* ===== CONTAINER ===== */
.pregnancy-container{
    width:92%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;
}

/* ===== LEFT CONTENT ===== */
.pregnancy-content{
    width:100%;
}

/* IMAGE */
.pregnancy-content img{
    width:80%;
    height:420px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin-bottom:30px;
}

/* HEADING INSIDE */
.pregnancy-content h3{
    font-size:20px;
    margin-bottom:18px;
    color:#ff8291;;
      font-family:'Poppins', sans-serif;
}

/* PARAGRAPH TEXT */
.pregnancy-content p{
    width:100%;
    font-size:16px;
    line-height:1.9;
    color:#333;
    margin-bottom:22px;
    font-family:'Poppins', sans-serif;
}

/* LIST */
.pregnancy-content ul{
    padding-left:24px;
    margin-top:12px;
    font-family:'Poppins', sans-serif;
}

.pregnancy-content li{
    margin-bottom:12px;
    line-height:1.8;
    font-family:'Poppins', sans-serif;
}

/* ===== RIGHT SERVICE BOX ===== */
.pregnancy-service-box{
    width:100%;
    background:#fff;
    border:2px solid #ff8291;
    border-radius:12px;
    padding:22px;
    position:sticky;
    /* top:20px; */
    box-shadow:0 6px 18px rgba(255,130,145,.25);
}

.pregnancy-service-box h3{
    text-align:center;
    color:#ff5d73;
    font-size:26px;
    margin-bottom:18px;
    font-family:'Playfair Display', serif;
}

/* SERVICE LIST */
.pregnancy-service-inner ol{
    list-style:none;
    padding:0;
    margin:0;
    counter-reset:service;
    font-family:'Poppins', sans-serif;
}

.pregnancy-service-inner li{
    counter-increment:service;
    margin:10px 0;
    font-family:'Poppins', sans-serif;
}

/* FULL ROW LINK */
.pregnancy-service-inner a{
    display:flex;
    align-items:center;
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    text-decoration:none;
    color:#222;
    font-size:17px;
    font-weight:500;
    transition:.3s;
    font-family:'Poppins', sans-serif;
}

/* NUMBER */
.pregnancy-service-inner a::before{
    content:counter(service) ".";
    margin-right:10px;
    font-weight:700;
    color:#ff5d73;
}

/* FULL BACKGROUND HOVER */
.pregnancy-service-inner a:hover{
    background:#ff8291;
    color:#fff;
    transform:translateX(5px);
}

.pregnancy-service-inner a:hover::before{
    color:#fff;
}

/* ===== TABLET ===== */
@media (max-width:992px){

    .pregnancy-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .pregnancy-service-box{
        position:relative;
        top:0;
    }

    .pregnancy-content img{
        height:320px;
    }
}

/* ===== MOBILE ===== */
@media (max-width:768px){

    .pregnancy-section{
        padding:45px 0;
    }

    .pregnancy-container{
        width:94%;
    }

    .pregnancy-title{
        width:94%;
        font-size:26px;
    }

    .pregnancy-content img{
        width:95%;
        height:280px;
        margin:0 auto 20px;
        display:block;
    }

    .pregnancy-content p{
        font-size:15px;
        line-height:1.7;
    }

    .pregnancy-service-box{
        padding:16px;
    }

    .pregnancy-service-inner a{
        font-size:15px;
        padding:10px 12px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width:480px){
    .pregnancy-title{
        font-size:22px;
    }

    .pregnancy-content img{
        width:100%;
        height:240px;
        margin:0 auto 20px;
        display:block;
    }
}





























/* ===== Pregnancy SECTION ===== */
/* .pregnancy-section{
    width:100%;
    padding:70px 0;
    background:#f8e6e6;    
} */


.cg-section{
    width:100%;
    padding:70px 0;

    position:relative;    
    overflow:hidden;      

    background:linear-gradient(-45deg,
        #f8e6e6,
        #fff5f7,
        #ffeef1,
        #ffffff
    );
    background-size:400% 400%;
    animation:bgMove 10s ease infinite;
}

/* animated gradient */
@keyframes bgMove{
    0%{ background-position:0% 50%; }
    50%{ background-position:100% 50%; }
    100%{ background-position:0% 50%; }
}

/* FLOATING GLOW */
.cg-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,130,145,0.25);
    filter:blur(90px);

    top:-80px;
    left:-80px;

    animation:float 6s ease-in-out infinite;
    z-index:0;
}

/* second glow (extra premium) */
.cg-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,130,145,0.18);
    filter:blur(80px);

    bottom:-80px;
    right:-80px;

    animation:float 7s ease-in-out infinite;
    z-index:0;
}

@keyframes float{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-30px); }
}



/* CONTENT UPPER LAYER */
.cg-container,
.cg-title{
    position:relative;
    z-index:2;
}

/* HEADING */
.cg-title{
    width:92%;
    max-width:1300px;
    margin:0 auto 35px;
    font-size:40px;
    font-weight:700;
    color:#111;
    font-family:'Playfair Display', serif;
}

/* ===== CONTAINER ===== */
.cg-container{
    width:92%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    align-items:start;
}

/* ===== LEFT CONTENT ===== */
.cg-content{
    width:100%;
}

/* IMAGE */
.cg-content img{
    width:80%;
    height:420px;
    object-fit:cover;
    border-radius:12px;
    display:block;
    margin-bottom:30px;
}

/* HEADING INSIDE */
.cg-content h3{
    font-size:20px;
    margin-bottom:18px;
    color:#ff8291;;
      font-family:'Poppins', sans-serif;
}

/* PARAGRAPH TEXT */
.cg-content p{
    width:100%;
    font-size:16px;
    line-height:1.9;
    color:#333;
    margin-bottom:22px;
    font-family:'Poppins', sans-serif;
}

/* LIST */
.cg-content ul{
    padding-left:24px;
    margin-top:12px;
    font-family:'Poppins', sans-serif;
}

.cg-content li{
    margin-bottom:12px;
    line-height:1.8;
    font-family:'Poppins', sans-serif;
}

/* ===== RIGHT SERVICE BOX ===== */
.cg-service-box{
    width:100%;
    background:#fff;
    border:2px solid #ff8291;
    border-radius:12px;
    padding:22px;
    position:sticky;
    /* top:20px; */
    box-shadow:0 6px 18px rgba(255,130,145,.25);
}

.cg-service-box h3{
    text-align:center;
    color:#ff5d73;
    font-size:26px;
    margin-bottom:18px;
    font-family:'Playfair Display', serif;
}

/* SERVICE LIST */
.cg-service-inner ol{
    list-style:none;
    padding:0;
    margin:0;
    counter-reset:service;
    font-family:'Poppins', sans-serif;
}

.cg-service-inner li{
    counter-increment:service;
    margin:10px 0;
    font-family:'Poppins', sans-serif;
}

/* FULL ROW LINK */
.cg-service-inner a{
    display:flex;
    align-items:center;
    width:100%;
    padding:12px 14px;
    border-radius:8px;
    text-decoration:none;
    color:#222;
    font-size:17px;
    font-weight:500;
    transition:.3s;
    font-family:'Poppins', sans-serif;
}

/* NUMBER */
.cg-service-inner a::before{
    content:counter(service) ".";
    margin-right:10px;
    font-weight:700;
    color:#ff5d73;
}

/* FULL BACKGROUND HOVER */
.cg-service-inner a:hover{
    background:#ff8291;
    color:#fff;
    transform:translateX(5px);
}

.cg-service-inner a:hover::before{
    color:#fff;
}

/* ===== TABLET ===== */
@media (max-width:992px){

    .cg-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    .cg-service-box{
        position:relative;
        top:0;
    }

    .cg-content img{
        height:320px;
    }
}

/* ===== MOBILE ===== */
@media (max-width:768px){

    .cg-section{
        padding:45px 0;
    }

    .cg-container{
        width:94%;
    }

    .cg-title{
        width:94%;
        font-size:26px;
    }

    .cg-content img{
        width:95%;
        height:280px;
        margin:0 auto 20px;
        display:block;
    }

    .cg-content p{
        font-size:15px;
        line-height:1.7;
    }

    .cg-service-box{
        padding:16px;
    }

    .cg-service-inner a{
        font-size:15px;
        padding:10px 12px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width:480px){
    .cg-title{
        font-size:22px;
    }

    .cg-content img{
        width:100%;
        height:240px;
        margin:0 auto 20px;
        display:block;
    }
}
