body{
font-family:'Poppins',sans-serif;
margin:0;
}

html{
scroll-behavior:smooth;
}

section{
scroll-margin-top:90px;
}:root {
    --primary: #1a4d2e;
    --primary-dark: #133a22;
    --light-bg: #f3f7f4;
    --text-dark: #333333;
    --text-light: #ffffff;
}

/* NAVBAR */
.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--light-bg);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

/* Desktop Menu */
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    color: var(--primary);
}

/* Appointment Button */
.btn-appointment {
    background: var(--primary);
    color: var(--text-light) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-appointment:hover {
    background: var(--primary-dark);
}

/* Mobile Menu Icon */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

/* MOBILE MENU */
@media (max-width: 768px) {

    .nav-links {
        position: absolute;
        top: 70px;
        right: -260px;
        background: var(--light-bg);
        width: 220px;
        flex-direction: column;
        gap: 18px;
        padding: 20px;
        box-shadow: 0 4px 25px rgba(0,0,0,0.15);
        border-radius: 12px;
        transition: 0.4s ease;
    }

    .nav-links.show {
        right: 15px;
    }

    .menu-icon {
        display: block;
    }
}

/* ===========================
      HERO SECTION
=========================== */
.hero {
    height: 90vh;
    background: url("images/Flux_Dev_Ayurvedic_flat_lay_on_rustic_green_and_gold_textured__0.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: var(--text-light);
    position: relative;
}

/* Dark overlay for clarity */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-light);
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #f5f5f5;
}

/* Universal Button */
.btn {
    background: var(--primary);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
    transition: 0.3s ease;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Mobile Responsive Hero */
@media(max-width: 768px) {
    .hero {
        height: 75vh;
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
}


/* ===========================
      ABOUT SECTION
=========================== */
.about {
    padding: 90px 40px;
    background: var(--light-bg);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.about-text h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 22px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.about-image img {
    width: 400px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

/* Mobile Styling */
@media(max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 90%;
    }
}

/* ===========================
      TREATMENTS SECTION
=========================== */
.treatments {
    padding: 90px 40px;
    text-align: center;
}

.treatments h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 45px;
    font-weight: 700;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.treatment-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    text-align: left;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.treatment-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 600;
}

.treatment-card p {
    font-size: 15px;
    color:#444;
    line-height: 1.7;
}

.full-width {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .full-width {
        grid-column: span 1;
    }
}


/* ===========================
      TESTIMONIALS SECTION
=========================== */
.testimonials {
    padding: 90px 40px;
    background: var(--light-bg);
    text-align: center;
}

.testimonials h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 45px;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-card {
    background: #ffffff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

.testimonial-card h4 {
    margin-top: 18px;
    color: var(--primary);
    font-weight: 700;
}


/* ===========================
      APPOINTMENT SECTION
=========================== */
.appointment {
    padding: 90px 40px;
    text-align: center;
}

.appointment h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 35px;
    font-weight: 700;
}

.appointment-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.appointment-form input,
.appointment-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cfcfcf;
    border-radius: 12px;
    font-size: 16px;
    background: #ffffff;
}

.appointment-form textarea {
    height: 130px;
    resize: none;
}

.appointment-form .btn {
    background: var(--primary);
    color: var(--text-light);
    padding: 15px;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}

.appointment-form .btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}


/* ===========================
      CONTACT SECTION
=========================== */
.contact {
    padding: 90px 40px;
    background: #ffffff;
    text-align: center;
}

.contact h2 {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 45px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.contact-box {
    background: var(--light-bg);
    padding: 28px 30px;
    border-radius: 14px;
    min-width: 260px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-box h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-box p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
}

.map-container {
    max-width: 900px;
    margin: auto;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}


/* ===========================
      FOOTER
=========================== */
.footer {
    background: #112d1f;
    color: #ffffff;
    padding: 65px 40px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p,
.footer-col a {
    font-size: 15px;
    line-height: 1.8;
    color: #dcdcdc;
}

.footer-col a {
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid #2e4a3c;
    font-size: 14px;
    color: #c6c6c6;
}

/* MOBILE FOOTER */
@media (max-width: 800px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
/* GLOBAL CARD COLOR UPDATE */
.treatment-card,
.testimonial-card,
.contact-box {
    background: #e8f2ed !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.treatment-card p,
.testimonial-card p,
.contact-box p {
    color: #2e2e2e;
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 28px;
    }
}
/* GOOGLE PROFILE SECTION */

.google-profile{
padding:90px 40px;
background: var(--light-bg);
text-align:center;
}

.google-profile h2{
font-size:34px;
color:var(--primary);
margin-bottom:15px;
}

.google-text{
max-width:700px;
margin:auto;
margin-bottom:40px;
color:#555;
font-size:17px;
}

.google-box{
background:#ffffff;
padding:40px;
max-width:420px;
margin:auto;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.google-rating{
font-size:20px;
margin-bottom:20px;
color:#f5a623;
}

.google-rating span{
color:#333;
font-size:16px;
margin-left:8px;
}