 <style>
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            /* Deep Green Theme */
            --gold: #2e7d32;
            --gold-light: #4caf50;
            --gold-dark: #1b5e20;
            --cream: #f1f8e9;
            --dark: #0a1f0a;
            --dark2: #132613;
            --gray: #555;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            /* Bootstrap overrides */
            --bs-primary: #2e7d32;
            --bs-success: #4caf50;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Hind Siliguri', sans-serif;
            background: var(--white);
            color: #222;
            overflow-x: hidden;
        }

        /* ==================== NAVBAR ==================== */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.5s ease;
        }
        .navbar.scrolled {
            background: rgba(10, 31, 10, 0.97);
            backdrop-filter: blur(20px);
            padding: 14px 40px;
            box-shadow: 0 2px 30px rgba(0,0,0,0.3);
        }
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: var(--gold-light);
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .navbar-brand .dot {
            width: 8px; height: 8px;
            background: var(--gold-light);
            border-radius: 50%;
            display: inline-block;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 5px;
            align-items: center;
        }
        .nav-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 18px;
            border-radius: 50px;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .nav-links a:hover { color: var(--gold-light); background: rgba(76,175,80,0.15); }
        .nav-links .btn-book {
            background: var(--gold);
            color: #fff;
            font-weight: 700;
            padding: 9px 22px;
        }
        .nav-links .btn-book:hover {
            background: var(--gold-light);
            color: #fff;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gold-light);
            transition: var(--transition);
        }

        /* ==================== HERO ==================== */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-slides {
            position: absolute;
            inset: 0;
        }
        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.2s ease;
            transform: scale(1.05);
            animation: none;
        }
        .hero-slide.active {
            opacity: 1;
            animation: zoomSlide 7s ease forwards;
        }
        @keyframes zoomSlide {
            from { transform: scale(1.05); }
            to { transform: scale(1); }
        }
        .hero-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                160deg,
                rgba(10,31,10,0.82) 0%,
                rgba(10,31,10,0.45) 50%,
                rgba(10,31,10,0.72) 100%
            );
        }
        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            padding: 0 20px;
            max-width: 900px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(46,125,50,0.25);
            border: 1px solid rgba(76,175,80,0.55);
            color: #a5d6a7;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 7px 20px;
            border-radius: 50px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 25px;
            animation: fadeUp 0.8s ease forwards;
            opacity: 0;
        }
        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 6vw, 4.2rem);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            text-shadow: 0 2px 20px rgba(0,0,0,0.4);
            animation: fadeUp 0.8s 0.2s ease forwards;
            opacity: 0;
        }
        .hero-title .highlight {
            color: #a5d6a7;
            font-style: italic;
        }
        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: rgba(255,255,255,0.85);
            max-width: 680px;
            margin: 0 auto 40px;
            line-height: 1.8;
            animation: fadeUp 0.8s 0.4s ease forwards;
            opacity: 0;
        }
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeUp 0.8s 0.6s ease forwards;
            opacity: 0;
        }
        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .btn-primary-gold {
            background: var(--gold);
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            padding: 14px 36px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-primary-gold:hover {
            background: var(--gold-light);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(46,125,50,0.45);
        }
        .btn-outline-white {
            background: transparent;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 13px 36px;
            border-radius: 50px;
            border: 2px solid rgba(255,255,255,0.5);
            cursor: pointer;
            text-decoration: none;
            transition: var(--transition);
        }
        .btn-outline-white:hover {
            border-color: var(--gold-light);
            color: var(--gold-light);
            background: rgba(76,175,80,0.12);
        }

        /* Hero indicators */
        .hero-indicators {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }
        .hero-indicator {
            width: 30px;
            height: 3px;
            background: rgba(255,255,255,0.3);
            border-radius: 2px;
            cursor: pointer;
            transition: var(--transition);
        }
        .hero-indicator.active {
            width: 60px;
            background: var(--gold-light);
        }

        /* Hero nav arrows */
        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            backdrop-filter: blur(5px);
        }
        .hero-arrow:hover { background: var(--gold); border-color: var(--gold); }
        .hero-arrow.left { left: 30px; }
        .hero-arrow.right { right: 30px; }

        /* Scroll hint */
        .scroll-hint {
            position: absolute;
            bottom: 40px;
            right: 40px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            color: rgba(255,255,255,0.5);
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        .scroll-line {
            width: 1px;
            height: 50px;
            background: linear-gradient(var(--gold-light), transparent);
            animation: scrollDrop 2s ease infinite;
        }
        @keyframes scrollDrop {
            0%, 100% { transform: scaleY(0); transform-origin: top; }
            50% { transform: scaleY(1); transform-origin: top; }
        }

        /* ==================== MARQUEE ==================== */
        .marquee-wrap {
            background: var(--gold);
            padding: 14px 0;
            overflow: hidden;
        }
        .marquee-track {
            display: flex;
            gap: 0;
            animation: marquee 30s linear infinite;
            white-space: nowrap;
        }
        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: #fff;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 0 30px;
        }
        .marquee-item .sep { color: #a5d6a7; opacity: 0.7; }
        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        /* ==================== SERVICES ==================== */
        .section {
            padding: 100px 40px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }
        .section-eyebrow {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 14px;
        }
        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 16px;
        }
        .section-desc {
            font-size: 1.05rem;
            color: var(--gray);
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.8;
        }
        .section-line {
            width: 60px;
            height: 3px;
            background: var(--gold);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .service-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.07);
            border-radius: 20px;
            padding: 40px 35px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        .service-card::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            transform: scaleX(0);
            transition: var(--transition);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(46,125,50,0.12);
            border-color: transparent;
        }
        .service-card:hover::before { transform: scaleX(1); }
        .service-card:hover .service-icon-wrap {
            background: var(--gold);
            color: white;
        }
        .service-icon-wrap {
            width: 70px;
            height: 70px;
            background: rgba(46,125,50,0.1);
            color: var(--gold);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            margin-bottom: 22px;
            transition: var(--transition);
        }
        .service-title {
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--dark);
        }
        .service-desc {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        .service-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .service-link:hover { gap: 12px; color: var(--gold-light); }

        /* ==================== ABOUT SPLIT ==================== */
        .about-section {
            background: var(--cream);
            padding: 100px 40px;
        }
        .about-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .about-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 15px;
            position: relative;
        }
        .about-img {
            border-radius: 16px;
            overflow: hidden;
            background: #ddd;
        }
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }
        .about-img:hover img { transform: scale(1.05); }
        .about-img:nth-child(1) { grid-row: 1 / 3; height: 380px; }
        .about-img:nth-child(2) { height: 180px; }
        .about-img:nth-child(3) { height: 180px; }
        .about-badge-float {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--dark);
            color: white;
            border-radius: 16px;
            padding: 20px 25px;
            z-index: 5;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .about-badge-float .big { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--gold-light); font-weight: 700; line-height: 1; }
        .about-badge-float .label { font-size: 0.75rem; letter-spacing: 1px; color: rgba(255,255,255,0.7); text-transform: uppercase; }
        .about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; line-height: 1.25; margin-bottom: 20px; }
        .about-text p { color: var(--gray); line-height: 1.9; margin-bottom: 15px; font-size: 1rem; }
        .about-features { display: flex; flex-direction: column; gap: 15px; margin: 30px 0; }
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        .about-feature .check {
            width: 22px; height: 22px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.65rem;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .about-feature p { color: #444; font-size: 0.95rem; line-height: 1.6; margin: 0; }

        /* ==================== STATS ==================== */
        .stats-section {
            background: var(--dark);
            padding: 80px 40px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            border-right: 1px solid rgba(255,255,255,0.08);
        }
        .stat-item:last-child { border-right: none; }
        .stat-icon { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 12px; }
        .stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            color: white;
            line-height: 1;
            margin-bottom: 8px;
        }
        .stat-num span { color: var(--gold-light); }
        .stat-label {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.45);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ==================== GALLERY ==================== */
        .gallery-section { padding: 100px 40px; background: var(--white); }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 220px 220px;
            gap: 12px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .gallery-item {
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            background: #ccc;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.6s ease;
        }
        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10,31,10,0.6), transparent 50%);
            opacity: 0;
            transition: var(--transition);
        }
        .gallery-item:hover::after { opacity: 1; }
        .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
        .gallery-item:nth-child(4) { grid-column: span 2; }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials-section { background: var(--cream); padding: 100px 40px; }
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.06);
            transition: var(--transition);
            position: relative;
        }
        .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(46,125,50,0.12); }
        .testimonial-card::before {
            content: '"';
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.15;
            position: absolute;
            top: 10px; left: 20px;
            line-height: 1;
        }
        .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 15px; letter-spacing: 2px; }
        .testimonial-text { color: #444; line-height: 1.8; font-size: 0.95rem; margin-bottom: 25px; }
        .testimonial-author { display: flex; align-items: center; gap: 12px; }
        .author-avatar {
            width: 45px; height: 45px;
            border-radius: 50%;
            background: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1rem;
        }
        .author-name { font-weight: 700; font-size: 0.9rem; }
        .author-role { font-size: 0.8rem; color: var(--gray); }

        /* ==================== CTA ==================== */
        .cta-section {
            background: linear-gradient(135deg, var(--dark) 0%, #0d3b10 50%, var(--dark2) 100%);
            padding: 100px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(46,125,50,0.2) 0%, transparent 70%);
        }
        .cta-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            color: white;
            margin-bottom: 20px;
            position: relative;
        }
        .cta-section h2 span { color: #a5d6a7; }
        .cta-section p {
            color: rgba(255,255,255,0.65);
            font-size: 1.1rem;
            max-width: 550px;
            margin: 0 auto 45px;
            line-height: 1.8;
            position: relative;
        }
        .cta-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; position: relative; }
        .cta-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #a5d6a7;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 30px;
            justify-content: center;
            position: relative;
        }
        .cta-phone i { font-size: 1.2rem; }

        /* ==================== FOOTER ==================== */
        footer {
            background: #004d00;
            padding: 70px 40px 30px;
            color: rgba(255,255,255,0.6);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .footer-brand .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #a5d6a7;
            margin-bottom: 15px;
            display: block;
        }
        .footer-brand p { line-height: 1.8; font-size: 0.9rem; margin-bottom: 20px; }
        .footer-socials { display: flex; gap: 10px; }
        .social-btn {
            width: 36px; height: 36px;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.8rem;
            transition: var(--transition);
        }
        .social-btn:hover { border-color: #4caf50; color: #4caf50; background: rgba(76,175,80,0.12); }
        .footer-col h4 {
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
        .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
        .footer-col ul a:hover { color: #4caf50; padding-left: 5px; }
        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        .footer-contact-item i { color: #4caf50; width: 16px; margin-top: 2px; }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            font-size: 0.85rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 10px;
        }

        /* ==================== SCROLL ANIMATIONS ==================== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(0, 77, 0, 0.98);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 30px;
            transform: translateX(100%);
            transition: transform 0.4s ease;
        }
        .mobile-menu.open { transform: translateX(0); }
        .mobile-menu a {
            font-size: 1.5rem;
            color: white;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            transition: var(--transition);
        }
        .mobile-menu a:hover { color: #4caf50; }
        .mobile-close {
            position: absolute;
            top: 25px; right: 30px;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .stat-item:nth-child(2) { border-right: none; }
            .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: unset; }
            .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
            .gallery-item:nth-child(4) { grid-column: span 1; }
            .about-inner { grid-template-columns: 1fr; }
            .about-image-grid { max-width: 500px; margin: 0 auto; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .section { padding: 70px 20px; }
            .navbar { padding: 18px 20px; }
            .navbar.scrolled { padding: 14px 20px; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-arrow { display: none; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 30px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .about-section { padding: 70px 20px; }
            .cta-section { padding: 70px 20px; }
            .stats-section { padding: 60px 20px; }
        }
    </style>

