/* Hero Section */
.dr1043hero {
  background: linear-gradient(135deg, #00796b, #26a69a);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
  text-align: center;
}

/* Hero Content Container */
.dr1043hero .hero-content {
  display: flex;
  flex-direction: column; /* Mobile default */
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Hero Image */
.dr1043hero .hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dr1043hero .hero-image img {
  max-width: 500px; /* bigger on desktop */
  width: 100%;
  border-radius: 20px;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  animation: floatHero 4s ease-in-out infinite;
}

/* Float Animation */
@keyframes floatHero {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

/* Hero Text */
.dr1043hero .hero-text {
  text-align: center;
  width: 100%;
}

.dr1043hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.dr1043hero .hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffeb3b;
}

.dr1043hero .hero-text .doctor-info {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.dr1043hero .hero-text .timings {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Hero Buttons */
.dr1043hero .hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.dr1043hero .btn {
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.dr1043hero .btn.whatsapp {
  background: #25D366;
}

.dr1043hero .btn.call {
  background: #00796b;
}

.dr1043hero .btn:hover {
  opacity: 0.85;
}

/* Desktop: side by side */
@media screen and (min-width: 992px) {
  .dr1043hero .hero-content {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 60px;
  }
  .dr1043hero .hero-text {
    flex: 1;
  }
  .dr1043hero .hero-image {
    flex: 1;
  }
  .dr1043hero .hero-image img {
    max-width: 100%;
  }
}

/* Tablet */
@media screen and (max-width: 991px) and (min-width: 769px) {
  .dr1043hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .dr1043hero .hero-image img {
    max-width: 80%;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .dr1043hero {
    padding: 40px 15px;
  }
  .dr1043hero .hero-text h1 {
    font-size: 2.2rem;
  }
  .dr1043hero .hero-text h2 {
    font-size: 1.8rem;
  }
  .dr1043hero .hero-text .doctor-info,
  .dr1043hero .hero-text .timings {
    font-size: 0.95rem;
  }
  .dr1043hero .hero-image img {
    max-width: 90%;
  }
}