/* Section Styling */
/* .hero {
  background: #2ab97d65;
  padding: 60px 20px;
  border-radius: 15px;
  text-align: center;
  color: #000000;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 100px;
} */

.content-container {
  max-width: 800px;

  background-color: #fedb5ce3;
  padding: 60px 40px;
  border-radius: 15px;
  /* text-align: center; */
  color: #000000;
  margin-top: 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin: 50px;
}

.content-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

.content-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  padding-left: 10px;
  box-sizing: border-box;
}

.content-container p.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-container h2 {
    font-size: 2rem;
  }
  .content-containers p {
    font-size: 1rem;
  }
}

.card-img-top {
  object-fit: contain; /* Ensures the entire image fits within the box without cropping */
  width: 100%; /* Full width for consistency */
  height: 360px; /* Fixed height to keep card sizes uniform */
  /* Optional: Light background to fill any empty space */
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.heading {
  color: #2ab97e;
}
.spices-section {
  max-width: 100%;
  text-align: center;
  padding: 40px;
  margin: 50px auto;
  background: #fff;
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
  box-shadow: 5px 5px 10px #b8b8b8ce, -5px -5px 10px #ffffff;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.spices-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.spices-section h1 {
  font-size: 2rem;
  color: #e44d26;
}

.spices-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.spices-img {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  opacity: 0.2;
}
