.dr1031hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Hero content (on top of image) */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  color: #fff8e1;
  text-shadow: 1px 1px 4px #000;
}

/* Heading */
.hero-content h1 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content h1 .telugu {
  font-size: 1.6rem;
  color: #ffe082;
  display: block;
}

/* Description */
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.hero-content .location {
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Button group */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Button base */
.hero-button {
  padding: 7px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  border: none;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  min-width: 120px;
  max-width: 180px;
  transition: opacity 0.3s ease;
}

.hero-button:hover {
  opacity: 0.85;
}

/* WhatsApp button */
.whatsapp-button {
  background: #25d366;
}

/* Call button */
.call-button {
  background: #ff9800;
}

/* Mobile responsive: smaller buttons */
@media (max-width: 768px) {
  .hero-content {
    padding: 1.2rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h1 .telugu {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-button {
    width: 80%;
    font-size: 0.82rem;
    padding: 6px 12px;
    min-width: unset;
    max-width: 200px;
  }
}