.dr1041schemes {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff8e1, #f1f8e9, #e0f7fa);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
}

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0d9488;
  margin-bottom: 15px;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.1);
  text-align: center;
}
.section-title span {color: #f97316;}

.section-subtitle {
  font-size: 1.1rem;
  color: #334155;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-align: center;
}

.scheme-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.scheme-card {
  background: #fff;
  padding: 25px 18px;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scheme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.scheme-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #dc2626;
}

.scheme-card p {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #374151;
  line-height: 1.5;
}

.whatsapp-btn, .call-btn {
  display: inline-block;
  margin: 5px 6px;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn {background: linear-gradient(45deg, #25d366, #128c7e);}
.call-btn {background: linear-gradient(45deg, #f97316, #dc2626);}

.whatsapp-btn:hover, .call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Fade-in Animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {transition-delay: 0.2s;}
.delay-2 {transition-delay: 0.4s;}