/* ===== BG Kisan Style ===== */

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

body{
background:#f4fff2;
color:#222;
padding-bottom:70px;
}

.header{
background:#2e7d32;
color:#fff;
padding:15px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:24px;
font-weight:bold;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:15px;
font-size:15px;
}

.hero{
background:linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1200');
background-size:cover;
background-position:center;
height:320px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:#fff;
text-align:center;
padding:20px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:18px;
margin:10px 0;
}

.btn{
background:#4CAF50;
padding:12px 25px;
border-radius:8px;
color:white;
text-decoration:none;
font-weight:bold;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
padding:20px;
}

.card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 4px 10px rgba(0,0,0,.15);
text-align:center;
}

.card h3{
margin:10px 0;
color:#2e7d32;
}

.contact{
padding:20px;
}

.contact h2{
margin-bottom:15px;
}

.contact input,
.contact textarea{
width:100%;
padding:12px;
margin-bottom:10px;
border:1px solid #ccc;
border-radius:8px;
}

.contact button{
width:100%;
padding:12px;
background:#2e7d32;
color:#fff;
border:none;
border-radius:8px;
font-size:16px;
}

.whatsapp,
.call{
position:fixed;
right:20px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
color:#fff;
font-size:26px;
text-decoration:none;
z-index:999;
}

.whatsapp{
background:#25D366;
bottom:140px;
}

.call{
background:#2196F3;
bottom:75px;
}

.bottom-menu{
position:fixed;
left:0;
right:0;
bottom:0;
background:#2e7d32;
display:flex;
justify-content:space-around;
padding:10px 0;
}

.bottom-menu a{
color:#fff;
text-decoration:none;
font-size:13px;
text-align:center;
}

.bottom-menu i{
font-size:20px;
margin-bottom:4px;
}

@media(max-width:768px){
nav{
display:none;
}

.hero h1{
font-size:30px;
}
}