*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f3f4f6;
  color:#0f172a;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

section{
  padding:100px 8%;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  position:sticky;
  top:0;
  width:100%;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(0,0,0,0.05);
  z-index:1000;
}

.nav-container{
  max-width:1400px;
  margin:auto;
  padding:22px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  font-size:2rem;
  font-weight:700;
  color:#0f172a;
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  text-decoration:none;
  color:#0f172a;
  font-weight:500;
  transition:0.3s;
}

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

/* =========================
   BUTTONS
========================= */
.primary-btn{
  background:linear-gradient(135deg,#ff7a18,#ff9f43);
  color:white;
  padding:14px 26px;
  border-radius:16px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
  box-shadow:0 14px 35px rgba(255,122,24,0.28);
}

.primary-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 40px rgba(255,122,24,0.35);
}

.secondary-btn{
  background:white;
  border:1px solid rgba(0,0,0,0.08);
  color:#0f172a;
  padding:14px 24px;
  border-radius:16px;
  text-decoration:none;
  font-weight:500;
}

.big-btn{
  padding:16px 32px;
}
/* =========================
   HERO SECTION
========================= */

.hero-section{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;

  background:
  radial-gradient(circle at top left, rgba(107,114,128,0.12), transparent 35%),
  radial-gradient(circle at bottom right, rgba(156,163,175,0.10), transparent 35%),
  #f3f4f6;
}

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

.hero-badge{
  display:inline-block;
  padding:10px 18px;
  background:white;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:600;
  margin-bottom:28px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.hero-left h1{
  font-size:5rem;
  line-height:1.02;
  margin-bottom:24px;
  color:#0f172a;
}

.hero-left h1 span{
  color:#4b5563;
}

.hero-left p{
  font-size:1.1rem;
  line-height:2;
  color:#475569;
}

.hero-buttons{
  display:flex;
  gap:18px;
  margin-top:40px;
}

.hero-stats{
  display:flex;
  gap:22px;
  margin-top:60px;
  flex-wrap:wrap;
}

.stat-card{
  background:white;
  padding:26px;
  border-radius:28px;
  min-width:170px;
  box-shadow:0 18px 40px rgba(0,0,0,0.05);
}

.stat-card h3{
  font-size:2rem;
  color:#4b5563;
}

.stat-card p{
  margin-top:8px;
  color:#64748b;
}

.hero-right{
  width:100%;
}

/* =========================
   IMAGE SLIDER
========================= */

.slider{
  position:relative;
  width:100%;
  max-width:650px;
  margin:auto;
  overflow:hidden;
  border-radius:32px;
  aspect-ratio:1/1;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity 0.8s ease;
}

.contain-slide{
  object-fit:contain !important;
  background:#e5e7eb;
  width:100%;
  height:100%;
}

.slide.active{
  opacity:1;
}

/* =========================
   SECTION HEADINGS
========================= */

.section-heading{
  margin-bottom:60px;
}

.section-heading span{
  color:#6b7280;
  font-weight:700;
  letter-spacing:1px;
  font-size:0.9rem;
}

.section-heading h2{
  font-size:3.5rem;
  margin-top:14px;
  color:#0f172a;
}

.center{
  text-align:center;
}

/* =========================
   PHILOSOPHY
========================= */

.philosophy-card{
  background:white;
  max-width:1050px;
  margin:auto;
  padding:60px;
  border-radius:36px;
  box-shadow:0 20px 60px rgba(0,0,0,0.06);
}

.philosophy-card p{
  color:#475569;
  line-height:2.1;
  margin-bottom:24px;
  font-size:1.05rem;
}

/* =========================
   FEATURES + PROGRAMS
========================= */

.feature-grid,
.program-grid,
.vision-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:32px;
}

.feature-card,
.program-card,
.vision-box{
  background:white;
  padding:38px;
  border-radius:32px;
  transition:0.35s ease;
  box-shadow:0 18px 45px rgba(0,0,0,0.05);
}

.feature-card:hover,
.program-card:hover,
.vision-box:hover{
  transform:translateY(-8px);
}

.feature-card h3,
.program-card h3,
.vision-box h3{
  font-size:1.35rem;
  margin-bottom:18px;
  color:#0f172a;
}

.feature-card p,
.program-card p,
.program-card small,
.vision-box p{
  color:#64748b;
  line-height:1.9;
}
/* GOLD FEATURED CARD */
.featured-program{
  border:2px solid #d4af37;
  position:relative;
  background:linear-gradient(145deg,#fffdf5,#fdf6d8);
  box-shadow:0 20px 50px rgba(212,175,55,0.18);
}

.popular-tag{
  position:absolute;
  top:20px;
  right:20px;
  background:linear-gradient(135deg,#d4af37,#f4d03f);
  color:#111827;
  padding:8px 15px;
  border-radius:999px;
  font-size:0.75rem;
  font-weight:700;
  box-shadow:0 8px 18px rgba(212,175,55,0.25);
}
}

/* =========================
   VISION
========================= */

.vision-icon{
  width:68px;
  height:68px;
  border-radius:20px;
  background:linear-gradient(135deg,#4b5563,#6b7280);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:700;
  font-size:1.2rem;
  margin-bottom:24px;
}

/* =========================
   FOUNDER SECTION
========================= */

.founder-section{
  display:grid;
  grid-template-columns:58% 42%;
  gap:70px;
  align-items:center;
}

.founder-left img{
  width:100%;
  border-radius:30px;
}

.founder-right h2{
  font-size:4.5rem;
  line-height:1.05;
  margin:20px 0 28px;
}

.founder-right p{
  color:#475569;
  line-height:2.1;
  margin-bottom:26px;
  font-size:1.05rem;
}

/* =========================
   CTA
========================= */

.cta-card{
  background:linear-gradient(135deg,#374151,#6b7280);
  padding:80px;
  border-radius:42px;
  text-align:center;
  color:white;
}

.cta-card h2{
  font-size:3.5rem;
  line-height:1.1;
}

.cta-card p{
  margin:24px 0 40px;
  font-size:1.1rem;
}

.cta-card .primary-btn{
  background:white;
  color:#374151;
  box-shadow:none;
}

/* =========================
   FOOTER
========================= */

.footer{
  background:#111827;
  color:white;
  padding:80px 8%;
}

.footer-content{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.footer h3{
  font-size:2rem;
}

.footer p{
  margin-top:14px;
  color:rgba(255,255,255,0.7);
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:32px;
  margin:40px 0;
  flex-wrap:wrap;
}

.footer-links a{
  color:white;
  text-decoration:none;
}

.footer small{
  color:rgba(255,255,255,0.6);
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

  section{
    padding:70px 6%;
  }

  .nav-container{
    flex-direction:column;
    gap:18px;
    padding:20px 6%;
    text-align:center;
  }

  .nav-links{
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
  }

  .hero-section,
  .founder-section{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
  }

  .hero-left{
    max-width:100%;
  }

  .hero-left h1{
    font-size:3rem;
    line-height:1.1;
  }

  .hero-left p{
    font-size:1rem;
  }

  .hero-buttons{
    flex-direction:column;
    gap:14px;
  }

  .hero-buttons a,
  .primary-btn{
    width:100%;
    text-align:center;
  }

  .hero-stats{
    justify-content:center;
  }

  .stat-card{
    width:100%;
  }

  .section-heading h2{
    font-size:2.4rem;
    line-height:1.2;
  }

  .founder-right h2{
    font-size:3rem;
  }

  .program-grid,
  .feature-grid,
  .vision-cards{
    grid-template-columns:1fr;
  }

  .philosophy-card{
    padding:36px 26px;
    border-radius:28px;
  }

  .cta-card{
    padding:45px 24px;
    border-radius:30px;
  }

  .cta-card h2{
    font-size:2.4rem;
  }

  .footer{
    padding:60px 6%;
  }

  .footer-links{
    flex-direction:column;
    gap:18px;
  }

  .slider{
    max-width:100%;
    border-radius:24px;
  }

}