

    /* Hero Section */
    .hero-background {
        background: url("../assets/images/farmland.jpg") center center / cover no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* Overlay for better text readability */
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
        z-index: 2;
    }

    .hero {
        background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../assets/images/farmland.jpg");
        /* background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1586201375761-5f8c9a7b2a9b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80'); */
        background-size: cover;
        background-position: center;
        height: 600px;
        display: flex;
        align-items: center;
        text-align: center;
        color: white;
    }

    .hero-content {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 48px;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease;
    }

    .hero p {
        font-size: 20px;
        margin-bottom: 30px;
        animation: fadeInUp 1s ease 0.2s both;
    }

    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        animation: fadeInUp 1s ease 0.4s both;
    }

    .btn {
        padding: 15px 35px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

    .btn-primary {
        background: #D4A853;
        color: white;
    }

    .btn-primary:hover {
        background: #b38d3f;
        transform: translateY(-2px);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background: white;
        color: #333;
        transform: translateY(-2px);
    }

    /* Trust Badges */
    .trust-badges {
        padding: 60px 0;
        background: #F9F9F9;
        text-align: center;
    }

    .trust-badges h2 {
        color: #2E5C3E;
        margin-bottom: 10px;
        font-size: 32px;
    }

    .trust-badges p {
        color: #666;
        margin-bottom: 40px;
        font-size: 18px;
    }

    .badges-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .badge-item {
        text-align: center;
    }

    .badge-item i {
        font-size: 48px;
        color: #2E5C3E;
        margin-bottom: 10px;
    }

    .badge-item h4 {
        color: #333;
        font-size: 16px;
    }

    /* Products Section */
    .products {
        padding: 80px 0;
        background: white;
        text-align: center;
    }

    .products h2 {
        color: #2E5C3E;
        font-size: 36px;
        margin-bottom: 10px;
    }

    .products-subtitle {
        color: #666;
        font-size: 18px;
        margin-bottom: 50px;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }

    .product-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }

    .product-card:hover {
        transform: translateY(-10px);
    }

    /* .product-image {
        height: 250px;
        background-size: cover;
        background-position: center;
    } */

    .product-image {
        height: 320px;
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
    }

    .product-card:nth-child(1) .product-image {
        background-image: linear-gradient(rgba(231, 222, 222, 0.3), rgba(0,0,0,0.3)), url("../assets/images/rice/super_kernel_basmati.jpg");
    }

    .product-card:nth-child(2) .product-image {
        background-image: linear-gradient(rgba(231, 222, 222, 0.3), rgba(0,0,0,0.3)), url("../assets/images/rice/1121-sella-basmati.jpg");
    }

    .product-card:nth-child(3) .product-image {
        background-image: linear-gradient(rgba(231, 222, 222, 0.3), rgba(0,0,0,0.3)), url("../assets/images/rice/Irri-6_white_rice.jpg");
    }

    .product-content {
        padding: 25px;
        text-align: left;
    }

    .product-content h3 {
        color: #2E5C3E;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .product-origin {
        color: #D4A853;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .product-desc {
        color: #666;
        margin-bottom: 15px;
        font-size: 14px;
    }

    .product-specs {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        font-size: 13px;
        color: #888;
    }

    .product-specs i {
        color: #2E5C3E;
        margin-right: 5px;
    }

    .view-details {
        color: #2E5C3E;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: gap 0.3s;
    }

    .view-details:hover {
        gap: 10px;
        color: #D4A853;
    }

    .view-all-btn {
        display: inline-block;
        padding: 15px 40px;
        background: #2E5C3E;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background 0.3s;
    }

    .view-all-btn:hover {
        background: #1A3A2A;
    }

    /* Advantages Section */
    .advantages {
        padding: 80px 0;
        background: #F9F9F9;
        text-align: center;
    }

    .advantages h2 {
        color: #2E5C3E;
        font-size: 36px;
        margin-bottom: 10px;
    }

    .advantages-subtitle {
        color: #666;
        font-size: 18px;
        margin-bottom: 50px;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .advantage-item {
        text-align: center;
        padding: 30px 20px;
        background: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s;
    }

    .advantage-item:hover {
        transform: translateY(-5px);
    }

    .advantage-icon {
        width: 80px;
        height: 80px;
        background: #2E5C3E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .advantage-icon i {
        font-size: 40px;
        color: #D4A853;
    }

    .advantage-item h3 {
        color: #2E5C3E;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .advantage-item p {
        color: #666;
        font-size: 14px;
    }

    /* Food Safety Section - NEW */
    .food-safety {
        padding: 80px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        position: relative;
        overflow: hidden;
    }

    .food-safety::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(46, 92, 62, 0.05);
        border-radius: 50%;
    }

    .food-safety h2 {
        color: #2E5C3E;
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
    }

    .food-safety-subtitle {
        text-align: center;
        color: #666;
        font-size: 18px;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .safety-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .safety-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: transform 0.3s;
        position: relative;
        overflow: hidden;
    }

    .safety-card:hover {
        transform: translateY(-10px);
    }

    .safety-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: #D4A853;
        transform: scaleX(0);
        transition: transform 0.3s;
    }

    .safety-card:hover::after {
        transform: scaleX(1);
    }

    .safety-icon {
        width: 70px;
        height: 70px;
        background: #2E5C3E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .safety-icon i {
        font-size: 35px;
        color: #D4A853;
    }

    .safety-card h3 {
        color: #2E5C3E;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .safety-card p {
        color: #666;
        font-size: 14px;
        line-height: 1.7;
    }

    .safety-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .safety-feature {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .safety-feature i {
        color: #2E5C3E;
        font-size: 20px;
    }

    .safety-feature span {
        color: #555;
        font-size: 14px;
        font-weight: 500;
    }

    /* Customer Focus Section - NEW */
    .customer-focus {
        padding: 80px 0;
        background: white;
    }

    .customer-focus h2 {
        color: #2E5C3E;
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
    }

    .customer-focus-subtitle {
        text-align: center;
        color: #666;
        font-size: 18px;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .customer-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 60px;
    }

    .stat-item {
        text-align: center;
        padding: 30px;
        background: #f8f9fa;
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .stat-item:hover {
        transform: translateY(-5px);
    }

    .stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #2E5C3E;
        margin-bottom: 10px;
    }

    .stat-label {
        color: #666;
        font-size: 16px;
    }

    .testimonials {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 40px;
    }

    .testimonial-card {
        background: #f8f9fa;
        border-radius: 15px;
        padding: 30px;
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 60px;
        color: #D4A853;
        opacity: 0.3;
        font-family: serif;
    }

    .testimonial-content {
        margin-bottom: 20px;
        color: #555;
        font-style: italic;
        line-height: 1.8;
        position: relative;
        z-index: 1;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: #2E5C3E;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #D4A853;
        font-weight: 600;
        font-size: 20px;
    }

    .author-info h4 {
        color: #2E5C3E;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .author-info p {
        color: #888;
        font-size: 14px;
    }

    .customer-logos {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        align-items: center;
        margin-top: 40px;
        padding: 40px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .customer-logo {
        text-align: center;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .customer-logo:hover {
        opacity: 1;
    }

    .customer-logo i {
        font-size: 40px;
        color: #2E5C3E;
    }

    .customer-logo span {
        display: block;
        margin-top: 10px;
        color: #666;
        font-size: 14px;
        font-weight: 500;
    }

    /* Home Image */
    .direct-sourcing-image {
        height: 200px;
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../assets/images/direct-sourcing.jpg");
        /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1590779033100-94f6f8e3b0b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); */
        background-size: cover;
        background-position: center;
        border-radius: 10px;
    }

    .direct-sourcing {
        height: 200px;
    }


    .expert-inspection-image {
        height: 200px;
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../assets/images/expert-inspection.jpg");
        /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1590779033100-94f6f8e3b0b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); */
        background-size: cover;
        background-position: center;
        border-radius: 10px;
    }

    .purity-guarantee-image {
        height: 200px;
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../assets/images/purity-guarantee.jpg");
        /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1590779033100-94f6f8e3b0b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); */
        background-size: cover;
        background-position: center;
        border-radius: 10px;
    }



    /* About Section */
    .about {
        padding: 80px 0;
        background: white;
    }

    .about-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    .about-image {
        height: 400px;
        background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("../assets/images/about_us.jpg");
        /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1590779033100-94f6f8e3b0b5?ixlib=rb-1.2.1&auto=format&fit=crop&w=800&q=80'); */
        background-size: cover;
        background-position: center;
        border-radius: 10px;
    }

    .about-content h2 {
        color: #2E5C3E;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .about-content p {
        color: #666;
        margin-bottom: 20px;
        font-size: 16px;
        line-height: 1.8;
    }

    .read-more {
        color: #2E5C3E;
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: gap 0.3s;
    }

    .read-more:hover {
        gap: 10px;
        color: #D4A853;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 60px 0;
        background: #2E5C3E;
        color: white;
        text-align: center;
    }

    .cta-banner h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .cta-banner p {
        font-size: 18px;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .cta-banner .btn-primary {
        background: #D4A853;
        font-size: 18px;
        padding: 15px 45px;
    }

    .cta-banner .btn-primary:hover {
        background: #b38d3f;
    }



    /* Responsive Design */
    @media (max-width: 1024px) {
        .safety-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .customer-stats {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .testimonials {
            grid-template-columns: 1fr;
        }
        
        .customer-logos {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .footer-main {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        /* nav {
            display: none;
        }

        .mobile-menu {
            display: block;
        } */

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 18px;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 300px;
            text-align: center;
        }

        .safety-grid {
            grid-template-columns: 1fr;
        }
        
        
        .customer-stats {
            grid-template-columns: 1fr;
        }
        
        .customer-logos {
            grid-template-columns: repeat(2, 1fr);
        }

        .about-container {
            grid-template-columns: 1fr;
        }

        .about-image {
            height: 300px;
        }


        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-bottom-links {
            justify-content: center;
        }
    }
    

    /* Mobile menu active state */
    @media (max-width: 768px) {
        nav.active {
            display: block;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
             z-index: 9999;
        }

         nav.active ul {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        /* nav.active ul {
            flex-direction: column;
            gap: 15px;
        } */
    }
