.dr1041hero4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(135deg, #e0f7fa, #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: #0288d1;
  margin-bottom: 12px;
}

.hero-content .subtitle {
  font-size: 1.2rem;
  color: #00796b;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content ul {
  list-style: disc inside;
  padding-left: 0;
  color: #444;
  margin: 6px 0 0;
}

.hero-content ul li {
  margin: 6px 0;
  font-size: 1.05rem;
}

.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 */
.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);
  transform: scale(0.95);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1);
}

/* 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){
  .dr1041hero4 { flex-direction: column-reverse; text-align:center; padding:40px 5%; }
  .hero-content h1 { font-size:2.2rem; }
  .hero-content .subtitle, .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; }
}