/* ===========================
   HERO SECTION STYLING
   =========================== */
.dr1040hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 10%;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  font-family: 'Poppins', 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;
}

.hero-content p {
  margin: 8px 0;
  font-size: 1.1rem;
  color: #333;
}

.hero-content .gst {
  font-size: 0.95rem;
  color: #00796b;
  font-weight: 600;
}

.hero-content .address {
  font-size: 0.95rem;
  color: #444;
}

.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;
}

.hero-btn {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s ease-in-out;
  display: inline-block;
}

.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;
}

.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; }

/* ===========================
   MOBILE RESPONSIVE STYLING
   =========================== */
@media (max-width: 768px) {
  .dr1040hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* ✅ Ensure buttons are centered on mobile */
  .hero-buttons {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
  }

  .hero-btn {
    min-width: 140px; /* optional: make buttons equal width */
    text-align: center;
  }
}