html{
scroll-behavior:smooth;
}

body{
margin:0;
font-family:'Segoe UI',sans-serif;
background:#f4f7f4;
}

/* PUNJABI TITLE */
.punjabi-title{
font-size:50px;
font-weight:bold;
color:white;
margin-bottom:10px;
letter-spacing:1px;
}

/* HEADER */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
background:white;
position:sticky;
top:0;
box-shadow:0 2px 10px rgba(0,0,0,0.05);
z-index:1000;
}

.logo img{
height:80px;
}

nav a{
margin:0 12px;
text-decoration:none;
color:#17711c;
font-weight:500;
}

nav a:hover{
color:#50b644;
}

/* BUTTON */
.btn{
background:#35ca5b;
color:white;
padding:8px 15px;
border-radius:20px;
text-decoration:none;
}

.btn:hover{
background:#1ebe5d;
}

/* HERO */
.home{
background:linear-gradient(to right,#2e7d32,#51b77a);
color:white;
text-align:center;
padding:60px 20px;
}

.home h1{
font-size:40px;
}

.home p{
max-width:600px;
margin:auto;
}

.home-buttons{
margin-top:20px;
}

.primary-btn, .secondary-btn{
padding:12px 20px;
border-radius:25px;
text-decoration:none;
display:inline-block;
margin:10px;
}

.primary-btn{
background:#d9e0da;
color:#093b0f;
}

.secondary-btn{
background:white;
color:#2e7d32;
}

/* PRODUCTS */
.products{
padding:60px 20px;
text-align:center;
}

.products h2{
color:#2e7d32;
}

.product-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* CARD */
.card{
background:white;
border-radius:20px;
padding:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:15px;
}

.card h3{
margin:10px 0 5px;
color:#2e7d32;
}

.card p{
color:#555;
}

/* PRICE */
.price{
font-size:18px;
font-weight:bold;
color:#1b5e20;
margin:8px 0;
}

/* ORDER BUTTON */
.order-btn{
display:inline-block;
margin-top:10px;
padding:8px 15px;
background:#25D366;
color:white;
border-radius:20px;
text-decoration:none;
font-size:14px;
}

.order-btn:hover{
background:#1ebe5d;
}

/* BADGE */
.badge{
position:absolute;
top:10px;
left:10px;
background:linear-gradient(45deg,#ff9800,#ff5722);
color:white;
padding:5px 10px;
border-radius:20px;
font-size:12px;
}

/* FOOTER */
.footer{
background:#4cb051;
color:white;
padding:40px 20px;
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.footer a{
color:white;
text-decoration:none;
}

.map iframe{
width:100%;
height:200px;
border-radius:10px;
margin-top:20px;
}

/* FLOAT BUTTONS */
.call-btn, .wa-btn{
position:fixed;
right:20px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:white;
text-decoration:none;
}

.call-btn{
bottom:90px;
background:#1b5e20;
}

.wa-btn{
bottom:20px;
background:#25D366;
}

/* MOBILE */
@media(max-width:600px){
.footer-grid{
grid-template-columns:1fr;
}

.home h1{
font-size:28px;
}
}
button{
padding:8px 15px;
border:none;
border-radius:20px;
background:#2e7d32;
color:white;
cursor:pointer;
margin-top:10px;
}

button:hover{
background:#1b5e20;
}