.hero {
  min-height: 79vh;
  background: linear-gradient(135deg, #1a2a4a 0%, #2b6cb0 100%);
  display: flex;
  align-items: flex-start;
  padding: 200px 60px 60px;
}

.hero-content {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-label {
  font-size: 1.01rem;
  font-weight: 750;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8c8f0;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
}

.hero-highlight {
  color: #a8c8f0;
}

.hero-description {
  font-size: 23px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 520px;

}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn-primary {
  background: #ffffff;
  color: #2b6cb0;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.2s;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
}

.hero-btn-secondary {
  background: #ffffff;
  color: #2b6cb0;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.2s;
}

.hero-btn-secondary:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-specialties {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-specialties span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Starting state — everything starts invisible and below */
.hero-label {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.2s;
}

.hero h1 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.4s;
}

.hero-description {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.6s;
}

.hero-buttons {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 0.8s;
}

.hero-specialties {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
  animation-delay: 1s;
}

/* The actual animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}