.ayurveda-benefits {
  background: linear-gradient(135deg, #fff8f9, #fdf2f6);
}

.section-title {
  color: #579679;
  font-weight: 800;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0ba751;
  display: block;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Card Design */
.benefit-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Icon Styling */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #579679, #024d2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.benefit-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

.benefit-card h5 {
  color: #579679;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Fade animation */
.benefit-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }
.benefit-card:nth-child(4) { animation-delay: 0.8s; }
.benefit-card:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width:768px) {
  .benefit-card {
    padding: 20px;
  }
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}
