.dr1030hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
}

/* Background image */
.hero-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(1.1) contrast(1.1);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: transparent;
}

/* Content box */
.hero-content {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(5px);
  padding: 2rem 2.5rem;
  border-radius: 14px;
  max-width: 880px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

/* Heading */
.hero-content h1 {
  font-size: 2.8rem;
  color: #b26a00;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.hero-content h1 .telugu {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: #a05200;
}

/* Description */
.hero-content p {
  font-size: 1.2rem;
  color: #4e342e;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

/* Button wrapper */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Base button style */
.hero-button {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  min-width: 160px;
  max-width: 220px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f9d976, #f39f17);
  color: #4e2f00;
  box-shadow: 0 4px 8px rgba(80, 40, 0, 0.3), inset 0 1px 2px #fff3c0;
  border: 1px solid #e0b343;
  text-shadow: 0 1px 0 #fff8dc;
}

.hero-button:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom right, #f9c300, #dd8900);
  box-shadow: 0 6px 12px rgba(80, 40, 0, 0.4), inset 0 1px 3px #fff8dc;
}

/* WhatsApp style */
.whatsapp-button {
  background: linear-gradient(to bottom right, #d1ffb0, #81c784);
  color: #1b5e20;
  border: 1px solid #a5d6a7;
  text-shadow: 0 1px 0 #ffffff;
}

.whatsapp-button:hover {
  background: linear-gradient(to bottom right, #aed581, #66bb6a);
}

/* Call style */
.call-button {
  background: linear-gradient(to bottom right, #ffe0b2, #fb8c00);
  color: #e65100;
  border: 1px solid #ffcc80;
  text-shadow: 0 1px 0 #fff3e0;
}

.call-button:hover {
  background: linear-gradient(to bottom right, #ffc107, #ef6c00);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 1rem;
  }

  .hero-bg-image {
    filter: brightness(1.25) contrast(1.15);
  }

  .hero-content {
    padding: 1rem 1.2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }

  .hero-content h1 {
    font-size: 1.8rem;
    color: #fff3e0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  }

  .hero-content h1 .telugu {
    font-size: 1.3rem;
    color: #ffcc80;
  }

  .hero-content p {
    font-size: 1rem;
    color: #fffde7;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .hero-button {
    font-size: 0.95rem;
    padding: 10px 20px;
    width: 90%;
    max-width: 280px;
  }
}