/* 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;
    }
}










.hero-section{
    position:relative;
    height:550px;
    border-radius:30px;
    overflow:visible;
    margin:30px;
}

/* Slides */

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:.8s;
}

.hero-slide.active{
    opacity:1;
}

.hero-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:30px;
}

/* Overlay */

.hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(185,130,118,.55);
    border-radius:30px;
}

/* Content */

.hero-content{
    position:absolute;
    left:15%;
    top:50%;
    transform:translateY(-50%);
    max-width:700px;
    color:#fff;
    z-index:5;
}

.hero-content span{
    font-size:22px;
}

.hero-content h1{
    font-size:35px;
    line-height:1.1;
    margin:20px 0;
    font-weight:700;
}

.line{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.4);
    margin:30px 0;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-btn{
    display:inline-block;
    background:#f8c546;
    color:#000;
    padding:18px 40px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

/* Navigation */

.hero-nav{
    position:absolute;
    left:70px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:25px;
    z-index:10;

    opacity:0;
    visibility:hidden;
    transition:.4s;
}

/* Hover chesthe matrame */

.hero-section:hover .hero-nav{
    opacity:1;
    visibility:visible;
}

.hero-nav button{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:15px;
    cursor:pointer;
}

/* Contact Box */

.support-box{
    position:absolute;
    right:-10px;
    bottom:-70px; /* image kinda overlap */
    width:520px;
    background:#fff;
    border-radius:20px;
    padding:30px;

    display:flex;
    align-items:center;
    gap:25px;

    z-index:20;

    box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.support-box .icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:#082f57;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:26px;
}

.support-box small{
    color:#6c757d;
    font-size:18px;
}

.support-box h3{
    color:#082f57;
    font-size:22px;
    margin-top:10px;
    line-height:1.5;
}










.consultation-section{
    width:100%;
    padding:50px 50px;
}

.consultation-grid{
    display:grid;
    grid-template-columns: 1.05fr 1.1fr;
    gap:32px;
    align-items:stretch;
}

.virtual-card{
    background:#f1dfdc;
    border-radius:28px;
    padding:60px;
    overflow:hidden;
}

.subtitle{
    display:block;
    font-size:18px;
    color:#6b7280;
    margin-bottom:15px;
}

.virtual-card h2{
    font-size:30px;
    line-height:1.1;
    color:#082544;
    margin-bottom:20px;
}

.virtual-card p{
    color:#5f6b7a;
    font-size:16px;
    margin-bottom:35px;
}

.virtual-content{
    display:flex;
    align-items:flex-end;
    gap:40px;
}

.virtual-content img{
    width:260px;
    display:block;
}

.virtual-content ul{
    list-style:none;
    padding:0;
}

.virtual-content li{
    margin-bottom:20px;
    font-size:16px;
    color:#082544;
}

.virtual-content li::before{
    content:"✓";
    margin-right:12px;
}

.right-column{
    display:flex;
    flex-direction:column;
    gap:32px;
}

.info-card{
    border-radius:28px;
    padding:48px;
    display:flex;
    align-items:center;
    gap:35px;
}

.doctors-card{
    background:#f2f2f2;
}

.appointment-card{
    background:#f3c957;
}

.icon-box{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:50%;
     background:#294a90 !important;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}

.info-card h3{
    font-size:30px;
    line-height:1;
    color:#082544;
    margin-bottom:20px;
}

.info-card p{
    color:#5f6b7a;
    font-size:16px;
    line-height:1.8;
}

.info-card a{
    display:inline-block;
    margin-top:25px;
    text-decoration:none;
    color:#082544;
    font-weight:600;
}





















.practice-area-section {
    width: 100%;
    padding: 50px 50px;
    overflow: hidden;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    display: block;
    color: #7b8794;
    font-size: 16px;
    margin-bottom: 10px;
}

.section-heading h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #0f2544;
    font-weight: 700;
}

.practice-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.practice-card {
    min-height: 300px;
    border-radius: 24px;
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.practice-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 14px;
    margin-top: 80px;
    color: #0f2544;
  
    flex-wrap: nowrap;
}

.practice-card p {
    color: #667085;
    line-height: 1.6;
    font-size: 13px;
}

.practice-card a {
    text-decoration: none;
    color: #0f2544;
    font-weight: 600;
}

.light-card {
    background: #f3f3f3;
}

.pink-card {
    background: #f4e6e3;
}

.blue-card {
    background: #2f4f95;
}

.blue-card h3,
.blue-card p,
.blue-card a {
    color: #fff;
}

.image-card {
    padding: 0;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ======================
   Tablet
====================== */

@media (max-width: 1200px) {

    .practice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .practice-card {
        min-height: 320px;
    }

    .section-heading h2 {
        font-size: 42px;
    }
}

/* ======================
   Mobile
====================== */

@media (max-width: 768px) {

    .practice-area-section {
        padding: 70px 15px;
    }

    .practice-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .practice-card {
        min-height: auto;
        padding: 28px;
    }

    .practice-card h3 {
        font-size: 24px;
    }

    .practice-card p {
        font-size: 15px;
    }

    .image-card {
        height: 320px;
    }
}













.care-section{
    padding:100px 90px;
    overflow: hidden;
    background:#fff;
}

.care-container{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 0.9fr;
    gap:30px;

    align-items:stretch;
}

/* LEFT BOX */

.care-content{
    background:#f7f7f7;
    border-radius:20px;
    padding:60px;

    position:relative;
    overflow:hidden;

    height:100%;
    min-height:320px;
}

.care-content::after{
    content:"";
    position:absolute;

    right:-50px;
    bottom:-50px;

    width:300px;
    height:300px;

    opacity:.05;

    background:
    linear-gradient(
    135deg,
    transparent 25%,
    #0b2341 25%,
    #0b2341 50%,
    transparent 50%);
}

/* CONTENT GRID */

.care-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    height:100%;
}

.care-left{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.care-subtitle{
    display:block;
    color:#7b8591;
    font-size:13px;
    margin-bottom:15px;
    font-weight:500;
}

.care-left h2{
    font-size:28px;
    line-height:1.3;
    color:#0b2341;
    font-weight:700;
    margin-bottom:30px;
}

.care-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#32529a;
    color:#fff;
    text-decoration:none;

    padding:14px 24px;
    border-radius:10px;

    font-size:14px;
    font-weight:600;

    width:fit-content;

    transition:.3s;
}

.care-btn:hover{
    transform:translateY(-4px);
}

.care-right{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.care-right h3{
    font-size:26px;
    line-height:1.3;
    color:#0b2341;
    margin-bottom:15px;
    font-weight:700;
}

.care-right p{
    color:#7b8591;
    font-size:15px;
    line-height:1.8;
}

/* MISSION BOX */

.mission-box{
    background:#32529a;
    color:#fff;

    border-radius:20px;
    padding:35px 30px;

    position:relative;
    overflow:hidden;

    min-height:320px;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.mission-box::before{
    content:"";
    position:absolute;

    left:-120px;
    bottom:-120px;

    width:250px;
    height:250px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
}

.mission-box::after{
    content:"";
    position:absolute;

    left:-70px;
    bottom:-70px;

    width:180px;
    height:180px;

    border:1px solid rgba(255,255,255,.12);
    border-radius:50%;
}

.mission-box h4{
    font-size:22px;
    color:#ffd15c;
    margin-bottom:20px;

    position:relative;
    z-index:2;
}

.mission-box ul{
    list-style:none;
    position:relative;
    z-index:2;
}

.mission-box li{
    margin-bottom:10px;
    line-height:1.8;
    font-size:15px;
}

/* TABLET */

@media(max-width:991px){

    .care-section{
        padding:80px 25px;
    }

    .care-container{
        grid-template-columns:1fr;
    }

    .care-content{
        padding:40px 30px;
        min-height:auto;
    }

    .mission-box{
        min-height:auto;
    }

    .care-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .care-left h2{
        font-size:32px;
    }

    .care-right h3{
        font-size:28px;
    }
}

/* MOBILE */

@media(max-width:576px){

    .care-section{
        padding:60px 15px;
    }

    .care-content{
        padding:30px 20px;
    }

    .mission-box{
        padding:30px 20px;
    }

    .care-left h2{
        font-size:26px;
    }

    .care-right h3{
        font-size:22px;
    }

    .care-right p,
    .mission-box li{
        font-size:14px;
    }

    .care-btn{
        width:100%;
        justify-content:center;
    }
}









/* ==========================
   PARALLAX IMAGE SECTION
========================== */

.hospital-parallax{
    position:relative;

    height:100vh;
    width:100%;

    background-image:url("../images/women3.png");
    background-size:cover;
    background-position:center;
    object-position: top center;
    background-repeat:no-repeat;
    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;
}

/* Dark Overlay */

.parallax-overlay{
    position:absolute;
    inset:0;

    background:rgba(0,0,0,0.35);

    z-index:1;
}

/* Content */

.parallax-content{
    position:relative;
    z-index:2;

    max-width:900px;
    text-align:center;
    padding:0 20px;
}

.parallax-content span{
    display:inline-block;

    color:#ffffff;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;

    margin-bottom:18px;
}

.parallax-content h2{
    color:#ffffff;

    font-size:64px;
    font-weight:700;
    line-height:1.2;

    margin-bottom:20px;
}

.parallax-content p{
    color:#ffffff;

    font-size:18px;
    line-height:1.8;

    max-width:800px;
    margin:auto;
}

/* Hover Zoom Effect */

.hospital-parallax:hover{
    background-size:105%;
    transition:all .8s ease;
}

/* ==========================
   TABLET
========================== */

@media(max-width:992px){

    .hospital-parallax{
        height:80vh;
    }

    .parallax-content h2{
        font-size:48px;
    }

    .parallax-content p{
        font-size:17px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .hospital-parallax{
        height:70vh;

        /* fixed background mobile lo issues istundi */
        background-attachment:scroll;
    }

    .parallax-content{
        padding:0 15px;
    }

    .parallax-content span{
        font-size:12px;
        letter-spacing:1px;
    }

    .parallax-content h2{
        font-size:34px;
        line-height:1.3;
        margin-bottom:15px;
    }

    .parallax-content p{
        font-size:15px;
        line-height:1.7;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:480px){

    .hospital-parallax{
        height:60vh;
    }

    .parallax-content h2{
        font-size:28px;
    }

    .parallax-content p{
        font-size:14px;
    }
}











.why-choose-section{
    padding:50px 90px;
    overflow: hidden;
    background:#fff;
}

.why-header{
    max-width:1400px;
    margin:0 auto 70px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.why-left h2{
    font-size:40px;
    font-weight:700;
    color:#0b2341;
    margin-bottom:25px;
    line-height:1.2;
}

.why-left ul{
    padding-left:20px;
}

.why-left li{
    color:#6c7785;
    font-size:18px;
    margin-bottom:12px;
    line-height:1.7;
}

.why-button{
    background:#32529a;
    color:#fff;
    text-decoration:none;

    padding:18px 38px;
    border-radius:14px;

    display:flex;
    align-items:center;
    gap:12px;

    font-weight:600;
    transition:all .3s ease;
}

.why-button:hover{
    transform:translateY(-4px);
}

/* Cards */

.why-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    border:1px solid #d9dde3;
    border-radius:18px;

    padding:40px;

    display:flex;
    align-items:flex-start;
    gap:25px;

    box-shadow:0 5px 0 #d7dce1;
    transition:all .3s ease;
}

.why-card:hover{
    transform:translateY(-6px);
}

/* Font Awesome Icons */

.card-icon{
    width:70px;
    min-width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

.card-icon i{
    font-size:46px;
    color:#0b2341;
    position:relative;
    z-index:2;
}

.card-content h3{
    font-size:28px;
    color:#0b2341;
    margin-bottom:18px;
    font-weight:600;
}

.card-content p{
    font-size:17px;
    line-height:1.9;
    color:#7b8591;
}

/* Tablet */

@media(max-width:991px){

    .why-choose-section{
        padding:70px 25px;
    }

    .why-header{
        flex-direction:column;
        align-items:flex-start;
        gap:30px;
    }

    .why-left h2{
        font-size:34px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:30px;
    }

    .card-content h3{
        font-size:24px;
    }
}

/* Mobile */

@media(max-width:576px){

    .why-choose-section{
        padding:60px 15px;
    }

    .why-left h2{
        font-size:28px;
    }

    .why-left li{
        font-size:16px;
    }

    .why-card{
        flex-direction:column;
        gap:15px;
        padding:25px;
    }

    .card-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .card-icon i{
        font-size:38px;
    }

    .card-content h3{
        font-size:22px;
    }

    .card-content p{
        font-size:15px;
        line-height:1.7;
    }

    .why-button{
        width:100%;
        justify-content:center;
    }
}










.women-care-section{
    padding:50px 30px;
    background:#fff;
}

.women-care-box{
    max-width:1400px;
    margin:auto;

    min-height:550px;

    border-radius:28px;
    overflow:hidden;

    position:relative;

    background-image:url("../images/women4.png");
    background-size:cover;
  background-position:-130px center;
}

/* Pink Overlay */

.women-care-box::before{
    content:"";
    position:absolute;
    inset:0;

}

/* Content */

.women-care-content{
    position:relative;
    z-index:2;

    width:48%;

    margin-left:auto;

    padding:85px 70px;
}

.sub-title{
    display:block;

    color:#60758a;
    font-size:18px;

    margin-bottom:20px;
}

.women-care-content h2{
    font-size:30px;
    line-height:1.15;

    color:#08284a;
    font-weight:600;

    margin-bottom:25px;
}

.women-care-content p{
    color:#617487;

    font-size:16px;
    line-height:1.6;

    margin-bottom:35px;
}

.women-care-content ul{
    list-style:none;
}

.women-care-content ul li{
    margin-bottom:18px;

    color:#08284a;
    font-size:16px;

    display:flex;
    gap:12px;
}

.women-care-content ul li::before{
    content:"✓";
    font-weight:500;
}

/* Decorative Shapes */

.women-care-box::after{
    content:"";

    position:absolute;

    right:-130px;
    bottom:-130px;

    width:330px;
    height:330px;

    border:55px solid rgba(255,255,255,.9);
    border-radius:50%;
}

.women-shape{
    position:absolute;
    right:110px;
    bottom:90px;

    width:180px;
    height:180px;

    background:rgba(255,255,255,.9);

    border-radius:0 0 180px 0;
}
@media(max-width:991px){

    .women-care-section{
        padding:70px 20px;
    }

    .women-care-box{
        min-height:auto;
    }

    .women-care-box::before{
        background:
        linear-gradient(
            180deg,
            rgba(225,182,172,.85),
            rgba(225,182,172,.92)
        );
    }

    .women-care-content{
        width:100%;
        padding:50px 25px;
    }

    .women-care-content h2{
        font-size:38px;
    }

    .women-care-content p,
    .women-care-content li{
        font-size:16px;
    }

    .women-care-box::after,
    .women-shape{
        display:none;
    }
}

@media(max-width:576px){

    .women-care-section{
        padding:60px 15px;
    }

    .women-care-content{
        padding:40px 20px;
    }

    .women-care-content h2{
        font-size:30px;
    }

    .sub-title{
        font-size:15px;
    }
}



















.success-story-section{
    padding:50px 20px;
    overflow: hidden;
}

.success-story-container{
    max-width:1400px;
    margin:auto;

    background:#072748;
    border-radius:30px;

    padding:80px;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

/* LEFT CONTENT */

.story-content{
    flex:0 0 52%;
    max-width:52%;
}

.story-content h2{
    font-size:40px;
    line-height:1.2;
    color:#fff;
    margin-bottom:30px;
    font-weight:700;
}

.story-content p{
    font-size:22px;
    line-height:1.8;
    color:#c4d0dc;
    text-align: justify;
    max-width:700px;
}

/* RIGHT IMAGES */

.story-images{
    flex:0 0 48%;
    max-width:48%;

    display:flex;
    gap:25px;
}

.img-box{
    flex:1;
    height:380px;

    overflow:hidden;
    border-radius:24px;
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
@media (max-width:991px){

.success-story-container{
    flex-direction:column;
    padding:50px 25px;
    text-align:center;
}

.story-content{
    max-width:100%;
    flex:100%;
}

.story-content h2{
    font-size:36px;
}

.story-content p{
    font-size:17px;
    text-align: justify;
    max-width:100%;
}

.story-images{
    max-width:100%;
    width:100%;
    flex-direction:column;
}

.img-box{
    width:100%;
    height:350px;
}
}





































/* =========================
   TESTIMONIAL SECTION
========================= */

.reviews-section{
    background:linear-gradient(180deg,#004d7a,#00365d);
    max-width:1200px;
    margin:50px auto;
    padding:40px 0;
    border-radius:25px;
    position: relative;
    overflow:hidden;
}

.reviews-section .container{
    max-width:1100px;
    margin:auto;
    padding:0 20px;
}

/* =========================
   HEADING
========================= */

.review-heading{
    margin-bottom:25px;
}

.review-heading span{
    color:#ffc83d;
    font-size:14px;
    font-weight:600;
}

.review-heading h2{
    color:#fff;
    font-size:35px;
    font-weight:700;
    margin-top:8px;
}

/* =========================
   WHITE BOX
========================= */

.review-wrapper{
    background:#fff;
    border-radius:25px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
}

/* =========================
   GOOGLE BOX
========================= */

.google-box{
    width:250px;
    min-width:250px;
}

.google-header{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.google-header img{
    width:70px;
    height:auto;
}

.hospital-info h3{
    font-size:18px;
    line-height:1.4;
    color:#111;
    margin-bottom:8px;
}

.stars{
    color:#fbbc04;
    font-size:22px;
}

.hospital-info p{
    font-size:15px;
    color:#666;
    margin-top:8px;
}

.review-btn{
    display:inline-block;
    padding:10px 22px;
    border:1px solid #ddd;
    border-radius:8px;
    text-decoration:none;
    color:#111;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.review-btn:hover{
    background:#004d7a;
    color:#fff;
}

/* =========================
   SLIDER
========================= */

.reviews-slider{
    flex:1;
    min-width:0;
}

.reviewSwiper{
    padding:5px;
}

/* =========================
   CARD
========================= */

.review-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    padding:18px;
    min-height:230px;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    position:relative;
}

.google-icon{
    position:absolute;
    top:18px;
    right:18px;
}

.google-icon img{
    width:22px;
}

.user{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.avatar,
.user-photo{
    width:45px;
    height:45px;
    border-radius:50%;
    flex-shrink:0;
}

.avatar{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.green{
    background:#7cb342;
}

.brown{
    background:#8d6e63;
}

.blue{
    background:#1976d2;
}

.user-photo{
    object-fit:cover;
}

.user-details h4{
    font-size:15px;
    color:#111;
    margin:0;
}

.user-details span{
    font-size:12px;
    color:#888;
}

.rating{
    color:#fbbc04;
    font-size:16px;
    margin-bottom:12px;
}

.verify{
    color:#4285f4;
    margin-left:4px;
}

.review-text{
    color:#555;
    font-size:14px;
    line-height:1.7;

    display:-webkit-box;
    -webkit-line-clamp:4;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.review-card.active .review-text{
    display:block;
    overflow:visible;
}

.read-more-btn{
    margin-top:10px;
    border:none;
    background:none;
    color:#888;
    cursor:pointer;
    font-size:14px;
    font-weight:600;
    padding:0;
}

/* =========================
   SWIPER ARROWS
========================= */

.swiper-button-next,
.swiper-button-prev{
    width:36px !important;
    height:36px !important;
    background:#fff;
    border-radius:50%;
    box-shadow:0 3px 10px rgba(0,0,0,.12);
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:12px !important;
    color:#222;
    font-weight:700;
}

.swiper-button-prev{
    left:-5px !important;
}

.swiper-button-next{
    right:-5px !important;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .review-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .google-box{
        width:100%;
        min-width:100%;
    }

    .review-heading h2{
        font-size:34px;
    }
}

/* =========================
   MOBILE
========================= */

/* =========================
   MOBILE
========================= */

@media (max-width:768px){

    .reviews-section{
        margin:20px 12px;
        padding:25px 0;
        border-radius:18px;
    }

    .reviews-section .container{
        padding:0 12px;
    }

    .quote-icon{
       display: none;
    }

    .review-heading{
        text-align:center;
        margin-bottom:20px;
    }

    .review-heading span{
        font-size:12px;
    }

    .review-heading h2{
        font-size:28px;
        line-height:1.3;
        margin-top:6px;
    }

    .review-wrapper{
        flex-direction:column;
        align-items:stretch;
        padding:15px;
        gap:15px;
        border-radius:18px;
    }

    .google-box{
        width:100%;
        min-width:100%;
    }

    .google-header{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:10px;
        margin-bottom:15px;
    }

    .google-header img{
        width:55px;
    }

    .hospital-info h3{
        font-size:16px;
        margin-bottom:5px;
    }

    .hospital-info p{
        font-size:13px;
        margin-top:5px;
    }

    .stars{
        font-size:18px;
    }

    .review-btn{
        width:100%;
        text-align:center;
        padding:12px;
        box-sizing:border-box;
    }

    .reviews-slider{
        width:100%;
    }

    .reviewSwiper{
        overflow:hidden;
        padding:5px 0;
    }

    .reviewSwiper .swiper-slide{
        height:auto;
    }

    .review-card{
        min-height:auto;
        height:100%;
        padding:15px;
        border-radius:12px;
    }

    .google-icon{
        top:12px;
        right:12px;
    }

    .google-icon img{
        width:18px;
    }

    .user{
        gap:10px;
        margin-bottom:12px;
    }

    .avatar,
    .user-photo{
        width:40px;
        height:40px;
    }

    .user-details{
        min-width:0;
    }

    .user-details h4{
        font-size:14px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }

    .user-details span{
        font-size:11px;
    }

    .rating{
        font-size:14px;
        margin-bottom:10px;
    }

    .review-text{
        font-size:13px;
        line-height:1.6;
        -webkit-line-clamp:5;
    }

    .read-more-btn{
        font-size:13px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none !important;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width:480px){

    .reviews-section{
        margin:15px 8px;
    }

    .review-heading h2{
        font-size:22px;
    }

    .review-wrapper{
        padding:12px;
    }

    .review-card{
        padding:12px;
    }

    .hospital-info h3{
        font-size:15px;
    }

    .review-text{
        font-size:12px;
    }

    .review-btn{
        font-size:13px;
        padding:10px;
    }

    .quote-icon{
        font-size:35px;
    }
}
.quote-icon{
    position:absolute;
    top:20px;
    right:60px;

    color:#fff;
    font-size:70px;
    opacity:.9;
}





















.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)
    );
}




















.appointment-section {
  padding: 50px 40px;
}

.appointment-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  overflow: hidden;
  border-radius: 18px;
}

/* LEFT */

.appointment-info {
  position: relative;
  min-height: 600px;

  background: url("../images/womenbook.png") center center/cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 30, 50, 0.35);
}

.content {
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 50px;
  color: #fff;
  z-index: 2;
}

.subtitle {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
}

.bottom-info {
  display: flex;
  gap: 60px;
  border-top: 1px solid rgba(255,255,255,.3);
  padding-top: 25px;
}

.info-box h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.info-box p {
  line-height: 1.8;
  font-size: 14px;
}

/* RIGHT FORM */

.appointment-form {
  background: #072540;
  padding: 45px;
  color: white;
}

.appointment-form h3 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
}

.form-desc {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 35px;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 15px;
}

input,
select {
  width: 100%;
  height: 54px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #27425d;
  color: white;
  padding: 0 15px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255,255,255,.8);
}

textarea {
  width: 100%;
  margin-top: 15px;
  min-height: 130px;
  resize: none;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #27425d;
  color: white;
  padding: 15px;
}

button {
  display: block;
  margin: 28px auto 0;
  border: none;
  background: #f4c34f;
  color: #000;
  padding: 16px 34px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
}

button:hover {
  transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 991px) {

  .appointment-container {
    grid-template-columns: 1fr;
  }

  .appointment-info {
    min-height: 450px;
  }

  .content h2 {
    font-size: 34px;
  }

  .bottom-info {
    flex-direction: column;
    gap: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .appointment-form {
    padding: 30px;
  }
}
.bottom-info {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(255,255,255,.2);
  padding-top: 25px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-box {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.08);
  backdrop-filter: blur(5px);
}

.icon-box i {
  color: #fff;
  font-size: 18px;
}

.info-box h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.info-box p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,.9);
}