.dr1041hero2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(135deg, #ffe6f0, #ffffff);
  font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
  overflow: hidden;
}

/* HERO CONTENT */
.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #d32f2f;
  margin-bottom: 12px;
}

.hero-content p, .hero-content ul li {
  font-size: 1.1rem;
  color: #444;
  margin: 6px 0;
}

.hero-content ul {
  list-style: disc inside;
  padding-left: 0;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.hero-btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.hero-btn.call { background: #ffc107; color: #000; }
.hero-btn.call:hover { background: #ffb300; }
.hero-btn.whatsapp { background: #25d366; color: #fff; }
.hero-btn.whatsapp:hover { background: #1ebe57; }

.hero-image { flex: 1; text-align: center; }
.hero-image img { max-width: 100%; border-radius: 16px; box-shadow: 0 8px 25px rgba(0,0,0,0.2); }

/* FADE-IN FROM RIGHT */
.fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.fade-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.3s; }
.delay-2 { transition-delay: 0.6s; }
.delay-3 { transition-delay: 0.9s; }

/* MOBILE */
@media(max-width:768px){
  .dr1041hero2 { flex-direction: column-reverse; text-align: center; padding:40px 5%; }
  .hero-content h1 { font-size:2.2rem; }
  .hero-content p, .hero-content ul li { font-size:1rem; }
  .hero-buttons { justify-content:center; flex-wrap:wrap; gap:10px; }
  .hero-btn { min-width:140px; text-align:center; }
}