@charset "utf-8";
/* CSS Document */
.catalog-btn{
display:inline-block;
padding:12px 25px;
background:#2c7a3f;
color:white;
text-decoration:none;
border-radius:6px;
font-size:14px;
}

.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;
align-items:center;
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){

.submenu{
position:static !important;
display:none;
width:90%;
margin:10px auto;
border-radius:10px;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.dropdown.active .submenu{
display:block;
}

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:600px;
padding:20px;
}

.menu{
display:block;
}

}

/* HERO */

.hero{
margin-top:70px;
height:90vh;
overflow:hidden;
position:relative;
object-fit:cover;
}

#granules{
position:absolute;
display: none;
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;
}

@media(max-width:768px){

.hero{
height:400px;
object-fit:cover;
}

	.slide img{
width:100%;
height:100%;
object-fit:cover;
display: block;
object-position:center 45%;
}
}

@media (max-width:480px){

.hero{
min-height:40vh;
object-position:center top;
}

}
/* 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:130px;
height:130px;
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:50px 8%;
text-align:center;
background:#f7faf7;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.product{
background:white;
border-radius:10px;
padding:20px;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
overflow:hidden;
position:relative;
}

.product:hover{
transform:translateY(-8px) scale(0.9);
	
}

.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:top;
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:20px 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;
}

/* SECTION REVEAL EFFECT */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.reveal-left{
opacity:0;
transform:translateX(-60px);
transition:0.8s;
}

.reveal-left.active{
opacity:1;
transform:translateX(0);
}

.agro-pattern{
background-color:#f7faf7;
background-image:url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%232c7a3f' fill-opacity='0.05' d='M50 10 C65 35, 65 65, 50 90 C35 65, 35 35, 50 10Z'/%3E%3C/svg%3E");
background-repeat:repeat;
}

.btn-center{
text-align:center;
margin-top:25px;
	margin-bottom: 25px;
}

/* DROPDOWN */

.dropdown{
position:relative;
}

.submenu{
display:none;
position:absolute;
top:100%;
left:0;
background:white;
min-width:220px;
box-shadow:0 6px 15px rgba(0,0,0,0.15);
border-radius:6px;
overflow:hidden;
}

.submenu a{
display:block;
padding:12px 15px;
text-decoration:none;
color:#333;
font-size:14px;
}

.submenu a:hover{
background:#f1f1f1;
color:#2c7a3f;
}

/* show dropdown */

.dropdown:hover .submenu{
display:block;
}

.product-variants{
margin-top:20px;
}

.product-variants h3{
font-size:18px;
margin-bottom:10px;
color:#2c7a3f;
}

.product-variants ul{
list-style:none;
padding:0;
}

.product-variants li{
background:#f5f5f5;
display:inline-block;
padding:8px 15px;
margin:5px;
border-radius:6px;
font-size:14px;
}

/* GALLERY PAGE */

.gallery-page{
padding:80px 8%;
text-align:center;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

/* tablet */

@media(max-width:992px){
.gallery-grid{
grid-template-columns:repeat(3,1fr);
}
}

/* small tablet */

@media (max-width:768px){
.gallery-overlay{
display:none;
}
}

/* mobile */

@media(max-width:480px){
.gallery-grid{
grid-template-columns:1fr;
}
}

.gallery-page h1{
margin-bottom:40px;
color:#2c7a3f;
}

.gallery-item{
position:relative;
width:100%;
height:220px;
overflow:hidden;
border-radius:10px;
box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:0.3s;
}

/* overlay */

.gallery-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.3s;

pointer-events:none;   /* important */
}

/* icon */

.gallery-overlay span{
color:white;
font-size:30px;
}

/* hover effect */

.gallery-item:hover .gallery-overlay{
opacity:1;
}

.gallery-item img:hover{
transform:scale(1.05);
}
/* POPUP IMAGE */

.popup{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.8);
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.popup img{
max-width:90%;
max-height:90%;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.5);
cursor:pointer;
transition:opacity 0.35s ease;
animation:zoomIn .3s ease;
opacity:1;	
}

@keyframes zoomIn{
from{transform:scale(0.9); opacity:0;}
to{transform:scale(1); opacity:1;}
}

/* fade effect */

.popup img.fade{
opacity:0;
}

.popup::after{
content:"✕";
position:absolute;
top:20px;
right:30px;
font-size:30px;
color:white;
cursor:pointer;
}

.carousel{
position:relative;
width:100%;
overflow:hidden;
}

.carousel-track{
display:flex;
gap:20px;
overflow-x:auto;
scroll-behavior:smooth;
padding:10px 0;
}

/* hide scrollbar */

.carousel-track::-webkit-scrollbar{
display:none;
}

/* cards */

.carousel-track > *{
flex:0 0 280px;
}

/* arrows */

.carousel-arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:40px;
height:40px;
border-radius:50%;
border:none;
background:#2c7a3f;
color:white;
font-size:24px;
cursor:pointer;
opacity:0;
transition:.3s;
z-index:2;
}

.carousel-arrow.left{
left:0;
}

.carousel-arrow.right{
right:0;
}

/* show arrows when hovering */

.carousel:hover .carousel-arrow{
opacity:1;
}

/* hide arrows on mobile */

@media(max-width:768px){
.carousel-arrow{
display:none;
}
}

/* arrow buttons */

.swiper-button-prev,
.swiper-button-next{
opacity:1;
color:#2c7a3f;
background:white;
width:40px;
height:40px;
border-radius:50%;
box-shadow:0 3px 10px rgba(0,0,0,.15);
}

/* remove default arrow */

.swiper-button-prev::after,
.swiper-button-next::after{
font-size:18px;
font-weight:bold;
}

/* hover effect */

.swiper-button-prev:hover,
.swiper-button-next:hover{
background:#39a74a;
opacity:1;	
color: #FFFFFF;
}

.swiper-button-prev,
.swiper-button-next{
opacity:1;
transition:.3s;
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next{
opacity:1;
}

.swiper-button-prev{
left:8px;
}

.swiper-button-next{
right:8px;
}
.swiper{
padding-bottom:30px;
}

.swiper-slide{
height:auto;
}

.productSwiper:hover .swiper-button-next,
.productSwiper:hover .swiper-button-prev{
opacity:1;
}
@media(max-width:768px){

.swiper-button-next{
	right: 5px;
transform:scale(.6);
	}
	
.swiper-button-prev{
	left: 5px;
transform:scale(.6);
}

}
.swiper-button-disabled{
opacity:1 !important;
}
.whatsapp-float{

position:fixed;
bottom:20px;
right:20px;

width:55px;
height:55px;

z-index:999;

background:#25D366;
border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

box-shadow:0 5px 15px rgba(0,0,0,0.25);

transition:.3s;

}

.whatsapp-float img{
width:28px;
height:28px;
}

.whatsapp-float:hover{
transform:scale(1.1);
}
@keyframes whatsappPulse{

0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);}
70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}

}

.whatsapp-float{
animation:whatsappPulse 2s infinite;
}