/* Hero Section Wrapper */
.dr1013hero {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero Container */
.dr1013hero .hero-content {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 60px;
  border-radius: 15px;
  text-align: center;
  color: white;
  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: 15px;
  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: #004c99;
  color: white;
  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;
  box-shadow: 0 6px 16px rgba(0, 102, 204, 0.8);
}

/* 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: 768px) {
  .dr1013hero {
    padding: 40px 15px;
  }

  .dr1013hero .hero-content {
    padding: 20px;
    max-width: 95%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .dr1013hero .hero-content h2 {
    font-size: 2rem;
  }

  .dr1013hero .hero-content p {
    font-size: 1.1rem;
  }

  .dr1013hero .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
  }
}