/*===================================== Program Page styling ====================================== */
.program-hero {
  padding: 180px 0 120px;
  position: relative;
  background: linear-gradient(180deg, #001620 0%, #001e2b 100%);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: rgba(0, 237, 100, 0.15);
  filter: blur(180px);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-eyebrow {
  color: #00ed64;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  margin-top: 20px;
}

.hero-title span {
  color: #00ed64;
}

.hero-subtitle {
  color: #8aa3b0;
  font-size: 18px;
  max-width: 600px;
  margin-top: 20px;
}

.filter-wrapper {
  background: #0b222c;
  padding: 15px;
  border-radius: 50px;
  display: inline-flex;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: #8aa3b0;
  font-weight: 600;
  transition: 0.3s;
}

.filter-btn:hover {
  color: white;
}

.filter-btn.active {
  background: #00ed64;
  color: #001620;
  box-shadow: 0 0 20px rgba(0, 237, 100, 0.4);
}

.program-card {
  background: #112d3a;
  padding: 40px;
  border-radius: 20px;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 237, 100, 0.05),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.program-card:hover::before {
  opacity: 1;
}

.program-card:hover {
  transform: translateY(-12px);
  border-color: #00ed64;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.program-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 15px;
}

.program-card p {
  color: #8aa3b0;
}

/* ICON */

.program-icon {
  width: 50px;
  height: 50px;
  background: #0b222c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CTA */

.program-link {
  color: #00ed64;
  margin-top: 20px;
  display: inline-block;
  font-weight: 600;
}

.program-link:hover {
  color: white;
}

/* animation */

.program-item {
  transition: 0.4s;
}
/* Section */

.section-padding {
  padding: 80px 0;
}

/* Filter Pills */

.filter-wrapper {
  background: #0b222c;
  padding: 10px;
  border-radius: 50px;
  display: inline-flex;
  gap: 10px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  background: transparent;
  border: none;
  color: #bacbb7;
  font-weight: 600;
  transition: 0.3s;
}

.filter-btn.active {
  background: #00ed64;
  color: #002108;
}

/* Cards */

.program-card {
  background: #172d37;
  padding: 30px;
  border-radius: 16px;
  transition: 0.4s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: #00ed64;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.program-icon {
  background: #223742;
  padding: 12px;
  border-radius: 10px;
  display: inline-block;
}

.program-duration {
  background: rgba(0, 237, 100, 0.1);
  color: #00ed64;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.program-title {
  font-size: 22px;
  font-weight: 700;
  margin: 15px 0;
}

.program-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  margin-top: 20px;
}

/* Stats */

.stats-section {
  background: #001019;
  padding: 100px 0;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #00ed64;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8aa3b0;
}

.program-item {
  transition: 0.3s;
}

@media (max-width: 992px) {
  .program-hero {
    padding: 140px 0 80px;
    text-align: center;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin: auto;
  }

  .hero-glow {
    width: 500px;
    height: 500px;
  }

  .filter-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
  }

  .program-card {
    padding: 30px;
  }

  .program-title {
    font-size: 22px;
  }

  .stats-section {
    padding: 80px 0;
  }

  .stat-number {
    font-size: 36px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {
  .program-hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-glow {
    width: 350px;
    height: 350px;
    filter: blur(120px);
  }

  .filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 16px;
    padding: 12px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .program-card {
    padding: 25px;
  }

  .program-title {
    font-size: 20px;
  }

  .program-card p {
    font-size: 14px;
  }

  .stats-section {
    padding: 60px 0;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }

  .section-padding {
    padding: 60px 0;
  }
}

/* ================================= */
/* SMALL MOBILE */
/* ================================= */

@media (max-width: 480px) {
  .program-hero {
    padding: 110px 0 50px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .filter-wrapper {
    gap: 6px;
    padding: 10px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 11px;
  }

  .program-card {
    padding: 20px;
  }

  .program-title {
    font-size: 18px;
  }

  .program-icon {
    width: 40px;
    height: 40px;
  }

  .stat-number {
    font-size: 24px;
  }

  .section-padding {
    padding: 50px 0;
  }
}
