body {
  font-family: 'Poppins', sans-serif;
  margin: 0; padding: 0;
  background: #f9fff9;
  color: #333;
  overflow-x: hidden;
}
.hero {
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 { font-size: 2.5rem; margin-bottom: .5rem; }
.hero p { font-size: 1.2rem; }
.hero button {
  background: #ffc107;
  border: none;
  color: #2e7d32;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 1rem;
  font-weight: bold;
  transition: background .3s;
}
.hero button:hover { background: #ffb300; }

.about-products {
  padding: 3rem 2rem;
  text-align: center;
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: transform .3s;
}
.about-card:hover { transform: translateY(-5px); }
.about-card.reverse { flex-direction: row-reverse; }
.about-card img {
  width: 40%;
  border-radius: 10px;
}
.about-card ul {
  list-style: none;
  text-align: left;
  padding: 0;
}
.about-card ul li {
  padding: 0.3rem 0;
}

.packages {
  background: #f0f7f0;
  padding: 3rem 2rem;
  text-align: center;
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.package-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform .3s;
}
.package-card:hover { transform: scale(1.03); }
.package-card img { width: 100%; border-radius: 8px; height: 180px; object-fit: cover; }

.testimonials {
  background: linear-gradient(90deg, #a5d6a7, #81c784);
  padding: 3rem 2rem;
  /* color: white; */
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(3px);
}
.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.checkout {
  padding: 3rem 2rem;
  text-align: center;
}

footer {
  background: #2e7d32;
  color: white;
  padding: 2rem;
}
.footer-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.footer-grid div { margin: 0.5rem; }
.copyright {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* small utilities */
.btn {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  text-decoration: none;
}
.checkout-box, .thankyou-box {
  max-width: 500px;
  margin: 3rem auto;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.bank-details {
  background: #f0f7f0;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}
input[type=text] {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.cart-item {
  padding: 0.4rem 0;
  border-bottom: 1px dashed #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
