body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.bg-primary {
  background-color: #0a5f38;
}

#navbar {
  height: 72px;
  position: fixed;
  top: 0;
  width: 100%;
  transition: top 0.3s;
  z-index: 999;
}

.text-primary {
  color: #0a5f38;
}

.bg-secondary {
  background-color: #78c045;
}

.text-secondary {
  color: #78c045;
}

.btn-primary {
  background-color: #0a5f38;
  color: white;
  transition: all 0.3s ease;
  width: 262px;
  font-size: 17px;
}

.btn-primary:hover {
  background-color: #094a2c;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #78c045;
  color: white;
  transition: all 0.3s ease;
  font-size: 17px;
}

.btn-secondary:hover {
  background-color: #69ab3a;
  transform: translateY(-2px);
}

.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #78c045;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230a5f38' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#aboutus {
  display: flex;
  flex-direction: column;
  position: relative;
  top: -55px;
}

.card-desc {
  position: absolute;
  inset: 0;
  background-color: white; 
  color: #4B5563; 
  padding: 1.5rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.group:hover .card-desc {
  opacity: 1;
}

#producthead{
  position:relative;
  left: 105px;
  font-size: 33px;
}


