/* =========================
   RESET + BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0A0A0A;
  color: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

/* =========================
   GLOBAL UTILITIES
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.6rem;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* =========================
   BUTTONS (PREMIUM FEEL)
========================= */
.btn {
  background: #FF3B3B;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 59, 59, 0.3);
  background: #e63232;
  color: #fff;
}

.btn-secondary {
  border: 1px solid #FF3B3B;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #FF3B3B;
  transform: translateY(-3px);
}

/* =========================
   NAVBAR (GLASS + STICKY)
========================= */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.navbar nav {
    display: flex;
    align-items: center;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: 0.3s;
}

.nav-links li {
    display: flex;
    align-items: center;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #FF3B3B;
  transition: 0.3s ease;
}

.nav-links .btn:hover{ 
    color: #ffffff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #FF3B3B;
}

/* =========================
   HERO SECTION (IMPACT)
========================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(10,10,10,0.85), rgba(10,10,10,0.95)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438');
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 650px;
}

.hero h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  color: #A0A0A0;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

/* =========================
   PROGRAMS
========================= */
.programs {
  padding: 120px 0;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.program-card {
  background: #141414;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.program-card:hover {
  transform: translateY(-10px);
  border-color: #FF3B3B;
  box-shadow: 0 15px 40px rgba(255, 59, 59, 0.15);
}

/* =========================
   RESULTS (STATS)
========================= */
.results {
  padding: 120px 0;
  background: #111;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 60px;
}

.stat {
  text-align: center;
  transition: 0.3s ease;
}

.stat h3 {
  font-size: 3rem;
  color: #FF3B3B;
  font-weight: 800;
}

.stat p {
  color: #A0A0A0;
}

/* TESTIMONIAL */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #A0A0A0;
  font-size: 1.1rem;
}

/* =========================
   WHY SECTION
========================= */
.why {
  padding: 120px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-item {
  background: #141414;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  transition: 0.3s ease;
}

.why-item:hover {
  background: #FF3B3B;
  transform: translateY(-5px);
}

/* =========================
   CTA SECTION
========================= */
.cta {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta p {
  color: #A0A0A0;
  margin-bottom: 25px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 450px;
  margin: auto;
}

.contact-form input {
  padding: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 25px 0;
  background: #000;
  color: #777;
}

/* =========================
   REVEAL ANIMATION SUPPORT
========================= */
.program-card,
.stat,
.why-item,
.hero-content,
.testimonial {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.program-card.show,
.stat.show,
.why-item.show,
.hero-content.show,
.testimonial.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MOBILE MENU
========================= */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #0A0A0A;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hero h2 {
    font-size: 2.2rem;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }

  .btn-secondary {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}