/*========================================

GOOGLE FONT

========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*========================================

ROOT VARIABLES

========================================*/

:root{

    --primary:#2E7D32;

    --secondary:#8D6E63;

    --gold:#D4AF37;

    --light:#F8F5F0;

    --white:#ffffff;

    --black:#222222;

    --gray:#666666;

    --border:#E8E8E8;

    --shadow:0 15px 40px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.4s ease;

}


/*========================================

RESET

========================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Poppins',sans-serif;

    background:var(--light);

    color:var(--black);

    overflow-x:hidden;

}


img{

    width:100%;

    display:block;

}


a{

    text-decoration:none;

}


ul{

    list-style:none;

}


section{

    padding:100px 0;

}

/*========================================

TYPOGRAPHY

========================================*/

h1{

    font-size:60px;

    font-weight:800;

    line-height:1.2;

}

h2{

    font-size:44px;

    font-weight:700;

}

h3{

    font-size:30px;

    font-weight:600;

}

h4{

    font-size:24px;

    font-weight:600;

}

p{

    font-size:17px;

    color:var(--gray);

    line-height:1.9;

}


.section-tag{

    color:var(--primary);

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    position:relative;

    display:inline-block;

    padding-bottom:8px;

}

.section-tag::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:0;

    width:0;

    height:2px;

    background:var(--gold);

    transform:translateX(-50%);

    transition:width .8s ease;

}

.section-tag.tag-in-view::after{

    width:60px;

}


.section-title{

    margin-top:10px;

    margin-bottom:20px;

}

/*========================================

NEW ANIMATIONS - FLOATING ICONS

========================================*/

@keyframes floatIcon{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

/*========================================

NEW ANIMATIONS - 3D TILT CARDS

========================================*/

.team-card,

.stat-box,

.expertise-chart{

    transform-style:preserve-3d;

    will-change:transform;

}

/*========================================

NEW ANIMATIONS - IMAGE REVEAL WIPE

========================================*/

.img-reveal{

    position:relative;

    overflow:hidden;

}

.img-reveal::before{

    content:"";

    position:absolute;

    inset:0;

    background:var(--primary);

    transform:scaleX(1);

    transform-origin:right;

    z-index:2;

}

.img-reveal.revealed::before{

    animation:wipeReveal 1s ease forwards;

}

@keyframes wipeReveal{

    to{

        transform:scaleX(0);

    }

}

/*========================================

BUTTONS

========================================*/

.btn-success{

    background:var(--primary);

    border:none;

    padding:15px 38px;

    border-radius:50px;

    font-weight:600;

    transition:var(--transition);

}


.btn-success:hover{

    background:var(--gold);

    color:#000;

    transform:translateY(-5px);

}

/*========================================

PRELOADER

========================================*/

/*==============================
PRELOADER
==============================*/

#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: #fdf8ef;   /* या अपनी वेबसाइट का background */

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999999;

    overflow: hidden;
}

#preloader .loader{

    width: auto;

    height: auto;

    display: flex;

    justify-content: center;

    align-items: center;

}

#preloader img{
    width: 180px;
    height: 180px;
    max-width: 40vw;
    max-height: 40vh;
    object-fit: contain;
    border-radius: 50%;
    animation: loaderZoom 2.5s ease-in-out infinite;
}

@keyframes loaderZoom{

    0%{
        transform: scale(1);
    }

    50%{
        transform: scale(1.06);
    }

    100%{
        transform: scale(1);
    }

}
/*========================================

NAVBAR

========================================*/

.navbar{

    padding:18px 0;

    background:transparent;

    transition:all .4s ease;

    z-index:999;

}

.navbar.scrolled{

    background:#ffffff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    padding:12px 0;

}

.navbar-brand img{

    width:85px;

    transition:.4s;

}

.navbar-nav .nav-link{

    color:#222;

    font-size:16px;

    font-weight:600;

    margin-left:20px;

    position:relative;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

.navbar-nav .nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:3px;

    background:var(--gold);

    border-radius:10px;

    transition:.4s;

}

.navbar-nav .nav-link:hover::after,

.navbar-nav .nav-link.active::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    box-shadow:none !important;

}



/*========================================

HERO SECTION

========================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:linear-gradient(135deg,#F8F5F0,#ffffff);

}



/* Background Shape */

.hero::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(46,125,50,.08);

    top:-250px;

    right:-180px;

}



.hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:rgba(212,175,55,.12);

    border-radius:50%;

    bottom:-150px;

    left:-120px;

}



/*========================================

HERO CONTENT

========================================*/

.hero-content{

    position:relative;

    z-index:2;

}

.hero-content h5{

    color:var(--primary);

    font-size:18px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}

.hero-content h1{

    font-size:65px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:10px;

}

.hero-content h3{

    color:var(--secondary);

    margin-bottom:20px;

}

.hero-content p{

    max-width:580px;

    margin-bottom:35px;

}



/*========================================

BUTTON

========================================*/

.hero-btn{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn .btn{

    min-width:180px;

}



/*========================================

HERO IMAGE

========================================*/

.hero-image{

    position:relative;

    text-align:center;

}

.hero-image img{

    max-width:520px;

    border-radius:25px;

    box-shadow:0 30px 60px rgba(0,0,0,.15);

    transition:.5s;

}

.hero-image img:hover{

    transform:scale(1.03);

}



/* Crystal Water Badge */

.crystal-water-badge{

    position:absolute;

    bottom:18px;

    right:-10px;

    background:#fff;

    border-radius:16px;

    padding:12px 16px;

    display:flex;

    align-items:center;

    gap:10px;

    box-shadow:0 15px 35px rgba(0,0,0,.15);

    animation:floatIcon 4s ease-in-out infinite;

    z-index:3;

    max-width:220px;

}

.crystal-water-badge img{

    width:44px;

    height:44px;

    max-width:44px;

    border-radius:0;

    box-shadow:none;

}

.crystal-water-badge span{

    font-size:12.5px;

    font-weight:600;

    color:var(--primary);

    line-height:1.3;

}

@media (max-width:991px){

    .crystal-water-badge{

        right:8px;

    }

}

/* Floating Circle */

.hero-image::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:50%;

    background:rgba(212,175,55,.18);

    top:0;

    left:20px;

    z-index:-1;

}



.hero-image::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:rgba(46,125,50,.10);

    right:0;

    bottom:0;

    z-index:-1;

}
/*========================================

ABOUT SECTION

========================================*/

.about-section{

    background:#ffffff;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image img:hover{

    transform:scale(1.03);

}

.about-content{

    padding-left:40px;

}

.about-content h2{

    color:var(--primary);

    margin:15px 0;

}

.about-content h4{

    color:var(--secondary);

    margin-bottom:20px;

}

.about-content p{

    margin-bottom:20px;

}



/*========================================

LIFE PHILOSOPHY

========================================*/

.philosophy-section{

    background:#F9F7F2;

}

.philosophy-box{

    background:#ffffff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.philosophy-box:hover{

    transform:translateY(-10px);

}

.philosophy-box h2{

    color:var(--primary);

}

.philosophy-box ul{

    margin-top:25px;

    padding-left:20px;

}

.philosophy-box ul li{

    margin-bottom:15px;

    color:var(--gray);

    position:relative;

}

.philosophy-box ul li::marker{

    color:var(--gold);

}



/*========================================

RESEARCH CENTER

========================================*/

.research-center{

    background:#ffffff;

}

.center-image img{

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.center-content{

    padding-left:40px;

}

.center-content h2{

    color:var(--primary);

    margin:20px 0;

}

.center-content h5{

    color:var(--secondary);

    margin-bottom:20px;

}

.center-content p{

    margin-bottom:20px;

}



/*========================================

JOURNEY SECTION

========================================*/

.journey-section{

    background:#F7F4EE;

}

.journey-content{

    padding-right:40px;

}

.journey-content h2{

    color:var(--primary);

    margin:20px 0;

}

.journey-content p{

    margin-bottom:20px;

}

.journey-section img{

    border-radius:25px;

    box-shadow:0 20px 40px rgba(0,0,0,.12);

    transition:.5s;

}

.journey-section img:hover{

    transform:scale(1.03);

}



/*========================================

COMMON IMAGE EFFECT

========================================*/

.about-image img,

.center-image img,

.journey-section img{

    transition:all .5s ease;

}

.about-image img:hover,

.center-image img:hover,

.journey-section img:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 60px rgba(0,0,0,.18);

}



/*========================================

GLASS EFFECT

========================================*/

.glass{

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.3);

    border-radius:20px;

}



/*========================================

SECTION SPACING

========================================*/

.about-section,

.philosophy-section,

.research-center,

.journey-section{

    overflow:hidden;

}
/*========================================

TREATMENT SECTION

========================================*/

.treatment-section{

    background:#ffffff;

}

.treatment-content{

    padding-right:40px;

}

.treatment-content h2{

    color:var(--primary);

    margin-bottom:20px;

}

.treatment-content h5{

    color:var(--secondary);

    margin:30px 0 20px;

    font-weight:600;

}

.treatment-content p{

    margin-bottom:18px;

}

.treatment-image img{

    border-radius:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.12);

    transition:.5s;

}

.treatment-image img:hover{

    transform:scale(1.03);

}



/*========================================

SERVICE LIST

========================================*/

.service-list{

    padding-left:20px;

    margin-top:20px;

}

.service-list li{

    position:relative;

    margin-bottom:18px;

    font-size:16px;

    color:var(--gray);

    padding-left:12px;

}

.service-list li::marker{

    color:var(--gold);

}



/*========================================

VISION & MISSION

========================================*/

.vision-mission{

    background:#F8F5F0;

}

.vision-box,

.mission-box{

    background:#ffffff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s ease;

    height:100%;

}

.vision-box:hover,

.mission-box:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 55px rgba(0,0,0,.12);

}

.vision-box h3,

.mission-box h3{

    color:var(--primary);

    margin-bottom:25px;

}

.mission-box ul{

    padding-left:20px;

}

.mission-box ul li{

    margin-bottom:18px;

    color:var(--gray);

}

.mission-box ul li::marker{

    color:var(--gold);

}



/*========================================

LEADERSHIP SECTION

========================================*/

.leadership-section{

    background:#ffffff;

}

/*========================================

AYURVEDA KNOWLEDGE SECTION

========================================*/

.ayurveda-knowledge{

    background:#F8F5F0;

}

.knowledge-image img{

    width:100%;

    height:auto;

}

.diagnosis-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:15px;

}

.diagnosis-tags span{

    background:#fff;

    border:1px solid rgba(46,125,50,.25);

    color:var(--primary);

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

.tridosha-row{

    text-align:center;

}

.tridosha-card{

    background:#fff;

    border-radius:18px;

    padding:30px 25px;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:transform .4s ease, box-shadow .4s ease;

}

.tridosha-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.1);

}

.tridosha-card h4{

    color:var(--gold);

    font-size:26px;

    margin-bottom:12px;

}

.tridosha-card p{

    color:var(--gray);

    margin:0;

    font-size:15px;

}

/*========================================

TREATMENT MODALITIES

========================================*/

.modality-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    height:100%;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:transform .4s ease, box-shadow .4s ease;

}

.modality-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.modality-img{

    position:relative;

    overflow:hidden;

    height:220px;

}

/* Buy Overlay (Traditional Medicine card) */

.buy-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(180deg,rgba(0,0,0,0) 40%,rgba(0,0,0,.75) 100%);

    display:flex;

    align-items:flex-end;

    justify-content:center;

    padding-bottom:16px;

    opacity:0;

    transition:opacity .35s ease;

}

.buy-enabled:hover .buy-overlay{

    opacity:1;

}

.buy-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:var(--primary);

    color:#fff;

    font-size:14px;

    font-weight:600;

    padding:9px 18px;

    border-radius:30px;

    text-decoration:none;

    transform:translateY(10px);

    transition:transform .35s ease, background .3s ease;

}

.buy-enabled:hover .buy-btn{

    transform:translateY(0);

}

.buy-btn:hover{

    background:#256428;

    color:#fff;

}

.modality-buy-link{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:14px;

    font-size:13.5px;

    font-weight:600;

    color:var(--secondary);

    text-decoration:none;

}

.modality-buy-link:hover{

    color:var(--primary);

}

.modality-img img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.modality-card:hover .modality-img img{

    transform:scale(1.08);

}

.modality-body{

    padding:22px 24px;

}

.modality-body h4{

    color:var(--primary);

    margin-bottom:10px;

    font-size:19px;

}

.modality-body p{

    color:var(--gray);

    font-size:14.5px;

    margin:0;

    line-height:1.6;

}

/*========================================

TEAM SHOWCASE BANNER

========================================*/

.team-showcase-wrap{

    max-width:900px;

    margin:0 auto 55px;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.team-showcase-img{

    width:100%;

    height:auto;

    display:block;

    border-radius:22px;

    transition:transform .6s ease;

}

.team-showcase-wrap:hover .team-showcase-img{

    transform:scale(1.02);

}

/*========================================

TEAM GRID (Leadership)

========================================*/

.team-card{

    background:#ffffff;

    border-radius:18px;

    padding:22px 15px 25px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

    border:1px solid rgba(0,0,0,.05);

    transition:.4s;

    height:100%;

}

.team-card:hover{

    transform:translateY(-8px);

    border-color:var(--gold);

}

.team-card img{

    width:100px;

    height:100px;

    object-fit:cover;

    border-radius:50%;

    border:3px solid var(--primary);

    margin-bottom:15px;

}

.team-card-lead img{

    border-color:var(--gold);

    width:120px;

    height:120px;

}

.team-card h5{

    margin-bottom:5px;

    color:var(--black);

    font-size:16px;

}

.team-card span{

    color:var(--gray);

    font-size:13px;

}

/*========================================

ACHIEVEMENT STATS

========================================*/

.stat-box{

    background:#ffffff;

    border-radius:18px;

    padding:30px 15px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.07);

    height:100%;

}

.stat-box h3{

    color:var(--primary);

    font-size:38px;

    font-weight:700;

    margin-bottom:8px;

}

.stat-box p{

    margin:0;

    color:var(--gray);

    font-size:14px;

}

/*========================================

PEOPLE CONNECTED CIRCLE

========================================*/

.connected-section{

    background:#F9F7F2;

}

.connected-circle{

    position:relative;

    width:220px;

    height:220px;

    margin:0 auto 20px;

}

.connected-ring{

    width:100%;

    height:100%;

    transform:rotate(-90deg);

}

.connected-ring-bg{

    fill:none;

    stroke:#e8e3d8;

    stroke-width:14;

}

.connected-ring-fill{

    fill:none;

    stroke:url(#connectedGrad);

    stroke-width:14;

    stroke-linecap:round;

    stroke-dasharray:597;

    stroke-dashoffset:90;

}

.connected-circle-inner{

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

}

.connected-circle-inner h2{

    font-size:42px;

    font-weight:700;

    color:var(--primary);

    margin-bottom:4px;

}

.connected-circle-inner p{

    font-size:14px;

    color:var(--gray);

    margin:0;

}

.connected-note{

    display:block;

    font-size:13px;

    color:var(--gray);

    font-style:italic;

}

@media(max-width:576px){

    .connected-circle{

        width:180px;

        height:180px;

    }

    .connected-circle-inner h2{

        font-size:32px;

    }

}

/*========================================

PATIENTS TREATED SECTION

========================================*/

.patients-section{

    background:#ffffff;

}

.patients-count-box{

    background:linear-gradient(135deg,var(--primary),#1b5e20);

    color:#fff;

    border-radius:20px;

    padding:50px 25px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.patients-count-box h2{

    font-size:56px;

    font-weight:800;

    margin-bottom:10px;

    color:#fff;

}

.patients-count-box p{

    font-size:16px;

    margin-bottom:10px;

    color:#fff;

}

.patients-note{

    font-size:12px;

    opacity:.85;

    display:block;

}

.patients-chart-box{

    background:#F9F7F2;

    border-radius:20px;

    padding:30px;

}

.chart-caption{

    text-align:center;

    color:var(--gray);

    font-size:14px;

    margin-bottom:15px;

}

.patients-svg{

    width:100%;

    height:auto;

}

.chart-label{

    font-size:12px;

    fill:var(--gray);

}

.patients-line{

    stroke-dasharray:700;

    stroke-dashoffset:700;

}

.patients-line.draw{

    animation:drawLine 2s ease forwards;

}

.patients-line-2.draw{

    animation-delay:.25s;

}

.patients-line-3.draw{

    animation-delay:.5s;

}

@keyframes drawLine{

    to{

        stroke-dashoffset:0;

    }

}

.chart-legend{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:18px;

    margin-top:15px;

    font-size:13px;

    color:var(--gray);

}

.chart-legend span{

    display:flex;

    align-items:center;

    gap:6px;

}

.chart-legend i{

    display:inline-block;

    width:14px;

    height:14px;

    border-radius:4px;

}

.patients-dot{

    opacity:0;

    transform-origin:center;

}

.patients-dot.pop{

    animation:popDot .4s ease forwards;

}

@keyframes popDot{

    from{

        opacity:0;

        transform:scale(0);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}



/*========================================

ACHIEVEMENT SECTION

========================================*/

.achievement-section{

    background:#F9F7F2;

}

.achievement-box{

    background:#ffffff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.achievement-box ul{

    padding-left:22px;

}

.achievement-box li{

    margin-bottom:18px;

    color:var(--gray);

}

.achievement-box li::marker{

    color:var(--primary);

}

.timeline{

    position:relative;

    padding-left:42px;

}

.timeline-line{

    position:absolute;

    left:5px;

    top:6px;

    bottom:6px;

    width:2px;

    background:linear-gradient(180deg,var(--primary),var(--gold));

    transform-origin:top;

    transform:scaleY(0);

    border-radius:2px;

}

.timeline-item{

    position:relative;

    padding-bottom:26px;

}

.timeline-item:last-child{

    padding-bottom:0;

}

.timeline-item p{

    margin:0;

    color:var(--gray);

    line-height:1.7;

}

.timeline-dot{

    position:absolute;

    left:-42px;

    top:3px;

    width:13px;

    height:13px;

    border-radius:50%;

    background:var(--primary);

    box-shadow:0 0 0 5px rgba(46,125,50,.15);

    transform:scale(0);

}

.timeline-item:nth-child(even) .timeline-dot{

    background:var(--gold);

    box-shadow:0 0 0 5px rgba(212,175,55,.18);

}



/*========================================

FUTURE SECTION

========================================*/

.future-section{

    background:#ffffff;

}

.future-content{

    padding-left:40px;

}

.future-content h2{

    color:var(--primary);

    margin:20px 0;

}

.future-content p{

    margin-bottom:18px;

}

.future-section img{

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    transition:.5s;

}

.future-section img:hover{

    transform:scale(1.03);

}
/*========================================

FOOTER

========================================*/

.footer-section{

    background:#1F3B2D;

    color:#ffffff;

    padding:80px 0 30px;

}

.footer-section h3,

.footer-section h4{

    color:#ffffff;

    margin-bottom:20px;

}

.footer-section p{

    color:rgba(255,255,255,.8);

}

.footer-logo{

    max-width:140px;

}

.footer-heading{

    font-size:19px;

    position:relative;

    padding-bottom:10px;

}

.footer-heading::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:40px;

    height:2px;

    background:#C9A227;

}

.footer-contact p{

    display:flex;

    align-items:flex-start;

    gap:10px;

    font-size:15px;

    line-height:1.6;

    margin-bottom:14px;

}

.footer-contact p i{

    color:#C9A227;

    font-size:16px;

    margin-top:3px;

}

.footer-contact p a{

    color:rgba(255,255,255,.8);

    text-decoration:none;

    transition:.3s;

}

.footer-contact p a:hover{

    color:#C9A227;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links li a{

    color:rgba(255,255,255,.8);

    text-decoration:none;

    transition:.3s;

}

.footer-links li a:hover{

    color:#C9A227;

    padding-left:4px;

}

.footer-section hr{

    border-color:rgba(255,255,255,.15);

    margin:35px 0 20px;

}



/*========================================

SOCIAL ICONS

========================================*/

.social-icons{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-icons a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#ffffff;

    font-size:20px;

    transition:.4s;

}

.social-icons a:hover{

    background:var(--gold);

    color:#222;

    transform:translateY(-5px);

}



/*========================================

BACK TO TOP

========================================*/

.progress-wrap{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:rgba(0,0,0,.08);

    z-index:1050;

}

.progress-bar{

    width:0%;

    height:100%;

    background:var(--primary);

}

#backToTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    border:none;

    display:flex;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    opacity:0;

    visibility:hidden;

    transition:.4s;

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:var(--gold);

    color:#222;

}



/*========================================

COMMON ANIMATION

========================================*/

.hover-up{

    transition:.4s;

}

.hover-up:hover{

    transform:translateY(-10px);

}



/*========================================

RESPONSIVE

========================================*/

@media(max-width:991px){

    section{

        padding:70px 0;

    }

    .hero{

        text-align:center;

    }

    .hero-content{

        margin-bottom:40px;

    }

    .hero-content h1{

        font-size:48px;

    }

    .about-content,

    .center-content,

    .future-content,

    .journey-content,

    .treatment-content{

        padding:0;

        margin-top:30px;

    }

    .navbar-nav{

        background:#fff;

        padding:20px;

        border-radius:15px;

        margin-top:15px;

    }

    .navbar-nav .nav-link{

        margin:10px 0;

    }

}



@media(max-width:768px){

    h1{

        font-size:38px;

    }

    h2{

        font-size:30px;

    }

    h3{

        font-size:24px;

    }

    p{

        font-size:15px;

    }

    .btn-success{

        width:100%;

    }

    .hero-image img{

        max-width:100%;

    }

    .vision-box,

    .mission-box,

    .achievement-box,

    .expertise-chart,

    .philosophy-box{

        padding:25px;

    }

    .team-card,

    .stat-box{

        padding:18px 10px;

    }

}



@media(max-width:576px){

    .navbar-brand img{

        width:65px;

    }

    .hero{

        min-height:auto;

        padding-top:120px;

    }

    .hero-content h1{

        font-size:32px;

    }

    .hero-content h3{

        font-size:20px;

    }

    .footer-section{

        text-align:center;

    }

    .social-icons{

        justify-content:center;

    }

}


/*========================================

PATIENT REVIEWS SECTION

========================================*/

.reviews-section{

    background:#fff;

}

.reviews-note{

    color:var(--gray);

    font-size:13px;

    font-style:italic;

    max-width:520px;

    margin:8px auto 0;

}

.review-card{

    background:var(--light);

    border-radius:var(--radius);

    padding:30px;

    height:100%;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:transform .4s ease, box-shadow .4s ease;

}

.review-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.1);

}

.review-stars{

    color:var(--gold);

    font-size:15px;

    margin-bottom:14px;

    letter-spacing:2px;

}

.review-quote{

    color:var(--black);

    line-height:1.8;

    margin-bottom:22px;

}

.review-person{

    display:flex;

    align-items:center;

    gap:14px;

}

.review-avatar{

    width:44px;

    height:44px;

    min-width:44px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--primary),var(--gold));

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    font-size:15px;

}

.review-person h6{

    margin:0;

    font-size:15px;

    font-weight:600;

}

.review-person span{

    font-size:13px;

    color:var(--gray);

}

.comments-strip{

    margin-top:50px;

    padding-top:40px;

    border-top:1px solid var(--border);

}

.comments-heading{

    margin-bottom:24px;

    font-weight:600;

}

.comment-item{

    display:flex;

    gap:14px;

    padding:16px 0;

    border-bottom:1px dashed var(--border);

}

.comment-item:last-child{

    border-bottom:none;

}

.comment-avatar{

    width:38px;

    height:38px;

    min-width:38px;

    border-radius:50%;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:600;

    font-size:13px;

}

.comment-body h6{

    margin:0 0 4px;

    font-size:14px;

    font-weight:600;

    color:var(--black);

}

.comment-body h6 span{

    font-weight:400;

    color:var(--gray);

    font-size:12px;

    margin-left:8px;

}

.comment-body p{

    margin:0;

    color:var(--gray);

    font-size:14px;

    line-height:1.7;

}


/*========================================

REDUCED MOTION SUPPORT
(users who prefer less motion still see all
content instantly, with CSS-driven effects
shortened to near-zero)

========================================*/

@media (prefers-reduced-motion: reduce){

    *,
    *::before,
    *::after{

        animation-duration:.01ms !important;

        animation-iteration-count:1 !important;

        transition-duration:.01ms !important;

        scroll-behavior:auto !important;

    }

}
