/* Hero Section */
.dr1043hero2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00796b, #26a69a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 40px 20px;
  gap: 20px;
  overflow: hidden;
}

/* Hero Content */
.dr1043hero2 .hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

/* Hero Image */
.dr1043hero2 .hero-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Image Float Animation */
.dr1043hero2 .hero-image img {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  border: 3px solid #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: floatHero 4s ease-in-out infinite;
}

/* Float Animation */
@keyframes floatHero {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Hero Text */
.dr1043hero2 .hero-text {
  flex: 1 1 450px;
  max-width: 600px;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s ease, transform 1s ease;
}

/* Text Headings */
.dr1043hero2 .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.dr1043hero2 .hero-text h2 {
  font-size: 2.2rem;
  color: #ffeb3b;
  margin-bottom: 15px;
}

.dr1043hero2 .hero-text p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.dr1043hero2 .hero-text .hero-tagline,
.dr1043hero2 .hero-text .expertise {
  font-weight: 600;
  color: #fff8c4;
}

.dr1043hero2 .hero-text .timings {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #ffe082;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  justify-content: center; /* center buttons horizontally */
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.hero-buttons .btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.hero-buttons .btn.whatsapp {
  background: #25D366;
}

.hero-buttons .btn.call {
  background: #00796b;
}

.hero-buttons .btn:hover {
  opacity: 0.85;
}

/* Slide-in visible state */
.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
  .dr1043hero2 {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .dr1043hero2 .hero-image,
  .dr1043hero2 .hero-text {
    flex: 1 1 100%;
  }
}

/* Tablet */
@media screen and (max-width: 991px) {
  .dr1043hero2 .hero-image img {
    max-width: 80%;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .dr1043hero2 {
    padding: 20px 10px;
    gap: 15px;
  }

  .dr1043hero2 .hero-text h1 {
    font-size: 2rem;
  }

  .dr1043hero2 .hero-text h2 {
    font-size: 1.6rem;
  }

  .dr1043hero2 .hero-text p,
  .dr1043hero2 .hero-text .timings {
    font-size: 0.95rem;
  }

  .dr1043hero2 .hero-image img {
    max-width: 90%;
  }

  .hero-buttons {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .hero-buttons .btn {
    width: auto;
  }
}