@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Outfit:wght@100..900&display=swap');

*{
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

header{
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    background-image: ;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    height: 2rem;
}

.logo img{
    height: 70px;

}

.social-icons a{
    margin: 0;
}

.social-icons i{
    font-size: 1.2rem;
    color: white;
}


.social-icons i:hover{
    transform: scale(1.3);
    color:  #4BAF47;
    
}

.menu-links a{
    text-decoration: none;
    color: white;
    margin: 0 15px;
    font-weight: 500;

}

.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right i{
    font-size: 1.3rem;
    color: white;
    cursor: pointer;

}

.nav-right i:hover{
    transform: scale(1.3);
    color:  #4BAF47;
}

.contact-num{
    display: flex;
    align-items: center;
    color: white;
    gap: 10px;

}

/* hero */
.hero{
   width: 100%;
   height: 100vh;
   background: url('images/hero.png')  no-repeat center center/cover;
   position: relative; 

}

.hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
} 

.organic-content{
    display: flex;
    padding: 100px;
    justify-content: center;
    align-items: center;
    gap: 2rem;
     /* position: relative; */
}

.organic-image{
    display: flex;
    justify-content: right; 
}

.organic-image img{
    width: 100%;
    border-radius: 10px;
    height: 400px;
}

 .organic-text{
    width: 40%;

 }

.organic-text h2{
    font-size: 2.5rem;
    margin-bottom:1.4rem;
    color: #333;
    margin-top: -2rem;
}

.organic-text p{
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.4rem;
}

.quality{
    margin-bottom: 2rem;

}

.quality-item{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quality-item i{
    color: white;
    background-color: #4BAF47;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.discover{
    padding: 12px 30px;
    background-color: #f7c35f;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.discover:hover{
    background-color: #be9547;
}

.product-icon{
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    gap: 10px;
    width: 250px;
    height: 350px;
    border-radius: 8px;
    padding: 10px 30px;
    box-shadow: 0px 1px 21px 2px rgba(0,0,0,0.1);

}

.product-item{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* choose-section */
.choose-section{
    display: flex;
    width: 100%;
}

.choose-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: 8rem 5rem;
    background-color: #4BAF47;
}

.feature{
    display: flex;
    width: 600px;
    justify-content: right;
    gap: 15px;
    margin-bottom: 30px;
    color: white;
}

.feature i{
    color: white;
   
    font-size: 24px;
}

.feature-text h3{
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text p{
    line-height: 1.6;
    opacity: 0.8;
}

.stats-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
}

.subtitle{
    color: #4BAF47;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.stats-content h2{
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.2;
}

.stat-video{
    display: flex;
    gap: 4rem;

}

.growth{
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;

}

.growth-item h1{

    font-size: 3rem;
    color: #f7c35f;
    margin-bottom: 5px;
}

.growth-item p{
    color: #666;

}

.video{

    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.video img{
    display: block;
    width: 100%;
    height: auto;
}

.play-btn{
    position: absolute;
    top: 50%;
     left: 50%; 
    width: 60px;
    height: 60px;
    background-color: #f7c35f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translate(-50%,-50%);
    transition: transform 0.3s ease;
}

.play-btn i{
    font-size: 24px;
    margin-left: 4px;
    color: white;

}

.play-btn:hover{
    transform: translate(-50%,-50%) scale(1.1);
}

/* product-section */
.product-section{
   padding: 100px 5%;
   text-align: center;
}

.product-section h1{
    font-size: 4rem;
    color: #4BAF47;
    margin-bottom: 50px;
    line-height: 1.2;

}

.product-cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;

}
.cards{
    display: flex;
    height: 400px;
    width: 350px;
    flex-direction: column;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cards img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;

}

.cards:hover img{
    transform: scale(1.1);
}

.card-content{
    position: absolute;
    
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
}

.icon-box{
    width: 50px;
    height: 50px;
    background: #4BAF47;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -45px auto 15px;
}

.icon-box i{
    color: white;
    font-size: 24px;

}

.card-content h1{
    margin-bottom: 5px;
    color: #333;
}

.card-content span{
    font-size: 14px;
    color: #666;
}

/* timeline */
.timeline-section{
    padding: 40px 5%;
}

.timeline-header{
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.timeline-header h2{
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.timeline-header p{
    color: #666;
    line-height: 1.6;
}

.timeline{
    display: flex;
    width: 80%;
    justify-content: space-around;
    align-items: center;
    position: relative;
    margin: 0 auto;
    padding: 0 50px;

}

.timeline::before{
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    height: 2px;
    background: #1f4e3d;
}

.timeline-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;

}

.timeline-item::before{
    content: '';
    width: 35px;
    height: 35px;
    background-color: #1f4e3d;
    border-radius: 50%;
    margin-bottom: 10px;
}

.year{
    font-size: 4rem;
    font-weight: 600;
    color:#1f4e3d;
    margin-bottom: 10px;
}

.event{
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;

}

.farmer{
    display: flex;
    gap: 30px;
    justify-content: center;
}

.farmer-card{
    width: 300px;
    position: relative;

}

.farmer-card img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;

}

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

.farmer-info{
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white; 
}

.farmer-info .role{
    font-size: 14px;
    opacity: 0.9;
}

.farmer-info h3{
    font-size: 24px;
    margin-top: 5px;
}

/* faq-section */

.faq-section{
    display: flex;
     background: #E9F1EE;
     padding: 5rem;
     width: 100%;
     justify-content: center;
     align-items: center;
     gap: 50px;
     margin: 0 auto;
    
}
.faq-bg{
    display: flex;
     background: #E9F1EE;
     padding: 5rem;
     margin: 0 auto;
     justify-content: center;
     align-items: center;
     gap: 150px;
    
}

/* .faq-image{
    position: relative;


} */

.faq-image img{
   
    border-radius: 12px;
    
}

.faq-content{
    display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.faq-content h2{
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.faq-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item{
    border-bottom: 1px solid #e0e0e0;
}

.faq-question{
    display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 0;
   cursor: pointer;
}

.faq-question span{
    font-size: 18px;
    font-weight: 500;
}

.faq-question i{
    color: #4BAF47;
    transition: transform 0.3s ease;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
}

.faq-answer p{
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;

}

.faq-item.active .faq-answer{
    max-height: 200px;
}

.faq-item.active .faq-question i{
    transform: rotate(45deg);

}

/* project */

.gallery-section{
    padding: 6rem;
    width: 80%;
    margin: 0 auto;
}

.gallery-header{
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header span{
    color: #4BAF47;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.gallery-header h2{
    font-size: 42px;
    color: #333;
    font-weight: 700;
}

.gallery-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    grid-auto-rows: 300px;
}

.gallery-item{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
   
}

.gallery-item.large{
    grid-column: span 2;
    grid-row: span 1;
}

.gallery-item.small{
    grid-column: span 1;
    grid-row: span 1;
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img{
    transform: scale(1.1);
}

.overlay{
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: white;
    
    
}

.overlay span{
    font-size: 14px;
    text-transform: uppercase;
    color: #f7c35f;
    margin-bottom: 10px;
    display: block;
}

.overlay h3{
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* market-section */
.market-section{
    background-color: #E9F1EE;
    width: 100%;
    display: flex;
    padding: 6rem;
    justify-content: center;
    gap: 180px;
}

.market-content{
    background-color: #49A760;
    color: white;
   width: 600px;
   height: 500px;
   padding: 3rem;
   display: flex;
   flex-direction: column;
   border-radius: 15px;
    text-align: center;

}

.market-content h2{
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.2;

}

.market-content p{
    margin-bottom: 30px;
    line-height: 1.6;

}

.discover-btn{
    padding: 12px 30px;
    background: none;
    color: white;
    border: 2px solid white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.discover-btn:hover{
    background-color: white;
    color: #49A760;

}

.market-visual{
    position: relative;
   

}

.market-visual img{
    width: 100%;
    margin: auto;

}

.badges{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.badges img{
    height: 80px;
    width: 80px;
}

/* blog-sectio */

.blog-section{

    display: flex;
    flex-direction: column;
    padding: 4rem;
    width: 80%;
    margin: 0 auto;
    background-color: #fff;
}

.blog-header{
    text-align: center;
    margin-bottom: 50px;
}

.blog-header span{
    color: #49A760;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    /* display: block; */
}

.blog-header h2{
    font-size: 42px;
    color: #333;
    font-weight: 600;
}

.blog-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.blog-feature{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.blog-feature img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-feature:hover img{
    transform: scale(1.1);
}

.blog-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    color: white;
    background: linear-gradient(to top,rgba(0,0,0,0.9)0%,rgba(0,0,0,0)100%);
}

.blog-content h3{
    font-size: 22px;
    color: white;
}

.blog-content p{
    color:rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;

}

.blog-content a{
    text-decoration: none;
    color: #49A760;
    margin-top: 2rem;
}

.blog-cards{
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.bcard{
    display: flex;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bcard img{
    width: 45%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bcard:hover img{
    transform: scale(1.2);
}

.card-content{
    padding: 30px ;
    /* flex: 1; */
    position: relative;
}

.date-badge{
    position: absolute;
    top: 3px;
    right: -5px;
    background-color: #be9547;
    padding: 8px;
    border-radius: 10px;
    text-align: center;
  

}

.date-badge .day{
    font-size: 24px;
    display: block;
    font-weight: 700;
    line-height: 1;
    color: #1e1e1e;

}

.date-badge .month{
    font-size: 14px;
    color: white;
}

.post-data{
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.card-content h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;

}

.card-content a{
    text-decoration: none;
    color: #49A760;
}

/* footer-secition */

.main-footer{
    background-color: #24231D;
    color: white;
    padding: 80px 5% 30px;
}

.footer-content
{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin: 0 auto;
    width: 80%;
    margin-bottom: 50px;

}

.footer-logo img{
    max-width: 300px;
    height: 50px;
}

.footer-logo p{
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;

}

.social-icons{
    display: flex;
    gap: 15px;
}

.footer-links h3,
.footer-news h3,
.footer-contact h3{

    color: white;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;

}

.links-feature{
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
}

.links-feature i{
    color: #49A760;
}

.links-feature a{
    text-decoration: none;
    color: white;
    
}

.links-feature a:hover{
    color: wheat;

}

.news-item{
    margin-bottom: 16px;
}

.news-item h4{
    font-size: 18px;
    line-height: 1.6;
}
.news-item span{
    color:#EEC044;
   
    
}

.contact-info{
    margin-bottom: 15px;
    display: flex;
    gap: 20px;

}

.contact-info i{
    color: #EEC044;
    font-size: 16px;
}

.contact-info span{
    color: #A5A49A;
    font-size: 16px;

}

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

.newsletter input{
  flex:1;
    text-align: center; 
    border: none;
    outline: none;
    border-radius: 5px;
    padding: 12px;
    background-color: #2a2a2a;

}

.newsletter button{
    background-color: #4BAF47;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s ease;

}

.newsletter button:hover{
    background: #1f4e3d
}

.footer-bottom{
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
}

.foot-link a{
    text-decoration: none;
    color: #999;
    margin-left: 20px;
    transition: color 0.3s ease;

}

.foot-link a:hover{
    color: white;
}

/* responsive code */
@media (max-width: 768px){
    header{
        padding: 1rem;
    }

    .menu-links,
    .social-icons,
    .contact-num{
        display: none;
    }

    .organic-content{
        flex-direction: column;
        padding: 50px;

    }

    .organic-text{
        padding: 20px 10px;
        width: 90%;
    }

    .choose-section{
        flex-direction: column;
        
    }

    .choose-list{
        width: 100%;
        padding: 50px 20px;
        align-items: center;
    }

    .feature{
        width: 100%;
        flex-direction: flex-start;
    }

    .stats-content{
        padding: 50px 20px;
    }

    .stat-video{
        flex-direction: column;
    }

    .product-section{
        padding: 50px 20px;
    }

    .product-section h1{
        font-size: 2.5rem;
    }

    .product-cards{
        flex-direction: column;
    }

    .cards{
        width: 100%;
        height: 500px;
    }

    .timeline-section{
padding: 50px 20px;
    }

    .timeline-item::before{
        
        width: 15px;
        height: 15px;
       
    }

    .year{
        font-size: 1rem;
    }

.timeline{
    width: 100%;
    gap: 10px;
}

.event{
    font-size: 14px;
    text-align: center;
}

.faq-section{
    padding: 50px 20px;
    flex-direction: column;
}

.faq-image img{
    width: 300px;
    height: auto;
    margin-left: -50px;
}

.faq-bg{
    flex-direction: column;
    
}
.faq-content{
    width: 100%;
}

.faq-content h2{
    font-size: 2rem;
    margin-bottom: 0px;
}

.gallery-section{
    padding: 50px 20px;
}

.gallery-grid{
    grid-template-columns: 1fr;
}

.gallery-item.large{
    grid-column: span 1;
}

.market-section{
    flex-direction: column;
    padding: 50px 20px;
}

.market-content{
    width: 100%;
    padding: 30px 10px;
}

.blog-section{
    padding: 50px 20px;
}

.blog-grid{
    grid-template-columns: 1fr;
}

.blog-feature{
    height: 400px;

}

.bcard{
    flex-direction: column;
}

.bcard img{
    width: 100%;

}

.main-footer{
    padding: 50px 20px 30px;
}

.footer-content{
    grid-template-columns: 1fr;
}

.footer-bottom{
    flex-direction: column;
    text-align: center;
    gap: 20px;
}




    /* end line */
}

