@charset "utf-8";
/* CSS Document */
.catalog-btn{
display:inline-block;
padding:12px 25px;
background:#2c7a3f;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:600;
}

.catalog-btn:hover{
background:#1f5f2e;
}
	
.more-text{
display:none;
margin-top:10px;
}

.read-more-btn{
margin-top:10px;
padding:8px 16px;
border:none;
background:#2c7a3f;
color:white;
border-radius:5px;
cursor:pointer;
font-size:14px;
	text-decoration: none;
}

.read-more-btn:hover{
background:#1e5f2e;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}
	
.read-more-btn:visited{
    color:white;
}

.read-more-btn:link{
    color:white;
}
	
body{
background:#f5f7f5;
color:#333;
}

p {
  margin-bottom: 20px;
}

/* NAVBAR */

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:white;
position:fixed;
top:0;
width:100%;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.logo{
font-size:22px;
font-weight:700;
color:#2c7a3f;
}

nav{
display:flex;
gap:25px;
}

nav a{
position:relative;
text-decoration:none;
color:#333;
padding:5px 0;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0%;
height:2px;
background:#2c7a3f;
transition:width 0.3s ease;
}

/* Hover Effect */

nav a:hover::after{
width:100%;
	color:#2c7a3f;
}

/* Active Menu */

nav a.active::after{
width:100%;
}

nav a.active{
color:#2c7a3f;
font-weight:600;
}

.menu{
display:none;
font-size:26px;
cursor:pointer;
}

@media(max-width:768px){

nav{
position:absolute;
top:90px;
left:0;
width:100%;
background:white;
flex-direction:column;
align-items:center;
max-height:0;
overflow:hidden;
transition:.4s;
}

nav.active{
max-height:300px;
padding:20px;
}

.menu{
display:block;
}

}

/* HERO */

.hero{
margin-top:70px;
height:90vh;
overflow:hidden;
position:relative;
}

#granules{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
pointer-events:none;
}

.slides{
display:flex;
height:100%;
transition:transform .7s;
}

.slide{
min-width:100%;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.hero-text{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:rgba(0,0,0,.45);
padding:35px;
color:white;
border-radius:10px;
text-align:center;
z-index:2;
}

.hero-controls{
position:absolute;
bottom:30px;
left:50%;
transform:translateX(-50%);
display:flex;
gap:12px;
z-index:2;
}

.hero-controls button{
width:14px;
height:14px;
border-radius:50%;
border:none;
background:white;
opacity:.6;
cursor:pointer;
}

.hero-controls button.active{
background:#39a74a;
opacity:1;
}

/* ABOUT */
/* ABOUT SECTION */

/* ABOUT SECTION */
/* ABOUT SECTION */

.about{
padding:80px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:flex-start;
background:white;
}

/* TEXT */

.about-text{
line-height:1.8;
}

.about-text h2{
margin-bottom:20px;
color:#2c7a3f;
}

/* HOMEPAGE ABOUT */

.about-home{
padding:80px 8%;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
background:white;
}

.about-home-text{
line-height:1.8;
}

.about-home-image img{
width:100%;
border-radius:10px;
}

/* MOBILE */

@media(max-width:768px){

.about-home{
grid-template-columns:1fr;
text-align:center;
}

.about-home-image{
order:-1;
}

}

/* LEADERSHIP */

.leadership h3{
margin-bottom:20px;
color:#2c7a3f;
}

/* PROFILE CARD */

.leader-card{
display:flex;
align-items:center;
gap:20px;
background:#f7faf7;
padding:18px;
border-radius:12px;
margin-bottom:20px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
transition:0.3s;
}

.leader-card:hover{
transform:translateY(-6px);
}

/* IMAGE */

.leader-card img{
width:90px;
height:90px;
border-radius:50%;
object-fit:cover;
border:3px solid #2c7a3f;
}

/* TEXT */

.leader-info h4{
margin:0;
}

.leader-info p{
margin:4px 0 0;
font-size:14px;
color:#666;
}

/* MOBILE */

@media(max-width:768px){

.about{
grid-template-columns:1fr;
}

}
/* PRODUCTS */

.products{
padding:80px 8%;
text-align:center;
background:#f7faf7;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.product{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 18px rgba(0,0,0,.08);
transition:.3s;
}

.product:hover{
transform:translateY(-10px) scale(1.03);
}

.product img{
width:100%;
height:160px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}

/* CROPS SECTION */

.crops{
padding:80px 8%;
background:#f7faf7;
text-align:center;
}

.crops h2{
margin-bottom:40px;
color:#2c7a3f;
}

.crop-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:25px;
}

.crop-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
font-size:28px;
transition:0.3s;
}

.crop-card h3{
font-size:16px;
margin-top:10px;
}

.crop-card:hover{
transform:translateY(-5px);
}
/* STATS */

.stats{
background:#2c7a3f;
color:white;
padding:70px 8%;
display:flex;
flex-wrap:wrap;
justify-content:space-around;
text-align:center;
}

.stat h2{
font-size:46px;
}

/* TESTIMONIALS */

.testimonials{
padding:80px 8%;
background:#eef4ee;
text-align:center;
}

.testimonial-slider{
position:relative;
max-width:700px;
margin:auto;
}

.testimonial{
display:none;
font-size:18px;
font-style:italic;
}

.testimonial.active{
display:block;
}

.testimonial h4{
margin-top:15px;
color:#2c7a3f;
}

.testimonial-dots{
margin-top:20px;
}

.dot{
height:12px;
width:12px;
margin:0 5px;
background:#ccc;
display:inline-block;
border-radius:50%;
cursor:pointer;
}

.dot.active{
background:#2c7a3f;
}

/* FOOTER */

footer{
background:#1e4f2c;
color:white;
text-align:center;
padding:20px;
}

.page-hero{
margin-top:70px;   /* same height as navbar */
height:280px;
background:url("img/img_bg_2.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
position:relative;
color:white;
}

.page-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

.page-hero-content{
position:relative;
z-index:2;
}

.page-hero h1{
font-size:40px;
margin-top:100px;
}

.page-hero p{
font-size:16px;
opacity:0.9;
}

.benefit-list{
list-style:none;
padding:0;
margin-top:20px;
}

.benefit-list li{
display:flex;
align-items:center;
gap:10px;
margin-bottom:12px;
}

.benefit-list li::before{
content:"🌱";
}

/* CONTACT */

.contact-section{
padding:80px 8%;
background:white;
}

.contact-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
}

.contact-info h3{
margin-bottom:15px;
color:#2c7a3f;
}

.contact-list{
list-style:none;
padding:0;
margin-top:15px;
}

.contact-list li{
margin-bottom:10px;
}

/* FORM */

.contact-form form{
display:flex;
flex-direction:column;
}

.contact-form input,
.contact-form textarea{
padding:12px;
margin-bottom:15px;
border:1px solid #ddd;
border-radius:5px;
}

.contact-form textarea{
height:120px;
resize:none;
}

.contact-form button{
padding:12px;
border:none;
background:#2c7a3f;
color:white;
border-radius:5px;
cursor:pointer;
}

.contact-form button:hover{
background:#1f5f2e;
}

/* MAP */

.map-section{
width:100%;
height:350px;
}

.map-section iframe{
width:100%;
height:100%;
border:0;
}

/* MOBILE */

@media(max-width:768px){

.contact-container{
grid-template-columns:1fr;
}

}

#topBtn{
display:none;
position:fixed;
bottom:25px;
right:25px;
z-index:9999999;
border:none;
outline:none;
background:#2c7a3f;
color:white;
cursor:pointer;
padding:12px 16px;
font-size:18px;
box-shadow:0 4px 10px rgba(0,0,0,0.2);
transition:0.3s;
}

#topBtn:hover{
background:#1f5f2e;
transform:translateY(-3px);
}

/* WHY CHOOSE US */

.why-us{
padding:80px 8%;
background:#ffffff;
text-align:center;
}

.why-us h2{
margin-bottom:40px;
color:#2c7a3f;
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
}

.why-card{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.08);
transition:0.3s;
}

.why-card:hover{
transform:translateY(-6px);
}

.why-icon{
font-size:32px;
margin-bottom:10px;
}

/* CTA SECTION */

.cta{
background:#2c7a3f;
color:white;
padding:70px 8%;
text-align:center;
}

.cta h2{
margin-bottom:15px;
font-size:32px;
}

.cta p{
margin-bottom:25px;
}

.cta-btn{
display:inline-block;
background:white;
color:#2c7a3f;
padding:12px 25px;
text-decoration:none;
border-radius:5px;
font-weight:600;
}

.cta-btn:hover{
background:#f0f0f0;
}