/* === GENERAL STYLES === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* === HERO SECTION === */
.hero {
  height: 50vh;
  background: linear-gradient(to right, #f4e6a6b0, #ffffffb0), url("images/airline-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #333;
}

/* === COURSE OVERVIEW === */
.course-overview {
  padding: 60px 0;
}

.course-overview h2 {
  text-align: center;
  margin-bottom: 20px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

/* 3 Cards per Row Fix */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* === STAGES === */
.stages {
  background: linear-gradient(160deg, #fff9e6, #ffffff);
  padding: 60px 0;
}

.stages h2 {
  text-align: center;
  margin-bottom: 30px;
}

.stages-list {
  max-width: 800px;
  margin: auto;
  list-style: none;
  padding: 0;
}

.stages-list li {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #f4e6a6;
  border-radius: 10px;
}

/* === HOW PPA WILL HELP === */
.ppa-help {
  padding: 60px 0;
}

.ppa-help h2 {
  text-align: center;
  margin-bottom: 30px;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
}

.help-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 25px;
}

/* === CTA === */
.cta {
  text-align: center;
  background: linear-gradient(160deg, #f4e6a6, #fff);
  padding: 60px 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  background: #222;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #000;
}
/* === HERO SECTION (IMAGE BACKGROUND) === */
.ppa-hero {
  position: relative;
  height: 50vh; /* ⬅️ As you requested */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero-content {
  z-index: 2;
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  font-size: 3rem;
  color: #FFD700;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 1.2rem;
  color: #fffbea;
  line-height: 1.6;
  margin-top: 10px;
}

.hero-content .btn-primary {
  margin-top: 25px;
}

@media (max-width: 768px) {
  .ppa-hero {
    height: 60vh;
    padding: 0 5%;
  }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }
}
/* === Fix highlight box in Airline Prep hero === */
.hero-content .highlight {
  background: none !important;
  color: #FFD700 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* === Airline Selected Candidates Slider === */

.ppa-airline-selected {
  padding: 60px 0;
  text-align: center;
}

.ppa-airline-selected h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Splide Elements */
#airline-slider .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem;
}

#airline-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

#airline-slider img:hover {
  transform: scale(1.03);
}

/* Arrows (match your preferred style) */
.splide__arrow {
  background: #ffffffcc;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background 0.2s ease;
}

.splide__arrow:hover {
  background: #fff;
}

/* Dots hidden since you prefer clean look */
.splide__pagination {
  display: none !important;
}


