/* ===========================
   HERO SECTION - TALENT TRAIL
   =========================== */
.dr1042hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 10%;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.hero-content {
  flex: 1;
  min-width: 280px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #1a73e8;
  background: linear-gradient(135deg, #ff4b2b, #ff416c, #00c6ff, #8e2de2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.hero-content .tagline {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0b4f6c;
  margin: 10px 0;
}

.hero-content .intro {
  font-size: 1rem;
  color: #333;
  margin: 12px 0;
  line-height: 1.5;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-btn {
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: 0.3s ease-in-out;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.hero-btn.hire {
  background: linear-gradient(145deg, #1a73e8, #0b4f6c);
  color: #fff;
}

.hero-btn.hire:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.hero-btn.apply {
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
}

.hero-btn.apply:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.hero-contact {
  margin-top: 20px;
  font-size: 0.95rem;
  color: #444;
}

.hero-contact a {
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: underline;
}

/* Hero Image */
.hero-image {
  flex: 1;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1);
}

/* FADE-IN ANIMATION */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }

/* ===========================
   MOBILE RESPONSIVE STYLING
   =========================== */
@media (max-width: 768px) {
  .dr1042hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 5%;
    gap: 25px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero-content .tagline {
    font-size: 1.2rem;
  }

  .hero-content .intro {
    font-size: 1rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-btn {
    min-width: 140px;
    text-align: center;
  }
}