/* ================= CONTAINERS & GRID ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ================= HERO ================= */
.programs-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2a66 0%, #1a3b99 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.programs-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.programs-hero p {
  font-size: 1.2rem;
  color: #FFD700;
  text-shadow: 0 0 6px rgba(255,215,0,0.5);
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
}

/* ================= PROGRAM CARDS ================= */
.program-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.program-card .card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: #FFD700;
}

.program-card h3 {
  color: #0a2a66;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.program-card p {
  color: #1a3b99;
  font-size: 1rem;
  line-height: 1.6;
}

/* ================= CALL TO ACTION ================= */
.cta-section {
  background: #D32F2F;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  color: #FFD700;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.cta-section .btn-primary {
  background: #FFD700;
  color: #0a2a66;
}

.cta-section .btn-primary:hover {
  background: #fff;
  color: #D32F2F;
}

/* ================= FADE-IN ANIMATION ================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
/* ================= BUTTONS ================= */
.cta-section .btn-primary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: #FFD700;  /* gold */
  color: #0a2a66;       /* dark blue text */
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-section .btn-primary:hover {
  background: #fff;
  color: #D32F2F;       /* red hover */
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
