:root {
  /* DEFAULT AUTO-THEME / DARK THEME SYSTEM VARIABLES (Original dark scheme) */
  --navy: #0a1931;
  --navy2: #050912;
  --gold: #ffc947;
  --gold2: #e5b43f;
  --cyan: #06b6d4;
  --cyan2: #0891b2;
  --white: #ffffff;
  --gray: #94a3b8;
  --slate: #0a0f1e;

  /* Semantic / Component colors */
  --card-bg: rgba(30, 41, 59, 0.7);
  --card-hover-bg: rgba(30, 41, 59, 0.95);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(6, 182, 212, 0.3);

  --shadow-color: rgba(0, 0, 0, 0.5);
  --hero-glow: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.18),
    transparent 70%
  );
  --input-bg: rgba(15, 23, 42, 0.6);
  --input-color: #ffffff;
  --input-border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(10, 25, 49, 0.85);
  --nav-scrolled: rgba(10, 15, 30, 0.98);
  --testi-bg: rgba(30, 41, 59, 0.5);
  --badge-bg: rgba(6, 182, 212, 0.1);
  --badge-text: #06b6d4;
  --glass-accent: rgba(255, 255, 255, 0.03);
  --overlay-color: rgba(5, 9, 18, 0.8);
  --text-white-only: #ffffff;
}

/* ── CURATED DEDICATED LIGHT THEME (Data-theme light & prefers-color-scheme light) ── */
[data-theme="light"] {
  --navy: #f8fafc;
  --navy2: #f1f5f9;
  --gold: #d97706;
  --gold2: #b45309;
  --cyan: #0284c7;
  --cyan2: #0369a1;
  --white: #0f172a;
  --gray: #475569;
  --slate: #ffffff;

  /* Semantic / Component colors */
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-hover-bg: #ffffff;
  --border-color: rgba(15, 23, 42, 0.08);
  --border-color-hover: rgba(2, 132, 199, 0.3);

  --shadow-color: rgba(15, 23, 42, 0.08);
  --hero-glow: radial-gradient(
    circle,
    rgba(2, 132, 199, 0.12),
    transparent 70%
  );
  --input-bg: #ffffff;
  --input-color: #0f172a;
  --input-border: rgba(15, 23, 42, 0.15);
  --nav-bg: rgba(248, 250, 252, 0.85);
  --nav-scrolled: rgba(241, 245, 249, 0.98);
  --testi-bg: rgba(255, 255, 255, 0.8);
  --badge-bg: rgba(2, 132, 199, 0.1);
  --badge-text: #0284c7;
  --glass-accent: rgba(15, 23, 42, 0.03);
  --overlay-color: rgba(248, 250, 252, 0.8);
  --text-white-only: #ffffff;
}

/* Force dark theme variables when data-theme is set to dark */
[data-theme="dark"] {
  --navy: #0a1931;
  --navy2: #050912;
  --gold: #ffc947;
  --gold2: #e5b43f;
  --cyan: #06b6d4;
  --cyan2: #0891b2;
  --white: #ffffff;
  --gray: #94a3b8;
  --slate: #0a0f1e;

  /* Semantic / Component colors */
  --card-bg: rgba(30, 41, 59, 0.7);
  --card-hover-bg: rgba(30, 41, 59, 0.95);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-hover: rgba(6, 182, 212, 0.3);

  --shadow-color: rgba(0, 0, 0, 0.5);
  --hero-glow: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.18),
    transparent 70%
  );
  --input-bg: rgba(15, 23, 42, 0.6);
  --input-color: #ffffff;
  --input-border: rgba(255, 255, 255, 0.1);
  --nav-bg: rgba(10, 25, 49, 0.85);
  --nav-scrolled: rgba(10, 15, 30, 0.98);
  --testi-bg: rgba(30, 41, 59, 0.5);
  --badge-bg: rgba(6, 182, 212, 0.1);
  --badge-text: #06b6d4;
  --glass-accent: rgba(255, 255, 255, 0.03);
  --overlay-color: rgba(5, 9, 18, 0.8);
  --text-white-only: #ffffff;
}

/* ── PERFECT AUTO-DETECTION SYSTEM THEME ── */
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --navy: #f8fafc;
    --navy2: #f1f5f9;
    --gold: #d97706;
    --gold2: #b45309;
    --cyan: #0284c7;
    --cyan2: #0369a1;
    --white: #0f172a;
    --gray: #475569;
    --slate: #ffffff;

    /* Semantic / Component colors */
    --card-bg: rgba(255, 255, 255, 0.9);
    --card-hover-bg: #ffffff;
    --border-color: rgba(15, 23, 42, 0.08);
    --border-color-hover: rgba(2, 132, 199, 0.3);

    --shadow-color: rgba(15, 23, 42, 0.08);
    --hero-glow: radial-gradient(
      circle,
      rgba(2, 132, 199, 0.12),
      transparent 70%
    );
    --input-bg: #ffffff;
    --input-color: #0f172a;
    --input-border: rgba(15, 23, 42, 0.15);
    --nav-bg: rgba(248, 250, 252, 0.85);
    --nav-scrolled: rgba(241, 245, 249, 0.98);
    --testi-bg: rgba(255, 255, 255, 0.8);
    --badge-bg: rgba(2, 132, 199, 0.1);
    --badge-text: #0284c7;
    --glass-accent: rgba(15, 23, 42, 0.03);
    --overlay-color: rgba(248, 250, 252, 0.8);
    --text-white-only: #ffffff;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  /* color: inherit; */
  transition: color 0.2s ease;
}

/* Accessibility: Keyboard Focus Indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--navy2);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 2px;
}

.wrapper {
  --min-col-size: 350px;

  max-inline-size: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;

  display: grid;
  gap: 1.2rem;
  margin-block-start: 2rem;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(var(--min-col-size), 100%), 1fr)
  );
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 2rem 1.5rem;
  background:
    linear-gradient(rgba(8, 15, 35, 0.55), rgba(8, 15, 35, 0.55)),
    url("../images/Home.jpg");
  background-position: center;
  background-size: 120% 120%;
  background-repeat: no-repeat;
  margin-top: 4rem;
  max-inline-size: 100%;
  animation: moveBackground 15s linear infinite;
  @media (width < 760px) {
    background-size: cover;
    padding-top: 10px !important;
  }
}

@keyframes moveBackground {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

#hero::before {
  display: none !important;
}

.hero-grid {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  width: 100%;
  height: 95%;
  max-width: 1250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  background-color: black;
  padding-top: 2rem;
  border-radius: 1.5em;
  opacity: 0.7;
}

/* Glowing orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15), transparent 70%);
  top: -100px;
  right: -100px;
  animation: orb-float 8s ease-in-out infinite;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
  bottom: 50px;
  left: -50px;
  animation: orb-float 10s ease-in-out infinite reverse;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: fade-up 0.8s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

h1 {
  width: 100%;
  margin: 1rem auto 0.7rem;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fade-up 0.8s 0.1s ease both;
}

h1 .accent {
  color: var(--cyan);
}

h1 .gold {
  color: var(--gold);
}

.hero-desc {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 0.8rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #edf2f7;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block-start: 1.2rem;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-buttons a {
  min-width: 210px;
  min-height: 52px;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
}

#hero .btn-primary,
#hero .btn-secondary {
  padding: 0.2rem 1.4rem !important;
  font-size: 0.75rem !important;
  border-radius: 4px !important;
}

.btn-primary {
  background-color: var(--cyan);
  color: white;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
  opacity: 1.1;
}

.btn-primary:hover {
  background: var(--cyan2);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  gap: 0.8rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  transform: translateY(-3px);
}

.hero-stats {
  max-inline-size: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-inline: auto;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  animation: fade-up 0.8s 0.4s ease both;
}

.stat-num {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.stat-num span {
  color: var(--cyan);
}

.stat-label {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero graphic */
.hero-graphic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  animation: fade-up 0.8s 0.2s ease both;
}

.circuit-card {
  background: var(--card-bg);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.circuit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), transparent 60%);
}

.cc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.cc-title {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.cc-dots {
  display: flex;
  gap: 5px;
}

.cc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.cc-dot:nth-child(1) {
  background: #ef4444;
}

.cc-dot:nth-child(2) {
  background: var(--gold);
}

.cc-dot:nth-child(3) {
  background: #22c55e;
}

.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.skill-bar-label span:last-child {
  color: var(--cyan);
  font-weight: 600;
}

.skill-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
  border-radius: 99px;
  animation: bar-fill 1.5s 1s ease both;
  transform-origin: left;
}

@keyframes bar-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.cc-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cc-student {
  font-size: 0.82rem;
}

.cc-student strong {
  display: block;
  color: var(--white);
  font-size: 0.85rem;
}

.cc-student span {
  color: var(--gray);
}

.cc-badge {
  margin-left: auto;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

nav.scrolled {
  background: rgba(10, 15, 30, 0.98);
}

/* ============================================================
   Index.css — ADDITIONS for #launchpad section
   Append these rules to the bottom of your existing Index.css
   ============================================================ */

/* ── Hero tagline (eyebrow above h1) ── */
.hero-tagline {
  width: 100%;
  max-width: 900px;

  margin: 0 auto 1rem;

  padding: 10px 24px;

  border: 2px solid var(--gold);
  border-radius: 8px;

  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;

  text-transform: uppercase;

  text-align: center;

  color: var(--cyan);

  background: rgba(255, 255, 255, 0.03);

  backdrop-filter: blur(8px);

  animation: change-color 4s infinite;
}

@keyframes change-color {
  0% {
    color: white;
    border-color: var(--gold);
  }
  50% {
    color: var(--cyan);
    border-color: var(--gold);
  }
  80% {
    color: var(--gold);
    border-color: white;
  }
}

/* ══════════════════════════════════════════════════════════
   LAUNCHPAD SECTION
══════════════════════════════════════════════════════════ */
#launchpad {
  padding: 0 0 60px;
  position: relative;
}

/* Subtle separator line above section */

.launchpad-inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header block ── */
.black-bg {
  background-color: #050912;
  width: 100%;
  padding: 2rem 0.5rem;
  font-size: 1rem;
}

.launchpad-header:not(h2) {
  max-inline-size: 900px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 1.2rem;
}

.launchpad-header .section-sub-2 {
  margin-top: 14px;
}

/* ── Training Tracks grid ── */
.tracks-header {
  max-width: 1000px;
  border: 2px solid rgba(41, 9, 185, 0.08);
  margin-inline: auto;
}

.tracks-header .section-sub {
  margin-inline-end: auto;
  /* text-align: center; */
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-bottom: 0;
}

.track-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(17, 24, 39, 0.88);
  border: 1px solid rgba(0, 191, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 191, 255, 0.04) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.track-card:hover {
  border-color: rgba(0, 191, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Icon bubble */
.track-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-icon-cyan {
  background: rgba(0, 191, 255, 0.12);
  color: #00bfff;
}
.track-icon-red {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
}
.track-icon-pink {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
}
.track-icon-gold {
  background: rgba(255, 213, 0, 0.12);
  color: #ffd500;
}

.track-body h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.35;
}

.track-body p {
  color: #8b95a8;
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ── Audience dual CTA ── */
.audience-cta-grid {
  display: grid;
  max-inline-size: 1100px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

/* Students card — cyan tinted */
.audience-card-students {
  background: rgba(0, 191, 255, 0.06);
  border: 1px solid rgba(0, 191, 255, 0.2);
}

.audience-card-students::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00bfff, rgba(0, 191, 255, 0.3));
}

/* Professionals card — gold tinted */
.audience-card-professionals {
  background: rgba(255, 213, 0, 0.04);
  border: 1px solid rgba(255, 213, 0, 0.18);
}

.audience-card-professionals::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd500, rgba(255, 213, 0, 0.3));
}

/* Icon */
.audience-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audience-card-students .audience-card-icon {
  background: rgba(0, 191, 255, 0.12);
  color: #00bfff;
}

.audience-card-professionals .audience-card-icon {
  background: rgba(255, 213, 0, 0.12);
  color: #ffd500;
}

/* Eyebrow */
.audience-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-card-students .audience-eyebrow {
  color: #00bfff;
}
.audience-card-professionals .audience-eyebrow {
  color: #ffd500;
}

/* Heading */
.audience-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin: 0;
}

/* Body copy */
.audience-card p {
  color: #8b95a8;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* CTA button push to bottom */
.audience-card .btn-primary,
.audience-card .btn-secondary {
  display: inline-flex;
  align-items: right;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
}

.mt-auto {
  margin-top: auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .launchpad-inner {
    padding: 0 20px;
  }

  .tracks-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .audience-cta-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  #launchpad {
    padding: 48px 0 40px;
  }

  .audience-card {
    padding: 24px 20px;
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .track-card {
    padding: 16px;
  }
}

/* ── SECTION COMMONS ── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
}

#about {
  padding: 0 !important;
  background: transparent;
}

#about > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

.about-content {
  text-align: center;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #050912;
  padding: 4rem 5% !important;
  border-radius: 0 !important;
  border: none !important;
  border-top: 1px solid var(--border-color) !important;
  border-bottom: 1px solid var(--border-color) !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none !important;
  max-width: 100% !important;
  width: 100% !important;
}

.about-content h2,
.about-content p {
  text-align: center;
}

section {
  padding: 1.8rem 0;
}

section > div {
  padding-left: 2%;
  padding-right: 2%;
  width: 100%;
  box-sizing: border-box;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
}

.section-title {
  font-family: Arial, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-align: center;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}

/* ── ABOUT ── */
#about {
  background: transparent;
  position: relative;
  overflow: hidden;
}

#about::after {
  display: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  background: var(--card-bg);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 20px;
  padding: 2rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mv-card {
  padding: 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.mv-card.mission::before {
  background: var(--cyan);
}

.mv-card.vision::before {
  background: var(--gold);
}

.mv-card.values::before {
  background: #a855f7;
}

.mv-card.goal::before {
  background: #22c55e;
}

.mv-icon {
  width: 44px;
  height: 44px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 1rem;
}

.mv-icon svg {
  width: 22px;
  height: 22px;
}

.mv-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.mv-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Detached Core Values */
.detached-core-values {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(6, 182, 212, 0.15);
}

.values-title {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.values-subtitle {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.values-expanded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.val-card {
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.val-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.3);
}

.inline-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 30px;
  background: rgba(6, 182, 212, 0.07);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.78rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.03);
}

.inline-cta-link:hover {
  color: var(--white);
  background: rgba(6, 182, 212, 0.16);
  border-color: rgba(6, 182, 212, 0.55);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
  transform: translateY(-1.5px);
}

.inline-cta-link::after {
  content: "→";
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.inline-cta-link:hover::after {
  transform: translateX(3px);
}

.partner-cta-wrap {
  display: block;
  margin-top: 1.15rem;
}

.val-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.val-card-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

.val-card .val-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.1);
}

.val-card .val-icon svg {
  width: 16px;
  height: 16px;
}

.val-card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #94a3b8;
}

@media (max-width: 600px) {
  .values-expanded-grid {
    grid-template-columns: 1fr;
  }
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.1);
  transition:
    border-color 0.2s,
    background 0.2s;
}

.feat-item:hover {
  background: rgba(6, 182, 212, 0.08);
  border-color: rgba(6, 182, 212, 0.25);
}

.feat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.15),
    rgba(6, 182, 212, 0.05)
  );
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.feat-icon svg {
  width: 24px;
  height: 24px;
}

.feat-content strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.feat-content span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ── SERVICES ── */
#services {
  background: var(--navy);
}

.services-header {
  margin-inline: auto;
  max-width: 600px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  margin-inline: auto;
  gap: 2.5rem;
  margin-bottom: 4rem;
  @media (width>700) {
    max-inline-size: 900px;
    margin-inline: auto;
  }
}

.service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-img-wrap {
  height: 140px;
  width: 100%;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.1);
}

.service-card .service-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--navy), #1e293b);
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-left: 2rem;
  margin-top: -27px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.service-icon svg {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  margin-right: 10px;
}

.service-card h3,
.service-card p {
  padding: 0 2rem;
}

.service-card h3 {
  margin-top: 1rem;
}

.service-card p {
  margin-bottom: 2rem;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.25);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.sc-1::before {
  background: var(--cyan);
}

.sc-2::before {
  background: var(--gold);
}

.sc-3::before {
  background: #a855f7;
}

.sc-4::before {
  background: #22c55e;
}

.sc-5::before {
  background: #ef4444;
}

.sc-6::before {
  background: #f97316;
}

.sc-7::before {
  background: #ec4899;
}

.sc-8::before {
  background: #06b6d4;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.service-card h3 {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── COURSES ── */
#courses {
  background: var(--navy2);
}

.course-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.course-banner-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-body {
  padding: 1rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
  background-color: rgba(1, 31, 37, 0.663);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  color: var(--white);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.tag-intermediate {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.tag-advanced {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}

.course-card h3 {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.course-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.6rem;
  flex: 1;
}

.course-meta {
  display: inline;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--gray);
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background-color: rgba(1, 31, 37, 0.663);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  color: var(--white);
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.course-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: rgba(6, 182, 212, 0.05);
  border-top: 1px solid rgba(6, 182, 212, 0.1);
  margin-top: auto;
}

.enroll-btn {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}

.enroll-btn:hover {
  background: var(--cyan2);
  transform: translateY(-1px);
}

/* ── WHY CHOOSE US ── */
#why {
  background: var(--navy);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}


.why-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-stats .stats-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.why-stats .big-stat {
    background: var(--card-bg);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    transition: all 0.3s;
}

.why-stats .big-stat:hover {
    border-color: rgba(6, 182, 212, 0.35);
    transform: translateY(-3px);
}

.why-stats .big-stat .big-num {
    font-family: Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    color: var(--white);
}

.why-stats .big-stat .plus {
    color: var(--cyan);
}

.why-stats .big-stat p {
    font-size: 0.82rem;
    color: var(--gray);
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.why-stats .big-stat:nth-child(2) .plus {
    color: var(--gold);
}

.why-stats .big-stat:nth-child(3) .plus {
    color: #a855f7;
}

.why-stats .big-stat:nth-child(4) .plus {
    color: #22c55e;
}

.why-stats .big-stat::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan2));
}

.why-stats .big-stat:nth-child(2)::before {
    background: linear-gradient(90deg, var(--gold), #fcd34d);
}

.why-stats .big-stat:nth-child(3)::before {
    background: linear-gradient(90deg, #a855f7, #c084fc);
}

.why-stats .big-stat:nth-child(4)::before {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-stats .stats-display {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-stats .stats-display {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .why-stats .big-stat {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
    
    .why-stats .big-stat .big-num {
        font-size: 2.2rem;
    }
    
    .why-stats .big-stat p {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .why-stats .stats-display {
        gap: 0.8rem;
    }
    
    .why-stats .big-stat {
        padding: 1rem 0.8rem;
        min-height: 80px;
    }
    
    .why-stats .big-stat .big-num {
        font-size: 1.8rem;
    }
    
    .why-stats .big-stat p {
        font-size: 0.65rem;
    }
}

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.why-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.25s;
}

.why-item:hover {
  background: rgba(6, 182, 212, 0.06);
  border-color: rgba(6, 182, 212, 0.2);
}

.why-num {
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(6, 182, 212, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  transition: color 0.25s;
}

.why-item:hover .why-num {
  color: var(--cyan);
}

.why-content h4 {
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.why-content p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.stats-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.big-stat {
  background: var(--card-bg);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 20px;
  padding: 2rem;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.big-stat:hover {
  border-color: rgba(6, 182, 212, 0.35);
  transform: translateY(-3px);
}

.big-stat::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan2));
}

.big-stat:nth-child(2)::before {
  background: linear-gradient(90deg, var(--gold), #fcd34d);
}

.big-stat:nth-child(3)::before {
  background: linear-gradient(90deg, #a855f7, #c084fc);
}

.big-stat:nth-child(4)::before {
  background: linear-gradient(90deg, #22c55e, #4ade80);
}

.big-num {
  font-family: Arial, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  display: block;
  color: var(--white);
}

.big-num .plus {
  color: var(--cyan);
}

.big-stat:nth-child(2) .plus {
  color: var(--gold);
}

.big-stat:nth-child(3) .plus {
  color: #a855f7;
}

.big-stat:nth-child(4) .plus {
  color: #22c55e;
}

.big-stat p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── PORTFOLIO ── */
#portfolio {
  background: var(--navy2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--card-bg);
  transition: all 0.3s;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.3);
}

.pi-preview {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}

.pi-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 15, 30, 0.5));
}

.pi-body {
  padding: 1.2rem;
}

.pi-type {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  background-color: rgba(1, 31, 37, 0.663);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  color: var(--white);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.pi-body h4 {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.pi-body p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

.pi-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.pi-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 100px;
  background: rgba(6, 182, 212, 0.1);
  color: var(--cyan);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

/* ── SECTION HEAD ROW ── */
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s;
}

.section-link:hover {
  color: var(--cyan2);
}

/* ── GALLERY ── */
#gallery-preview {
  background: #0a1931;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.3rem;
  margin-top: 3rem;
}

.gallery-card {
  position: relative;
  grid-column: span 4;
  max-height: 370px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--card-bg);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.24);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.gallery-card-wide {
  grid-column: span 8;
}

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: relative;
  inset: auto 0 0 0;
  padding: 1.4rem;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 15, 30, 0.3) 20%,
    rgba(10, 15, 30, 0.94) 100%
  );
}

.gallery-tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(1, 31, 37, 0.663);
  border: 1px solid rgba(6, 182, 212, 0.2);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.gallery-overlay h3 {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.gallery-overlay p {
  color: #d7e2ef;
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ── STAFF PROFILES ── */
#staff-profiles {
  background: #050912;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .staff-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

.staff-card {
  background: var(--card-bg);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.staff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.staff-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.staff-card:hover .staff-photo {
  transform: scale(1.05);
}

.staff-body {
  padding: 0.8rem 1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.staff-role {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  background: rgba(1, 31, 37, 0.663);
  color: var(--white);
  margin-bottom: 0.5rem;
  align-self: center;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.staff-body h4 {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.3rem !important;
  margin-bottom: 0.3rem;
}

.staff-body p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 0.3rem;
  flex: 1;
}

.staff-social {
  inline-size: fit-content;
  margin-inline: auto;
  margin-block: 0.5rem;
  justify-content: center;

  /* margin-top: 0.5rem !important; */
}

.staff-social .social-btn {
  width: 32px;
  height: 32px;
  padding: 0.3rem;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--navy);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 1.8rem;
  transition: all 0.3s;
}

.testi-card:hover {
  border-color: rgba(6, 182, 212, 0.2);
  transform: translateY(-3px);
}

.quote-icon {
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.testi-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.testi-role {
  font-size: 0.78rem;
  color: var(--gray);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

/* ── BLOG ── */
#blog {
  background: var(--navy2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  min-height: 300px;
}

.card-img {
  height: 100%;
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.25);
}

.blog-banner {
  height: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}

.blog-body {
  padding: 1.3rem;
  padding-bottom: 0;
}

.blog-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.blog-body h3 {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.blog-body p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--gray);
}

.read-more {
  color: var(--cyan);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8rem;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  margin-top: 1.2rem;
  align-items: start;
}

.contact-info h3 {
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.contact-info p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: 12px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.ci-label {
  font-size: 0.75rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ci-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Platform Specific Social Colors */
.social-btn[title="Facebook"] {
  background: #1877f2;
  border-color: #1877f2;
}

.social-btn[title="X"] {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.2);
}

.social-btn[title="Instagram"] {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  border-color: transparent;
}

.social-btn[title="LinkedIn"] {
  background: #0a66c2;
  border-color: #0a66c2;
}

.social-btn[title="YouTube"] {
  background: #ff0000;
  border-color: #ff0000;
}

.social-btn[title="WhatsApp"] {
  background: #25d366;
  border-color: #25d366;
}

.social-btn[title="Email"] {
  background: #ea4335;
  border-color: #ea4335;
}

.social-btn[title="GitHub"] {
  background: #24292e;
  border-color: rgba(255, 255, 255, 0.2);
}

.social-btn svg {
  color: #ffffff !important;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.form-title {
  font-family: Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.05);
}

.form-group select option {
  background: var(--navy2);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  background: var(--cyan);
  color: var(--navy);
  border: none;
  border-radius: 6px;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

.form-submit:hover {
  background: var(--cyan2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
}

/* Premium Partner, Enrollment & Feedback Form Specific Styles */
#partner-form,
#enrollment-form,
#feedback-form {
  display: flex;
  flex-direction: column;
}

#partner-form .form-group input,
#partner-form .form-group select,
#partner-form .form-group textarea,
#enrollment-form .form-group input,
#enrollment-form .form-group select,
#enrollment-form .form-group textarea,
#feedback-form .form-group input,
#feedback-form .form-group select,
#feedback-form .form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

#partner-form .form-group select option,
#enrollment-form .form-group select option,
#feedback-form .form-group select option {
  background: #0d1e36;
  color: var(--white);
}

#partner-form .form-group input:hover,
#partner-form .form-group select:hover,
#partner-form .form-group textarea:hover,
#enrollment-form .form-group input:hover,
#enrollment-form .form-group select:hover,
#enrollment-form .form-group textarea:hover,
#feedback-form .form-group input:hover,
#feedback-form .form-group select:hover,
#feedback-form .form-group textarea:hover {
  border-color: rgba(6, 182, 212, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

#partner-form .form-group input:focus,
#partner-form .form-group select:focus,
#partner-form .form-group textarea:focus,
#enrollment-form .form-group input:focus,
#enrollment-form .form-group select:focus,
#enrollment-form .form-group textarea:focus,
#feedback-form .form-group input:focus,
#feedback-form .form-group select:focus,
#feedback-form .form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.06);
  box-shadow:
    0 0 12px rgba(6, 182, 212, 0.15),
    inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-form-wrap {
  background: rgba(10, 25, 47, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.18);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(6, 182, 212, 0.05);
  padding: 3rem;
}

.enroll-form-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 2rem;
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PREMIUM MOBILE HAMBURGER ── */

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-graphic {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-card,
  .gallery-card-wide {
    grid-column: span 6;
  }
}

@media (max-width: 992px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card-wide {
    grid-column: auto;
    min-height: 260px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}

/* UTILITY CLASSES FOR INLINE STYLE REPLACEMENT */
.text-cyan {
  color: var(--cyan);
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.readMore {
  inline-size: fit-content;
  margin-inline: auto;
  margin-block-start: 2rem;
  margin-block-end: 1rem;
}

.pt-hero {
  padding-top: 10rem;
}

.m-auto {
  margin: 0 auto;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}

.flex-start {
  justify-content: flex-start;
}

.w-full {
  width: 100%;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-1200 {
  max-width: 1200px;
}

.icon-small {
  width: 14px;
  height: 14px;
}

.icon-med {
  width: 18px;
  height: 18px;
}

.icon-large {
  width: 30px;
  height: 30px;
  margin-left: 10px;
  margin-top: 10px;
}

.icon-xl {
  width: 40px;
  height: 40px;
}

.inline-block {
  display: inline-block;
}

.v-middle {
  vertical-align: middle;
}

.mr-2 {
  margin-right: 2px;
}

.mr-4 {
  margin-right: 4px;
}

.opacity-50 {
  opacity: 0.5;
}

/* REUSABLE GRADIENTS */
.bg-gradient-blue {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.bg-gradient-purple {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.bg-gradient-red {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.tag-all-levels {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
}

.tag-advanced {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  color: white;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, #f59e0b, #fcd34d);
}

.bg-gradient-green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #0f172a, #1e3a5f);
}

.bg-gradient-slate {
  background: linear-gradient(135deg, #1c1917, #292524);
}

.bg-gradient-emerald {
  background: linear-gradient(135deg, #14532d, #166534);
}

.bg-gradient-violet {
  background: linear-gradient(135deg, #4c1d95, #6d28d9);
}

.bg-gradient-brown {
  background: linear-gradient(135deg, #7c2d12, #9a3412);
}

.bg-cyan-soft {
  background: rgba(6, 182, 212, 0.15);
}

.bg-gold-soft {
  background: rgba(245, 158, 11, 0.15);
}

.bg-purple-soft {
  background: rgba(168, 85, 247, 0.15);
}

.bg-green-soft {
  background: rgba(16, 185, 129, 0.15);
}

.bg-red-soft {
  background: rgba(239, 68, 68, 0.15);
}

.bg-orange-soft {
  background: rgba(249, 115, 22, 0.15);
}

.bg-pink-soft {
  background: rgba(236, 72, 153, 0.15);
}

/* Loading State */
.loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  display: inline-block;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn-success {
  background: #16a34a !important;
  color: #fff !important;
}

.btn-error {
  background: #ef4444 !important;
  color: #fff !important;
}

/* ADDITIONAL RESPONSIVENESS */
@media (max-width: 480px) {
  #hero {
    padding: 8rem 5% 4rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (min-width: 1400px) {
  .hero-grid {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.farmer-app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ── TEAM SECTION ── */
.team-avatar {
  height: 150px !important;
  object-position: top;
}

.team-social {
  justify-content: center;
  margin-top: 0.5rem !important;
}

.team-social .social-btn {
  width: 32px;
  height: 32px;
  padding: 0.3rem;
}

.team-cta-section {
  padding: 4rem 5%;
  background: var(--navy2);
}
/* Attachment Page Styles */
.attachment-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(80px + 2rem);
  margin-top: 80px;
}

.attachment-hero-sub {
  margin-bottom: 2rem;
}

.attachment-hero-buttons {
  display: flex;
  justify-content: center;
}

.attachment-btn-large {
  padding: 0.75rem 1.8rem !important;
  font-size: 0.95rem !important;
}

.attachment-section {
  padding: 4rem 5%;
}

.attachment-grid {
  margin-top: 3rem;
}

.attachment-content-block {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--gray);
  line-height: 1.8;
}

.attachment-content-block h3 {
  color: var(--white);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.attachment-content-block ul {
  list-style-type: disc;
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.attachment-content-block ul li {
  margin-bottom: 0.5rem;
}

/* Attachment Card specific styling */
.attachment-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.attachment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.attachment-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(10, 25, 47, 0.5)
  );
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.attachment-card-icon svg {
  color: var(--cyan);
  -webkit-text-fill-color: initial;
}

.attachment-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.attachment-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Enrollment and Admission Form Styles */
.enroll-header-wrap {
  max-width: 800px;
  margin: 0 auto 3rem auto !important;
}

.enroll-layout-centered {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.enroll-form-desc {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.experience-options-wrap {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.experience-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.experience-radio-label:hover {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.03);
  color: var(--white);
}

.experience-radio-label:has(.experience-radio-input:checked) {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.08);
  color: var(--white);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
}

.experience-radio-input {
  accent-color: var(--cyan);
}

/* Rating & Checked Checklist Options styling */
.rating-options-wrap,
.enjoyed-options-wrap {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.rating-radio-label,
.enjoyed-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.15rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.rating-radio-label:hover,
.enjoyed-checkbox-label:hover {
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.03);
  color: var(--white);
}

.rating-radio-label:has(.rating-radio-input:checked),
.enjoyed-checkbox-label:has(.enjoyed-checkbox-input:checked) {
  border-color: var(--cyan);
  background: rgba(6, 182, 212, 0.12);
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.rating-radio-input,
.enjoyed-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.rating-emoji {
  font-size: 1.25rem;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.rating-radio-label:hover .rating-emoji,
.enjoyed-checkbox-label:hover .rating-emoji {
  transform: scale(1.22);
}

.rating-radio-label:has(.rating-radio-input:checked) .rating-emoji {
  transform: scale(1.3);
  filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.45));
}

.feedback-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(6, 182, 212, 0) 0%,
    rgba(6, 182, 212, 0.25) 50%,
    rgba(6, 182, 212, 0) 100%
  );
  width: 100%;
}

.form-group-spaced {
  margin-top: 1.5rem;
}

.consent-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.4;
}

.consent-checkbox-input {
  accent-color: var(--cyan);
  margin-top: 0.15rem;
}

.enroll-submit-btn {
  margin-top: 2rem;
  width: 100%;
}

.enroll-submit-icon {
  width: 16px;
  height: 16px;
}

/* Enrollment Success Dialog Classes (inside dynamic js insert) */
.enroll-success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 25, 47, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.enroll-success-box {
  padding: 3rem;
  border-radius: 24px;
  max-width: 550px;
  text-align: center;
  border: 2px solid var(--cyan);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.3);
}

.enroll-success-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem auto;
  border: 2px solid var(--cyan);
}

.enroll-success-title {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Outfit", sans-serif;
}

.enroll-success-student {
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.enroll-success-text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.enroll-success-close-btn {
  width: 100%;
  border: none;
}

/* Website Feedback Banner styling */
#feedback-cta {
  padding: 3rem 0;
  position: relative;
  background: transparent;
}

.feedback-card-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 47, 0.8) 0%,
    rgba(5, 15, 30, 0.9) 100%
  );
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 24px;
  padding: 3rem 4rem;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(6, 182, 212, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.feedback-card-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.08) 0%,
    rgba(6, 182, 212, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.feedback-card-cta:hover {
  transform: translateY(-5px);
  border-color: rgba(6, 182, 212, 0.45);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(6, 182, 212, 0.12);
}

.feedback-info {
  flex: 1;
}

.feedback-info h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.feedback-info p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
}

.feedback-action {
  flex-shrink: 0;
}

.feedback-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  border-radius: 12px;
}

/* Responsive feedback-cta grid */
@media (max-width: 991px) {
  .feedback-card-cta {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .feedback-info p {
    margin: 0 auto;
  }
}

/* ── ATTACHMENTS HIGHLIGHT HEADER ── */
.attachments-highlight-header {
  position: relative;
  text-align: center;
  margin: 0 auto 3rem auto;
  max-width: 850px;
  padding: 3.5rem 2.5rem;
  background: rgba(10, 25, 49, 0.45);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

/* Adaptive styles for light mode */
@media (prefers-color-scheme: light) {
  .attachments-highlight-header {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(8, 145, 178, 0.15);
    box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
}

.attachments-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.attachments-pre {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  z-index: 1;
  position: relative;
}

.attachments-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--white);
  z-index: 1;
  position: relative;
}

.attachments-desc {
  color: var(--gray);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  z-index: 1;
  position: relative;
}

.attachments-badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  z-index: 1;
  position: relative;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

@media (prefers-color-scheme: light) {
  .mini-badge {
    color: var(--white);
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
  }
}

.mini-badge svg {
  color: var(--cyan);
}

.mini-badge:first-child svg {
  color: var(--gold);
}

.mini-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@media (prefers-color-scheme: light) {
  .mini-badge:hover {
    background: rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.15);
  }
}

/* ── GET IN TOUCH — CONTACT ITEM ICON COLORS ── */
.ci-icon--phone {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
}

.ci-icon--phone svg {
  stroke: #22c55e;
}

.ci-icon--whatsapp {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.ci-icon--whatsapp svg {
  fill: #25d366;
  width: 18px;
  height: 18px;
}

.ci-icon--email {
  background: rgba(6, 182, 212, 0.15);
  color: #06b6d4;
}

.ci-icon--email svg {
  stroke: #06b6d4;
}

.ci-icon--location {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.ci-icon--location svg {
  stroke: #ef4444;
}

.ci-icon--hours {
  background: rgba(255, 201, 71, 0.15);
  color: #ffc947;
}

.ci-icon--hours svg {
  stroke: #ffc947;
}

/* Hover lift on contact items */
.contact-item {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Tighter spacing between Hub latest and Get in Touch */
#blog {
  padding-bottom: 0.2rem !important;
}

#contact {
  padding-top: 0.2rem !important;
}

/* ── TWO-COLUMN HERO GRID LAYOUT ── */
.hero-content h1 {
  text-align: left;
  margin-bottom: 1.5rem;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.1;
}

.hero-buttons {
  justify-content: flex-start;
  margin-bottom: 3rem;
}

.hero-stats {
  justify-content: flex-start;
  gap: 2.5rem;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fade-up 1s 0.2s ease both;
}

.hero-image-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* RESPONSIVE OVERRIDES FOR TWO-COLUMN HERO */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-content h1 {
    text-align: center;
  }

  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    width: 100%;
  }
}

/* ── EXACTLY ONE ROW GRID FOR LARGE SCREEN COURSES ── */
@media (min-width: 1200px) {
  #courses .courses-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* ── EMBEDDED PAGE SYSTEM ── */
.embedded-page {
  display: none;
  padding: 5.5rem 2% 1rem;
  min-height: 100vh;
}

/* Tighter vertical spacing between sections inside embeddings */
.embedded-page section {
  padding: 1rem 0;
}

.embedded-page.active {
  display: block;
}

/* Eliminate double side padding inside embedded pages */
.embedded-page section > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Make all staff cards stretch to equal height in grid rows */
.staff-grid .staff-card {
  height: 100%;
}

body.showing-embedded #hero,
body.showing-embedded #about,
body.showing-embedded #courses,
body.showing-embedded #services,
body.showing-embedded #why,
body.showing-embedded #attachments-preview,
body.showing-embedded #portfolio,
body.showing-embedded #gallery-preview,
body.showing-embedded #staff-profiles,
body.showing-embedded #team,
body.showing-embedded #testimonials,
body.showing-embedded #blog,
body.showing-embedded #blog-preview,
body.showing-embedded #feedback-cta,
body.showing-embedded #partners,
body.showing-embedded #cta {
  display: none !important;
}

.embedded-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.25);
  color: var(--cyan);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.embedded-back-btn:hover {
  background: rgba(6, 182, 212, 0.22);
  transform: translateX(-3px);
}

.embedded-back-btn svg {
  flex-shrink: 0;
}

/* ── ABOUT-DETAILS HEADER (align with team-details) ── */
.about-hero-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-hero-header .section-sub {
  max-width: 700px;
  margin: 0 auto 0 3rem;
}

#about-details .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 900px) {
  #about-details .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ── TEAM-DETAILS HEADER ── */
.team-hero-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.team-hero-header .section-sub {
  max-width: 700px;
  margin: 0 auto;
}

#about-full {
  padding-top: 1.5rem;
}

#about-details .about-grid {
  margin-bottom: 1rem;
}

#about-details .detached-core-values {
  margin-top: 1rem;
}

#about-details .mission-vision-section {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#about-journey {
  padding: 1rem 0;
}

#about-journey > .max-w-800 {
  margin-bottom: 1rem;
}

#about-journey .section-sub {
  margin: 0 auto;
}

/* ── CORE VALUES RESPONSIVENESS (Single row on large screens) ── */
@media (min-width: 1024px) {
  .values-expanded-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.25rem !important;
  }

  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  #about-journey .services-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .values-expanded-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  #about-journey .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (max-width: 767px) {
  .values-expanded-grid {
    grid-template-columns: 1fr !important;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr !important;
  }

  #about-journey .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

