/* Define color variables for consistency */
        :root {
            --color-primary: #10753C; /* Dark Green */
            --color-secondary: #FCB03F; /* Orange-Yellow */
            --color-dark: #212529;
            --color-light-gray: #f8f8f8;
        }

        /* Custom styles for the navbar and sections */
        .navbar-custom {
            background-color: #fff;
            z-index: 1030;
            border-bottom: solid 5px var(--color-primary);
        }
        /* Style the Offcanvas header and body */
        .offcanvas-custom {
            background-color: var(--color-light-gray);
        }
        .offcanvas-header {
            border-bottom: 1px solid var(--color-primary);
        }
        .offcanvas-title {
            color: var(--color-primary);
            font-weight: 700;
        }
        /* Adjust toggle button style for better visibility */
        .navbar-toggler {
            border: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }


        .hero-section {
            margin-top: -60px;
            position: relative;
            /* Placeholder for your background image - REPLACE THIS URL */
            background: url('../images/hero-sesction.webp') no-repeat center center/cover;
            color: white;
            padding: 0; 
            text-align: center;
            display: flex;
            flex-direction: column; 
            min-height: 100vh; 
            padding-top: 0px; 
        }
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.582); /* Dark overlay for text readability */
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 1366px;
            margin: auto; 
            padding: 50px 15px;
        }
        
        /* --- Hero Content Styling --- */
        .hero-content h1 {
            font-size: 5rem; 
            font-weight: bolder;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
        }
        .hero-content h1 .highlight {
            color: var(--color-secondary); 
        }
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }
        .hero-buttons .btn {
            margin: 0 10px;
            padding: 15px 50px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .hero-buttons .btn-primary-custom {
            background-color: var(--color-primary); 
            border-color: var(--color-primary);
            color: #fff;
            border-bottom: solid 5px var(--color-secondary);
        }
        .hero-buttons .btn-primary-custom:hover {
            background-color: var(--color-secondary);
            border-color: var(--color-secondary);
        }
        .hero-buttons .btn-secondary-custom {
            background-color: var(--color-primary); 
            color: #fff;
            border: solid 2px var(--color-primary);
        }
        .hero-buttons .btn-secondary-custom:hover {
            background-color: var(--color-primary);
            border-color: var(--color-secondary);
            color: var(--color-secondary);
        }

        .navbar-brand img {
            height: 40px; 
        }
        .navbar .nav-link, .offcanvas .nav-link {
            color: var(--color-dark); 
            font-weight: 800;
            margin-right: 15px;
        }
        .navbar .nav-link:hover, .offcanvas .nav-link:hover {
            color: var(--color-primary); 
        }
        .navbar .btn-shop-now {
            background-color: var(--color-primary); 
            border-color: var(--color-primary);
            color: white;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
        }
        .navbar .btn-shop-now:hover {
            background-color: #4a6a5d;
            border-color: #4a6a5d;
        }
        /* Mobile 'Shop Now' button styling for Offcanvas */
        .offcanvas .btn-shop-now {
            width: 100%;
            margin-top: 15px;
            font-size: 1.1rem;
            padding: 12px 0;
        }
        .welcome-text {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        /* --- Global Section Title Styling --- */
        .section-subtitle {
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--color-secondary);
            margin-bottom: 5px;
            display: block;
            position: relative;
            text-align: center;

            font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
        }
        .section-subtitle-dark {
             color: var(--color-secondary);
        }
        .section-subtitle::before, .section-subtitle::after {
            content: "";
            position: absolute;
            height: 2px;
            width: 30px;
            background-color: var(--color-secondary);
            top: 50%;
            transform: translateY(-50%);
        }
        .section-subtitle-dark::before, .section-subtitle-dark::after {
            background-color: var(--color-secondary);
        }
        .section-subtitle::before {
            left: 48%;
            margin-left: -70px; 
        }
        .section-subtitle::after {
            right: 48%;
            margin-right: -70px; 
        }
        /* Custom adjustment for contact section subtitle positioning */
        .contact-section .section-subtitle::before {
             left: 0;
             margin-left: 0;
        }
        .contact-section .section-subtitle::after {
            display: none;
        }


        .section-title {
            font-size: 2.7rem;
            font-weight: 900;
            color: var(--color-dark);
            margin-bottom: 50px;
            text-align: center;
            letter-spacing: 0.2rem;

            font-family: "Holtwood One SC", serif;
  font-style: normal;
        }
        .section-title-light {
            color: white;
        }
        .contact-section .section-title {
            text-align: left;
            margin-bottom: 30px;
        }
        
        /* --- Products Section Styling --- */
        .products-section {
            padding: 160px 0 180px 0;
            background-color: #fff;
        }
        .product-card {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            height: 100%; 
        }
        .product-card-header {
            padding: 35px;
            border-top: 10px solid var(--color-primary); 
            position: relative;
        }
        .product-card-header h4 {
            font-size: 1.5rem;
            font-weight: 900;
            color: var(--color-dark);
            margin-bottom: 5px;

            font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
        }
        .product-card-header p {
            color: #6c757d;
            font-size: 0.95rem;
        }
        .product-card-image-wrapper {
            position: relative;
        }
        .product-card-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }
        .grade-label {
            position: absolute;
            bottom: 0;
            right: 0;
            background-color: var(--color-primary); 
            color: white;
            font-size: 2.5rem;
            font-weight: 1000;
            padding: 5px 15px;
            border-radius: 5px 0 0 0; 
            z-index: 5;
            line-height: 1;
        }
        
        /* --- ABOUT Section Styling --- */
        .about-section {
            padding: 160px 0 180px 0;
            background-color: var(--color-primary); 
            color: white;
            text-align: center;
            background-image: url('../images/about-section-bg.webp');
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .about-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(11, 91, 46, 0.87);
            z-index: 1;
        }
        .about-section .container {
            position: relative;
            z-index: 2;
        }
        .about-section h3 {color: var(--color-secondary); font-weight: 900; font-family: "Inter", sans-serif; font-optical-sizing: auto; font-style: normal;}
        .about-section p {
            font-size: 1.4rem;
            max-width: 900px;
            margin: 30px auto 15px auto;
            line-height: 1.6;
        }
        .about-section .section-title {
            color: white;
            margin-bottom: 20px;
        }
        
        .supplier-icon-card {
            background-color: white;
            border-radius: 10px;
            padding: 30px 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            border-bottom: 6px solid var(--color-secondary);
        }
        .supplier-icon-wrapper {
            background-color: var(--color-primary);
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            border: 2px solid white;
        }
        .supplier-icon-wrapper svg {width: 35px; height: auto;}
        .supplier-icon {
            font-size: 2rem;
            color: white;
        }
        .supplier-icon-card h5 {
            font-weight: 700;
            color: var(--color-dark);

            font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
        }


        /* --- Services Section Styling --- */
        .services-section {
            padding: 160px 0;
            
            text-align: center;
        }
        .service-icon-wrapper {
            background-color: white;
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 15px;
        }
        .service-icon {
            font-size: 2.5rem;
            color: var(--color-secondary); /* Orange-Yellow */
        }
        .service-item h5 {
            font-weight: 800;
            color: var(--color-dark);
        }
        .btn-whatsapp-custom {
            background-color: var(--color-primary);
            color: white;
            font-weight: 600;
            padding: 12px 35px;
            margin-top: 30px;
            border-radius: 5px;
            border: none;
            transition: background-color 0.3s;
        }
        .btn-whatsapp-custom:hover {
            background-color: var(--color-secondary);
            color: white;
        }
        
        /* --- Contact Section Styling --- */
        .contact-section {
            padding: 160px 0;
            background-color: var(--color-light-gray);
        }
        .contact-info-list {
            list-style: none;
            padding: 0;
            margin-top: 40px;
        }
        .contact-info-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        .contact-icon-wrapper {
            background-color: var(--color-primary);
            color: white;
            border-radius: 5px;
            width: 70px;
            height: 70px;
            min-width: 70px; 
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 15px;
        }
        .contact-info-text strong {
            display: block;
            font-weight: 600;
            font-size: 0.9rem;
            color: #6c757d;
        }
        .contact-info-text span {
            display: block;
            font-weight: 500;
            color: var(--color-dark);
            font-size: 1.1rem;
        }

        .contact-form-card {
            background-color: #fff;
            padding: 60px 40px 40px 40px;
            border-radius: 10px;
        }
        .contact-form-card h4 {
            font-weight: 900;
            text-align: center;
            color: var(--color-dark);
            margin-bottom: 30px;
            font-size: 2.5rem;
        }
        .form-control-custom {
            background-color: var(--color-light-gray);;
            border: none;
            border-radius: 5px;
            padding: 15px;
            box-shadow: none;
        }
        .form-control-custom:focus {
            box-shadow: 0 0 0 0.25rem rgba(92, 131, 116, 0.25);
        }
        .form-group-spaced {
            margin-bottom: 15px;
        }
        .btn-send-custom {
            background-color: var(--color-primary);
            color: white;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 5px;
            border: none;
            transition: background-color 0.3s;
            width: auto;
        }
        .btn-send-custom:hover {
            background-color: #4a6a5d;
            color: white;
        }

        /* --- Clients Section Styling (Updated) --- */
        .clients-section {
            padding: 80px 0;
        }
        .client-scroller {
            overflow: hidden;
            margin: 40px 0;
        }
        .client-track {
            display: flex;
            width: max-content; 
            animation: alternate-scroll 20s ease-in-out infinite alternate;
        }
        .client-logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 50px; 
            min-width: 180px; 
            user-select: none;
            flex-shrink: 0; 
        }
        .client-logo-item img {
            height: 120px;
            width: auto;
            filter: grayscale(100%); 
            opacity: 0.7;
            transition: opacity 0.3s, filter 0.3s;
        }
        .client-logo-item img:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .client-logo-item span {
            margin-top: 10px;
            font-weight: 600;
            color: var(--color-dark);
        }
        @keyframes alternate-scroll {
            from { transform: translateX(0); }
            to { 
                /* Ensures content scrolls across the full width of the view */
                transform: translateX(calc(-100% + 100vw)); 
            }
        }
        .client-track:hover {
            animation-play-state: paused;
        }

        /* --- SCROLL ANIMATION STYLES (NEW) --- */
        /* Initial state: hidden and slightly below its final position */
        .scroll-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }
        /* Specific adjustment for smaller internal elements */
        .product-card.scroll-animate, .supplier-icon-card.scroll-animate {
             transform: translateY(30px);
             transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        /* Final state: fully visible and in place */
        .show-element {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Ensure product card transition doesn't interfere with the animation */
        .product-card {
            transition: transform 0.3s, opacity 0.8s, transform 0.8s; 
        }
        
        /* --- END SCROLL ANIMATION STYLES --- */
        
        /* --- Footer Styling (Restored and Enhanced) --- */
        .footer-section {
            background-color: var(--color-dark); /* Dark background */
            color: white;
            padding: 50px 0 20px 0;
        }
        .footer-section a {
            color: var(--color-light-gray);
            transition: color 0.3s;
            text-decoration: none;
        }
        .footer-section a:hover {
            color: var(--color-secondary);
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 900;
            line-height: 1.1;
            display: inline-block;
            margin-bottom: 20px;
            color: white;
        }
        .footer-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-secondary);
            margin-bottom: 20px;
        }
        .footer-nav ul, .footer-contact ul {
            list-style: none;
            padding: 0;
        }
        .footer-nav li, .footer-contact li {
            margin-bottom: 10px;
        }
        .footer-contact li i {
            font-size: 1rem;
            width: 25px;
        }
        .footer-divider {
            height: 1px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 40px 0 20px 0;
        }
        .social-icons a {
            font-size: 1.5rem;
            margin-right: 15px;
        }
        /* Newsletter input and button styling */
        .newsletter-form .form-control-custom {
            background-color: #333;
            color: white;
            border: 1px solid #444;
        }
        .newsletter-form .form-control-custom:focus {
             box-shadow: 0 0 0 0.25rem rgba(226, 184, 66, 0.25);
             border-color: var(--color-secondary);
        }
        .newsletter-form .btn-subscribe {
            background-color: var(--color-secondary);
            color: var(--color-dark);
            font-weight: 700;
            border: none;
            transition: background-color 0.3s;
        }
        .newsletter-form .btn-subscribe:hover {
            background-color: #d1a839;
        }

        /* Modals */
        #aboutmodal .modal-dialog {padding: 0 50px; width: 100%; max-width: 1000px;}
        .modal-content {background-color: var(--color-primary); padding: 20px 50px 30px 50px; border-bottom: 10px solid var(--color-secondary);}
        .modal-title {color: var(--color-secondary); letter-spacing: 0.2rem; font-weight: bolder; font-family: 'Holtwood One SC', serif; font-style: normal; text-shadow: 2px 2px 4px rgba(0,0,0,0.4);}
        .modal-body {font-weight: 600; color: #fff;}
        .btn-modal-close {background-color: var(--color-secondary); font-weight: bold;}
        .btn-modal-close:hover {background-color: var(--color-secondary); font-weight: bold; color: var(--color-primary);}






        /* Responsive Adjustments */
        @media (max-width: 576px) {
            #aboutmodal .modal-dialog {padding: 0 20px 0 10px;}
            .modal-content {padding: 20px 0px 30px 0px;}
        }

        @media (min-width: 992px) {
            /* On large screens (desktop), show the navigation links and button inline */
            .navbar-nav {
                display: flex !important;
            }
            .navbar .btn-shop-now {
                display: inline-block !important;
            }
            .navbar-toggler {
                /* Hide the hamburger button on desktop */
                display: none;
            }
        }

        @media (max-width: 991px) {
            .navbar .btn-shop-now {
                display: none;
            }
            .navbar-toggler {
                display: block;
            }
            /* Other responsive adjustments */
            .contact-section .section-title {
                text-align: center;
            }
            .contact-section .section-subtitle::before {
                left: 50%;
                margin-left: -70px;
            }
            .contact-section .section-subtitle::after {
                display: block;
                right: 50%;
                margin-right: -70px;
            }
            .contact-left {
                margin-bottom: 40px;
                text-align: center;
            }
            .contact-info-list {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
            }
            .contact-info-list li {
                flex-direction: column;
                align-items: center;
                text-align: center;
                margin: 0 20px 30px 20px;
            }
            .contact-icon-wrapper {
                margin-right: 0;
                margin-bottom: 10px;
            }
            
            /* Footer Responsive Adjustments */
            .footer-section .col-lg-4, .footer-section .col-lg-2, .footer-section .col-lg-3 {
                text-align: center;
            }
            .footer-nav ul, .footer-contact ul {
                 padding-left: 0;
            }
            .social-icons {
                margin-top: 15px;
            }
            .social-icons a {
                margin: 0 7px;
            }
        }
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-buttons .btn {
                padding: 10px 20px;
                font-size: 1rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .section-subtitle::before, .section-subtitle::after {
                width: 15px;
                margin-left: -50px;
                margin-right: -50px;
            }
            .supplier-icon-card {
            padding: 20px 15px;
        }
        }