/* ------------------ Hero Section (Fixed Alignment) ------------------ */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(80vh - 60px);
  padding: 60px 20px;
  text-align: center;
  background: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 10px;
}

.hero-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2e3a70;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 40px;
  color: #444;
  line-height: 1.6;
}

.cta-text {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  color: #fff;
  background: linear-gradient(135deg, #2f49cc, #2439a3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(36, 57, 163, 0.3);
}

.cta-text:hover {
  background: linear-gradient(135deg, #2439a3, #1e2f8f);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(36, 57, 163, 0.35);
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.cta-text:hover .arrow {
  transform: translateX(5px);
}

/* Responsive fix for hero */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}


