/*Heading*/
.heading {
  color: #2e7d32;
  margin-bottom: 20px;
}

/*product card*/
.card:hover {
  transform: scale(1.05);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-img-top {
  height: 350px;
  object-fit: cover;
}

h6 {
  font-weight: 600;
  margin-bottom: 5px;
}

/*tagline */
.tagline-box {
  background-color: #fff8f0;
  width: 100%;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.tagline-text {
  font-weight: 500;
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

/*feature card*/
.feature-card {
  text-align: center;
  padding: 20px;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%; /* Ensures equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-card:hover {
  transform: scale(1.05);
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  color: #28a745;
  margin-bottom: 1rem;
}

/* Ensure equal height in row */
.row.text-center {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .feature-card {
    padding: 15px;
  }
}