/* ─── RESET & VARIABLES ─────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0d0d0d;
  --white: #ffffff;
  --green: #92d050;
  --green-dim: rgba(146, 208, 80, 0.12);
  --green-border: rgba(146, 208, 80, 0.25);
  --off-white: #f5f5f5;
  --grey: #1a1a1a;
  --grey-mid: #2c2c2c;
  --text-muted: #888888;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--black);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 2px;
}

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.nav-logo span {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.85;
  color: var(--black) !important;
}

/* ─── HERO ──────────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(120px, 18vw, 260px);
  font-weight: 900;
  color: rgba(146, 208, 80, 0.03);
  right: -40px;
  bottom: -60px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--green-border);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero-headline .accent {
  color: var(--green);
}

.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--black);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item .num {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item .label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hero image side */
.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-frame {
  position: relative;
  width: 380px;
  height: 460px;
}

.hero-img-frame::before {
  content: "";
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--green-border);
  border-radius: 4px;
  z-index: 0;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  filter: grayscale(20%);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--green);
  color: var(--black);
  padding: 16px 24px;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hero-badge .badge-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 4px;
}

.hero-badge .badge-value {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

/* ─── SECTION COMMONS ───────────────────────────────────────── */
section {
  padding: 100px 60px;
}

.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ─── ABOUT ─────────────────────────────────────────────────── */
#about {
  background: var(--grey);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
}

.about-mission {
  margin-top: 32px;
  padding: 28px;
  border-left: 3px solid var(--green);
  background: rgba(146, 208, 80, 0.04);
  border-radius: 0 4px 4px 0;
}

.about-mission p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
}

.about-mission cite {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
}

.about-body {
  margin-top: 28px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-card {
  padding: 28px;
  background: var(--grey-mid);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.value-card:hover {
  border-color: var(--green-border);
  transform: translateX(6px);
}

.value-card .icon {
  font-size: 26px;
  margin-bottom: 14px;
  display: block;
}

.value-card h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── PROCESS ───────────────────────────────────────────────── */
#process {
  background: var(--black);
  text-align: center;
}

#process .section-label,
#process .section-title,
#process .section-sub {
  margin-left: auto;
  margin-right: auto;
}

#process .section-sub {
  margin-bottom: 70px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-border),
    var(--green-border),
    transparent
  );
  z-index: 0;
}

.process-step {
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 1px solid var(--green-border);
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  position: relative;
  transition:
    background 0.3s,
    border-color 0.3s;
}

.step-num:hover {
  background: var(--green-dim);
  border-color: var(--green);
}

.step-num .emoji {
  font-size: 30px;
}

.step-num .num-label {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 26px;
  height: 26px;
  background: var(--green);
  color: var(--black);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── PROGRAMS ──────────────────────────────────────────────── */
#programs {
  background: var(--grey);
}

.programs-header {
  text-align: center;
  margin-bottom: 60px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.program-card {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}

.program-card:hover {
  border-color: var(--green-border);
  transform: translateY(-6px);
}

.program-card.featured {
  background: var(--green);
  border-color: var(--green);
}

.program-card.featured * {
  color: var(--black) !important;
}
.program-card.featured .prog-divider {
  background: rgba(0, 0, 0, 0.15);
}
.program-card.featured .feature-item::before {
  background: var(--black);
}

.prog-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.program-card.featured .prog-badge {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--black);
}

.prog-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.prog-subtitle {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.prog-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.prog-price .amount {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.program-card.featured .prog-price .amount {
  color: var(--black);
}

.prog-price .currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

.program-card.featured .prog-price .currency {
  color: var(--black);
}

.prog-duration {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.prog-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  gap: 12px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.feature-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  margin-top: 7px;
}

.btn-program {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}

.btn-program:hover {
  background: var(--green);
  color: var(--black);
}
.program-card.featured .btn-program {
  background: var(--black);
  color: var(--green) !important;
  border-color: var(--black);
}
.program-card.featured .btn-program:hover {
  background: rgba(0, 0, 0, 0.8);
}

.hero-btns {
  min-width: 277px;
  text-align: center;
}

/* ─── LEARNING ──────────────────────────────────────────────── */
#learning {
  background: var(--black);
  text-align: center;
}

.learning-inner {
  max-width: 720px;
  margin: 0 auto;
}

.learning-quote {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  position: relative;
  margin: 40px 0;
}

.learning-quote .highlight {
  color: var(--green);
  font-style: italic;
}

.learning-quote::before {
  content: "\201C";
  font-size: 100px;
  color: var(--green-dim);
  position: absolute;
  top: -30px;
  left: -20px;
  font-family: var(--serif);
  line-height: 1;
}

.learning-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ─── CONTACT ───────────────────────────────────────────────── */
#contact {
  background: var(--grey);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--grey-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group select option {
  background: var(--grey-mid);
}

.form-group textarea {
  height: 120px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 40px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 90px;
  margin-bottom: 30px;
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo span {
  color: var(--green);
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  min-width: 210px;
  margin-bottom: 14px;
}
.footer-disclaimer {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  min-width: 210px;
  margin-bottom: 14px;
}
.footer-brand a {
  font-size: 14px;
  color: var(--green);
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col .follow-icons {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 36px;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.phone {
  white-space: nowrap;
}

.sebi-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--green-border);
  border-radius: 20px;
  font-size: 11px;
  color: var(--green);
  letter-spacing: 1px;
}

.sebi-badge::before {
  content: "✓";
  font-weight: 700;
  font-size: 12px;
}

/* ─── DIVIDER ───────────────────────────────────────────────── */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin-bottom: 24px;
}

/* ─── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 0.7s ease both;
}
.hero-tag {
  animation-delay: 0.1s;
}
.hero-headline {
  animation-delay: 0.2s;
}
.hero-sub {
  animation-delay: 0.3s;
}
.hero-actions {
  animation-delay: 0.4s;
}
.hero-stats {
  animation-delay: 0.5s;
}

.hero-image-side {
  animation: fadeInUp 0.8s 0.3s ease both;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  nav {
    padding: 0 30px;
  }
  .nav-links {
    display: none;
  }
  #home,
  #about,
  #contact {
    grid-template-columns: 1fr;
    padding: 100px 30px 60px;
  }
  section {
    padding: 80px 30px;
  }
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-grid::before {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero-image-side {
    display: flex;
    order: -1; /* Moves image above content */
    margin-bottom: 40px;
  }
  .hero-img-frame {
    width: 260px;
    height: 320px;
  }
  .hero-badge {
    left: 26%;
    transform: translateX(-50%);
    bottom: -55px;
  }
}

/* ─── MODAL ───────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--grey);
  border: 1px solid var(--green-border);
  width: 90vw;
  height: 90vh;
  max-width: 1400px;
  max-height: 900px;
  padding: 40px;
  border-radius: 6px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeInUp 0.4s ease;
  overflow-y: auto;
  position: relative;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.modal-header h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.modal-icon {
  width: 42px;
  height: 42px;
  background: var(--green-dim);
  border: 1px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--green);
}

.modal-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* ─── Excel Table Styling ───────────────────────────── */

.modal-content {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.modal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--white);
}

.modal-content td:first-child {
  text-align: left;
}

.modal-content th,
.modal-content td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  text-align: center;
  cursor: pointer;
}

.modal-content th {
  background: var(--grey-mid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-content tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.modal-content tr:hover {
  background: var(--green-dim);
}

