/* ================= PPL PAGE ================= */
.ppl-hero {
  position: relative;
  height: 105vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 8%;
  color: #fff;
  overflow: hidden;
  height: auto;
  padding: 120px 8% 100px;
}

.ppl-hero-content{
  position:relative;
  max-width:600px;
}
.ppl-badge{
  background:#C41230;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
}
.ppl-hero h1{
  font-size:48px;
  margin:18px 0 12px;
}
.ppl-hero p{font-size:18px; color:#e6edf7;}

.ppl-cta{
  display:inline-block;
  margin-top:24px;
  padding:14px 34px;
  background:#C41230;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
}

/* ===== HERO SLIDER ===== */
.ppl-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ppl-hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.ppl-hero-slider .slide.active {
  opacity: 1;
}

.ppl-hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ppl-hero-slider .slide {
  image-rendering: auto;
  filter: contrast(1.05) saturate(1.05);
}

.ppl-hero-slider .slide.active img {
  animation: heroZoom 12s ease-in-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

/* Keep content above slider */
.ppl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.ppl-hero-overlay {
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.65) 0%,
      rgba(0,0,0,0.4) 45%,
      rgba(0,0,0,0.15) 100%
    );
  z-index: 1;
}

.ppl-hero-content h1,
.ppl-hero-content p {
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.ppl-hero-content h1,
.ppl-hero-content p {
  text-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.ppl-hero-content span,
.ppl-hero-content h1,
.ppl-hero-content p,
.ppl-hero-content a {
  opacity: 0;
  transform: scale(0.96);
  filter: blur(4px);
}

.ppl-hero.active .ppl-hero-content span,
.ppl-hero.active .ppl-hero-content h1,
.ppl-hero.active .ppl-hero-content p,
.ppl-hero.active .ppl-hero-content a {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  transition: 1s cubic-bezier(.22,.61,.36,1);
}

.ppl-hero.active .ppl-hero-content span {
  transition: 0.8s ease;
  opacity: 1;
  transform: none;
}

.ppl-hero.active .ppl-hero-content h1 {
  transition: 0.9s ease 0.15s;
  opacity: 1;
  transform: none;
}

.ppl-hero.active .ppl-hero-content p {
  transition: 0.9s ease 0.3s;
  opacity: 1;
  transform: none;
}

.ppl-hero.active .ppl-hero-content a {
  transition: 0.9s ease 0.45s;
  opacity: 1;
  transform: none;
}



.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}





/* ================= PPL OVERVIEW ================= */

.ppl-overview {
  padding: 90px 0;
  background: #ffffff;
}

.ppl-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr 1fr;
  gap: 40px;
  align-items: center;
}

.ppl-image {
  position: relative; /* ✅ THIS FIXES EVERYTHING */
}

.ppl-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Subtle aviation accent */
.ppl-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 2px solid rgba(196, 18, 48, 0.6);
  pointer-events: none;
}

/* Text content */
.ppl-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #002F6C;
  margin-bottom: 16px;
}

.ppl-text p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

/* Info card */
.ppl-info-card {
  background: linear-gradient(180deg, #f7f9fd, #ffffff);
  padding: 26px 28px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  border-top: 5px solid #C41230;
}

.ppl-info-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppl-info-card li {
  font-size: 16px;
  padding: 8px 0;
  color: #333;
  border-bottom: 1px dashed #ddd;
}

.ppl-info-card li:last-child {
  border-bottom: none;
}





/* Responsive */
@media (max-width: 992px) {
  .ppl-grid {
    grid-template-columns: 1fr;
  }

  .ppl-text {
    text-align: center;
  }

  .ppl-info-card {
    max-width: 420px;
    margin: auto;
  }
}


.ppl-eligibility{background:#f4f6fb;padding:70px 0}



.eligibility-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.eligibility-card{
  background:#fff;
  padding:22px;
  border-radius:12px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.ppl-structure {
  padding: 90px 0;
  background: #ffffff;
}

.ppl-structure .ppl-structure-image {
    margin-left: 33%;
}
.structure-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 50px;
}
.timeline-item {
  background: linear-gradient(180deg, #f8faff, #ffffff);
  padding: 32px 28px;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.35s ease;
  border-top: 5px solid #C41230;
}
.timeline-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}
.timeline-item span {
  font-size: 30px;
  font-weight: 800;
  color: #002F6C;
  display: block;
  margin-bottom: 12px;
}
.timeline-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002F6C, #001f47);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.timeline-item h4 {
  font-size: 20px;
  color: #002F6C;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Description */
.timeline-item p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #444;
}

.ppl-career {
  background: linear-gradient(180deg, #f4f6fb, #ffffff);
  padding: 90px 0;
}
.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 45px;
}
.career-card {
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 14px 35px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
}

.career-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0,0,0,0.15);
}

.career-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002F6C, #001f47);
  color: #ffffff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.career-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #002F6C;
  margin-bottom: 10px;
}

.career-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
}

/* Subtle aircraft watermark */
.career-card::after {
  content: "✈";
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-size: 22px;
  opacity: 0.06;
}

.ppl-final-cta{
  background:linear-gradient(90deg,#002F6C,#C41230);
  color:#fff;
  text-align:center;
  padding:70px 20px;
}
.ppl-final-cta .ppl-cta.light{
  background:#fff;
  color:#002F6C;
}


@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:none}
}

.extra-footer {
  background: linear-gradient(180deg, #001f47, #062c56);  
  padding: 90px 0;
  color: #e5e5e5;
  font-family: "Inter", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
}

/* LOGO + TEXT */
.footer-logo {
  height: 90px;
  margin-bottom: 25px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 420px;
}

/* SOCIAL */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #b08d57;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #000;
}

/* LINK COLUMNS */
.footer-links h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links ul li:hover {
  color: #ffffff;
}

.footer-links ul li {
  margin-bottom: 12px;
}

/* anchor styling */
.footer-links ul li a {
  display: inline-block;
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* hover effect */
.footer-links ul li a:hover {
  color: #ffffff;
}

/* ================= PPL ELIGIBILITY (Checklist Style) ================= */
 
.ppl-eligibility {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff, #f4f6fb);
}

.ppl-eligibility .eligibility-item {
  opacity: 0;
  transform: translateX(-50px);
}

.ppl-eligibility.active .eligibility-item {
  animation: checklistIn 0.7s ease forwards;
}

.ppl-eligibility.active .eligibility-item:nth-child(2){animation-delay:.15s}
.ppl-eligibility.active .eligibility-item:nth-child(3){animation-delay:.3s}

@keyframes checklistIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




.section-subtitle {
  max-width: 720px;
  margin: 10px auto 50px;
  text-align: center;
  font-size: 17px;
  color: #555;
}

/* Vertical list */
.eligibility-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Item row */
.eligibility-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #ffffff;
  padding: 28px 32px;
  border-radius: 16px;
  border-left: 6px solid #002F6C;
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.eligibility-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.eligibility-item::before {
  content: "✔";
  position: absolute;
  right: 22px;
  top: 22px;
  font-size: 18px;
  color: #C41230;
  opacity: 0;
  transition: 0.3s;
}

.eligibility-item:hover::before {
  opacity: 1;
}

/* Icon badge */
.eligibility-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002F6C, #001f47);
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

/* Text */
.eligibility-content h4 {
  font-size: 22px;
  color: #002F6C;
  margin-bottom: 6px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .eligibility-item {
    flex-direction: column;
    text-align: center;
  }
}

.eligibility-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

.ppl-flow {
  display: flex;
  gap: 35px;
  margin-top: 50px;
}

.flow-step {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-6px);
}

.step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #002F6C;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 18px;
}

.timeline {
  max-width: 800px;
  margin: 60px auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #C41230;
}

.timeline-item {
  padding-left: 60px;
  margin-bottom: 40px;
  opacity: 0;
  transform: rotateX(12deg) translateY(40px);
}

.timeline-item span {
  font-size: 28px;
  font-weight: 800;
  color: #002F6C;
}

.reveal .timeline-item,
.reveal .checkpoint-card,
.reveal .flow-step {
  opacity: 0;
  transform: translateY(60px);
}

.reveal.active .timeline-item,
.reveal.active .checkpoint-card,
.reveal.active .flow-step {
  animation: runwayIn 0.9s ease forwards;
}


.reveal .timeline-item:nth-child(2),
.reveal .checkpoint-card:nth-child(2),
.reveal .flow-step:nth-child(2) {
  animation-delay: 0.15s;
}

.reveal .timeline-item:nth-child(3),
.reveal .checkpoint-card:nth-child(3),
.reveal .flow-step:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal .timeline-item:nth-child(4),
.reveal .checkpoint-card:nth-child(4),
.reveal .flow-step:nth-child(4) {
  animation-delay: 0.45s;
}

.ppl-benefits {
  background: #ffffff;
  padding: 80px 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #f9fbff;
  padding: 30px 26px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002F6C, #001f47);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card h4 {
  font-size: 20px;
  color: #002F6C;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.benefit-card:hover .benefit-icon {
  transform: rotate(8deg) scale(1.1);
  transition: 0.35s ease;
}



@keyframes runwayIn {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✈️ Aircraft on timeline */
.timeline {
  position: relative;
}

.timeline-plane {
  position: absolute;
  left: 3px;
  top: -50px; /* runway entry */
  width: 34px;
  height: 34px;
  z-index: 10;

  transform: rotate(90deg);
  transform-origin: center;

  opacity: 0;
  transition:
    top 0.6s ease-in-out,
    opacity 0.6s ease;
  
  animation: planeBank 3s ease-in-out infinite;
}

/* Jet glow */
.timeline-plane svg {
  filter: drop-shadow(0 6px 14px rgba(196,18,48,0.35));
}

/* Subtle banking motion */
@keyframes planeBank {
  0%   { transform: rotate(90deg); }
  50%  { transform: rotate(92deg); }
  100% { transform: rotate(90deg); }
}

/* Glow pulse at checkpoints */
@keyframes jetPulse {
  0% { filter: drop-shadow(0 0 0 rgba(196,18,48,0.6)); }
  50% { filter: drop-shadow(0 0 14px rgba(196,18,48,0.9)); }
  100% { filter: drop-shadow(0 0 0 rgba(196,18,48,0.6)); }
}

/* Mobile: hide aircraft */
@media (max-width: 768px) {
  .timeline-plane {
    display: none;
  }
}

.ppl-career {
  background: linear-gradient(180deg, #f4f6fb, #ffffff);
  padding: 80px 0;
}

.ppl-career .ppl-career {
    margin-left: 33%;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.career-card {
  background: #fff;
  padding: 30px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.14);
}

.career-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #002F6C, #001f47);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.career-card h4 {
  font-size: 20px;
  color: #002F6C;
  margin-bottom: 10px;
}

.career-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.career-card:hover .career-icon {
  box-shadow: 0 0 0 12px rgba(196,18,48,0.12);
}

/* ================= PPL VISUAL BANNER ================= */
.ppl-visual-banner {
  position: relative;
  height: 720px;
  border-radius: 22px;
  overflow: hidden;
  margin: 70px 0;
}



.ppl-visual-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;           /* Prevent stretching */
  transform: scale(1.05);      /* Premium zoom feel */
}

/* Overlay for depth */
.ppl-visual-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.15)
  );
}

.ppl-visual-banner .banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding-left: 8%;
  z-index: 2;
}

/* Optional shadow for separation */
.ppl-visual-banner {
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.ppl-visual-banner h2 {
  font-size: 42px;
  color: #fff;
  max-width: 520px;
  line-height: 1.2;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}

.banner-content h2 {
  max-width: 520px;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  text-transform: capitalize;
  letter-spacing: 0.4px;

  text-shadow: 0 6px 18px rgba(0,0,0,0.45);

  animation: fadeSlideLeft 1s ease forwards;
}


/* Responsive */
@media (max-width: 768px) {
  .eligibility-item {
    flex-direction: column;
    text-align: center;
  }

  .eligibility-icon {
    margin: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

body.ppl-page .vata-hero {
  height: auto !important;
  min-height: 65vh !important;
  padding: 100px 8% 80px !important;
}

/* prevent overlap */
body.ppl-page .vata-hero + section {
  margin-top: 0 !important;
}

body.ppl-page .vata-hero {
  display: none !important;
}

