:root {
            --primary-green: #6BB945;
            --dark-green: #185016;
            --light-green: #f0f8e8;
            --accent-yellow: #FFCD1E;
            --text-dark: #2d3436;
            --text-light: #636e72;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background-color: #F6F4EF;
            padding: 12px 0;
            font-size: 14px;
        }

        .top-bar .left-info {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .top-bar .left-info span {
            color: #666;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar .left-info i {
            color: var(--primary-green);
            font-size: 14px;
        }

        .top-bar .right-info {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

        .top-bar .right-info span {
            color: #666;
        }
        .social-links img {
            height: 15px;
            padding: 0px 6px;
        }

        .social-links {
            color: #185016;
            transition: color 0.3s;
        }

        /* Navbar */
        .main-navbar {
            background: #fff;
            padding: 08px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 700;
            color: var(--text-dark) !important;
        }

        .navbar-brand .leaf-icon {
            color: var(--primary-green);
            font-size: 28px;
        }

        .navbar-brand .brand-name {
            color: var(--primary-green);
        }

        .navbar-nav {
            gap: 35px;
        }

        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.3px;
            transition: color 0.3s;
            padding: 8px 0 !important;
        }

        .nav-link:hover {
            color: var(--primary-green) !important;
        }

        .navbar-buttons {
            display: flex;
            gap: 12px;
        }

        .btn-outline-success {
            border: 2px solid var(--primary-green);
            color: #ffffff;
            background: #6BB945;
            padding: 10px 45px;
            font-weight: 500;
            border-radius: 5px;
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .btn-outline-success:hover {
            background: var(--dark-green);
            color: #fff;
            border: 2px solid var(--dark-green);
        } 

        .btn-dark-green {
            background: var(--dark-green);
            color: #fff;
            padding: 10px 45px;
            font-weight: 500;
            border-radius: 5px;
            border: 2px solid var(--dark-green);
            transition: all 0.3s;
            text-transform: uppercase;
        }

        .btn-dark-green:hover {
            background: var(--primary-green);
            color: #fff;
        }
        .brand-logo {
        width: 282px;
        height: 62px;
        }

        /* Hero Section */
        .hero-section {
            /* background-image: url(images/banner-img.png); */
            background-image: url('/assets/images/banner-img.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0 100px;
            text-align: center;
            position: relative;
        }

        /* .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('images/banner-img.png width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 0h100v100H0z" fill="none"/%3E%3Cpath d="M20 20l5 10-5 10" stroke="%23fff" stroke-width="0.5" fill="none" opacity="0.1"/%3E%3C/svg%3E');
            opacity: 0.05;
        } */

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-section .welcome-text {
            font-size: 30px;
            font-weight: 500;
            font-family: Syne;
        }

        .hero-section h1 {
            font-size: 95px;
            font-weight: 700;
            line-height: 1.1;
            font-family: syne;
        }

        .hero-section .subtitle {
            font-size: 30px;
            font-weight: 400;
            line-height: 45px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Section */
        .about-section {
            padding: 60px 0;
            background: #fff;
        }

        .section-subtitle {
            color: var(--primary-green);
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Syne';
            font-weight: 700;
            font-size: 30px;
            margin-bottom: 2px;
        }
/* 
        .section-subtitle::before {
            content: '🌿';
            font-size: 18px;
        } */
        .section-subtitle::before {
            content: "";
            display: inline-block;
            width: 24px;
            height: 24px;
            background-image: url('/assets/images/deco-tittle\ 1.svg');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            margin-right: 8px; /* spacing between icon and text */
            vertical-align: middle;
        }

        .section-title {
            font-size:65px;
            font-weight: 700;
            color: var(--dark-green);
            margin-bottom: 7px;
            line-height: 1.2;
            font-family: 'Syne';
        }

        /* .about-content p {
            line-height: 1.8;
            margin-bottom: 18px;
        } */
        .plain-text {
        font-family: 'Plus Jakarta Sans';
        font-style: normal;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #555454;
        }

        .btn-know-more {
            background: var(--primary-green);
            color: #fff;
            padding: 14px 38px;
            font-weight: 600;
            border-radius: 6px;
            border: none;
            margin-top: 25px;
            transition: all 0.3s;
        }

        .btn-know-more:hover {
            background: #73b534;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(130, 196, 60, 0.3);
            color: white;
        }

        .organic-badge img{
            width: 140px;
            height: 132px;
            margin-left: 40px;
        }


        .about-image {
            position: relative;
            padding-left: 40px;
        }

        .about-image img {
            max-width: 85%;
            width: 100%;
        }

        .leaf-decoration {
            position: absolute;
            width: 80px;
            opacity: 0.7;
        }

        .leaf-decoration.leaf-1 {
            top: -20px;
            right: 50px;
            transform: rotate(15deg);
        }

        .leaf-decoration.leaf-2 {
            bottom: -30px;
            left: 20px;
            transform: rotate(-25deg);
        }

        /* Why Section */
        /* .why-section {
            padding: 60px 0;
            background: #FFF8E6;
        }

        .why-section .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .feature-box {
            background: #fff;
            border-radius: 12px;
            padding: 50px 35px;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 5px 20px rgba(0,0,0,0.06);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .feature-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-green);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }

        .feature-box:hover::before {
            transform: scaleX(1);
        }*/

        .feature-icon {
            width: 80px;
            height: 90px;
        }

        .feature-box h4 {
            font-family: 'Syne';
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .feature-box p {
            /* font-size: 15px;
            line-height: 1.7; */
            color: var(--text-light);
            margin: 0;
        } 

        .why-section {
            padding: 60px 0;
            background-color: #FFF8E6;
        }

        /* Why Section Feature Boxes */
        .why-section .feature-box {
            padding: 30px 20px;
            border-radius: 25px;
            /* text-align: center; */
            transition: transform 0.3s, box-shadow 0.3s;
            gap: 20px;
            box-shadow: 0px 4px 12.6px -5px #00000033;

        }
        /* Individual Background Colors */
        .why-section .feature-box.bg-green1 { background-color: #9FFF98; }
        .why-section .feature-box.bg-green2 { background-color: #BEFFB9; }
        .why-section .feature-box.bg-green3 { background-color: #D4FFD1; }

        /* Feature Icons */
        .why-section .feature-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #2f7a2f; /* darker green for contrast */
        }
        .why-section .section-title {
            margin-bottom: 30px;
        }

        /* Farmers Section */
        .farmers-section {
            background: #fff;
        }
        .farmers-section .meet-our{
            padding-right: 10px;
            margin: auto;
        }

        .farmer-image-wrapper {
            position: relative;
            height: 600px;
            /* border-radius: 15px; */
            overflow: hidden;
            /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
        }

        .farmer-image img {
            width: 100%;
            height: 100%;
        }

        /* .farmers-content {
            padding-left: 50px;
        } */
         .farmers-content {
            max-width: 520px;
        }

        .farmer-tags {
            margin-top: 35px;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }

        .farmer-tag {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .farmer-tag img {
            width: 50px;
            height: 50px;
            align-items: center;
            margin-bottom: 12px;
        }
        .farmer-tag span {
            font-family: Syne;
            font-weight: 700;
            font-style: Bold;
            font-size: 22px;
            color: var(--dark-green);
        }

        /* .farmer-tag:hover {
            background: var(--primary-green);
            color: #fff;
            transform: translateY(-3px);
        } */

        /* .farmer-tag:hover i {
            color: #fff;
        } */

        /* Custom icon size (optional) */
        .icon {
            width: 16px;
            height: 16px;
        }

        .btn-meet-farmers {
            background: var(--primary-green);
            color: #fff;
            padding: 14px 38px;
            font-weight: 600;
            border-radius: 6px;
            border: none;
            margin-top: 35px;
            transition: all 0.3s;
        }

        /* Products Section */
        .products-section {
            padding: 60px 0;
            background: #fafafa;
        }

        .products-section .section-title {
            font-size: 45px;
            text-align: center;
            margin-bottom: 15px;
            max-width: 850px;
            margin: 0 auto;
            margin-bottom: 30px;
        }

        .products-section .section-desc {
            text-align: center;
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 60px;
        }

        .product-card {
            overflow: hidden;
            transition: all 0.4s;
            /* margin-bottom: 30px;
            padding-bottom: 15px; */
        }

        /* .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.15);
        } */

        .product-image {
            position: relative;
            height: 280px;
            overflow: hidden;
            border-radius: 20px;
            /* width: 90%; */
            margin-right: 50px;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
            
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            background: var(--primary-green);
            color: #fff;
            padding: 6px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Syne';
        }

        .product-arrow {
            background: var(--primary-green);
            border-radius: 0px 0px 10px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s;
            padding: 20px 15px;
            
        }
        .product-arrow img {
            width: 30px;
            height: 30px;
        }

        .product-arrow:hover {
            background: var(--dark-green);
            transform: scale(1.1);
        }
        .row .col-lg-4:first-of-type .product-arrow {
            background: #FFCD1E;
        }

        .product-info {
            padding: 0px 43px 28px 28px;
            box-shadow: 0px 4px 4px 0px #00000040;
            border-radius: 20px;
            background-color: #fff !important;
            margin-bottom: 30px;
            width: 90%;
            margin-top: -80px;
            z-index: 1;
            position: relative;
            margin-left: 35px;
        }

        .product-info h5 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }

        .product-info p {
            /* font-size: 14px;
            line-height: 1.7; */
            color: var(--text-light);
            margin: 0;
           
        }
        .category-row{
            justify-content: space-between;
            align-items: center;
        }
        .product-badge::after {
            content: "";
            display: inline-block;
            width: 16px;   /* image width */
            height: 16px;  /* image height */
            margin-left: 5px;
            vertical-align: middle;
            background-image: url('/assets/images/leaf-img.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        /* CTA Banner */
        .cta-banner {
            background: var(--accent-yellow);
            border-radius: 20px;
            padding: 20px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: -60px;
            z-index: 1;
            position: relative;
        }

        .cta-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .cta-icon img{
            width: 60%;
        }

        .cta-banner h3, .cta-banner a{
            color: #104E4B;
            font-size: 35px;
            margin: 0;
        }

        .cta-phone {
            font-size: 36px;
            font-weight: 800;
            color: var(--dark-green);
        }

        /* Footer */
        footer {
            background: url('/assets/images/footer.png') no-repeat center center;
            background-size: cover; /* makes sure the image covers the entire footer */
            color: #fff;
            padding: 130px 0 0px;
            position: relative; /* optional if you want to add overlay or position content */
        }

        footer .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .footer-brand img {
            min-height: 62px;
            max-width: 282px;
            height: auto;
        }

        footer p {
            color: #fff !important;
      
        }

        footer h5 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            font-family: 'Syne';
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 12px;
        }

        footer ul li a {
            font-weight: 500px;
            color: #FFFFFF;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
            display: inline-block;
        }

        footer ul li a:hover {
            color: var(--primary-green);
            padding-left: 5px;
        }

        footer .contact-icons {
            height: 30%;
            width: 30%;
            max-width: 33px;
            display: flex;
            gap: 15px;
        }

        footer .social-icons a {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s;
            text-decoration: none;
        }

        footer .social-icons a:hover {
            background: var(--primary-green);
            transform: translateY(-3px);
        }

        footer .social-icon-img{
            gap: 12px;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            justify-content: flex-start;
        }

        footer .contact-item {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            color: #b8c5b8;
            font-size: 14px;
        }
        footer .contact-item span{
            font-size: 16px;
            font-weight: 500px;
            color: #FFFFFF;
        }

        footer .contact-item i {
            color: var(--primary-green);
            margin-top: 3px;
        }
        .quick-links-list li {
            position: relative;
            padding-bottom: 20px; /* Adjust space between the list item and the divider */
        }

        .quick-links-list li::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 85%;
            height: 1px; /* Adjust the height if necessary */
            background: url('/assets/images/divider-line.png') no-repeat center center;
            background-size: contain; /* Make sure the image fits well */
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            background: rgba(255,255,255,0.1);
            color: #fff;
        }

        .newsletter-form input::placeholder {
            color: #b8c5b8;
        }

        .newsletter-form button {
            padding: 12px 28px;
            background: var(--primary-green);
            color: #fff;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .newsletter-form button:hover {
            background: #73b534;
        }

        .copyright {
            margin-top: 25px;
            text-align: center;
            padding: 30px;
            background-color: #092707CC;
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero-section h1 {
                font-size: 52px;
            }

            .section-title {
                font-size: 38px;
            }

            .farmers-content {
                padding-left: 15px;
                margin-top: 40px;
            }

            .cta-banner {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .navbar-buttons {
                margin-top: 20px;
            }

            
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 140px;
            }

            .hero-section h1 {
                font-size: 42px;
            }

            .section-title {
                font-size: 32px;
            }

            .about-image {
                padding-left: 0;
                margin-top: 40px;
            }

            .top-bar {
                display: none;
            }

            /* .top-bar .left-info {
                flex-direction: column;
                gap: 10px;
            }

            .top-bar .right-info {
                justify-content: flex-start;
                margin-top: 10px;
            } */

            .cta-banner {
                padding: 40px 30px;
            }

            .farmer-image-wrapper {
                height: 400px;
            }
            .brand-logo {
                width: 180px; 
            }
            .navbar-nav {
                text-align: center;
            }
            .navbar-collapse {
                position: fixed;
                top: 85px;
                width: 100%;
                padding: 15px;
                left: 0;
                background: #fff;
            }
            .organic-badge img {
                width: 100px;
                height: auto;
                margin-left: 35px;
            }
        }