*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Arial',sans-serif;
}


body{
    color:#1c3d24;
    background:#fff;
}


header{

    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 6%;
    background:white;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);

}


.logo {
    width: 150px;
    height: auto;
    display: block;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;

    mix-blend-mode: multiply;
}


nav{

    display:flex;
    gap:30px;

}


nav a{

    text-decoration:none;
    color:#333;
    font-weight:600;

}


button{

    background:#7aa82f;
    color:white;
    border:none;
    padding:13px 25px;
    border-radius:25px;
    font-weight:bold;
    cursor:pointer;

}


.whatsapp{

    background:white;
    color:#7aa82f;
    border:2px solid #7aa82f;

}


/* HERO */

.hero{

    position:relative;

    width:100%;

    height:650px;

    overflow:hidden;

}


/* SLIDER */

.hero-slider{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    z-index:0;

}


.hero-slide{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1s ease;

}


.hero-slide.active{

    opacity:1;

}


/* LIGHT OVERLAY */

.hero::after{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(255,255,255,0.55);

    z-index:1;

}


/* FIXED TEXT */

.hero-content{

    position:relative;

    z-index:5;

    width:100%;
    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

}


.hero-content h1{

    font-size:70px;

    line-height:1.08;

    font-weight:900;

    color:#173d1d;

    margin:0 0 20px 0;

}


.hero-content p{

    font-size:22px;

    line-height:1.6;

    font-weight:600;

    color:#173d1d;

    margin:0;

}


/* CARE CURE CONNECT */

.hero-values{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;

    margin-top:45px;

}


.hero-values span{

    font-size:30px;

    font-weight:900;

    letter-spacing:2px;

    color:#173d1d;

}


.hero-values b{

    font-size:25px;

    color:#173d1d;

}

/* =========================================
   PREMIUM SERVICES
========================================= */

.services {
    padding: 95px 7%;
    background: #eef4ef;
    text-align: center;
}


/* HEADING */

.services-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}


.services-heading span {
    display: block;

    color: #087f5b;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 12px;
}


.services-heading h2 {
    font-size: 48px;

    line-height: 1.15;

    color: #173d1d;

    font-weight: 900;

    margin: 0 0 18px;
}


.services-heading p {
    font-size: 18px;

    color: #53615a;

    margin: 0;
}


/* SERVICE GRID */

.service-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;

    text-align: left;
}


/* SERVICE CARD */

.service-card {
    background: white;

    padding: 28px;

    border-radius: 22px;

    border: 1px solid #dfe9e1;

    display: flex;

    align-items: center;

    gap: 22px;

    min-height: 190px;

    box-shadow:
        0 8px 25px rgba(23,61,29,0.06);

    transition: all 0.35s ease;
}


/* HOVER */

.service-card:hover {
    transform: translateY(-8px);

    border-color: #b8d6c1;

    box-shadow:
        0 20px 45px rgba(23,61,29,0.14);
}


/* SMALL SERVICE IMAGE */

.service-image {
    width: 82px;

    height: 82px;

    flex-shrink: 0;

    border-radius: 18px;

    overflow: hidden;

    background: #e8f3eb;

    border: 1px solid #d5e6da;

    display: flex;

    align-items: center;

    justify-content: center;
}


.service-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}


.service-card:hover .service-image img {
    transform: scale(1.08);
}


/* CONTENT */

.service-content {
    flex: 1;
}


.service-content h3 {
    font-size: 20px;

    line-height: 1.3;

    color: #173d1d;

    margin: 0 0 12px;

    font-weight: 800;
}


.service-content p {
    font-size: 14px;

    line-height: 1.65;

    color: #53615a;

    margin: 0;
}


/* =========================================
   STATS
========================================= */

.services-stats {
    max-width: 1000px;

    margin: 70px auto 0;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.services-stats div {
    background: white;

    padding: 25px 15px;

    border-radius: 18px;

    border: 1px solid #e1eae3;

    box-shadow:
        0 8px 25px rgba(23,61,29,0.06);
}


.services-stats strong {
    display: block;

    font-size: 30px;

    color: #087f5b;

    font-weight: 900;

    margin-bottom: 6px;
}


.services-stats span {
    font-size: 13px;

    color: #53615a;

    font-weight: 600;
}


/* =========================================
   MOBILE
========================================= */

@media(max-width:768px) {

    .services {
        padding: 70px 20px;
    }


    .services-heading {
        margin-bottom: 40px;
    }


    .services-heading h2 {
        font-size: 36px;
    }


    .services-heading p {
        font-size: 16px;

        line-height: 1.5;
    }


    .service-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .service-card {
        padding: 22px;

        gap: 16px;

        min-height: auto;
    }


    .service-image {
        width: 68px;

        height: 68px;

        border-radius: 15px;
    }


    .service-content h3 {
        font-size: 18px;
    }


    .service-content p {
        font-size: 13px;
    }


    .services-stats {
        grid-template-columns: 1fr 1fr;

        gap: 12px;

        margin-top: 50px;
    }


    .services-stats strong {
        font-size: 26px;
    }

}


/* =========================================
   OUR PHYSIO
========================================= */

.team {
    padding: 100px 7%;
    background: #ffffff;
}


/* TEAM HEADING */

.team-heading {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}


.team-heading span {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #087f5b;
    margin-bottom: 15px;
}


.team-heading h2 {
    font-size: 46px;
    line-height: 1.15;
    color: #173d1d;
    margin: 0 0 18px;
    font-weight: 800;
}


.team-heading h2 strong {
    color: #087f5b;
}


.team-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #68756d;
    max-width: 650px;
    margin: auto;
}


/* TEAM GRID */

.team-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* TEAM CARD */

.team-card {
    background: #f8fbf8;
    border: 1px solid #e5eee8;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s ease;
}


.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(23,61,29,0.12);
}


/* DOCTOR IMAGE */

.doctor-image {
    width: 100%;
    height: 310px;
    overflow: hidden;
    background: #e8f5ee;
}


.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.team-card:hover .doctor-image img {
    transform: scale(1.05);
}


/* DOCTOR INFO */

.doctor-info {
    padding: 25px 22px 28px;
}


.doctor-info h3 {
    font-size: 21px;
    color: #173d1d;
    margin: 0 0 6px;
}


.doctor-info > span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #087f5b;
    margin-bottom: 14px;
}


.doctor-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #68756d;
    margin: 0;
}


/* =========================================
   TEAM MOBILE
========================================= */

@media (max-width: 768px) {

    .team {
        padding: 70px 20px;
    }


    .team-heading {
        margin-bottom: 40px;
    }


    .team-heading h2 {
        font-size: 34px;
    }


    .team-heading p {
        font-size: 15px;
    }


    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .doctor-image {
        height: 330px;
    }


    .doctor-info {
        padding: 22px;
    }

}




/* FOOTER */


footer{

    background:#244d18;
    color:white;
    padding:40px 6%;
    text-align:center;

}




/* MOBILE */


@media(max-width:768px){


header,
.hero,
.about{

    flex-direction:column;

}


.hero-text,
.hero-image,
.about > div{

    width:100%;

}


.cards{

grid-template-columns:1fr;

}


.doctors{

grid-template-columns:1fr;

}


nav{

display:none;

}

}

.booking-box{

display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
justify-content:center;
align-items:center;
z-index:1000;

}


.booking-form{

background:white;
padding:30px;
border-radius:20px;
width:350px;

}


.booking-form input,
.booking-form select,
.booking-form textarea{

width:100%;
padding:12px;
margin:8px 0;
border:1px solid #ddd;
border-radius:10px;

}


.booking-form textarea{

height:80px;

}

.floating-whatsapp{

position:fixed;
right:25px;
bottom:25px;

width:55px;
height:55px;

background:#25D366;
color:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

font-size:28px;

text-decoration:none;

box-shadow:0 4px 10px rgba(0,0,0,0.3);

z-index:999;

}



/* HEADER BUTTONS */

.header-buttons{
    display:flex;
    align-items:center;
    gap:15px;
}

.header-whatsapp{
    background:white;
    color:#087f5b;
    border:2px solid #087f5b;
}

@media(max-width:768px){

    .header-buttons{
        margin-top:15px;
    }

    .hero{
        height:600px;
    }

    .hero-content h1{
        font-size:45px;
    }

    .hero-content p{
        font-size:17px;
    }

    .hero-values{
        gap:12px;
        margin-top:30px;
    }

    .hero-values span{
        font-size:20px;
    }

    .hero-values b{
        font-size:18px;
    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.about {
    padding: 75px 7%;
    background: #f8fbf8;
}


/* ABOUT HEADER */

.about-header {
    max-width: 1000px;
    margin: 0 auto 55px;
    text-align: center;
}

.about-label {
    display: block;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #173d1d;
    margin-bottom: 18px;
}

.about-header h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #173d1d;
    margin: 0;
}


/* =========================================
   ABOUT TWO COLUMN CONTENT
========================================= */

.about-content-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1px 1fr;

    gap: 45px;
    align-items: stretch;
}


/* VERTICAL LINE */

.about-divider {
    width: 1px;
    background: #b8c9bd;
}


/* TEXT */

.about-column p {
    font-size: 16px;
    line-height: 1.75;
    color: #53615a;
    margin: 0 0 22px;
}

.about-column p strong {
    color: #173d1d;
    font-weight: 800;
}


/* RIGHT SIDE */

.about-right {
    position: relative;
}


/* =========================================
   CARE SECTION
========================================= */

.care-section {
    max-width: 1100px;
    margin: 75px auto 0;
}


/* CARE HEADING */

.care-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 30px;
}

.care-heading > span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #173d1d;
}

.care-heading h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #173d1d;
    margin: 0;
}

.care-heading h3 strong {
    color: #087f5b;
}


/* =========================================
   CARE CARDS
========================================= */

.care-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* PREMIUM CARE CARDS */

.care-card {
    padding: 32px 25px;

    min-height: 245px;

    border-radius: 22px;

    border: 1px solid rgba(23, 61, 29, 0.08);

    box-shadow: 0 10px 30px rgba(23, 61, 29, 0.07);

    transition: all 0.35s ease;
}

.care-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(23, 61, 29, 0.13);
}


/* DIFFERENT COLORS */

.care-one {
    background: #eef7f1;
}

.care-two {
    background: #eef4f8;
}

.care-three {
    background: #f8f3e9;
}

.care-four {
    background: #f3eef8;
}


/* CARD TEXT */

.care-card h4 {
    font-size: 20px;

    line-height: 1.35;

    color: #173d1d;

    margin: 0 0 16px;

    font-weight: 800;
}

.care-card p {
    font-size: 14px;

    line-height: 1.7;

    color: #53615a;

    margin: 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .care-grid {
        grid-template-columns: 1fr 1fr;

        gap: 14px;
    }

    .care-card {
        min-height: 230px;

        padding: 25px 18px;
    }

    .care-card h4 {
        font-size: 18px;
    }

    .care-card p {
        font-size: 13px;
    }

}

/* =========================================
   GETTING STARTED
========================================= */

.getting-started {
    padding: 100px 7%;
    background: #f3f7f3;
}

.getting-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.getting-header span {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #087f5b;
    margin-bottom: 18px;
}

.getting-header h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #173d1d;
    margin: 0 0 18px;
    font-weight: 800;
}

.getting-header h2 strong {
    color: #087f5b;
}

.getting-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #53615a;
    margin: 0;
}


/* STEP BOXES */

.steps-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.step-box {
    background: #173d1d;

    padding: 38px 32px;

    border-radius: 24px;

    border: 1px solid #285a35;

    box-shadow: 0 15px 40px rgba(23, 61, 29, 0.18);

    transition: all 0.35s ease;
}

.step-box:hover {
    transform: translateY(-8px);

    box-shadow: 0 22px 50px rgba(23, 61, 29, 0.28);
}

.step-box h3 {
    font-size: 22px;

    line-height: 1.35;

    color: #ffffff;

    margin: 0 0 18px;

    font-weight: 800;
}

.step-box p {
    font-size: 15px;

    line-height: 1.75;

    color: #dce9df;

    margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {

    .getting-started {
        padding: 70px 20px;
    }

    .getting-header {
        margin-bottom: 40px;
    }

    .getting-header span {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .getting-header h2 {
        font-size: 34px;
    }

    .getting-header p {
        font-size: 16px;
    }

    .steps-container {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .step-box {
        padding: 30px 25px;
    }

    .step-box h3 {
        font-size: 20px;
    }

    .step-box p {
        font-size: 14px;
    }

}

/* =========================================
   WHY CHOOSE GENESYS PHYSIO
========================================= */

.why-choose {
    padding: 100px 7%;
    background: #ffffff;
}

.why-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.why-header span {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #087f5b;
    margin-bottom: 18px;
}

.why-header h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #173d1d;
    margin: 0;
    font-weight: 800;
}

.why-header h2 strong {
    color: #087f5b;
}


/* WHY GRID */

.why-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* WHY CARD */

.why-card {
    padding: 32px 27px;

    min-height: 280px;

    border-radius: 22px;

    box-shadow: 0 10px 30px rgba(23, 61, 29, 0.07);

    transition: all 0.35s ease;
}

.why-card:hover {
    transform: translateY(-7px);

    box-shadow: 0 18px 40px rgba(23, 61, 29, 0.13);
}


/* DIFFERENT LIGHT COLORS */

.card-one {
    background: #eef7f1;
}

.card-two {
    background: #f3f5e8;
}

.card-three {
    background: #eef4f8;
}

.card-four {
    background: #f8f1e9;
}

.card-five {
    background: #f0f6f3;
}

.card-six {
    background: #f4f0f8;
}

.card-seven {
    background: #f8f5e9;
}

.card-eight {
    background: #edf5f4;
}


/* CARD TEXT */

.why-card h3 {
    font-size: 20px;

    line-height: 1.35;

    color: #173d1d;

    margin: 0 0 18px;

    font-weight: 800;
}

.why-card p {
    font-size: 14px;

    line-height: 1.7;

    color: #4d5b53;

    margin: 0;
}


/* MOBILE */

@media (max-width: 768px) {

    .why-choose {
        padding: 70px 20px;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-header span {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .why-header h2 {
        font-size: 34px;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .why-card {
        min-height: auto;

        padding: 30px 25px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 14px;
    }

}

/* =========================================
   PREMIUM HIGHLIGHTS
========================================= */

.premium-highlights {
    padding: 70px 7% 80px;
    background: #f4f7f3;
    text-align: center;
}


/* HIGHLIGHT BOXES */

.premium-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
}


.highlight-box {
    width: 31%;
    min-width: 280px;
    padding: 32px 25px;
    border-radius: 22px;
    color: white;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}


.highlight-box:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}


/* DIFFERENT DARK COLORS */

.highlight-one {
    background: #173d1d;
}


.highlight-two {
    background: #155b4b;
}


.highlight-three {
    background: #294d3a;
}


/* PREMIUM ICON */

.highlight-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);

    color: #b9df83;

    font-size: 25px;
    font-weight: 700;
}


/* TITLE */

.highlight-box h3 {
    font-size: 20px;
    margin: 0 0 12px;
    color: white;
    font-weight: 800;
}


/* DESCRIPTION */

.highlight-box p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    margin: 0;
}


/* =========================================
   PREMIUM QUOTE
========================================= */

.premium-quote {
    width: 100%;
    max-width: 1000px;
    margin: 55px auto 0;
    padding: 0 20px;
}


.premium-quote p {
    font-size: 22px;
    line-height: 1.65;
    color: #173d1d;
    font-weight: 600;
    margin: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .premium-highlights {
        padding: 55px 20px 65px;
        gap: 18px;
    }


    .highlight-box {
        width: 100%;
        min-width: unset;
        padding: 28px 22px;
    }


    .highlight-box h3 {
        font-size: 19px;
    }


    .highlight-box p {
        font-size: 14px;
    }


    .premium-quote {
        margin-top: 35px;
        padding: 0 5px;
    }


    .premium-quote p {
        font-size: 17px;
        line-height: 1.6;
    }

}

/* =========================================
   BANGALORE HOME PHYSIOTHERAPY
========================================= */

.location-section {
    padding: 100px 7%;
    background: #f5f8f5;
}


.location-heading {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}


.location-heading span {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #087f5b;
    margin-bottom: 15px;
}


.location-heading h2 {
    font-size: 46px;
    line-height: 1.2;
    color: #173d1d;
    margin: 0 0 20px;
    font-weight: 800;
}


.location-heading h2 strong {
    color: #087f5b;
}


.location-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #53615a;
    max-width: 760px;
    margin: auto;
}


/* BANGALORE IMAGE */

.bangalore-area {
    position: relative;
    max-width: 1200px;
    height: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(23,61,29,0.18);
}


.bangalore-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* DARK OVERLAY */

.bangalore-overlay {
    position: absolute;
    inset: 0;

    background: rgba(12,38,23,0.58);
}


/* CENTER CONTENT */

.bangalore-center {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    width: 90%;

    text-align: center;

    color: white;
}


.location-pin {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(8px);

    color: #b9df83;

    font-size: 32px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.bangalore-center h3 {
    font-size: 40px;
    line-height: 1.2;
    color: white;
    margin: 0 0 15px;
    font-weight: 800;
}


.bangalore-center p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    margin: 0 auto;
    max-width: 600px;
}


/* MOBILE */

@media (max-width: 768px) {

    .location-section {
        padding: 70px 20px;
    }


    .location-heading {
        margin-bottom: 35px;
    }


    .location-heading h2 {
        font-size: 34px;
    }


    .location-heading p {
        font-size: 15px;
    }


    .bangalore-area {
        height: 420px;
        border-radius: 22px;
    }


    .bangalore-center {
        width: 92%;
    }


    .location-pin {
        width: 55px;
        height: 55px;
        font-size: 27px;
    }


    .bangalore-center h3 {
        font-size: 28px;
    }


    .bangalore-center p {
        font-size: 14px;
    }

}

/* =========================================
   PREMIUM HEADER
========================================= */

header {
    position: sticky;
    top: 0;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 6%;

    background: rgba(255,255,255,0.96);

    box-shadow: 0 3px 18px rgba(0,0,0,0.06);
}


/* LOGO */

.logo-area {
    display: flex;
    align-items: center;
}


.logo {
    width: 150px;
    height: auto;

    display: block;

    background: transparent;

    box-shadow: none;

    border: none;
}


/* NAVIGATION */

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}


nav a {
    position: relative;

    text-decoration: none;

    color: #173d1d;

    font-size: 15px;

    font-weight: 700;

    padding: 8px 0;

    transition: color 0.3s ease;
}


nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #087f5b;

    transition: width 0.3s ease;
}


nav a:hover {
    color: #087f5b;
}


nav a:hover::after {
    width: 100%;
}


/* HEADER BUTTONS */

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}


.header-buttons button {
    padding: 12px 20px;

    border-radius: 25px;

    font-size: 13px;

    font-weight: 800;
}


.header-buttons button:first-child {
    background: #173d1d;
    color: white;
}


.header-buttons button:first-child:hover {
    background: #087f5b;
}


.header-whatsapp {
    background: white !important;

    color: #087f5b !important;

    border: 2px solid #087f5b !important;
}


.header-whatsapp:hover {
    background: #087f5b !important;

    color: white !important;
}


/* SMOOTH SCROLL */

html {
    scroll-behavior: smooth;
}


/* MOBILE */

@media (max-width: 768px) {

    header {
        padding: 12px 20px;

        flex-wrap: wrap;
    }


    .logo {
        width: 125px;
    }


    nav {
        display: none;
    }


    .header-buttons {
        gap: 7px;
    }


    .header-buttons button {
        padding: 9px 13px;

        font-size: 11px;
    }

}

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    background: #25D366;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 9999;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);

    text-decoration: none;
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;

    display: block;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

/* SERVICES STATS */

.stats {

    background: #12351c;

    padding: 30px;

    border-radius: 25px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}


.stats > div {

    background: #f5f8f3;

    padding: 25px 15px;

    border-radius: 18px;

    text-align: center;

}


.stats h3 {

    font-size: 32px;

    margin: 0;

    color: #087f5b;

}


.stats p {

    margin-top: 8px;

    color: #173d1d;

    font-weight: 700;

}


@media(max-width:768px){

    .stats {

        grid-template-columns: repeat(2,1fr);

    }

}

/* =================================
   SERVICES BACKGROUND OVERLAY
================================= */

.services {
    position: relative;
    background-image: 
    linear-gradient(
        rgba(10,35,20,0.65),
        rgba(10,35,20,0.65)
    ),
    url("images/services-bg.jpg");

    background-size: cover;
    background-position: center;
}


/* SERVICES TEXT */

.services-heading span,
.services-heading h2 {
    color:white;
}


.services-heading p {
    color:#e8f1eb;
}


/* =================================
   GETTING STARTED BACKGROUND
================================= */

.getting-started {

    background-image:
    linear-gradient(
        rgba(255,255,255,0.75),
        rgba(255,255,255,0.75)
    ),
    url("images/getting-started-bg.jpg");

    background-size:cover;
    background-position:center;

}


.getting-header span,
.getting-header h2 {
    color:#173d1d;
}


.getting-header p {
    color:#33443a;
}

/* =================================
   PATIENT REVIEWS
================================= */

.reviews {

    padding:100px 7%;
    background:#f4f8f4;

}


.review-header {

    max-width:850px;
    margin:auto;
    text-align:center;
    margin-bottom:55px;

}


.review-header span {

    color:#087f5b;
    font-size:13px;
    font-weight:800;
    letter-spacing:3px;

}


.review-header h2 {

    font-size:46px;
    color:#173d1d;
    margin:15px 0;

}


.review-header h2 strong {

    color:#087f5b;

}


.review-header p {

    color:#53615a;
    font-size:17px;

}



.review-grid {

    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;

}



.review-card {

    background:white;

    padding:35px 30px;

    border-radius:22px;

    box-shadow:
    0 10px 30px rgba(23,61,29,0.08);

    transition:.3s;

}


.review-card:hover {

    transform:translateY(-8px);

}



.stars {

    color:#f5b301;

    font-size:22px;

    margin-bottom:18px;

}



.review-card p {

    color:#53615a;

    line-height:1.7;

    font-size:15px;

}



.review-card h4 {

    margin-top:20px;

    color:#173d1d;

}


/* MOBILE */

@media(max-width:768px){

.review-grid{

    grid-template-columns:1fr;

}


.review-header h2{

    font-size:34px;

}

}

img {
    max-width:100%;
}