.dr1043whyus {
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
  padding: 80px 20px;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.dr1043whyus::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ===== Container ===== */
.whyus-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== Section Title ===== */
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(to right, #047857, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 6px rgba(4, 120, 87, 0.15);
}

.section-title span {
  color: #f59e0b; /* Golden highlight */
}

.section-subtitle {
  font-size: 1.1rem;
  color: #065f46;
  margin-bottom: 50px;
  opacity: 0.85;
  font-style: italic;
}

/* ===== Cards Grid ===== */
.whyus-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== Card Styles ===== */
.whyus-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.08);
  padding: 34px 26px;
  transition: all 0.3s ease;
  border-top: 5px solid #10b981;
  text-align: center;
}

.whyus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(4, 120, 87, 0.15);
  border-top-color: #f59e0b; /* Golden accent on hover */
}

/* ===== Icon ===== */
.icon {
  font-size: 2.4rem;
  color: #10b981;
  margin-bottom: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.whyus-card:hover .icon {
  color: #f59e0b;
  transform: scale(1.15);
}

/* ===== Card Headings ===== */
.whyus-card h3 {
  font-size: 1.25rem;
  color: #047857;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===== Card Paragraph ===== */
.whyus-card p {
  color: #374151;
  line-height: 1.6;
  font-size: 1rem;
}

/* ===== Animation ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
  animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .whyus-card {
    padding: 26px 20px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
  }
  .whyus-card {
    padding: 22px 18px;
  }
}