body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7f9;
  color: #333;
}

/* Fancy Header Banner */
.header {
  background: linear-gradient(135deg, #0f7b3f, #16a34a);
  color: white;
  text-align: center;
  padding: 45px 20px;
  position: relative;
  overflow: hidden;
}

/* Decorative light effect */
.header::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -80px;
  right: -80px;
}

.header-content h1 {
  font-size: 40px;
  margin: 0;
  letter-spacing: 2px;
}

.header-content p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

/* Subtle animation */
.header-content {
  animation: fadeDown 1s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation */
.nav {
  display: flex;
  justify-content: center;
  gap: 25px;
  background: #ffffff;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.nav a:hover {
  color: #0f7b3f;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
}

.hero-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 25px;
  border-radius: 10px;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
}

.btn:hover {
  background: #1ebe5d;
}

/* Sections */
.section {
  padding: 50px 20px;
  text-align: center;
}

.bg-light {
  background: #ffffff;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

/* Footer */
.footer {
  background: #0f7b3f;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Contact Section Upgrade */
.contact-section {
  background: linear-gradient(135deg, #eef7f1, #ffffff);
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-card h3 {
  margin-bottom: 10px;
}

.contact-btn {
  display: inline-block;
  margin-top: 10px;
  background: #0f7b3f;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}
