body {
  margin: 0;
  padding: 0;
  background-color: #deffe1; /* spice-friendly warm tone */
  color: #2b2b2b;
  font-family: "Segoe UI", Arial, sans-serif;
}


.section {
  background-color: #ffca96;
  margin: 30px auto;
  padding: 40px;
  max-width: 1200px;
  border-radius: 10px;
}

.container {
  width: 90%;
  margin: auto;
}


<!--  TOP HEADER STYLING -->

.header {
  background: #deffe1;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.logo h2 {
  margin: 0;
  color: #b73809;
}

/* HEADER LOGO PLACEMENT */

.header {
  background-color: #deffe1; 
  padding: 15px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text h2 {
  margin: 0;
  color: #890a0a;
  font-size: 24px;
}

.logo-image img {
  height: 70px;   /* control logo size */
  width: auto;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.banner h1 {
  font-size: 40px;
}

.section {
  padding: 40px 0;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
/* index product box flame block */
.product-box {
  border: 5px solid #f2800d;
  padding: 15px;
  text-align: center;
}

.product-box img {
  max-width: 100%;
}

.footer {
  background: #6aa84f	;
  color: #1b4009;
  padding: 20px 0;
  text-align: left;
}
/* RESPONSIVE FIXES */
@media (max-width: 768px) {

  .nav-menu {
    flex-direction: column;
    gap: 10px;
  }

  .banner {
    height: auto;
    padding: 60px 0;
    text-align: center;
  }

  .banner h1 {
    font-size: 28px;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .container {
    width: 95%;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #deffe1;
  color: #274e13;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}

.product-box p {
  font-size: 14px;
  color: #555;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
}

form button {
  background: #006633;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}
a {
  color: #000366;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer-line {
  display: flex;
  justify-content: left;
  gap: 25px;
  flex-wrap: wrap; /* IMPORTANT for mobile */
  font-size: 14px;
}
.footer-line {
  display: flex;
  justify-content: left;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-line a {
  color: #ffffff;
  text-decoration: none;
}

.footer-line a:hover {
  text-decoration: underline;
}
.contact-line {
  width: 100%;
  display: flex;
  justify-content: left;
  align-items: left;
  gap: 20px;
  flex-wrap: wrap;
}
<!-- google map -->

.site-footer {
  background: #111;
  padding: 20px 0;
}

.footer-map iframe {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    gap: 10px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contact-section{
padding:60px 20px;
background:#f7f7f7;
}

.contact-container{
display:flex;
flex-wrap:wrap;
gap:40px;
max-width:1100px;
margin:auto;
}

.contact-info{
flex:1;
}

.contact-form{
flex:1;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
margin-bottom:15px;
border:1px solid #ccc;
}

.contact-form button{
background:#c0392b;
color:white;
border:none;
padding:12px 25px;
cursor:pointer;
}
.products-section{
padding:60px 20px;
background:#f7f7f7;
text-align:center;
}

.products-section h2{
font-size:32px;
margin-bottom:40px;
}

.products-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
max-width:1200px;
margin:auto;
}

.product-card{
background:white;
border-radius:8px;
overflow:hidden;
text-decoration:none;
color:#333;
box-shadow:0 2px 8px rgba(0,0,0,0.1);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-5px);
box-shadow:0 6px 15px rgba(0,0,0,0.15);
}

.product-card img{
width:100%;
height:200px;
object-fit:cover;
}

.product-card h3{
margin:15px 0 10px;
}

.product-card p{
padding:0 15px 20px;
font-size:14px;
color:#666;
}
/* banner slider  */
.banner {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.slides img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slides img.active {
  opacity: 1;
}