
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fefcf5;
            color: #1e2a2e;
            line-height: 1.5;
        }

     
        .language-dropdown {
            position: relative;
        }
        .lang-select {
            background: white;
            border: 1px solid #e0d8c2;
            border-radius: 50px;
            padding: 8px 16px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #2c5a2a;
            cursor: pointer;
            outline: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: 0.3s;
        }
        .lang-select:hover {
            border-color: #b45f2b;
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
        }
        .lang-select option {
            padding: 10px;
        }

       
        .navbar {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.82); 
            backdrop-filter: blur(16px); 
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 9px solid rgba(255, 255, 255, 0.2); 
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); 
            z-index: 1000;
            padding: 5px 0;
            transition: all 0.3s ease;
        
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            width: 60px;
            height: 55px;
            background: linear-gradient(135deg, #2c5a2a, #1f401d);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
        }

        .logo-text {
            display: grid;
            grid-template-rows: auto auto auto;
            place-items: center;
            text-align: center;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 1000;
            color: #fd5200;
            letter-spacing: 0.1em;
            line-height: 1;
            margin: 0;
        }
        .logo-text h2 {
            font-size: 0.9rem;
            font-weight: 800;
            color: #007b31;
            letter-spacing: 0.06em;
            line-height: 1;
            margin: 0;
        }
        .logo-text p {
            font-size: 0.5rem;
            color: #b45f2b;
            letter-spacing: 1px;
            line-height: 1;
            margin: 0;
            text-align: center;
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 600;
            color: #2d3e2b;
            transition: 0.3s;
        }
        .nav-links a:hover {
            color: #b45f2b;
        }

.nav-links a.cata-btn,
.cata-btn {
    background: #2c5a2a;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
}
.nav-links a.cata-btn:hover,
.cata-btn:hover {
    background: #b45f2b;
    color: white;
    transform: translateY(-2px);
}

        .nav-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            color: #2c5a2a;
            cursor: pointer;
        }

      
        .hero {
            position: relative;
            background-color: #2c5a2a;
            min-height: calc(100vh - 70px);
            min-height: calc(100dvh - 70px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 0;
            color: white;
            text-align: center;
            overflow: hidden;
        }
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.55);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .hero h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(180, 95, 43, 0.95);
            padding: 8px 24px;
            border-radius: 40px;
            font-weight: 600;
            margin-bottom: 25px;
        }

        /* Sections */
        section {
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            align-items: center;
            padding: 80px 0;
            scroll-margin-top: 70px;
            position: relative;
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 1; 
        }
        .section-tag {
            text-align: center;
            color: #b45f2b;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c5a2a;
            margin-bottom: 15px;
        }
        .section-sub {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #5b6e53;
        }

       
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        .product-card {
        background: transparent;
        min-height: 400px;
        position: relative;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid transparent;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        justify-content: flex-end;
        }
        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(180, 95, 43, 0.2);
        border-color: rgba(180, 95, 43, 0.3);
        }
        .product-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        }
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .product-card:hover .product-image img {
            transform: scale(1.08);
        }
        .product-info {
        position: relative;
        z-index: 1;
            padding: 25px;
        background: rgba(255, 255, 255, 0.5); 
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .product-card h3 {
            font-size: 1.5rem;
            color: #2c5a2a;
            margin-bottom: 5px;
        }
        .product-code {
            color: #b45f2b;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .product-desc {
            color: #6b7a63;
            font-size: 0.85rem;
        }
        .premium-badge {
            background: #b45f2b;
            color: white;
            font-size: 0.7rem;
            padding: 4px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-top: 12px;
        }

     
        .category-block {
            margin-bottom: 70px;
        }
        .category-header {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            background: white;
            padding: 12px 25px 12px 15px;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.04);
            border: 1px solid #eee6d8;
        }
        .category-header h3 {
            font-size: 1.5rem;
            color: #2c5a2a;
            font-weight: 700;
        }
        .category-icon {
            font-size: 1.5rem;
            background: #f8f5ea;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* Premium About Section */
        .about-section {
            background: linear-gradient(180deg, #fefcf5 0%, #f4f7f4 100%);
            position: relative;
            overflow: hidden;
        }
        .about-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(180, 95, 43, 0.06) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .about-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(44, 90, 42, 0.06) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        .feature-card {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(44, 90, 42, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(44, 90, 42, 0.08);
            border-color: rgba(180, 95, 43, 0.3);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(180, 95, 43, 0.1), rgba(180, 95, 43, 0.02));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #b45f2b;
            border: 1px solid rgba(180, 95, 43, 0.1);
            transition: all 0.4s ease;
        }
        .feature-card:hover .feature-icon {
            background: #b45f2b;
            color: white;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 20px rgba(180, 95, 43, 0.2);
        }
        .feature-card h3 {
            font-size: 1.3rem;
            color: #2c5a2a;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .feature-card p {
            color: #6b7a63;
            font-size: 0.95rem;
            line-height: 1.6;
        }

    
        .stats-section {
            background: linear-gradient(135deg, #2c5a2a, #1f401d);
            color: white;
            text-align: center;
            padding: 60px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
        }

        
        .testimonials-section {
            background-image: url('background/Testimonials_background.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; 
        }
      
        .testimonials-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        /* Testimonials */
        .testi-grid {
            display: grid;
            grid-template-columns: 1fr;
            margin-top: 48px;
        }
        .testi-slide {
            grid-area: 1 / 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(15px) scale(0.98);
            transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
            padding: 10px 5px 30px; 
        }
        .testi-slide.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0) scale(1);
            z-index: 2;
        }
        .testi-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(16px); 
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 28px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .testi-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            border-color: rgba(180, 95, 43, 0.3);
        }
        .stars {
            color: #e88030;
            font-size: 14px;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }
        .testi-text {
            font-size: 0.9rem;
            color: #3a4a34;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 18px;
        }
        .testi-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testi-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid #b45f2b;
            background: #f0eee3;
        }
        .testi-name {
            font-weight: 700;
            color: #2c5a2a;
            font-size: 0.9rem;
        }
        .testi-loc {
            font-size: 0.78rem;
            color: #6b7a63;
            margin-top: 4px;
        }

        /* Catalogue Section */
        .catalogue-section {
            padding: 20px 0 80px;
        }
        .catalogue-card {
            background: linear-gradient(135deg, #2c5a2a 0%, #173315 100%);
            border-radius: 30px;
            padding: 50px 60px;
            color: white;
            box-shadow: 0 20px 40px rgba(44, 90, 42, 0.2);
            position: relative;
            overflow: hidden;
        }
        .catalogue-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 300px;
            height: 300px;
            background: #b45f2b;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.35;
            z-index: 0;
        }
        .catalogue-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .catalogue-icon-wrap {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #fff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            flex-shrink: 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .catalogue-text {
            flex-grow: 1;
        }
        .catalogue-text h2 {
            font-size: 2.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .catalogue-text p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 600px;
        }
        .catalogue-meta {
            display: flex;
            gap: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }
        .catalogue-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .premium-download-btn {
            background: white;
            color: #2c5a2a;
            padding: 16px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            white-space: nowrap;
        }
        .premium-download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            background: #f8f5ea;
            color: #b45f2b;
        }

        /* Contact Section */
        .contact-section {
            background: linear-gradient(180deg, #ffffff 0%, #fefcf5 100%);
            position: relative;
            overflow: hidden;
        }
        .contact-section::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(180, 95, 43, 0.05) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }
        .contact-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(44, 90, 42, 0.05) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
            margin-top: 40px;
        }
        .contact-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid rgba(44, 90, 42, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            z-index: 1;
        }
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(44, 90, 42, 0.08);
            border-color: rgba(180, 95, 43, 0.3);
        }
        .contact-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(180, 95, 43, 0.1), rgba(180, 95, 43, 0.02));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #b45f2b;
            border: 1px solid rgba(180, 95, 43, 0.1);
            transition: all 0.4s ease;
        }
        .contact-card:hover .contact-icon {
            background: #b45f2b;
            color: white;
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 10px 20px rgba(180, 95, 43, 0.2);
        }
        .contact-card h4 {
            font-size: 1.3rem;
            color: #2c5a2a;
            margin-bottom: 15px;
            font-weight: 700;
        }
        .contact-card p {
            color: #6b7a63;
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #1a2e17;
            color: #ddd8c6;
            padding: 50px 0 20px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: #e0cfaa;
            margin-bottom: 20px;
        }
        .footer-col a {
            color: #cbc6b2;
            text-decoration: none;
            line-height: 2;
        }
        .copyright {
            text-align: center;
            border-top: 1px solid #3f4d36;
            padding-top: 25px;
            font-size: 0.8rem;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 120px 0 80px;
            background: #fefcf5;
            min-height: 100vh;
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            aspect-ratio: 4/3;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Language Content Display */
body[data-language="en"] [data-lang]:not([data-lang="en"]),
body[data-language="te"] [data-lang]:not([data-lang="te"]),
body[data-language="hi"] [data-lang]:not([data-lang="hi"]),
body[data-language="kn"] [data-lang]:not([data-lang="kn"]) {
    display: none !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 30px 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);
                transition: all 0.3s ease-in-out;
                border-top: 1px solid #f0eee3;
            }
            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 10px 0;
            }
            .nav-links .cata-btn {
                width: auto;
                margin-top: 10px;
            }
            .hero h2 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .lang-select {
                font-size: 0.75rem;
                padding: 5px 12px;
            }
            .catalogue-card {
                padding: 40px 20px;
            }
            .catalogue-content {
                flex-direction: column;
                text-align: center;
            }
            .catalogue-meta {
                justify-content: center;
                flex-wrap: wrap;
            }
            .catalogue-text p {
                margin: 0 auto 20px;
            }
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            text-decoration: none;
            z-index: 100;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: 0.3s;
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            background: #128C7E;
        }
