.dr1043insight {
  background: linear-gradient(135deg, #f0fdf4, #ffffff, #fefce8);
  padding: 80px 20px;
  font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
  border-radius: 20px;
  color: #064e3b;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow */
.dr1043insight::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

/* ===== Container ===== */
.insight-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* ===== Title ===== */
.insight-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(to right, #047857, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 8px rgba(4, 120, 87, 0.1);
}

.insight-title span {
  color: #f59e0b; /* Golden accent */
}

/* ===== Subtitle ===== */
.insight-subtitle {
  font-size: 1.1rem;
  color: #065f46;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0.9;
  font-style: italic;
}

/* ===== Cards Grid ===== */
.insight-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ===== Individual Card ===== */
.insight-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 8px 20px rgba(4, 120, 87, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-top: 5px solid #10b981;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(4, 120, 87, 0.15);
  border-top-color: #f59e0b;
}

/* ===== Card Title ===== */
.insight-card h3 {
  font-size: 1.3rem;
  color: #047857;
  margin-bottom: 10px;
  font-weight: 600;
}

/* ===== Card Text ===== */
.insight-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
}

/* ===== 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;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .insight-title {
    font-size: 2.1rem;
  }
  .insight-cards {
    grid-template-columns: 1fr;
  }
}