           /* General CSS */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
}

:root {

    /* Background Color */

    --bg-white:#fff;

    /* Text Colors */
    --primary-text: #061738;
    --secondary-color: #60cd12;
    --light-color: #e2f6de;
    --dark-color: #03262c;
    --text-white: #fff;
    --text-gray: #dee2e6;
    --anchor-color: #007aff;

     --primary-font: 'Barlow Condensed', sans-serif;
    --secondary-font: 'Roboto', sans-serif;
}
embed,
iframe,
img,
object {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:active,
a:focus,
a:hover,
button {
    text-decoration: none;
    outline: 0;
}

li a {
    color: var(--text-white);
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

::-webkit-scrollbar {
    width: 10px;
} 
::-webkit-scrollbar-track {
    background:var(--white); 
} 
::-webkit-scrollbar-thumb {
    background: var(--secondary-color); 
} 
embed,
iframe,
img,
object {
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a,
a:active,
a:focus,
a:hover,
button {
    text-decoration: none;
    outline: 0;
}

li a {
    color: var(--text-white);
}

a:hover,
button:hover {
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

::-webkit-scrollbar {
    width: 10px;
} 
::-webkit-scrollbar-track {
    background:var(--white); 
} 
::-webkit-scrollbar-thumb {
    background: var(--secondary-color); 
}  

.main-btn {
    position: relative;
    color: var(--bg-white);
    background: linear-gradient(to right, #0f7404, #5cb917);
    z-index: 1;
    overflow: hidden;
    border: 0.2rem solid var(--bg-white);
    border-radius: 3.5rem;
    text-transform: uppercase;
    padding: 1rem 3.5rem;
    font-weight: 600;
    font-size: 1.8rem;
    margin-top: 1.5rem;
    letter-spacing: 0.2rem;
}

.main-btn:hover {
    background: var(--bg-white);
    color: var(--secondary-color);
    border: 0.2rem solid var(--secondary-color);
}



        :root {
            --green: #0b6b2d;
            --accent: #ffb03b;
            --bg: #fbfdfb;
            --maxw: 1200px;
            --ease: cubic-bezier(.19, 1, .22, 1);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: "Poppins", sans-serif,'Barlow Condensed','Roboto'
              
        }

        body {
            background: var(--bg);
            color: #14221a;
            line-height: 1.5
        }

       /* ===== NAVBAR LAYOUT & STYLE ===== */

#siteHeader {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#siteHeader.nav-scrolled {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 0, 0, 0);
}

.navwrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.logo img {
  height: 54px;
  width: auto;
  border-radius: 0;      /* ⬅️ THIS makes it rectangular */
  object-fit: contain;  /* ⬅️ image fits fully inside box */
  display: block;
}


/* nav links */

.navwrap nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.navwrap nav a {
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  color: #163321;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

/* underline hover effect like pro sites */
.navwrap nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0b6b2d, #ffb703);
  border-radius: 999px;
  transition: width 0.22s ease;
}

.navwrap nav a:hover {
  color: #0b6b2d;
}

.navwrap nav a:hover::after,
.navwrap nav a.nav-active::after {
  width: 100%;
}

.navwrap nav a.nav-active {
  color: #0b6b2d;
}

/* ===== RIGHT SIDE WHATSAPP BUTTON ===== */

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.45);
  animation: whatsapp-pulse 2.2s infinite;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.nav-whatsapp i {
  font-size: 1.1rem;
}

.nav-whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.6);
  transform: translateY(-1px);
}

/* animated pulse */
@keyframes whatsapp-pulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  60% {
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== RESPONSIVE TWEAKS ===== */

@media (max-width: 900px) {
  .navwrap {
    padding-inline: 5%;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .navwrap {
    flex-wrap: wrap;
  }
  nav {
    order: 3;
    width: 100%;
    justify-content: center;
    display: flex;
  }
  .navwrap nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav-right span {
    display: none; /* keep only icon text on small screens */
  }
  .nav-whatsapp {
    padding: 6px 10px;
  }
}
/* ===============================
   NAVBAR LOGOS – CLEAN & BALANCED
================================ */

.logo-dual {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-dual img {
    height: 65px;          /* 👈 SAME HEIGHT */
    width: auto;
    object-fit: contain;
}

        /* HERO */
        .hero {
            position: relative;
            height: 101vh;
            padding-top: 86px;
            display: flex;
            align-items: center;
            overflow: hidden
        }

        .video-wrap {
            position: absolute;
            inset: 0;
            z-index: -10;
            clip-path: polygon(0 0, 62% 0, 38% 100%, 0 100%);
            overflow: hidden
        }

        .video-wrap video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -20;
            background: linear-gradient(180deg, rgba(255, 192, 55, 0.95), rgba(255, 205, 70, 0.88));
            clip-path: polygon(62% 0, 100% 0, 100% 100%, 38% 100%)
        }
.hero-content {
    padding-left: 58%; /* instead of 66% */
    z-index: 5;
    color: #063e1b;
     padding-top: 8%;
 
}

/* Optional for readability */
.hero-title, .hero-sub, .hero-content p {
    text-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

        .hero-title {
            font-family: "Montserrat", sans-serif;
            font-size: 3.6rem;
            line-height: 1.02;
            margin-bottom: 8px
        }

        .hero-sub {
            font-style: italic;
            margin-bottom: 18px;
            color: #144d2b
        }

        .cta {
            display: inline-block;
            background: var(--green);
            color: #fff;
            padding: 12px 26px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            transition: transform .25s
        }

        .cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(11, 107, 45, .12)
        }

        /* small hero logo watermark on right */
        .hero-watermark {
            position: absolute;
            right: 6%;
            top: 10%;
            opacity: 0.90;
            z-index: 1;
            pointer-events: none
        }

        /* reveal animation */
        .reveal {
            opacity: 20;
            transform: translateY(18px);
            transition: transform .75s var(--ease), opacity .6s
        }

        .reveal.show {
            opacity: 1;
            transform: none
        }

        /* PRODUCTS STRIP attached to hero (Magnus-like) */
        .products-strip {
            margin-top: -8px
        }

        .products-row {
            display: flex;
            gap: 0;
            height: 220px;
            width: 100%
        }

        .product {
            flex: 1;
            position: relative;
            overflow: hidden
        }

        .product a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
            color: inherit;
            text-decoration: none
        }

        .card-front {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 2;
            color: #fff;
            text-transform: uppercase;
            font-weight: 800;
            transition: opacity .45s, transform .45s
        }

        .card-front i {
            font-size: 2.2rem;
            margin-bottom: 10px
        }

        .card-front .title {
            font-family: "Montserrat", sans-serif;
            letter-spacing: 1px;
            font-size: 1.2rem
        }

        .card-front .read-small {
            margin-top: 12px;
            border: 1px solid rgba(255, 255, 255, .12);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: .85rem
        }

        .product img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1.03);
            transition: opacity .55s var(--ease), transform .55s var(--ease);
            z-index: 1
        }

        .product:hover img {
            opacity: 1;
            transform: scale(1)
        }

        .product:hover .card-front {
            opacity: 0;
            transform: scale(.97)
        }

        /* color palette matched carefully to brochure + reference sites */
        .fruit .card-front {
            background: linear-gradient(180deg, #93c34a, #7eb63b)
        }

        /* greens */
        .veg .card-front {
            background: linear-gradient(180deg, #ffcf60, #ffb703)
        }

        /* yellow/orange */
        .fresh .card-front {
            background: linear-gradient(180deg, #00b386, #01825f)
        }

        /* teal/green */
        .proc .card-front {
            background: linear-gradient(180deg, #f26b46, #e84b2e)
        }

        /* warm red-orange */

        /* PRODUCTS expanded section */
        .section {
            max-width: var(--maxw);
            margin: 56px auto;
            padding: 0 20px
        }

        .section-title {
            text-align: center;
            margin-bottom: 28px
        }

        .section-title h2 {
            font-family: "Montserrat", sans-serif;
            letter-spacing: 2px;
            font-size: 1.5rem
        }

        .section-title .uline {
            height: 3px;
            width: 90px;
            background: var(--green);
            margin: 10px auto;
            border-radius: 2px
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px
        }

        .prod-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(11, 40, 24, .06);
            transition: transform .35s
        }

        .prod-card:hover {
            transform: translateY(-8px)
        }

        .prod-thumb {
            height: 180px;
            background: #f4f8f4
        }

        .prod-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .prod-body {
            padding: 16px
        }

        .prod-body h4 {
            font-family: "Montserrat", sans-serif;
            margin-bottom: 8px
        }

        .prod-body p {
            color: #3a4a3a;
            margin-bottom: 12px
        }

        .btn-small {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 28px;
            background: var(--green);
            color: #fff;
            text-decoration: none;
            font-weight: 600
        }

        /* ABOUT & SERVICES */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: center
        }

        .about .badge {
            background: rgba(11, 107, 45, .07);
            color: var(--green);
            display: inline-block;
            padding: 6px 12px;
            border-radius: 24px;
            font-weight: 700;
            margin-bottom: 12px
        }

        .about p {
            color: #374a3f
        }

        .services-list {
            display: flex;
            flex-direction: column;
            gap: 14px
        }

        .service-item {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            background: #fff;
            padding: 14px;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(11, 40, 24, .04)
        }

        .service-item i {
            font-size: 20px;
            color: var(--green)
        }



        .slideshow-container {
            position: relative;
            width: 100%;
            height: 500px;
            /* section height */
            overflow: hidden;
        }

        .slide {
            display: none;
            width: 100%;
            height: 100%;
            position: relative;
            text-align: left;
            color: #fff;
        }

    .slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

        .slide-content {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            max-width: 500px;
        }

        .slide-content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .slide-content p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .slide-content a {
            display: inline-block;
            padding: 10px 20px;
            background: #4CAF50;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .slide-content a:hover {
            background: #45a049;
        }

        /* Arrow buttons */
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 40px;
            color: #fff;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 50%;
            padding: 8px 12px;
            cursor: pointer;
            user-select: none;
            z-index: 10;
            transition: background 0.3s;
        }

        .arrow:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .arrow-left {
            left: 20px;
        }

        .arrow-right {
            right: 20px;
        }
    

        /* CONTACT & FOOTER */
        .contact-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            align-items: start
        }

        .contact-card {
            background: #fff;
            padding: 18px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(12, 40, 24, .05)
        }

        footer {
            background: #082512;
            color: #d7f1dc;
            padding: 28px 20px;
            margin-top: 28px
        }

        /* responsive */
        @media(max-width:1000px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .two-col {
                grid-template-columns: 1fr
            }
        }

        @media(max-width:700px) {
            .products-row {
                flex-direction: column;
                height: auto
            }

            .product {
                height: 200px
            }

            .products-grid {
                grid-template-columns: 1fr
            }

            .gallery-grid img {
                height: 120px
            }

            .contact-wrap {
                grid-template-columns: 1fr
            }
        }


   

    
         /* ==========================================
   WHY TO CHOOSE US – Banana Animation + Icons
========================================== */
        .why-choose-creative {
            position: relative;
            width: 100%;
            padding: 60px 20px;
            overflow: hidden;
            color: #1c3a24;
        }

        /* Animated banana background */
        .animated-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .animated-bg .banana {
            position: absolute;
            display: block;
            width: 50px;
            height: 50px;
            background-image: url('images/banana.jpg');
            background-size: contain;
            background-repeat: no-repeat;
            animation: float 15s linear infinite;
        }

        .animated-bg .banana:nth-child(1) {
            left: 10%;
            animation-duration: 12s;
            width: 60px;
            height: 60px;
        }

        .animated-bg .banana:nth-child(2) {
            left: 30%;
            animation-duration: 18s;
            width: 40px;
            height: 40px;
        }

        .animated-bg .banana:nth-child(3) {
            left: 50%;
            animation-duration: 14s;
            width: 70px;
            height: 70px;
        }

        .animated-bg .banana:nth-child(4) {
            left: 70%;
            animation-duration: 20s;
            width: 50px;
            height: 50px;
        }

        .animated-bg .banana:nth-child(5) {
            left: 85%;
            animation-duration: 16s;
            width: 35px;
            height: 35px;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0.4;
            }

            50% {
                transform: translateY(50vh) rotate(180deg);
                opacity: 0.6;
            }

            100% {
                transform: translateY(-20vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Content container */
        .why-container {
            position: relative;
            z-index: 2;
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Header */
        .why-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .why-header h2 {
            font-family: "Montserrat", sans-serif;
            font-size: 2rem;
            color: #0b5c1d;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .why-line {
            width: 70px;
            height: 3px;
            background: #ffb703;
            margin: 0 auto 14px;
            border-radius: 2px;
        }

        .why-sub {
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
            color: #29572f;
        }

        /* Grid */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
        }

        .why-item {
            background: #fffbe6;
            border-radius: 15px;
            padding: 25px 20px;
            text-align: center;
            box-shadow: 0 12px 25px rgba(255, 183, 3, 0.25);
            transition: all 0.5s ease;
            position: relative;
        }

        .why-item:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 18px 35px rgba(255, 183, 3, 0.35);
        }

        .card-icon {
            font-size: 2rem;
            color: #ffb703;
            margin-bottom: 12px;
        }

        /* Typography */
        .why-item h4 {
            font-family: "Montserrat", sans-serif;
            font-size: 1.2rem;
            color: #0a4d1a;
            margin-bottom: 8px;
        }

        .why-item p {
            font-size: 0.95rem;
            color: #3d583f;
            line-height: 1.5;
        }

        /* Scroll reveal animation */
        .reveal-anim {
            opacity: 0;
            transform: translateY(25px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal-anim.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .why-choose-creative {
                padding: 50px 15px;
            }

            .why-header h2 {
                font-size: 1.7rem;
            }

            .why-grid {
                gap: 15px;
            }
        }

          /* ==========================
   ABOUT US SECTION STYLING
========================== */
        .about-us-section {
            background: linear-gradient(180deg, #cafdd2e3, #eaf7ea);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 100, 0, 0.1);
            transition: transform 0.4s ease;
        }

        .about-image img:hover {
            transform: scale(1.03);
        }

        .about-content h2 {
            font-family: "Montserrat", sans-serif;
            color: var(--green);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .about-content .line {
            width: 90px;
            height: 4px;
            background: var(--accent);
            margin-bottom: 20px;
            border-radius: 3px;
        }

        .about-content p {
            color: #325f3b;
            line-height: 1.7;
            margin-bottom: 35px;
        }

        .about-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .about-card {
            background: #fff;
            padding: 25px 20px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 35px rgba(0, 100, 0, 0.15);
        }

        .about-card i {
            font-size: 36px;
            color: var(--green);
            margin-bottom: 10px;
            transition: color 0.4s;
        }

        .about-card:hover i {
            color: var(--accent);
        }

        .about-card h4 {
            color: #0b6b2d;
            font-size: 1.1rem;
            margin-bottom: 8px;
            font-family: "Montserrat", sans-serif;
        }

        .about-card p {
            color: #355e3b;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .about-container {
                grid-template-columns: 1fr;
            }

            .about-content {
                text-align: center;
            }

            .about-content .line {
                margin: 0 auto 20px;
            }
        }
        .about-image video.about-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 100, 0, 0.1);
    transition: transform 0.4s ease;
    object-fit: cover;
}
.about-image video.about-video:hover {
    transform: scale(1.03);
}


   @import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');



       

        

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            padding: 80px 50px;
            justify-items: center;
        }

        .gallery-item {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 4px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            opacity: 0;
            /* hidden initially */
            transform: translateY(50px);
            /* start below */
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-item .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 12px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        .overlay h3 {
            font-size: 1.2rem;
            text-align: center;
        }

        /* Animation class when item comes into view */
        .gallery-item.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-container {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                padding: 40px 20px;
            }

            .gallery-item {
                height: 150px;
            }
        }


         /* 🌾 Brand Section Styling */
            .brand-showcase {
                position: relative;
                width: 100%;
                overflow: hidden;
                background: linear-gradient(160deg, #f3ffe6 0%, #ffffff 100%);
                padding-bottom: 60px;
                text-align: center;
            }

            .brand-header {
                text-align: center;
                padding: 50px 20px 20px;
            }

            .brand-header h2 {
                font-family: "Montserrat", sans-serif;
                font-size: 3rem;
                font-weight: 800;
                color: #0b6b2d;
                letter-spacing: 2px;
                position: relative;
                display: inline-block;
            }

            .brand-header h2 span {
                color: #ffb703;
            }

            .brand-header h2::after {
                content: "";
                background: url('https://cdn-icons-png.flaticon.com/512/7665/7665738.png') no-repeat center center;
                background-size: contain;
                width: 40px;
                height: 40px;
                position: absolute;
                right: -45px;
                top: 5px;
            }

            .brand-header p {
                font-style: italic;
                color: #446b4a;
                margin-top: 8px;
                font-size: 1.1rem;
            }

            /* Farmer image */
            .farmer-hand {
                position: absolute;
                bottom: -5px;
                left: 3%;
                width: 200px;
                opacity: 0.9;
                transform-origin: bottom center;
            }

            /* Slider */
            .slideshow-container {
                position: relative;
                width: 90%;
                max-width: 1200px;
                height: 450px;
                overflow: hidden;
                margin: 30px auto;
                border-radius: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }

            .slide {
                display: none;
                width: 100%;
                height: 100%;
                position: relative;
            }

            .slide img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                filter: brightness(0.6);
            }

            .slide-content {
                position: absolute;
                top: 50%;
                left: 10%;
                transform: translateY(-50%);
                color: white;
            }

            .slide-content h2 {
                font-size: 2.4rem;
                margin-bottom: 10px;
            }

            .slide-content p {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }

            .slide-content a {
                display: inline-block;
                padding: 10px 22px;
                background: #ffb703;
                color: #0b6b2d;
                font-weight: 700;
                border-radius: 8px;
                text-decoration: none;
                transition: 0.3s;
            }

            .slide-content a:hover {
                background: #0b6b2d;
                color: #fff;
            }

            .arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                font-size: 40px;
                color: #fff;
                background: rgba(0, 0, 0, 0.3);
                border-radius: 50%;
                padding: 8px 12px;
                cursor: pointer;
                transition: 0.3s;
            }

            .arrow:hover {
                background: rgba(0, 0, 0, 0.6);
            }

            .arrow-left {
                left: 20px;
            }

            .arrow-right {
                right: 20px;
            }

            .brand-names {
                margin-top: 30px;
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 15px;
            }

            .brand-names span {
                background: #e7f8de;
                color: #0b6b2d;
                padding: 10px 18px;
                border-radius: 25px;
                font-weight: 600;
                transition: 0.3s;
            }

            .brand-names span:hover {
                background: #0b6b2d;
                color: #fff;
                transform: scale(1.05);
            }

            /* 🌾 Execution Cycle Section */
            .execution-cycle {
                background: linear-gradient(160deg, #93ea7e5d 0%, #4fea072d 100%);
                display: flex;
                align-items: flex-start;
                justify-content: center;
                gap: 60px;
                padding: 70px 8%;
                flex-wrap: wrap;
                border-top: 3px solid #e4f6d7;
                padding-top: 25px;
                 padding-bottom: 10px;
            }

            .execution-title {
                font-size: 2rem;
                font-weight: 800;
                color: #0b6b2d;
                line-height: 1.4;
                text-align: left;
                border-left: 6px solid #df4107;
                padding-left: 15px;
            }

            .cycle-steps {
                display: flex;
                flex-wrap: wrap;
                align-items: flex-start;
                gap: 35px;
                justify-content: center;
            }

            .step {
                width: 130px;
                text-align: center;
            }

            .icon-box {
                width: 90px;
                height: 90px;
                background: #f26522;
                border-radius: 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 42px;
                margin: 0 auto 12px;
                box-shadow: 0 6px 15px rgba(242, 101, 34, 0.3);
            }

            .step p {
                color: #2f2f2f;
                font-weight: 600;
                font-size: 0.95rem;
                line-height: 1.3;
            }

            @media (max-width: 768px) {
                .execution-cycle {
                    flex-direction: column;
                    text-align: center;
                    gap: 40px;
                }

                .execution-title {
                    text-align: center;
                    border-left: none;
                    border-top: 5px solid #ffb703;
                    padding-top: 10px;
                }
            }
/* Features CSS */
                .feature_section .features-box {
                    background-color: transparent;
                    border: 0.10rem solid var(--light-color);
                    padding: 8rem 0;
                    transition: all 0.3s;
                    padding-top: 40px;
                    padding-bottom: 30px;
                   
                 
                }

                .feature_section .features-box .features-icon-border {
                    background-color: transparent;
                    border-radius: 50%;
                    border: 0.1rem solid var(--light-color);
                    padding: 1rem;
                    display: inline-block;
                }

                .feature_section .features-box .features-icon {
                    height: 4rem;
                    width: 4rem;
                    background-color: var(--light-color);
                    margin: auto;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                .feature_section .features-box .features-icon img {
                    width: 3rem;
                }

                .feature_section .features-box h3 {
                    margin-top: 1.5rem;
                    color: var(--primary-text);
                    font-size:medium;
                }

                .feature_section .features-box:hover {
                    background-color: #03262c;
                    border-color: #03262c;
                }

                .feature_section .features-box:hover h3 {
                    color: #f7f4f4;
                }

                .feature_section .features-box:hover .features-icon-border {
                    border-color: #36970e;
                }
                /* Footer CSS */

 .site-footer {
            background: radial-gradient(circle at top left, #223a2a, #050a16 55%);
            color: #d9e4f1;
            padding: 28px 8% 18px;
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }

        /* subtle glow circle */
        .site-footer::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 183, 3, 0.18), transparent 60%);
            top: -120px;
            right: -40px;
            opacity: 0.8;
            pointer-events: none;
        }

        .sf-inner {
            position: relative;
            z-index: 1;
            max-width: 1180px;
            margin: 0 auto;
        }

        /* top area */

        .sf-top {
            padding-bottom: 14px;
            border-bottom: 1px solid rgba(176, 192, 210, 0.25);
            display: grid;
            grid-template-columns: minmax(0, 1.5fr) minmax(0, 2fr);
            gap: 26px;
            align-items: flex-start;
        }

        .sf-brand {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .sf-logo {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
        }

        .sf-brand h3 {
            font-family: "Montserrat", sans-serif;
            font-size: 1.2rem;
            color: #ffffff;
            margin-bottom: 4px;
        }

        .sf-brand p {
            font-size: 0.9rem;
            color: #a9b8c6;
        }

        .sf-cols {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
            font-size: 0.88rem;
        }

        .sf-col h4 {
            font-size: 0.92rem;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .sf-col ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .sf-col ul li {
            margin-bottom: 4px;
        }

        .sf-col a {
            color: #d9e4f1;
            text-decoration: none;
            font-size: 0.86rem;
        }

        .sf-col a:hover {
            color: #ffb703;
        }

        /* contact list */

        .sf-contact-list li {
            display: flex;
            align-items: flex-start;
            gap: 6px;
        }

        .sf-contact-list i {
            margin-top: 2px;
            color: #ffb703;
            min-width: 14px;
        }

        /* social icons */

        .sf-social {
            margin-top: 8px;
            display: flex;
            gap: 8px;
        }

        .sf-social a {
            width: 30px;
            height: 30px;
            border-radius: 999px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(157, 177, 197, 0.45);
            color: #d9e4f1;
            font-size: 0.9rem;
            transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
        }

        .sf-social a:hover {
            background: #ffb703;
            border-color: #ffb703;
            color: #1e2713;
            transform: translateY(-2px);
        }

        /* bottom bar */

        .sf-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 8px;
            padding-top: 10px;
            font-size: 0.8rem;
            color: #9aa8bc;
        }

        .sf-small {
            opacity: 0.85;
        }


/* ====== Motion safety ====== */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-up, .stagger-fade {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ====== Reveal helpers ====== */
.reveal, .stagger-fade, .reveal-left, .reveal-up {
  opacity: 0;
  transform-origin: left center;
  transition: transform 700ms cubic-bezier(.19,1,.22,1), opacity 600ms ease;
}

/* slide-from-left */
.reveal-left {
  transform: translateX(-40px);
}

/* slide-from-up */
.reveal-up {
  transform: translateY(30px);
}

/* simple fade/scale for small items */
.stagger-fade {
  transform: translateY(12px) scale(.98);
  transition-duration: 520ms;
}

/* When visible */
.in-view {
  opacity: 1;
  transform: none;
}

/* specific hero tweaks */
.hero-title.reveal-left {
  transition-duration: 900ms;
  transition-delay: 60ms;
  font-weight: 800;
  letter-spacing: 0.6px;
}

/* subtitle and cta */
.hero-sub.reveal-up {
  transition-duration: 750ms;
  transition-delay: 180ms;
}
.cta.reveal-up {
  transition-duration: 700ms;
  transition-delay: 320ms;
  transform-origin: center;
}

/* watermark small parallax tweak (works with JS scroll) */
.hero-watermark {
  transition: transform 0.35s linear;
  will-change: transform;
}

/* stagger container: automatically stagger children with CSS variables */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(.19,1,.22,1);
}
[data-stagger].in-view > * {
  opacity: 1;
  transform: none;
}
[data-stagger].in-view > *:nth-child(1) { transition-delay: 0.08s; }
[data-stagger].in-view > *:nth-child(2) { transition-delay: 0.18s; }
[data-stagger].in-view > *:nth-child(3) { transition-delay: 0.28s; }
[data-stagger].in-view > *:nth-child(4) { transition-delay: 0.36s; }

/* slight micro-interactions */
.feature_section .features-box {
  transition: transform .32s ease, box-shadow .32s ease, background-color .32s ease;
}
.feature_section .features-box:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(3, 38, 44, .12); }

/* small underline animation used for headings */
.line {
  position: relative;
  overflow: hidden;
}
.line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #ffb703, #0b6b2d);
  transform: translateX(-110%);
  transition: transform 650ms cubic-bezier(.19,1,.22,1);
}
.line.animated::after { transform: translateX(0); }



/* ==== Text animations - global ==== */
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-up, .reveal-left, .stagger-fade, .split-letters span {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Base reveal states */
.reveal, .reveal-up, .reveal-left, .stagger-fade {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 650ms cubic-bezier(.19,1,.22,1), opacity 520ms ease;
  will-change: transform, opacity;
}

/* directional tweaks */
.reveal-left { transform: translateX(-36px); }
.reveal-up { transform: translateY(26px); }

/* visible */
.in-view { opacity: 1; transform: none; }

/* Stagger helper: container children will pop in sequence */
[data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 560ms cubic-bezier(.19,1,.22,1);
}
[data-stagger].in-view > * { opacity: 1; transform: none; }
[data-stagger].in-view > *:nth-child(1){ transition-delay: .06s; }
[data-stagger].in-view > *:nth-child(2){ transition-delay: .14s; }
[data-stagger].in-view > *:nth-child(3){ transition-delay: .22s; }
[data-stagger].in-view > *:nth-child(4){ transition-delay: .30s; }
[data-stagger].in-view > *:nth-child(5){ transition-delay: .38s; }

/* Hero: letter-split styling */
.split-letters { display: inline-block; white-space: nowrap; overflow: visible; }
.split-letters span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(8deg);
  transition: transform 700ms cubic-bezier(.19,1,.22,1), opacity 580ms;
  will-change: transform, opacity;
}

/* When container gets .in-view, animate letters with incremental delay */
.split-letters.in-view span { opacity: 1; transform: none; }
.split-letters.in-view span:nth-child(1){ transition-delay: .02s; }
.split-letters.in-view span:nth-child(2){ transition-delay: .04s; }
.split-letters.in-view span:nth-child(3){ transition-delay: .06s; }
/* (browser will continue for nth-child up to any number) */

/* CTA micro-interaction */
.cta {
  transform-origin: center;
  transition: transform .28s cubic-bezier(.19,1,.22,1), box-shadow .28s;
}
.cta:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 14px 28px rgba(11,107,45,.12); }

/* small decorative underline reveal for headings */
.reveal-line { position: relative; }
.reveal-line::after {
  content: "";
  position: absolute; left:0; bottom:-6px;
  width: 100%; height:4px; border-radius:3px;
  background: linear-gradient(90deg,#ffb703,#0b6b2d);
  transform: translateX(-120%); transition: transform 700ms cubic-bezier(.19,1,.22,1);
}
.reveal-line.in-view::after { transform: translateX(0); }

/* small typography polish */
.hero-title { font-weight: 800; letter-spacing: .4px; }
.hero-sub { opacity: .95; }

/* ensure visibility fallback for elements that already visible */
[hidden].reveal { opacity: 1; transform: none; }

/* ===== Eye-catching animation kit ===== */

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .gsap-animated { transition: none !important; transform: none !important; opacity: 1 !important; }
}

/* 3D perspective containers for pop effects */
.products-row, .about-cards, .feature_section .container, .gallery-container {
  perspective: 1200px;
}

/* product card pop */
.product, .prod-card {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 400ms cubic-bezier(.2,.9,.25,1), box-shadow 400ms;
}
.product.pop {
  transform: translateY(-18px) rotateX(6deg) scale(1.03);
  box-shadow: 0 18px 50px rgba(3,38,44,0.15);
}

/* feature card hover shine */
.features-box {
  position: relative;
  overflow: hidden;
}
.features-box::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.22), rgba(255,255,255,0.06));
  transform: rotate(25deg) translateX(-100%);
  transition: transform 650ms cubic-bezier(.19,1,.22,1);
  pointer-events: none;
}
.features-box:hover::after { transform: rotate(25deg) translateX(120%); }

.hero-watermark {
  position: absolute;
  right: 6%;
  top: clamp(5px, 1vh, 40px); /* 🔥 KEY FIX */
  width: clamp(100px, 18vw, 190px);
  opacity: 0.9;
  z-index: 1;
  pointer-events: none;

  will-change: transform, opacity;
  transition: transform 0.35s linear;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.15));
}

/* hero title letter styling (fallback) */
.split-letters span { display:inline-block; transform-origin:center; }

/* CTA pulse */
.cta {
  display: inline-block;
  will-change: transform, box-shadow;
  transition: transform 300ms cubic-bezier(.2,.9,.25,1);
}
.cta.pulse {
  animation: ctaPulse 1400ms ease-in-out 1;
}
@keyframes ctaPulse {
  0% { transform: scale(0.98); box-shadow: 0 6px 18px rgba(11,107,45,0.08); }
  40% { transform: scale(1.06); box-shadow: 0 20px 40px rgba(11,107,45,0.18); }
  100% { transform: scale(1); box-shadow: 0 12px 28px rgba(11,107,45,0.12); }
}

/* subtle blur for background layers used in hero */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -5;
  backdrop-filter: blur(0px);
  transition: backdrop-filter 650ms;
}
.hero.active-blur::after { backdrop-filter: blur(2px); }

/* brand slide entry */
.brand-showcase .slide { transform-origin: left center; }

/* about-video hover nudge */
.about-image video {
  transition: transform 900ms cubic-bezier(.19,1,.22,1), filter 600ms;
}
.about-image.video-zoom video { transform: scale(1.03); filter: saturate(1.06) contrast(1.02); }

/* gallery item pop */
.gallery-item { transform-origin: center; transition: transform 500ms cubic-bezier(.19,1,.22,1), box-shadow 400ms; }
.gallery-item.pop { transform: translateY(-10px) scale(1.02); box-shadow: 0 16px 40px rgba(3,38,44,0.14); }

/* small utility */
.gsap-animated { will-change: transform, opacity; }

/* ===== Extra eye-catching kit (paste near end of CSS) ===== */

/* hero headline: stronger 3D + skew when animating */
.hero-title span { display:inline-block; transform-origin:center; }
.hero-title.gsap-animated span { will-change: transform, opacity; }

/* typewriter alternative (subtitle) */
.typewriter {
  display:inline-block;
  border-right: 2px solid rgba(255,255,255,0.9);
  white-space: nowrap;
  overflow: hidden;
  animation: caret 800ms steps(1,end) infinite;
  padding-right: .3rem;
}
@keyframes caret { 50% { border-color: transparent; } }

/* CTA shimmer + neon outline */
.cta {
  position: relative;
  overflow: hidden;
}
.cta::before{
  content: "";
  position: absolute; inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.18), rgba(255,255,255,0.06));
  transform: translateX(-120%);
  transition: transform .9s cubic-bezier(.19,1,.22,1);
  pointer-events: none;
}
.cta:hover::before { transform: translateX(120%); }
.cta.neon {
  box-shadow: 0 6px 30px rgba(11,107,45,0.12), 0 0 18px rgba(255,183,3,0.04) inset;
  border: 1px solid rgba(255,255,255,0.06);
}

/* Parallax layers helper: attach .layer-1 .layer-2 to decorative elements */
.parallax-layer { will-change: transform; transition: transform .15s linear; }

/* floating idle (for bananas/leaves) */
.float-slow { animation: floaty 8s ease-in-out infinite; }
@keyframes floaty { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-6deg); } 100% { transform: translateY(0) rotate(0deg); } }

/* 3D tilt card ready */
.tilt-card { transform-style: preserve-3d; backface-visibility: hidden; transition: transform .28s cubic-bezier(.2,.9,.25,1), box-shadow .28s; }
.tilt-card:hover { box-shadow: 0 22px 50px rgba(3,38,44,0.18); }

/* shiny overlay on cards */
.tilt-card::after {
  content:'';
  position:absolute; inset: -1px;
  pointer-events:none;
  background: linear-gradient(120deg, rgba(255,255,255,0.02), rgba(255,255,255,0.14), rgba(255,255,255,0.02));
  transform: translateX(-110%) rotate(20deg);
  transition: transform 950ms cubic-bezier(.19,1,.22,1);
}
.tilt-card:hover::after { transform: translateX(110%) rotate(20deg); }

/* heading underline slide (SVG / pseudo-line) */
.reveal-heading { position:relative; display:inline-block; }
.reveal-heading::after {
  content:"";
  position:absolute; left:0; bottom:-6px;
  width:100%; height:6px; border-radius: 4px;
  background: linear-gradient(90deg,#ffb703,#0b6b2d);
  transform: translateX(-110%); transition: transform 700ms cubic-bezier(.19,1,.22,1);
}
.reveal-heading.in-view::after { transform: translateX(0); }

/* stronger hero blur when scrolled slightly */
.hero.active-blur::after { backdrop-filter: blur(3px) saturate(1.04); }

/* mobile tweaks */
@media (max-width:900px) {
  .hero-content { padding-left: 10%; padding-top:14%; }
  .hero-title { font-size: 2.2rem; }
}
