        :root {
            --green: #2f6b3f;
            --light: #eaf6ee;
            --dark: #333;
            --white: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark);
            background: var(--white);
            line-height: 1.7;
        }

        .container {
            max-width: 1200px;
            margin: auto;
            padding: 0 20px;
        }

        /* NAV */
        nav {
            position: sticky;
            top: 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
            z-index: 999;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--green);
            text-decoration: none;
        }

        .nav-links a {
            margin-left: 25px;
            color: var(--green);
            text-decoration: none;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #4caf50;
        }

        /* HERO */
        .hero {
            position: relative;
            background:
                linear-gradient(rgba(234, 246, 238, .9), rgba(234, 246, 238, .9)),
                url("https://images.unsplash.com/photo-1600334129128-685c5582fd35") center/cover;
            padding: 110px 0;
            text-align: center;
            overflow: hidden;
        }

        /* .hero {
  background: url("static/images/ayurveda-bg.jpg") center/cover no-repeat;
  color: #fff;
  padding: 80px 0;
} */

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right,
                    rgba(255, 255, 255, 0.92),
                    rgba(159, 201, 180, 0.7));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.95rem;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
        }

        .hero h2 {
            font-size: 1.5rem;
            font-weight: 500;
            color: #097a04;
            margin-bottom: 20px;
        }

        .hero-text {
            font-size: 1.1rem;
            line-height: 1.7;
            max-width: 600px;
        }


        .hero-left-img {
  height: 420px;
  background-image: url("../images/img10.jpg"); /* correct relative path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



        .hero-timings {
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            margin-top: 20px;
            padding: 14px 34px;
            background: var(--green);
            color: #fff;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
        }

        .btn:hover {
            background: #4caf50;
        }

        /* SECTIONS */
        section {
            padding: 90px 0;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: #ffffff;
        }

        .section-subtitle {
            color: #d5f9ac;
            font-size: 1.05rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* TRUST BAR */
        .trust {
            background: var(--green);
            color: white;
        }

        .trust-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .trust i {
            font-size: 2.3rem;
            margin-bottom: 10px;
        }

        /* ABOUT */
        .about {
            display: flex;
            gap: 45px;
            align-items: center;
        }

        .about img {
            width: 300px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
        }

        .badge {
            display: inline-block;
            background: var(--green);
            color: white;
            padding: 7px 18px;
            border-radius: 50px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        /* SERVICES */
        #services {
            background: #f7f7f7;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }

        .card {
            background: white;
            padding: 32px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .card h3 {
            color: var(--green);
            margin-bottom: 10px;
        }

        /* GALLERY */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .gallery img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }

        /* CONTACT */
        #contact {
            background: var(--green);
            color: white;
            text-align: center;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 25px 0;
            font-size: 1.2rem;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
        }

        .map {
            margin-top: 30px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
        }

        /* TESTIMONIALS */
        .testimonial {
            font-style: italic;
            border-left: 4px solid var(--green);
            background: #fff;
        }

        .testimonial .name {
            font-style: normal;
            font-weight: 500;
            color: var(--green);
        }

        /* Testimonials Section */
        .testimonials-section {
            background: #b3d2bd;
            /* light green */
        }

        /* Carousel arrows visibility */
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
            /* makes arrows visible on light bg */
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 20px;
            font-size: .85rem;
            color: #666;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .about {
                flex-direction: column;
                text-align: center;
            }

            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.3rem;
            }
        }



        .contact-section {
            padding: 80px 0;
            background: #f6fbf7;
        }

        .section-badge {
            display: inline-block;
            background: rgba(14, 77, 46, 0.1);
            color: #cae3d7;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
        }

        .contact-card {
            background: #ffffff;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            color: #222;
            /* IMPORTANT */
        }

        .contact-card h4 {
            font-family: 'Playfair Display', serif;
            color: #0e4d2e;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .contact-item i {
            font-size: 1.4rem;
            color: #0e4d2e;
            margin-top: 4px;
        }

        .contact-item strong {
            color: #0e4d2e;
        }

        .contact-item a {
            color: #0e4d2e;
            text-decoration: none;
        }

        .contact-item a:hover {
            text-decoration: underline;
        }

        .map-card {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }



        /* TOP BAR */
        .top-bar {
            background: #0e4d2e;
            color: #fff;
            font-size: 0.9rem;
            padding: 6px 0;
        }

        .top-bar i {
            margin-right: 5px;
        }

        /* MAIN NAVBAR */
        .main-navbar {
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        .navbar-brand {
            line-height: 1.2;
        }

        .brand-main {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: #0e4d2e;
            font-weight: 700;
        }

        .brand-sub {
            font-size: 0.85rem;
            color: #4b7f64;
        }

        .nav-link {
            color: #0e4d2e !important;
            font-weight: 500;
            margin-left: 15px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: #157347 !important;
        }

        .navbar-toggler {
            border-color: #0e4d2e;
        }

        .navbar-toggler-icon {
            filter: invert(24%) sepia(36%) saturate(400%) hue-rotate(100deg);
        }