/* RESET */
*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f4f7f6;
  color:#333;
}

/* ================= HEADER ================= */

.top-header{
  background:#ffffff;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);

}

.logo-area{
  display:flex;
  align-items:center;
}

.logo{
  width:70px;
  margin-right:15px;
}

.brand-text h1{
  margin:0;
  font-size:28px;
  letter-spacing:2px;
}

.brand-text p{
  margin:0;
  font-size:13px;
  color:#ddd;
}

/* ================= MENU ================= */

.menu-bar{
  display:flex;
  justify-content:center;
  background:#ffffff;
  padding:20px;
  gap:20px;
  flex-wrap:wrap;
}

.menu-box{
  background:#0a7443;
  color:#fff;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.menu-box:hover{
  background:#ffc107;
  color:#000;
}

/* ================= HERO ================= */

.hero{
  background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
  url("https://images.unsplash.com/photo-1543362906-acfc16c67564") center/cover;
  padding:120px 20px;
  text-align:center;
  color:white;
}

.hero h2{
  font-size:48px;
  margin-bottom:10px;
}

.hero p{
  font-size:20px;
  margin-bottom:25px;
}

.btn{
  background:#ffc107;
  padding:14px 35px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  color:black;
  display:inline-block;
}

/* ================= SECTIONS ================= */

.section{
  padding:80px 20px;
  text-align:center;
}

.section h2{
  font-size:34px;
  color:#0a7443;
  margin-bottom:50px;
}

.bg-light{
  background:#eef2f1;
}

/* ================= CARDS ================= */

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  max-width:1100px;
  margin:auto;
}

.card{
  background:#fff;
  border-radius:15px;
  padding:40px 20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-10px);
}

.card i{
  font-size:45px;
  color:#0a7443;
  margin-bottom:15px;
}

.card h3{
  margin:0;
  font-size:20px;
}

/* ================= BUTTONS ================= */

.btn-main{
  background:#0a7443;
  color:#fff;
  padding:12px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  margin:10px;
  display:inline-block;
}

.btn-outline{
  border:2px solid #0a7443;
  color:#0a7443;
  padding:12px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:bold;
  margin:10px;
  display:inline-block;
}

/* ================= CONTACT ================= */

.contact-box{
  max-width:500px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.contact-box input,
.contact-box textarea{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:14px;
}

/* ================= PRODUCTS ================= */

.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
  margin-top:40px;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.product-card{
  background:#fff;
  padding:20px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:0.3s;
}

.product-card:hover{
  transform:translateY(-5px);
}

.product-card img{
  width:100%;
  max-height:180px;
  object-fit:contain;
  margin-bottom:10px;
}

/* ================= FOOTER ================= */

footer{
  background:#000;
  color:#fff;
  padding:30px;
  text-align:center;
}

.social{
  margin-bottom:10px;
}

.social a{
  color:#ffc107;
  font-size:26px;
  margin:0 12px;
  text-decoration:none;
}

/* ================= MOBILE ================= */

@media(max-width:768px){
  .hero h2{font-size:32px;}
  .menu-box{padding:10px 18px;font-size:14px;}
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebea5;
    transform: scale(1.1);
}
/* NEW HEADER */
.main-header{
  background:#0a7443;
  padding:12px 30px;
  position:sticky;
  top:0;
  z-index:999;
}

.header-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo-area{
  display:flex;
  align-items:center;
}

.logo{
  width:60px;
  margin-right:12px;
}

.brand-text h1{
  margin:0;
  font-size:22px;
  color:#fff;
  letter-spacing:1px;
}

.brand-text p{
  margin:0;
  font-size:12px;
  color:#ddd;
}

/* NAV MENU */
.nav-menu{
  display:flex;
  gap:25px;
}

.nav-menu a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
  padding:8px 18px;
  border-radius:30px;
  transition:.3s;
}

.nav-menu a:hover{
  background:#ffc107;
  color:#000;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

  .header-container{
    flex-direction:column;
  }

  .nav-menu{
    margin-top:12px;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }

  .nav-menu a{
    padding:8px 14px;
    font-size:14px;
  }

  .hero h2{font-size:32px;}
  .slide-content{padding:25px;}
}
.top-header{
  background:#fff;
  border-bottom:1px solid #ddd;
  position:sticky;
  top:0;
  z-index:999;
}

.header-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
}

.menu-bar{
  display:flex;
  gap:15px;
}

.menu-box{
  background:#556b2f;
  color:#fff;
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
}
.top-header{
  background:#fff;
  border-bottom:1px solid #ddd;
  position:sticky;
  top:0;
  z-index:999;
}

.header-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 20px;
}

.logo{
  width:70px;
  margin-right:15px;
}

.logo-area{
  display:flex;
  align-items:center;
}

.brand-text h1{
  margin:0;
  font-size:30px;
  font-weight:800;
  letter-spacing:2px;
  color:#556b2f; /* dark olive green */
}

.tagline{
  margin:0;
  font-size:15px;
  color:#444;
  font-style:italic;
  letter-spacing:1px;
  font-weight:500;
}

}

.menu-bar{
  display:flex;
  gap:15px;
}

.menu-box{
  background:#556b2f;
  color:#fff;
  padding:10px 22px;
  border-radius:25px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.menu-box:hover{
  background:#ffc107;
  color:#000;
}
.brand-text p{
  color:#556b2f;
  font-style:italic;
  letter-spacing:1px;
}

