/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1581090700227-1e37b190418e?auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 32, 96, 0.65); /* blue overlay */
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.hero-content h3 {
  font-size: 1.4rem;
  color: #ffd700;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    height: 85vh;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-content h3 {
    font-size: 1.1rem;
  }
}

/* ===== SECTION TITLE ===== */
.programs-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.programs-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 60px;
}

/* ===== PROGRAM ITEM ===== */
.program {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.program.reverse {
  flex-direction: row-reverse;
}

.program-image img {
  width: 100%;
  max-width: 500px;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.program-content {
  flex: 1;
}

.program-content h3 {
  font-size: 1.6rem;
  color: #002147;
  margin-bottom: 15px;
}

.program-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .program {
    flex-direction: column;
    text-align: center;
  }

  .program.reverse {
    flex-direction: column;
  }

  .program-image img {
    max-width: 100%;
    height: 250px;
  }

  .program-content h3 {
    font-size: 1.4rem;
  }

  .program-content p {
    font-size: 1rem;
  }
}
