.dr1043schemes {
  background: linear-gradient(135deg, #f0fdf4, #ffffff);
  /* Light herbal green → white */
  padding: 80px 20px;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.dr1043schemes::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(16,185,129,0.15), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.schemes-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.schemes-title {
  font-size: 2.5rem;
  color: #065f46; /* Deep healing green */
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  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);
}

.schemes-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f59e0b; /* Golden line accent */
  margin: 12px auto 30px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}

.schemes-subtitle {
  font-size: 1.1rem;
  color: #065f46;
  margin-bottom: 50px;
  font-style: italic;
  opacity: 0.85;
}

.schemes-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.scheme-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.15);
  padding: 35px 25px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid #d1fae5; /* Subtle herbal border */
}

.scheme-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(4,120,87,0.1));
  transition: width 0.4s ease;
  z-index: 0;
}

.scheme-card:hover::before {
  width: 100%;
}

.scheme-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(4, 120, 87, 0.25);
}

.scheme-icon {
  font-size: 2.6rem;
  color: #10b981; /* Emerald green icon */
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.scheme-card h3 {
  color: #065f46;
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.scheme-card p {
  color: #374151; /* Neutral dark text */
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.scheme-note {
  font-size: 0.9rem;
  color: #f59e0b; /* Warm gold tone */
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .schemes-title {
    font-size: 2rem;
  }
  .scheme-card {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .schemes-title {
    font-size: 1.8rem;
  }
  .schemes-subtitle {
    font-size: 1rem;
  }
}