/* 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;
    }
}




















.about-section{
    background:white;
    padding:50px 0;
}

.about-box{
    width:95%;
    max-width:1800px;
    margin:auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* IMAGE */

.about-image{
    position:relative;
    height:300px;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
    to bottom,
    rgba(40,30,170,.25),
    rgba(00,00,000,.45));
}

.hero-content{
    position:absolute;
    left:80px;
    bottom:50px;
    z-index:2;
}

.hero-content h2{
    font-size:52px;
    color:#fff;
    font-weight:700;
    line-height:1.1;
    max-width:1200px;
}
.breadcrumb{
    white-space:nowrap;
    flex-wrap:nowrap;
}

.breadcrumb{
    position:absolute;
    right:-330px;
    bottom:70px;
  max-width:1200px;
    display:flex;
    align-items:center;
    gap:15px;

    color:#fff;
    font-size:18px;
}

.breadcrumb a{
    color:#ffcc54;
    font-weight: 600;
    text-decoration:none;
    text-wrap: nowrap;
      max-width:1200px;
}

/* BOTTOM */

.about-bottom{
    padding:20px 50px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.about-text{
    max-width:600px;
}

.about-text p{
    font-size:18px;
    text-align: justify;
    line-height:1.8;
    color:#333;
}

.support-box{
    display:flex;
    align-items:center;
    gap:25px;
}

.call-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#284682;

    display:flex;
    align-items:center;
    justify-content:center;
}

.call-icon i{
    color:#fff;
    font-size:28px;
}

.support-box span{
    color:#777;
    font-size:15px;
}

.support-box h4{
    font-size:20px;
    margin-top:8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .about-section{
        padding:30px 15px;
    }

    .about-box{
        width:100%;
        border-radius:15px;
    }

    .about-image{
        height:300px;
    }

    .hero-content{
        left:20px;
        bottom:20px;
    }

    .hero-content h2{
        font-size:28px;
        max-width:100%;
        line-height:1.3;
    }

    .breadcrumb{
        position:static;
        margin-top:15px;
        gap:8px;
        font-size:14px;
        flex-wrap:wrap;
    }

    .about-bottom{
        padding:30px 20px;
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .about-text{
        max-width:100%;
    }

    .about-text p{
        font-size:16px;
        line-height:1.7;
    }

    .support-box{
        width:100%;
        gap:15px;
    }

    .call-icon{
        width:60px;
        height:60px;
    }

    .call-icon i{
        font-size:22px;
    }

    .support-box h4{
        font-size:18px;
    }
}
@media (max-width: 480px) {

    .about-image{
        height:250px;
    }

    .hero-content h2{
        font-size:22px;
    }

    .about-bottom{
        padding:25px 15px;
    }

    .about-text p{
        font-size:15px;
    }

    .breadcrumb{
        font-size:13px;
    }

    .call-icon{
        width:55px;
        height:55px;
    }
}















/* =========================
   WHY CHOOSE SECTION
========================= */

.why-section{
    padding:50px 40px;
    overflow: hidden;
   
}

.why-section .container{
    max-width:1400px;
    margin:auto;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    text-align:center;
    padding:50px 35px;
    border-radius:22px;
    position:relative;
    transition:.35s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.why-card:hover{
    transform:translateY(-8px);
}

.card-light{
    background:#f3f3f3;
    border-bottom:6px solid #d6d6d6;
}

.card-blue{
    background:#cfe3ef;
    border-bottom:6px solid #a6c9dd;
}

.card-yellow{
    background:#f2cd73;
    border-bottom:6px solid #e1b84f;
}

.icon-box{
    width:72px;
    height:72px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#03284d;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-box i{
    color:#fff;
    font-size:28px;
}

.why-card h3{
    font-size:37px;
    color:#03284d;
    margin-bottom:25px;
    font-weight:700;
}

.why-card p{
    font-size:18px;
    line-height:1.5;
   text-align: center;
    color:#111;
    max-width:500px;
    margin:auto;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .why-section{
        padding:70px 25px;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .why-card h3{
        font-size:32px;
    }

    .why-card p{
        font-size:17px;
        text-align: justify;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .why-section{
        padding:60px 15px;
    }

    .why-card{
        padding:40px 22px;
    }

    .icon-box{
        width:65px;
        height:65px;
    }

    .icon-box i{
        font-size:24px;
    }

    .why-card h3{
        font-size:26px;
    }

    .why-card p{
        font-size:15px;
        text-align: justify;
        line-height:1.8;
    }
}











/* =========================
   CHILD JOURNEY SECTION
========================= */

.child-journey-section{
    padding:70px 30px;
    background:#f5f5f5;
}

.child-journey-wrapper{
    max-width:1800px;
    margin:auto;

    background:linear-gradient(
    135deg,
    #021f3f 0%,
    #052d58 50%,
    #07284c 100%);

    border-radius:35px;
    overflow:hidden;
    position:relative;
}

.child-journey-wrapper::before{
    content:"";
    position:absolute;

    width:900px;
    height:900px;

    right:-350px;
    top:-150px;

    border-radius:50%;
    background:rgba(255,255,255,.03);
}

.child-journey-wrapper::after{
    content:"";
    position:absolute;

    width:700px;
    height:700px;

    left:-250px;
    bottom:-250px;

    border-radius:50%;
    background:rgba(255,255,255,.02);
}

.child-journey-content{
    position:relative;
    z-index:2;

    text-align:center;
    padding:140px 80px;
}

.child-journey-tag{
    display:block;
    color:#fff;

    font-size:22px;
    font-weight:700;

    margin-bottom:25px;
}

.child-journey-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.08;
    font-weight:700;

    margin-bottom:40px;
}

.child-journey-content p{
    max-width:900px;
    margin:auto;

    color:rgba(255,255,255,.92);

    font-size:18px;
    line-height:1.8;
}

.child-journey-content strong{
    color:#ffd84c;
}
@media(max-width:991px){

    .child-journey-content{
        padding:90px 40px;
    }

    .child-journey-tag{
        font-size:18px;
    }

    .child-journey-content h2{
        font-size:54px;
    }

    .child-journey-content p{
        font-size:20px;
    }
}

@media(max-width:768px){

    .child-journey-section{
        padding:40px 15px;
    }

    .child-journey-wrapper{
        border-radius:22px;
    }

    .child-journey-content{
        padding:60px 20px;
    }

    .child-journey-tag{
        font-size:15px;
    }

    .child-journey-content h2{
        font-size:34px;
    }

    .child-journey-content p{
        font-size:15px;
        line-height:1.8;
    }
}








.services-section{
    padding:50px 50px;
    background:#f8fafc;
}

.container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-header{
    text-align:center;
    margin-bottom:50px;
}

.section-header span{
    color:#7a8699;
    font-size:15px;
}

.section-header h2{
    margin-top:10px;
    font-size:45px;
    font-weight:700;
}
.section-header p{
    font-size:16px;
    line-height:1.9;
    color:#64748b;
    max-width:700px;
    margin:auto;
}

.section-header p strong{
    color:#0f172a;
    font-weight:700;
}
.tabs-wrapper{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:40px;
}

.tabs-container{
    display:flex;
    gap:15px;
    overflow:hidden;
    scroll-behavior:smooth;
    flex:1;
}

.service-tab,
.women-tab{
    white-space:nowrap;
    border:1px solid #d6dce5;
    background:#fff;
    padding:12px 24px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
    flex-shrink:0;
}

.service-tab:hover,
.women-tab:hover{
    background:#f1f5f9;
}

.service-tab.active,
.women-tab.active{
    background:#f4bf42;
    color:#111;
    border-color:#f4bf42;
}

.arrow-btn{
    width:50px;
    height:50px;
    border:none;
    background:#fff;
    border-radius:50%;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.service-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:35px;
    border:1px solid #e3e8ef;
    border-radius:25px;
    background:#fff;
}

.service-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    border-radius:20px;
}

.service-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.service-text h3{
    font-size:30px;
    margin-bottom:20px;
}

.service-text p{
    line-height:1.9;
    color:#666;
}
.service-label{
    display:inline-block;
    margin-top:25px;
    font-size:15px;
    font-weight:600;
    color:#0f172a;
   
    padding:10px 22px;
    border-radius:30px;
}
@media(max-width:991px){

    .service-content{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:36px;
    }
}
@media (max-width: 768px){

    .services-section{
        padding:40px 15px;
    }

    .container{
        padding:0 10px;
    }

    .section-header{
        margin-bottom:30px;
    }

    .section-header h2{
        font-size:28px;
        line-height:1.3;
    }

    .section-header p{
        font-size:14px;
        line-height:1.7;
    }

    .tabs-wrapper{
        gap:10px;
    }

    .tabs-container{
        overflow-x:auto;
        scrollbar-width:none;
        -ms-overflow-style:none;
    }

    .tabs-container::-webkit-scrollbar{
        display:none;
    }

    .service-tab,
    .women-tab{
        padding:10px 18px;
        font-size:14px;
    }

    .arrow-btn{
        width:40px;
        height:40px;
        font-size:18px;
        flex-shrink:0;
    }

    .service-content{
        grid-template-columns:1fr;
        gap:25px;
        padding:20px;
        border-radius:18px;
    }

    .service-image img{
        height:250px;
        border-radius:15px;
    }

    .service-text h3{
        font-size:24px;
        margin-bottom:15px;
    }

    .service-text p{
        font-size:14px;
        line-height:1.8;
    }

    .service-label{
        margin-top:15px;
        padding:8px 18px;
        font-size:14px;
    }
}




































/* ==========================
   OUTER SECTION
========================== */

.care-section{
    padding:50px 50px;
    background:#f4f5f7;
}

/* ==========================
   BLUE BOX
========================== */

.care-container{

    max-width:1400px;
    margin:auto;

    background:linear-gradient(
    180deg,
    #063f69 0%,
    #032f51 100%
    );

    border-radius:24px;

    padding:70px 50px;

    overflow:hidden;

    position:relative;
}

/* ==========================
   HEADING
========================== */

.care-heading{
    max-width:950px;
    margin:0 auto 60px;
    text-align:center;
}

.care-heading h2{
    color:#f3c44d;
    font-size:38px;
    font-weight:700;
    margin-bottom:20px;
}

.care-heading p{
    color:#fff;
    font-size:18px;
   
    line-height:1.8;
}

/* ==========================
   SLIDER
========================== */

.feature-slider{
    overflow:hidden;
}

.feature-track{
    display:flex;
    transition:.5s ease;
}

.feature-card{

    min-width:33.333%;

    text-align:center;

    padding:15px 25px;
}

.icon-circle{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-circle i{
    color:#fff;
    font-size:28px;
}

.feature-card h3{

    color:#fff;

    font-size:23px;

    line-height:1.4;

    margin-bottom:18px;
}

.feature-card p{

    color:#d8e0ea;

    line-height:1.9;
    text-align: justify;

    font-size:16px;
}

/* ==========================
   DOTS
========================== */

.slider-dots{

    display:flex;
    justify-content:center;
    gap:10px;

    margin-top:40px;
}

.dot{

    width:10px;
    height:10px;

    border-radius:50%;

    background:#9ca8b7;

    cursor:pointer;
}

.dot.active{
    background:#f3c44d;
}

/* ==========================
   VIDEO
========================== */

.video-box{

    max-width:1000px;

    margin:60px auto 0;
}

.video-box iframe{

    width:100%;
    height:550px;

    border:none;

    border-radius:18px;
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .care-container{
        padding:50px 25px;
    }

    .feature-card{
        min-width:100%;
    }

    .care-heading h2{
        font-size:30px;
    }

    .care-heading p{
        font-size:16px;
    }

    .feature-card h3{
        font-size:22px;
    }

    .video-box iframe{
        height:300px;
    }
}















/* =========================
   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;
}






