/* === GLOBAL RESET & BASE STYLES === */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

section {
  padding: 60px 8%;
}

h1, h2, h3 {
  font-weight: 600;
  color: #000;
}

p {
  color: #444;
  margin-bottom: 15px;
}

/* === FULLSKY FIX (NO GAP BELOW HEADER) === */
.fullsky {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* === HERO SECTION === */
.indigo-hero {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.indigo-hero .hero-bg img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.indigo-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
  z-index: 1;
}

.indigo-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fffbea;
  max-width: 900px;
  animation: fadeInUp 1.2s ease-out;
}

.indigo-hero h1 {
  font-size: 3rem;
  color: #FFD700;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
  margin-right: 10px;
}

.indigo-hero p {
  font-size: 1.2rem;
  margin-top: 10px;
  color: #fffbea;
  text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}

.hero-cta {
  margin-top: 25px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 5px;
}

.cta-btn.primary, .cta-btn {
  background: #222;
  color: #fff;
}

.cta-btn.secondary {
  background: #FFD700;
  color: #000;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* === ABOUT SECTION === */
.about-section {
  background: #fff;
  text-align: center;
}

.about-section h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 900px;
  margin: 0 auto 15px;
  color: #555;
}

/* === PROGRAM STRUCTURE / TIMELINE === */
.program-structure {
  background: linear-gradient(160deg, #fff9e6, #ffffff);
  text-align: center;
}

.program-structure h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.phase {
  background: #fff;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* === TRAINING HIGHLIGHTS === */
.training-highlights {
  background: #fff;
  text-align: center;
}

.training-highlights h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.key-features {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.key-features li {
  background: #fff;
  border-left: 5px solid #FFD700;
  margin-bottom: 12px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
}

/* === CAMPUS LIFE === */
.campus-life {
  background: linear-gradient(180deg, #fff, #fffbea);
  text-align: center;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.campus {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* === SELECTION PROCESS === */
.selection-process {
  text-align: center;
}

.selection-process ol {
  list-style-position: inside;
  text-align: left;
  max-width: 700px;
  margin: 20px auto;
}

.selection-process li {
  background: #fff;
  border-left: 5px solid #FFD700;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* === PPA SUPPORT === */
.ppa-support {
  background: #fff;
  text-align: center;
}

.ppa-support h2 {
  margin-bottom: 30px;
}

.ppa-help-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ppa-help-cards .card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 25px;
  transition: transform 0.3s ease;
}

.ppa-help-cards .card:hover {
  transform: translateY(-5px);
}

/* === CTA SECTION === */
.ppa-cta {
  text-align: center;
  background: linear-gradient(160deg, #fff9d6, #ffffff);
  padding: 80px 20px;
}

.ppa-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.ppa-cta span {
  color: #FFD700;
}

.ppa-cta p {
  color: #555;
  margin-bottom: 25px;
}

.ppa-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .indigo-hero {
    height: 60vh;
    padding: 0 5%;
  }
  .indigo-hero h1 { font-size: 2rem; }
  .indigo-hero p { font-size: 1rem; }
  section { padding: 50px 5%; }
}

.hero-content {
  position: absolute;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
}

.hero-content h1 {
  text-align: center;
  margin: 0 auto;
}

.indigo-hero .hero-bg,
.indigo-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
