//* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  padding: 15px 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
}

.header .logo {
  text-decoration: none;
  color: #2f4f4f;
}

.header .logo img {
  max-height: 40px;
  margin-right: 10px;
}

.header .logo .sitename {
  font-size: 24px;
  font-weight: 700;
  color: #2a9d8f;
  font-family: 'Poppins', sans-serif;
}

.navmenu {
  margin-left: auto;
}

.navmenu ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.navmenu a {
  text-decoration: none;
  font-size: 15px;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navmenu a.active,
.navmenu a:hover {
  color: #2a9d8f;
}

.navmenu li {
  position: relative;
}

.navmenu .dropdown > a::after {
  content: '';
  display: inline-block;
  margin-left: 6px;
}

.navmenu .dropdown ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  padding: 10px 0;
  z-index: 1000;
}

.navmenu .dropdown:hover > ul {
  display: block;
}

.navmenu .dropdown ul li {
  width: 100%;
}

.navmenu .dropdown ul a {
  display: block;
  padding: 10px 20px;
  color: #333;
  transition: background 0.3s;
}

.navmenu .dropdown ul a:hover {
  background: #f2f2f2;
  color: #2a9d8f;
}

.navmenu .dropdown .dropdown:hover > ul {
  display: block;
  left: 100%;
  top: 0;
}

.btn-getstarted {
  margin-left: 30px;
  background: #2a9d8f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-getstarted:hover {
  background: #21867a;
}

/* Mobile Styles */
.mobile-nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

/* Responsive */
@media (max-width: 991px) {
  .navmenu ul {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 250px;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }

  .navmenu.nav-open ul {
    display: flex;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .btn-getstarted {
    display: none;
  }
}

/*Header End */
 
 
 
 /* Hero Section */
.hero {
  background: linear-gradient(to right, #e6f9e6, #d0f0d0);
  padding: 60px 20px;
  text-align: center;
  color: #2f4f2f;
  border-bottom: 2px solid #cce5cc;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #446644;
}

.hero .btn {
  background-color: #4CAF50;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.hero .btn:hover {
  background-color: #388e3c;
  transform: translateY(-2px);
}

/* Bestsellers Section */
#bestsellers {
  padding: 50px 20px;
  background: #f9fff9;
}

#bestsellers h3 {
  text-align: center;
  font-size: 2rem;
  color: #2f4f2f;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product {
  background: #ffffff;
  border: 1px solid #ddf0dd;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 100, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 100, 0, 0.12);
}

.product img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product h4 {
  font-size: 1.2rem;
  color: #2e7d32;
  margin-bottom: 10px;
}

.product p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

.product .btn {
  background-color: #66bb6a;
  color: white;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.product .btn:hover {
  background-color: #388e3c;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .product img {
    height: 150px;
  }
}


/*Sustainable page */

    .navbar {
      background-color: #2e7d32;
    }
    .navbar .nav-link, .navbar-brand {
      color: #fff8e1;
    }
    .navbar .nav-link:hover, .navbar-brand span {
      color: #ffeb3b;
    }
    .hero {
      background-color: #33691e;
      color: #fff;
      padding: 80px 20px;
      text-align: center;
    }
    .hero h1 {
      color: #dcedc8;
    }
    .btn-lime {
      background-color: #aeea00;
      color: #000;
    }
    .section-title {
      color: #33691e;
    }
    .tip-box {
      background-color: #f1f8e9;
      border-left: 5px solid #8bc34a;
    }
    footer {
      background-color: #2e7d32;
      color: #fff8e1;
    }
    footer a {
      color: #dcedc8;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
      color: #fff;
    }
 
