/* start variables */
:root {
    --main-color: #204e51;
    --secondary-color: #2c4755;
    --section-padding: 60px;
    --section-background: #f6f6f6;
    --main-duration: 0.5s;
    }
    
    [data-aos] {
    transition: all 0.8s ease-in-out;
    }
    
    .special-heading {
    color: #535353e6;
    font-size: 100px;
    text-align: center;
    font-weight: 800;
    letter-spacing: -3px;
    margin: 0;
    }
    
    @media (max-width: 992px) {
    .special-heading {
    font-size: 100px;
    letter-spacing: -2px;
    }
    }
    
    @media (max-width: 768px) {
    .special-heading {
    font-size: 100px;
    letter-spacing: -1px;
    }
    }
    
    @media (max-width: 480px) {
    .special-heading {
    font-size: 40px;
    letter-spacing: 0;
    }
    }
    
    /* end variables */
    /* start general styling */
    * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
    
    html,
    body {
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: smooth;
    font-family: "Work Sans", sans-serif;
    }
    @media (max-width: 768px) {
    html,body {
     overflow-x: hidden;
    }
    }
    
    .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    }
    
    @media (min-width: 768px) {
    .container {
    width: 750px;
    }
    }
    
    @media (min-width: 992px) {
    .container {
    width: 969px;
    }
    }
    
    @media (min-width: 1200px) {
    .container {
    width: 1170px;
    }
    }
    
    /*end General Styling */
    /* start header */
    header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
    }
    
    .nav-wrapper {
    width: 100%;
    padding: 20px 0;
    transition: 0.3s ease-in-out;
    }
    
    .nav-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    }
    
    .logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
    }
    
    nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    }
    
    nav ul li {
    margin: 0 15px;
    }
    
    nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
    }
    
    nav ul li a:hover {
    color: #ff7f50;
    }
    
    .scrolled {
    background: rgb(53 53 53 / 90%);
    padding: 5px 0;
    }
    
    .hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    }
    
    @media (max-width: 992px) {
    nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgb(53 53 53 / 90%);
    text-align: center;
    padding: 15px 0;
    }
    
    nav ul.show {
    display: flex;
    }
    
    nav ul li {
    margin: 10px 0;
    }
    
    .hamburger {
    display: block;
    }
    .logo img {
    height: 40px;
    }
    }
    
    /* end header */
     /* start hero */
     .hero {
        position: relative;
        height: 100vh;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        color: white;
        padding: 0 50px;
        overflow: hidden;
    }
    
    .hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the image covers the entire section */
        z-index: -1;
    }
        
        .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 16%);
        z-index: 0;
        }
        
        .hero .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        max-width: 925px;
        }
        
        .hero h1 {
        font-size: 60px;
        font-weight: 300;
        margin-top: 15px;
        margin-bottom: 29px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        }
        
        .hero p {
        font-size: 15px;
        max-width: 500px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        }
        
        .hero .buttons {
        margin-top: 20px;
        position: relative;
        z-index: 2;
        }
        
        .hero .buttons .primary {
        background: #204e51;
        color: white;
        border: none;
        padding: 10px 10px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease-in-out;
        border-radius: 15px;
        }
        
        .hero a {
        display: inline-block;
        padding: 15px 25px;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 15px;
        text-transform: uppercase;
        transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
        text-decoration: none;
        color: white;
        }
        .hero .buttons .primary:hover {
        background: #36aab2;
        }
        @media (max-width: 768px) {
        .hero {
        height: 100vh;
        padding: 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
        }
        
        .hero .content {
        align-items: center;
        text-align: center;
        max-width: 90%;
        }
        
        .hero h1 {
        font-size: 36px;
        margin-top: 0;
        }
        
        .hero p {
        font-size: 14px;
        max-width: 90%;
        }
        
        .hero .buttons {
        text-align: center;
        }
        }
        
        /* end hero */
          /* Start About */
    .about {
        padding-top: var(--section-padding);
        padding-bottom: calc(var(--section-padding) + 60px);
        }
        
        .about .about-content {
        margin-top: 100px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        }
        
        @media (max-width: 991px) {
        .about .about-content {
        flex-direction: column;
        text-align: center;
        }
        }
        
        .about .about-content .image {
        position: relative;
        width: 250px;
        height: 375px;
        }
        
        @media (max-width: 991px) {
        .about .about-content .image {
        margin: 0 auto 60px;
        }
        }
        
        .about .about-content .image::before {
        content: "";
        position: absolute;
        background-color: #ebeced;
        width: 100px;
        height: calc(100% + 80px);
        top: -40px;
        left: -20px;
        z-index: -1;
        }
        
        .about .about-content .image::after {
        top: -40px;
        content: "";
        position: absolute;
        width: 120px;
        height: 300px;
        border-left: 80px solid var(--main-color);
        border-bottom: 80px solid var(--main-color);
        z-index: -1;
        right: -150px;
        }
        
        @media (max-width: 991px) {
        
        .about .about-content .image::before,
        .about .about-content .image::after {
        display: none;
        }
        }
        
        .about .about-content .image img {
        max-width: 100%;
        }
        
        .about .about-content .text {
        flex-basis: calc(100% - 500px);
        }
        
        .about .about-content .text p:first-of-type {
        font-weight: bold;
        line-height: 2;
        margin-bottom: 50px;
        }
        
        .about .about-content .text hr {
        width: 50%;
        display: inline-block;
        border-color: var(--main-color);
        }
        
        .about .about-content .text p:last-of-type {
        line-height: 2;
        color: #777;
        }
        
        /* End About */
        /* start vision */
        .vision {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
        background-color: var(--section-background);
        }
        
        .vision .mission-vision {
        margin-top: 100px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        }
        
        h1 {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 30px;
        }
        
        .content {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        }
        
        .box {
        background-color: #f8f8f8;
        padding: 30px;
        border-radius: 10px;
        width: 30%;
        min-width: 300px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .box:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }
        
        h2 {
        font-size: 22px;
         /* margin-bottom: 10px; */
        }
        
        i {
        font-size: 40px;
        margin: 15px 0;
        }
        
        .box p {
        font-size: 16px;
        color: #333;
        line-height: 1.5;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
        .content {
        flex-direction: column;
        align-items: center;
        }
        
        .box {
        width: 80%;
        }
        }
        /* end vision */
           /* start farming */
    .farming{
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
        }
        .farming-content {
        display: flex;
        align-items: center;
        margin-top: 100px;
        margin-bottom: 100px;
        }
        
        .person img {
        max-width: 100%;
        height: auto;
        max-height: 450px;
        }
        
        .content {
        flex: 1;
        padding-left: 50px;
        }
        
        .content h2 {
        font-size: 32px;
        color: #333;
        margin-bottom: 10px;
        text-align: center;
        }
        
        .farming-content .content p {
        font-size: 18px;
        color: #666;
        text-align: center;
        margin-bottom: 40px;
        }
        
        .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        }
        
        .feature {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease-in-out;
        }
        
        .feature i {
        font-size: 30px;
        color: var(--main-color);
        margin-bottom: 10px;
        }
        
        .feature h3 {
        font-size: 20px;
        color: #333;
        }
        
        .feature p {
        font-size: 16px;
        color: #777;
        }
        
        .feature:hover {
        transform: translateY(-5px);
        background: #f1f1f1;
        }
        
        @media (max-width: 900px) {
        .container {
        text-align: center;
        }
        
        .person {
        display: none;
        }
        
        .content {
        padding-left: 0;
        }
        
        .features-grid {
        grid-template-columns: 1fr;
        }
        }
        
        /* end farming */
        /* Start products */
        .products {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
        background-color: var(--section-background);
        }
        
        .products .products-content {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        grid-gap: 30px;
        margin-top: 80px;
        }
        
        .products .products-content .card {
        background-color: white;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        }
        
        .products .products-content .card img {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        }
        
        .products .products-content .card .info {
        flex-grow: 1;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;}
        
        .products .products-content .card .info h3 {
        margin: 0;
        }
        
        .products .products-content .card .info p {
        color: #777;
        line-height: 1.6;
        margin-bottom: 0;
        }
        
        /* End products */
           /* start leadership */
    .leadership {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
        }
        
        .leadership-content {
        display: flex;
        gap: 80px;
        text-align: center;
        justify-content: center;
        margin-top: 100px;
        margin-bottom: 100px;
        }
        
        .profile-card {
        background: white;
        padding: 32px;
        border-radius: 10px;
        box-shadow: 0 13px 40px rgba(0, 0, 0, 0.1);
        width: 330px;
        
        }
        
        .profile-card img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
        }
        
        .profile-card h3 {
        margin: 10px 0 5px;
        font-size: 18px;
        }
        
        .profile-card p {
        font-size: 14px;
        color: #666;
        }
        @media (max-width:1100px) {
        .leadership-content{
        display: flex;
        flex-wrap: wrap;
        }
         
        }
        @media (max-width: 768px) {
        .leadership-content {
        display: flex;
        flex-direction: column; /* Stack cards vertically on small screens */
        gap: 30px;
        align-items: center;
        }
        }
        
        /* end leadership */
        /* start advatage */
        .advantage {
        padding: 60px 20px;
        background-color: var(--section-background, #f8f9fa);
        }
        
        .advantage-content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        align-items: stretch;
        margin-top: 50px;
        }
        
        .item {
        flex: 1 1 calc(50% - 20px); /* Two items per row, responsive */
        max-width: 400px;
        background:var(--main-color);
        padding: 40px;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        
        .item:hover {
        transform: translateY(-5px);
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .title {
        font-size: 22px;
        font-weight: bold;
        color: white;
        margin-bottom: 10px;
        }
        
        .description {
        color: #fff;
        font-size: 16px;
        }
        
        @media (max-width: 768px) {
        .item {
        flex: 1 1 100%;
        }
        }
        /* end advatage */
         /* :start sffilter */
    .affilter {
        padding-top: var(--section-padding);
        padding-bottom: var(--section-padding);
        }
        
        .affilter-content {
        margin-top: 100px;
        margin-bottom: 100px;
        }
        .affiliates h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #204e51;
        }
        
        .affilter-content .text-content {
        text-align: left;
        max-width: 900px;
        margin: auto;
        font-size: 18px;
        line-height: 1.6;
        }
        
        .affilter-content .text-content h3 a {
        color: #204e51;
        text-decoration: none;
        font-size: 24px;
        font-weight: bold;
        }
        
        .affilter-content .text-content a:hover {
        text-decoration: underline;
        }
        
        .affilter-content .image-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-top: 30px;
        }
        
        .affilter-content .image-grid img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.3s ease-in-out;
        }
        
        .affilter-content .image-grid img:hover {
        transform: scale(1.05);
        }
        
        .affiliates-logo {
        margin-top: 30px;
        }
        
        .affiliates-logo img {
        width: 200px;
        opacity: 0.8;
        }
        
        @media (max-width: 768px) {
        .text-content {
        text-align: center;
        }
        
        .image-grid {
        grid-template-columns: 1fr 1fr;
        }
        }
        /* end affilter */
        
        /* start organic */
        
        .certified-organic {
        background: var(--section-background);
        padding: 60px 20px;
        text-align: center;
        }
        
        .organic-badge img {
        width: 150px;
        margin-bottom: 20px;
        }
        
        .organic-content h2 {
        font-size: 28px;
        color: #204e51;
        margin-bottom: 15px;
        }
        
        .organic-content p {
        font-size: 18px;
        color: #333;
        margin-bottom: 20px;
        }
        
        .organic-benefits {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
        }
        
        .organic-benefits li {
        font-size: 18px;
        color: #204e51;
        margin: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        
        .organic-benefits i {
        color: #204e51;
        margin-right: 10px;
        font-size: 20px;
        }
        
        .btn {
        display: inline-block;
        background: #204e51;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s;
        }
        
        .btn:hover {
        background: #183d40;
        }
        /* end organic */
        
        
        footer {
        background: var(--main-color);
        color: white;
        text-align: center;
        padding: 50px 20px;
        }
        
        .contact-container {
        max-width: 900px;
        margin: auto;
        }
        
        
        .contact-sections {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 50px;
        padding-top: 20px;
        }
        
        .contact-info {
        text-align: left;
        font-size: 18px;
        }
        
        .contact-info h3 {
        font-size: 22px;
        margin-bottom: 10px;
        color: #ff7f50;
        }
        
        .contact-info p {
        margin: 5px 0;
        display: flex;
        align-items: center;
        gap: 10px;
        }
        
        .contact-info i {
        color: #ff7f50;
        font-size: 20px;
        }
        
        @media (max-width: 768px) {
        .contact-sections {
        flex-direction: column;
        align-items: center;
        text-align: center;
        }
        }