.dr1hero2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: white;
  overflow: hidden;
}

/* Background Image */
.dr1hero2 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  animation: floatUpDown 20s ease-in-out infinite;
  transition: transform 10s ease;
}

.dr1hero2:hover .hero-bg {
  transform: scale(1.05);
}

/* Overlay */
.dr1hero2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Hero Content */
.dr1hero2 .hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  animation: fadeInUp 1s ease-out forwards;
  top: 0;
}

/* Heading */
.dr1hero2 .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Button Stack */
.dr1hero2 .hero-buttons-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Buttons */
.dr1hero2 .btn-secondary,
.dr1hero2 .btn-arattai {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  transition: 0.3s;
  white-space: nowrap;
  max-width: 280px;
}

/* WhatsApp */
.dr1hero2 .btn-secondary {
  border: 2px solid #25d366;
  color: #25d366;
  background: transparent;
}
.dr1hero2 .btn-secondary:hover {
  background: #25d366;
  color: white;
}

/* Arattai */
.dr1hero2 .btn-arattai {
  border: 2px solid #f0c000;
  color: #f0c000;
  background: transparent;
}
.dr1hero2 .btn-arattai:hover {
  background: #f0c000;
  color: white;
}

/* Icons */
.dr1hero2 .btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  object-fit: cover;
}
.dr1hero2 .btn-secondary i,
.dr1hero2 .btn-arattai i {
  font-size: 22px;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes floatUpDown {
  0%,100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

/* Responsive */
@media (max-width: 768px) {
  .dr1hero2 .hero-content {
    padding: 15px;
  }
  .dr1hero2 .hero-content h1 { font-size: 2rem; }
  .dr1hero2 .btn-secondary,
  .dr1hero2 .btn-arattai {
    padding: 10px 22px;
    font-size: 0.95rem;
  }
  .dr1hero2 .btn-icon { width: 20px; height: 20px; }
  .dr1hero2 .btn-secondary i,
  .dr1hero2 .btn-arattai i { font-size: 18px; }
}

/* Tiny Screens */
@media (max-width: 400px) {
  .dr1hero2 .hero-buttons-vertical a {
    width: auto;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* 🔒 Hide Arattai button on non-mobile screens */
@media (min-width: 769px) {
  .dr1hero2 .btn-arattai {
    display: none;
  }
}