.dr1007hero {
  position: relative;
  font-family: 'Noto Sans Telugu', sans-serif;
}

/* HERO SECTION */
.dr1007hero .hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px;
  color: #fff;
}

/* BACKGROUND IMAGE */
.dr1007hero .hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.dr1007hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* GRADIENT + DARK OVERLAY */
.dr1007hero .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.25)
    ),
    linear-gradient(
      to top,
      rgba(194, 150, 81, 0.35),
      rgba(236, 213, 151, 0.15)
    );
  z-index: 1;
}

/* HERO CONTENT CARD */
.dr1007hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 40px 35px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
  animation: fadeUp 1.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* TITLE */
.dr1007hero .hero-content h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #fffbe6;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.85);
}

/* SUBTITLE */
.dr1007hero .hero-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #fff3c2;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
}

/* OPTIONAL CTA */
.dr1007hero .order-now {
  margin-top: 28px;
  display: inline-block;
  background: linear-gradient(135deg, #ff6f00, #ff9800);
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.4px;
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.45);
  transition: all 0.35s ease;
}

.dr1007hero .order-now:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 40px rgba(255, 152, 0, 0.6);
}

/* ANIMATIONS */
@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dr1007hero .hero-content {
    padding: 28px 22px;
    border-radius: 18px;
  }

  .dr1007hero .hero-content h1 {
    font-size: 28px;
  }

  .dr1007hero .hero-content p {
    font-size: 16px;
  }
}