/* Hero Section Wrapper */
.dr1013hero {
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden; /* Prevent vertical scroll glitch */
  position: relative;
  /* background: #fcb83a; */
  background-image: url(./hero_new.jpg);
  background-position: center;
  background-size: cover;
  min-height: 25dvh;
  height: 65vh;
  display: flex;
  justify-content: end;
  padding: 60px 30px;
  box-sizing: border-box;
}

/* Hero Container */
.dr1013hero .hero-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 5rem 1rem;
  border-radius: 15px;
  text-align: right;
  color: white;
  background: transparent;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;

  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); */
  animation: fadeInText 1.8s ease forwards;
}

/* Hero Title */
.dr1013hero .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  animation: slideInUp 1.5s ease forwards;
  color: #237A9B;
  -webkit-animation: slideInUp 1.5s ease forwards;
}

/* Hero Paragraph */
.dr1013hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 25px;
  animation: fadeInText 2.2s ease forwards;
}

/* CTA Button */
.dr1013hero .cta-button {
  background-color: #237A9B;
  color: white;
  margin-top: 15px;
  padding: 14px 32px;
  font-size: 1.15rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 76, 153, 0.6);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  animation: fadeInText 2.5s ease forwards;
}

.dr1013hero .cta-button:hover {
  background-color: #0066cc;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.8);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInText {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 800px) {
  .dr1013hero {
    padding: 40px 15px;
  }

  .dr1013hero .hero-content {
    padding: 20px;
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    text-align: right;
  }

  .dr1013hero .hero-content h2 {
    font-size: 2rem;
  }

  .dr1013hero .hero-content p {
    font-size: 1.1rem;
  }

  .dr1013hero .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
