.dr1028hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
  background-color: #2e7d32; /* fallback */
}

.dr1028hero .hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.dr1028hero .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.dr1028hero .hero-content {
  color: #ffffff;
  text-align: center;
  max-width: 820px;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.dr1028hero .hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #fffde7;
  animation-delay: 0.3s;
}

.dr1028hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #e0f2f1;
  animation-delay: 0.5s;
}

.dr1028hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation-delay: 0.7s;
}

.dr1028hero .hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  min-width: 220px;
  height: 48px;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: nowrap;
}

.dr1028hero .whatsapp-button {
  background-color: #43a047;
}
.dr1028hero .whatsapp-button:hover {
  background-color: #388e3c;
}

.dr1028hero .call-button {
  background-color: #ef6c00;
}
.dr1028hero .call-button:hover {
  background-color: #e65100;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dr1028hero .hero-content h1 {
    font-size: 1.8rem;
  }

  .dr1028hero .hero-content p {
    font-size: 1rem;
  }

  .dr1028hero .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dr1028hero .hero-button {
    width: 100%;
    max-width: 320px;
  }
}