*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Poppins,sans-serif;
background:#f4f6f3;
color:#333;
line-height:1.6;
}

/* HEADER */

header{
background:white;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:100;
}

.logo{
font-size:22px;
font-weight:600;
color:#2e7d32;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
}

nav a:hover{
color:#2e7d32;
}

/* HERO SLIDER */

.hero{
position:relative;
height:90vh;
overflow:hidden;
color:white;
}

.slider{
position:absolute;
width:100%;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transform:scale(1.15);
transition:opacity 1s ease, transform 8s ease;
}

.slide.active{
opacity:1;
transform:scale(1);
}

/* dark overlay */

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
z-index:1;
}

/* HERO TEXT BOX */

.hero-content{
background:#1e4fa3;
color:white;
padding:40px 50px;
border-radius:8px;
position:relative;
z-index:2;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
max-width:700px;
margin:auto;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

.hero-content h1{
font-size:42px;
margin-bottom:15px;
}

.hero-content p{
font-size:18px;
margin-bottom:25px;
}

.hero-content button{
background:#4CAF50;
color:white;
border:none;
padding:16px 35px;
font-size:18px;
font-weight:600;
border-radius:6px;
cursor:pointer;
box-shadow:0 5px 20px rgba(0,0,0,0.5);
}

.hero-content button:hover{
background:#2e7d32;
}

/* SLIDER BUTTONS */

.slider-controls{
position:absolute;
top:50%;
width:100%;
display:flex;
justify-content:space-between;
z-index:3;
padding:0 20px;
}

.slider-controls button{
background:rgba(255,255,255,0.6);
border:none;
font-size:30px;
padding:10px 15px;
cursor:pointer;
border-radius:4px;
}

/* DOTS */

.dots{
position:absolute;
bottom:25px;
width:100%;
text-align:center;
z-index:3;
}

.dots span{
height:12px;
width:12px;
margin:5px;
background:white;
display:inline-block;
border-radius:50%;
opacity:0.5;
cursor:pointer;
}

.dots span.active{
opacity:1;
background:#4caf50;
}

/* SLIDE CAPTION */

.slide-caption{
position:absolute;
bottom:30px;
left:40px;
background:rgba(0,0,0,0.6);
color:white;
padding:12px 20px;
font-size:20px;
border-radius:6px;
letter-spacing:1px;
}

/* STATS SECTION */

.stats{
background:linear-gradient(135deg,#1b5e20,#2e7d32);
color:white;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
padding:70px 8%;
}

.stat{
padding:20px;
}

.stat h2{
font-size:55px;
font-weight:700;
margin-bottom:10px;
}

.stat p{
font-size:18px;
}

.stats{
background:red;
color:white;
padding:80px 8%;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
text-align:center;
}

/* GENERAL SECTION */

.section{
padding:80px 8%;
}

.section-title{
text-align:center;
margin-bottom:50px;
font-size:32px;
color:#2e7d32;
}

/* SERVICES */

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#2e7d32;
}

/* PRODUCE GRID */

.produce-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.produce{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.produce img{
width:100%;
height:200px;
object-fit:cover;
}

.produce h3{
padding:15px;
text-align:center;
}

/* CALL TO ACTION */

.cta{
background:linear-gradient(120deg,#4caf50,#2e7d32);
color:white;
text-align:center;
padding:80px 20px;
}

.cta h2{
font-size:36px;
margin-bottom:20px;
}

.cta button{
padding:15px 35px;
border:none;
background:white;
color:#2e7d32;
font-weight:bold;
border-radius:6px;
cursor:pointer;
}

.cta button:hover{
background:#f4f4f4;
}

/* FOOTER */

footer{
background:#1b1b1b;
color:white;
text-align:center;
padding:30px;
margin-top:40px;
}

/* MOBILE */

@media(max-width:768px){

.hero-content{
padding:25px;
}

.hero-content h1{
font-size:28px;
}

.section-title{
font-size:26px;
}

}