/* ===========================
   HERO SECTION STYLING
   =========================== */
.dr1041hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(135deg, #e3f2fd, #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: #0d47a1;
  margin: 0 0 15px 0;
}

.hero-content p {
  margin: 6px 0;
  font-size: 1.1rem;
  color: #333;
}

.hero-content .services {
  font-size: 1rem;
  color: #00796b;
  font-weight: 600;
}

.hero-content .doctor {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
  margin: 10px 0;
  line-height: 1.4;
}

.hero-content .address {
  font-size: 0.95rem;
  color: #555;
  margin-top: 15px;
}

.hero-content .phone a {
  color: #0d47a1;
  font-weight: 600;
  text-decoration: none;
}

.hero-content .phone a:hover {
  text-decoration: underline;
}

/* HERO BUTTONS */
.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
}

.hero-btn.call {
  background: #ffc107;
  color: #000;
}

.hero-btn.call:hover {
  background: #ffb300;
}

.hero-btn.whatsapp {
  background: #25d366;
  color: white;
}

.hero-btn.whatsapp:hover {
  background: #1ebe57;
}

/* HERO IMAGE */
.hero-image {
  flex: 1;
  text-align: center;
  margin-top: 20px;
}

.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 ANIMATION */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .dr1041hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content .services { font-size: 1rem; }
  .hero-content .doctor { font-size: 0.95rem; }
  .hero-content .address { font-size: 0.9rem; }
  .hero-content .phone a { font-size: 0.95rem; }

  .hero-buttons {
    justify-content: center !important;
    gap: 10px;
    margin-top: 15px;
  }

  .hero-btn { min-width: 140px; }
  
  .hero-image { margin-top: 20px; }
}