
        /* CSS Variables for Colors and Fonts */
        :root {
            --deep-green: #1a4d2e;
            --light-green: #4f9d69;
            --orange: #e67e22;
            --black: #333;
            --cream: #fef7e5;
            --white: #ffffff;
            --shadow: rgba(0, 0, 0, 0.1);
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }

        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-secondary);
            color: var(--black);
            line-height: 1.6;
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-primary);
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            border: none;
            font-family: var(--font-primary);
        }

        .btn-primary {
            background-color: var(--orange);
            color: var(--white);
        }

        .btn-primary:hover {
            background-color: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--deep-green);
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--deep-green);
        }

        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
            color: var(--black);
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
            padding: 20px 0;
        }

        /* Mobile header is always solid */
        header {
            background-color: var(--deep-green);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        /* Desktop/tablet header is transparent until scrolled */
        @media (min-width: 769px) {
            header {
                background-color: transparent;
                box-shadow: none;
                padding: 25px 0;
            }
            
            header.scrolled {
                background-color: var(--deep-green);
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                padding: 15px 0;
            }
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-placeholder img{
            width: 4rem;
            height: 4rem;
            background-color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-weight: bold;
            color: var(--deep-green);
            font-size: 1.2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 1;

        }

        .logo-text {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--white);
            text-transform: uppercase;
            transition: font-size 0.3s ease;
            z-index: 1;
        }
        /* Tablet (medium screens) */
        @media (max-width: 1024px) {
        .logo-text {
            font-size: 1.7rem;
        }
        }

                /* Mobile (small screens) */
        @media (max-width: 768px) {
        .logo-text {
        display: flex;
        align-items: center;
        gap: 6px;/* smaller text logo */
        }

    .logo-placeholder img {
        height: 32px; /* shrink the icon */
        width: auto;
    }

    .header-container {
        padding: 10px 16px; /* reduce padding */
    }

    .mobile-menu-btn {
        display: block;
    }
        }

        /* Extra small (very small phones) */
        @media (max-width: 480px) {
        .logo-text {
            font-size: 1rem;
            letter-spacing: 0.5px;
            
        }
        }

        .logo-text span {
            color: var(--orange);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--white);
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--orange);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1002;
        }

        /* Mobile Menu Overlay */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }


        /* Hero Section (slideshow) */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }

        /* Slides container - each slide is an absolutely positioned background */
        .hero-slides {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Dark overlay over slides for legibility */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
            z-index: 1;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1s ease forwards 0.5s;
            position: relative;
            z-index: 2; /* above slides & overlay */
        }


        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* About Section */
        .about {
            background-color: var(--cream);
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            height: 500px;
            background: url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
        }

        .about-content h2 {
            color: var(--deep-green);
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--black);
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 2rem;
        }

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .feature-icon {
            background-color: var(--light-green);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-content h4 {
            margin-bottom: 5px;
            color: var(--deep-green);
        }

        /* Produce Section */
        .produce {
            background-color: var(--white);
        }

        .produce-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .produce-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .produce-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .produce-image {
            height: 200px;
            background-color: var(--light-green);
            background-size: cover;
            background-position: center;
        }

        .produce-content {
            padding: 25px;
        }

        .produce-content h3 {
            color: var(--deep-green);
            margin-bottom: 10px;
        }

        /* Team Section */
        .team {
            background-color: var(--cream);
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-member {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            padding: 30px 20px;
            transition: transform 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .member-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background-color: var(--light-green);
            background-size: cover;
            background-position: center;
        }

        .team-member h3 {
            color: var(--deep-green);
            margin-bottom: 5px;
        }

        .team-member p {
            color: var(--orange);
            font-weight: 500;
            margin-bottom: 15px;
        }

        /* Contact Section */
        .contact {
            background-color: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-info {
            background-color: var(--deep-green);
            color: var(--white);
            padding: 40px;
            border-radius: 10px;
        }

        .contact-info h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            margin-right: 15px;
            color: var(--orange);
            font-size: 1.2rem;
            width: 20px;
        }

        .contact-form {
            padding: 40px;
            background-color: var(--cream);
            border-radius: 10px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--deep-green);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: var(--font-secondary);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--light-green);
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: var(--deep-green);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .footer-col ul li i {
            margin-right: 10px;
            color: var(--orange);
            width: 20px;
        }

        .footer-col a {
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--orange);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--orange);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 992px) {
            .logo-placeholder img{
                width: auto;
                height: 70px;
                margin-right: 10px;
            }
            .about-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 400px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .logo-placeholder img{
                width: auto;
                height: 50px;
                margin-right: 10px;
            }
            .mobile-menu-btn {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--deep-green);
                flex-direction: column;
                align-items: flex-start;
                padding: 100px 30px 30px;
                transition: right 0.4s ease;
                z-index: 1001;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
                width: 100%;
            }

            .nav-links a {
                font-size: 1.1rem;
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            section {
                padding: 60px 0;
            }

            .contact-info,
            .contact-form {
                padding: 25px;
            }

            .logo-text {
                font-size: 1rem;
            }

            .logo-placeholder {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .logo-placeholder img{
                width: auto;
                height: 40px;
                margin-right: 10px;
            }
            
        }

        /* Floating Call Widget */
        .call-widget {
        position: fixed;
        bottom: 22px;
        right: 22px;
        background-color: var(--orange);
        color: var(--white);
        font-size: 1.3rem;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        animation: pulse-ring 1.8s infinite;
        transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .call-widget:hover {
        transform: scale(1.1);
        background-color: #f18b35; /* slightly lighter orange on hover */
        }

        /* Pulse Ring Effect */
        @keyframes pulse-ring {
        0% {
            box-shadow: 0 0 0 0 rgba(79, 157, 105, 0.6);
        }
        70% {
            box-shadow: 0 0 0 20px rgba(79, 157, 105, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(79, 157, 105, 0);
        }
        }

        /* Tooltip */
        .call-widget .tooltip {
        position: absolute;
        right: 70px;
        background: var(--black);
        color: var(--white);
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.85rem;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(5px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
        }

        .call-widget:hover .tooltip {
        opacity: 1;
        transform: translateY(0);
        }

        /* @media(max-width: 480px) {
    .hero { padding-top: 70px; }
} */
