 /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-green: #1B5E20;
            /* Dark Green */
            --light-green: #4CAF50;
            --gold: #FBC02D;
            --dark-text: #333333;
            --light-bg: #F9FBE7;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary-green);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary-green);
            color: var(--white);
            border: 2px solid var(--primary-green);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--primary-green);
        }

        .btn-secondary {
            background-color: var(--gold);
            color: var(--dark-text);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background-color: transparent;
            color: var(--gold);
        }

        
  

        /* --- IMPACT STATS --- */
        .impact-section {
            background-color: var(--primary-green);
            color: var(--white);
            padding: 40px 0;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-item i {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        .stat-item h3 {
            color: var(--white);
            font-size: 2.5rem;
            margin-bottom: 5px;
        }

        /* --- ABOUT SECTION --- */
        .about-section {
            padding: 80px 0;
            background-color: var(--light-bg);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* --- WHY CHOOSE US --- */
        .features-section {
            padding: 80px 0;
            text-align: center;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .feature-card {
            padding: 30px;
            border-radius: 10px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
            text-align: left;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-card i {
            font-size: 2.5rem;
            color: var(--light-green);
        }

        
        /* --- COMMITMENT --- */
        .commitment-section {
            padding: 80px 0;
        }

        .commitment-content {
            background: linear-gradient(to right, rgba(27, 94, 32, 0.9), rgba(27, 94, 32, 0.7)), url('https://images.unsplash.com/photo-1586771107445-d3ca888129ff?q=80&w=1920&auto=format&fit=crop') center/cover;
            border-radius: 15px;
            padding: 60px;
            color: var(--white);
        }

        .commitment-content h2 {
            color: var(--gold);
            margin-bottom: 20px;
        }

        .commitment-content ul {
            list-style: none;
            margin-top: 20px;
        }

        .commitment-content ul li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* --- CTA --- */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1920&auto=format&fit=crop') center/cover;
            padding: 100px 0;
            text-align: center;
            color: var(--white);
        }

        .cta-section h2 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 30px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #2d5a27;
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h3 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
                color: #fff;
        }

        .footer-col ul li a {
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: var(--gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: var(--gold);
            color: var(--dark-text);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 992px) {

            .impact-grid,
            .about-grid,
            .features-grid,
            .products-grid,
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .nav-links {
                display: none;
                /* Add hamburger menu logic for mobile */
            }

            .about-grid,
            .features-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

         

            .commitment-content {
                padding: 30px;
            }
        }
        
        
        
        
        
         /* 1. Base Container */
    #slidy-container {
        width: 100%;
        height: 75vh; 
        overflow: hidden;
        margin: 0 auto;
        position: relative;
        /*background: #000;*/
    }

    @media only screen and (max-width: 600px) {
        #slidy-container {
            height: 15vh; 
            margin-top: 0;
        }
        .about-text h2 {
    font-size: 2rem;
}
.feature-card {
    margin: 0px 20px;
}
.about-hero h1 {
    font-size: 1.5rem !important;
}
.about-hero {
    height: 150px !important;
}
.my-custom-btn {
    gap: 5px !important;
        padding: 10px 10px !important;
}
.my-custom-btn span{
        display: none !important;
}

.btn span{
     display: none !important;
}
    }
    
    
    
     .translate-container {
        position: relative;
        display: inline-block;
        cursor: pointer;
        font-family: 'Arial', sans-serif;
    }

    /* Sabse important: Asli Google widget ko pure button ke upar faila dena */
    #google_translate_element {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 999;
        opacity: 0; /* Dikhega nahi par click poore button pe hoga */
        overflow: hidden;
    }

    /* Aapka Button Design */
    .my-custom-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: #ffffff;
        border: 1.5px solid #2e7d32; /* Asian Agro Green Color */
        border-radius: 30px;
        color: #333;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .translate-container:hover .my-custom-btn {
        background-color: #f1f8e9;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .my-custom-btn i:first-child {
        color: #2e7d32;
        font-size: 18px;
    }

    .my-custom-btn i:last-child {
        font-size: 10px;
        margin-left: 5px;
    }

    /* --- Dropdown Style Fixes --- */
    
    /* Google ki purani top bar ko hatane ke liye */
    .goog-te-banner-frame.skiptranslate { display: none !important; }

    /* Google dropdown ke iframe ko thoda sa clean dikhane ki koshish */
    .goog-te-menu-frame {
        box-shadow: 0 5px 25px rgba(0,0,0,0.2) !important;
        border: none !important;
        border-radius: 8px !important;
    }

    /* Hidden element ke andar ke layout ko set karna */
    .goog-te-gadget-simple {
        background-color: transparent !important;
        border: none !important;
        padding: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    /* 2. Slider Engine */
    #slidy {
        width: 100%;
        height: 100%;
        position: relative;
    }

    #slidy img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        
        /* FULL OPACITY: No more 0.5 or transparency */
        opacity: 0; 
        z-index: 1;
        
        /* CORNER REVEAL: Top-Left Corner Growth */
        clip-path: inset(0 100% 100% 0); 
        
        /* Animation Logic */
        animation: corner_unfold 12s infinite ease-in-out;
    }

    /* 3. Animation: Corner Unfold (Full Opacity State) */
    @keyframes corner_unfold {
        0% { 
            opacity: 0; 
            clip-path: inset(0 100% 100% 0); 
            z-index: 1;
        }
        2% {
            opacity: 1; /* Quick fade in to full opacity */
        }
        5% { 
            opacity: 1; 
            clip-path: inset(0 0 0 0); 
            z-index: 2;
        }
        33% { 
            opacity: 1; 
            clip-path: inset(0 0 0 0); 
            z-index: 2;
        }
        38% { 
            opacity: 0; 
            z-index: 1;
        }
        100% { 
            opacity: 0; 
        }
    }

    /* 4. HOVER REMOVED: No Pause, No Opacity Change */
    #slidy-container:hover img {
        animation-play-state: running !important; /* Force keep running */
    }

    /* 5. Luxury Corner Detail (rgb(178, 0, 25)) */
    .luxe-corner {
        position: absolute;
        top: 30px;
        left: 30px;
        width: 40px;
        height: 40px;
        border-top: 3px solid rgb(178, 0, 25);
        border-left: 3px solid rgb(178, 0, 25);
        z-index: 10;
        pointer-events: none;
    }
    
    
    
    /* --- Global & Reset --- */
:root { --primary: #007bff; --dark: #333; --white: #ffffff; }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 10px 5%; max-width: 1300px; margin: 0 auto; }
.site-header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 999; }
.logo img { width: 140px; display: block; }

/* --- Desktop Nav --- */
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; list-style: none; gap: 25px; margin: 0; }
.nav-list a { text-decoration: none; color: var(--dark); font-weight: 500; font-size: 15px; transition: 0.3s; }
.nav-list a:hover { color: var(--light-green); }


/* Desktop Dropdown */
.dropdown { position: relative; padding-bottom: 5px; }
.dropdown-content { position: absolute; top: 100%; left: 0; background: #fff; min-width: 200px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); list-style: none; padding: 10px 0; display: none; border-radius: 5px; }
.dropdown-content li a { padding: 10px 20px; display: block; }
.dropdown:hover .dropdown-content { display: block; }

/* --- Mobile Elements --- */
.mobile-toggle { display: none; font-size: 24px; cursor: pointer; }
.menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: none; z-index: 1000; }

.mobile-sidebar { position: fixed; top: 0; right: -300px; width: 300px; height: 100vh; background: #fff; z-index: 1001; transition: 0.4s ease; overflow-y: auto; box-shadow: -5px 0 15px rgba(0,0,0,0.1); }
.mobile-sidebar.open { right: 0; }

.sidebar-header { padding: 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; font-weight: bold; font-size: 18px; }
.close-btn { font-size: 22px; cursor: pointer; color: #ff0000; }

.mobile-nav-list { list-style: none; padding: 10px 0; }
.mobile-nav-list li { border-bottom: 1px solid #f9f9f9; }
.mobile-nav-list li a { display: block; padding: 15px 20px; text-decoration: none; color: #333; font-weight: 500; }

/* Mobile Dropdown */
.mobile-submenu { background: #f8f9fa; list-style: none; display: none; padding-left: 15px; }
.mobile-dropdown.active .mobile-submenu { display: block; }
.mobile-dropdown.active .mobile-drop-toggle i { transform: rotate(180deg); }

/* --- Responsive --- */
@media (max-width: 991px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: block; }
}
    
    
    
    
    
      /* --- ABOUT PAGE STYLES --- */
:root {
    --primary-green: #2d5a27;
    --light-green: #4caf50;
    --overlay: rgba(0, 0, 0, 0.6);
}

/* Hero Section */
.about-hero {
    height: 250px;
    background: linear-gradient(var(--overlay), var(--overlay)), url('../inner-banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-hero h1 { font-size: 3.5rem; margin-bottom: 10px;color: #fff; }

/* Company Intro (Two Column) */
.about-intro { padding: 80px 0; }

.flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-content { flex: 1; min-width: 300px; }
.intro-image { 
    flex: 1; 
    min-width: 300px;
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-green);
}

/* Mission & Vision (Cards) */
.mission-vision {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border-left: 6px solid var(--primary-green);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mv-card i { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 20px; }

  /* --- PRODUCTS UPDATED --- */
.products-section {
    padding: 80px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--white);
    padding: 20px; /* Padding thoda adjust kiya */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--primary-green);
    transition: transform 0.3s ease; /* Hover effect ke liye */
}

.product-card:hover {
    transform: translateY(-10px);
}

/* Image Container */
.product-image {
    width: 100%;
    height: 180px; /* Image ki height fix rakhi hai */
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Isse image stretch nahi hogi, crop hokar fit hogi */
}

.product-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    color: #333;
}

.product-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.view-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

.view-link:hover {
    text-decoration: underline;
}



    /* --- PREMIUM BENTO GALLERY --- */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* Responsive for Mobile */
@media (max-width: 768px) {
    .gallery-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Container for the area between Hero and Footer */
.tags-section {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light grey background to separate from banner */
    min-height: 200px;
}

.tags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
}

.tag-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    color: #2d5a27;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tag-card:hover {
    background: #2d5a27;
    color: #ffffff;
    border-color: #2d5a27;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 90, 39, 0.15);
}

.tag-card i {
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.tag-card:hover i {
    color: #ffffff;
}













