/* =============================================
   AS SOLUTIONS – Global Stylesheet (Light Theme)
   WebVeda-inspired · Full-Width · Animated
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Work+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


:root {
  --brand-primary: #1188c8;
  --brand-secondary: #0a4f86;
  --brand-accent: #63ddff;
  --brand-teal: #35b6e6;

  --bg-page: #f5fbff;
  --bg-alt: #e9f4fa;
  --bg-card: #ffffff;

  --text-heading: #08131d;
  --text-body: #355062;
  --text-muted: #6d8797;
  --text-primary: #08131d;
  --text-secondary: #446376;

  --border: #d7e6f1;
  --border-subtle: #c5dbea;
  --border-strong: rgba(17, 136, 200, 0.24);

  --shadow-xs: 0 1px 4px rgba(15, 17, 23, 0.06);
  --shadow-sm: 0 2px 14px rgba(15, 17, 23, 0.08);
  --shadow-md: 0 6px 28px rgba(15, 17, 23, 0.10);
  --shadow-lg: 0 16px 56px rgba(15, 17, 23, 0.12);
  --shadow-brand: 0 10px 28px rgba(17, 136, 200, 0.22);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --gradient-brand: linear-gradient(135deg, #0a4f86 0%, #1188c8 55%, #63ddff 100%);
  --gradient-blue: linear-gradient(135deg, #081f36 0%, #0d67b0 100%);
  --gradient-hero: linear-gradient(160deg, #f6fcff 0%, #e9f5fb 58%, #d7eefb 100%);

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Work Sans', sans-serif;
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: 3px;
}

::selection {
  background: rgba(17, 136, 200, 0.18);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-heading);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 700;
}

h4 {
  font-size: 1.05rem;
  font-weight: 700;
}

p {
  color: var(--text-body);
  font-weight: 400;
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout – full width ── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* sections are naturally full-width by default */
.section {
  padding: 100px 0;
  width: 100%;
}

.section-sm {
  padding: 60px 0;
  width: 100%;
}

/* ============================
   BACKGROUND ANIMATION SYSTEM
   ============================ */

/* Animated blobs (injected by JS) */
.anim-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.anim-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: blob-drift var(--dur, 18s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  will-change: transform;
}

@keyframes blob-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(var(--tx1, 30px), var(--ty1, -40px)) scale(1.06);
  }

  50% {
    transform: translate(var(--tx2, -20px), var(--ty2, 30px)) scale(0.94);
  }

  75% {
    transform: translate(var(--tx3, 40px), var(--ty3, 20px)) scale(1.04);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

/* Animated grid lines */
.anim-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image:
    linear-gradient(var(--grid-color, rgba(17, 136, 200, 1)) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color, rgba(17, 136, 200, 1)) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: grid-shift 30s linear infinite;
}

@keyframes grid-shift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 72px 72px;
  }
}

/* Floating rings / halos */
.anim-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  pointer-events: none;
  animation: ring-pulse var(--dur, 8s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes ring-pulse {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  30% {
    opacity: 0.12;
  }

  70% {
    opacity: 0.08;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Animated gradient wash (pseudo‐elements on section wrappers) */
.section-anim {
  position: relative;
  overflow: hidden;
}

.section-anim::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(ellipse 60% 50% at var(--gx, 30%) var(--gy, 40%),
      var(--g1, rgba(17, 136, 200, 0.08)) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at var(--gx2, 70%) var(--gy2, 60%),
      var(--g2, rgba(99, 221, 255, 0.08)) 0%, transparent 70%);
  animation: gradient-drift var(--gd, 20s) ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradient-drift {
  0% {
    --gx: 30%;
    --gy: 40%;
    --gx2: 70%;
    --gy2: 60%;
    opacity: 1;
  }

  50% {
    --gx: 60%;
    --gy: 20%;
    --gx2: 30%;
    --gy2: 80%;
    opacity: 0.8;
  }

  100% {
    --gx: 20%;
    --gy: 70%;
    --gx2: 80%;
    --gy2: 30%;
    opacity: 1;
  }
}

/* Make all children of section-anim appear above the bg */
.section-anim>* {
  position: relative;
  z-index: 1;
}

/* Floating particles (CSS-only, hero page) */
@keyframes particle-rise {
  0% {
    transform: translateY(120%) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20%) rotate(540deg);
    opacity: 0;
  }
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-rise linear infinite;
  pointer-events: none;
}

/* Wavy divider decoration */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* Ticker / orb shimmer */
@keyframes orb-shimmer {

  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.12);
  }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(17, 136, 200, 0.32);
}

.btn-secondary {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.btn-outline-brand {
  background: transparent;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}

.btn-outline-brand:hover {
  background: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-primary {
  background: rgba(17, 136, 200, 0.08);
  color: var(--brand-secondary);
  border: 1.5px solid rgba(17, 136, 200, 0.28);
}

.btn-outline-primary:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: rgba(99, 221, 255, 0.12);
  color: var(--brand-secondary);
  border: 1.5px solid rgba(99, 221, 255, 0.45);
}

.btn-outline-accent:hover {
  background: var(--brand-accent);
  border-color: var(--brand-accent);
  color: var(--text-heading);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--gradient-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(10, 79, 134, 0.28);
}

.btn-blue:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.85rem;
}

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 100px;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.badge-primary {
  background: rgba(17, 136, 200, 0.10);
  color: var(--brand-primary);
  border: 1px solid rgba(17, 136, 200, 0.22);
}

.badge-blue {
  background: rgba(10, 79, 134, 0.08);
  color: var(--brand-secondary);
  border: 1px solid rgba(10, 79, 134, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.09);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-amber {
  background: rgba(99, 221, 255, 0.14);
  color: var(--brand-secondary);
  border: 1px solid rgba(99, 221, 255, 0.34);
}

.badge-accent {
  background: rgba(99, 221, 255, 0.14);
  color: var(--brand-secondary);
  border: 1px solid rgba(99, 221, 255, 0.34);
}

.badge-teal {
  background: rgba(53, 182, 230, 0.10);
  color: var(--brand-teal);
  border: 1px solid rgba(53, 182, 230, 0.24);
}

/* ── Card ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ── Section Label ── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
}

.section-label::before {
  content: '';
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--gradient-brand);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  width: 100%;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    height: 60px;
  }
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

@media (max-width: 480px) {
  .navbar-logo-img {
    height: 42px;
  }
}

.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 12px rgba(17, 136, 200, 0.28));
}

.navbar-logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.navbar-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-heading);
}

.navbar-logo-text span {
  color: var(--brand-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--brand-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--brand-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(17, 136, 200, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 999px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger:hover {
  border-color: rgba(17, 136, 200, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }
}

.mobile-nav {
  display: flex;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

@media (max-width: 480px) {
  .mobile-nav {
    top: 60px;
  }
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 12px 4px;
  border-bottom: 1px solid rgba(17, 136, 200, 0.10);
  transition: var(--transition);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--brand-primary);
  padding-left: 8px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  width: 100%;
}

.hero-circle-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1.5px solid rgba(17, 136, 200, 0.10);
  top: -180px;
  right: -180px;
  pointer-events: none;
  animation: ring-pulse 10s ease-in-out infinite;
}

.hero-circle-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 79, 134, 0.09);
  bottom: 40px;
  left: -90px;
  pointer-events: none;
  animation: ring-pulse 13s ease-in-out infinite 2s;
}

.hero-circle-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1.5px solid rgba(99, 221, 255, 0.12);
  top: 40%;
  right: 10%;
  pointer-events: none;
  animation: ring-pulse 9s ease-in-out infinite 1s;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 40px 20px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 136, 200, 0.08);
  border: 1px solid rgba(17, 136, 200, 0.18);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.35;
    transform: scale(1.6);
  }
}

.hero h1 {
  margin-bottom: 22px;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-body);
  max-width: 580px;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  max-width: 720px;
  margin: 64px auto 0;
}

.hero-stat {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================
   TRUST BAR
   ============================ */
.trust-bar {
  background: var(--text-heading);
  padding: 18px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% 50%, rgba(99, 221, 255, 0.16) 0%, transparent 70%);
  animation: orb-shimmer 6s ease-in-out infinite;
}

.trust-bar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.trust-item svg {
  color: var(--brand-accent);
  flex-shrink: 0;
}

/* ============================
   COURSES GRID
   ============================ */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

@media (max-width: 1100px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xs);
}

.course-card:hover {
  border-color: rgba(17, 136, 200, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.course-card-header {
  padding: 28px 28px 18px;
}

.course-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.course-card h3 {
  font-size: 1.1rem;
  margin-bottom: 9px;
}

.course-card p {
  font-size: 0.88rem;
}

.course-card-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  background: var(--bg-alt);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.meta-item i {
  color: var(--brand-primary);
}

.course-card-footer {
  padding: 16px 28px 24px;
  margin-top: auto;
}

/* ============================
   FEATURES GRID
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.feature-item:hover {
  border-color: rgba(17, 136, 200, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(17, 136, 200, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.feature-item h4 {
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.87rem;
}

/* ============================
   ABOUT
   ============================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-main-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-icon-big {
  font-size: 3.5rem;
  margin-bottom: 14px;
  display: block;
}

.about-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.about-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.about-mini-card .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brand-primary);
}

.about-mini-card .lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.about-content p {
  margin-bottom: 18px;
}

.about-points {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(17, 136, 200, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-primary);
  font-size: 0.85rem;
  margin-top: 2px;
}

.about-point-text h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}

.about-point-text p {
  font-size: 0.85rem;
  margin: 0;
}

/* ============================
   MODULE TIMELINE
   ============================ */
.module-timeline {
  display: flex;
  flex-direction: column;
}

.module-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
  padding-bottom: 28px;
}

.module-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 38px;
  top: 52px;
  bottom: -4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-primary), rgba(17, 136, 200, 0.08));
  z-index: 0;
}

.module-week {
  text-align: center;
  flex-shrink: 0;
}

.module-week-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2.5px solid var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.64rem;
  color: var(--brand-primary);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.module-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.module-body:hover {
  border-color: rgba(17, 136, 200, 0.24);
  box-shadow: var(--shadow-md);
}

.module-body h4 {
  margin-bottom: 7px;
}

.module-body p {
  font-size: 0.87rem;
  margin-bottom: 12px;
}

.module-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.module-topic {
  background: rgba(17, 136, 200, 0.08);
  border: 1px solid rgba(17, 136, 200, 0.20);
  border-radius: 100px;
  padding: 3px 11px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.cta-box {
  background: var(--text-heading);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

@media (max-width: 640px) {
  .cta-box {
    padding: 48px 24px;
  }
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(17, 136, 200, 0.12);
  animation: orb-shimmer 7s ease-in-out infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(99, 221, 255, 0.12);
  animation: orb-shimmer 9s ease-in-out infinite 2s;
}

.cta-box h2 {
  margin-bottom: 14px;
  color: #fff;
}

.cta-box>p {
  max-width: 520px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.72);
}

.cta-box .cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.cta-box .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.cta-box .btn-secondary:hover {
  color: #fff;
  border-color: rgba(99, 221, 255, 0.7);
  background: rgba(99, 221, 255, 0.12);
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.testimonial-stars {
  color: var(--brand-secondary);
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.testimonial-text {
  font-size: 0.9rem;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ============================
   FAQ
   ============================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}

.faq-item.open {
  border-color: rgba(17, 136, 200, 0.32);
  box-shadow: 0 18px 44px rgba(17, 136, 200, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  text-align: left;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-heading);
  cursor: pointer;
  background: none;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 0;
  outline: 0;
}

.faq-question:hover,
.faq-question:focus-visible {
  color: var(--brand-primary);
  background: rgba(17, 136, 200, 0.04);
}

.faq-question:active {
  background: rgba(17, 136, 200, 0.06);
}

.faq-list .faq-item.open .faq-question,
.faq-list .faq-item.open .faq-question:hover,
.faq-list .faq-item.open .faq-question:focus-visible,
.faq-list .faq-item.open .faq-question:active {
  background: linear-gradient(135deg, rgba(17, 136, 200, 0.10), rgba(99, 221, 255, 0.08)) !important;
  color: var(--brand-primary) !important;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(17, 136, 200, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-primary);
  position: relative;
  transition: var(--transition);
}

/* Hide the raw text character — we draw the + with CSS */
.faq-icon .faq-icon-char {
  display: none;
}

/* Horizontal bar of the + */
.faq-icon::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

/* Vertical bar of the + */
.faq-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
  transition: var(--transition);
}

.faq-list .faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--brand-primary) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(17, 136, 200, 0.24);
}

.faq-list .faq-item.open .faq-icon .faq-icon-char {
  transform: translateY(0);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 22px;
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 22px 20px;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(17, 136, 200, 0.06);
  animation: orb-shimmer 10s ease-in-out infinite;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.footer-brand p {
  font-size: 0.88rem;
  margin: 18px 0 24px;
  max-width: 280px;
  color: var(--text-body);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--brand-primary);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--brand-primary);
}

/* ============================
   COURSE DETAIL PAGE
   ============================ */
.course-hero {
  padding: 140px 0 80px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.course-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 30%, rgba(17, 136, 200, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 92% 70%, rgba(99, 221, 255, 0.10) 0%, transparent 50%);
}

.course-hero-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .course-hero-split {
    grid-template-columns: 1fr;
  }
}

.course-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.course-hero-breadcrumb a {
  color: var(--brand-primary);
  font-weight: 600;
}

.course-hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.course-hero h1 {
  margin-bottom: 18px;
}

.course-hero-desc {
  font-size: 1.02rem;
  margin-bottom: 26px;
}

.course-highlights-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.course-highlight {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.87rem;
  color: var(--text-body);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
}

.course-highlight svg {
  color: var(--brand-primary);
}

.course-sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: sticky;
  top: 120px;
  box-shadow: var(--shadow-sm);
  color: var(--text-body);
}

@media (max-width: 900px) {
  .course-sidebar-card {
    position: static;
  }
}

.course-sidebar-card .side-desc {
  font-size: 0.87rem;
  margin-bottom: 24px;
}

.side-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 26px;
}

.side-feature {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.side-feature-icon {
  color: var(--brand-primary);
}

/* ============================
   COURSES LIST PAGE
   ============================ */
.courses-page-hero {
  padding: 140px 0 72px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.courses-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 50% 0%, rgba(17, 136, 200, 0.10) 0%, transparent 60%);
}

.courses-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-btn:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.filter-btn.active {
  background: var(--brand-primary);
  color: #fff;
  border-color: var(--brand-primary);
}

/* ── Course Detail Block (New Classes) ── */
.course-detail-block {
  margin-bottom: 80px;
}

.course-detail-block.is-hidden {
  display: none;
}

.course-detail-block.filter-highlight {
  animation: filterReveal 0.38s ease;
}

@keyframes filterReveal {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}

.course-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 992px) {
  .section-header {
    grid-template-columns: 1fr;
  }

  .section-header>.btn,
  .section-header>a.btn,
  .section-header>button.btn {
    justify-self: start;
    width: auto;
  }

  .course-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
}

.course-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .course-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .course-feature-grid {
    grid-template-columns: 1fr;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 72px;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================
   MODAL
   ============================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 23, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 540px) {
  .modal-box {
    padding: 28px 20px;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--brand-primary);
  color: #fff;
}

.modal-box h3 {
  margin-bottom: 4px;
}

.modal-box>p {
  font-size: 0.87rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 0.77rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-heading);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.91rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(17, 136, 200, 0.14);
  background: var(--bg-card);
}

.form-group textarea {
  resize: vertical;
  min-height: 85px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.10s;
}

.delay-2 {
  transition-delay: 0.20s;
}

.delay-3 {
  transition-delay: 0.30s;
}

.delay-4 {
  transition-delay: 0.40s;
}

.delay-5 {
  transition-delay: 0.50s;
}

/* ── Utilities ── */
.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

/* ── orb shimmer shared ── */
@keyframes orb-shimmer {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.15);
  }
}

/* ============================
   FULL WIDTH OVERRIDES
   ============================ */
section,
nav,
footer,
.trust-bar,
.hero,
.wave-divider {
  width: 100%;
}

/* inner containers go full-width on small screens */
@media (max-width: 480px) {
  .section {
    padding: 68px 0;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    border-radius: 0;
  }
}

@media (max-width: 1280px) {
  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.87rem;
  }
}

@media (max-width: 992px) {
  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero-content {
    padding: 32px 20px;
  }

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

  .hero-stat {
    min-width: 160px;
  }

  .trust-bar-inner {
    gap: 20px;
    padding: 0 20px;
  }

  .cta-box {
    padding: 64px 34px;
  }

  .course-hero,
  .courses-page-hero {
    padding: 40px 0 !important;
  }

  .course-highlights-row {
    gap: 14px;
  }

  .about-main-card {
    padding: 28px;
  }

  .feature-item,
  .testimonial-card,
  .card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero-cta-group,
  .cta-box .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn,
  .cta-box .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    margin-top: 40px;
  }

  .hero-stat {
    min-width: 50%;
    border-right: 1px solid var(--border);
  }

  .hero-stat:nth-child(2n) {
    border-right: none;
  }

  .hero-stat:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .trust-item {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .course-card-header,
  .course-card-meta,
  .course-card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .course-card-meta {
    gap: 10px;
  }

  .about-cards-row {
    grid-template-columns: 1fr 1fr;
  }

  .module-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }

  .module-item:not(:last-child)::after {
    left: 26px;
  }

  .module-week-badge {
    width: 46px;
    height: 46px;
    font-size: 0.58rem;
  }


  .course-highlight,
  .side-feature {
    font-size: 0.84rem;
  }

  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================
   EVENTS PAGE
   ============================ */
.events-hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.events-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.events-stat-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 136, 200, 0.12);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(10px);
}

.events-stat-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 6px;
}

.events-stat-label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.event-program-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-program-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
}

.event-program-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  min-height: 84px;
}

.event-program-kicker {
  min-height: 34px;
  margin-bottom: 14px;
}

.event-program-summary {
  font-size: 0.96rem;
  margin-bottom: 22px;
  min-height: 94px;
}

.event-program-card .event-info-box:last-child {
  margin-top: auto;
}

.event-program-card .event-info-box:first-of-type {
  min-height: 112px;
}

.event-program-card--foundation {
  background: linear-gradient(180deg, rgba(99, 221, 255, 0.10) 0%, rgba(255, 255, 255, 1) 40%);
  border-color: rgba(17, 136, 200, 0.18);
}

.event-program-card--foundation .event-info-box {
  background: linear-gradient(180deg, rgba(99, 221, 255, 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-color: rgba(17, 136, 200, 0.12);
}

.foundation-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(99, 221, 255, 0.18);
  border: 1px solid rgba(17, 136, 200, 0.16);
  color: var(--brand-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.foundation-ribbon i {
  color: var(--brand-primary);
  font-size: 0.78rem;
}

.event-info-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(17, 136, 200, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  border: 1px solid rgba(17, 136, 200, 0.12);
  margin-bottom: 18px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  min-height: 102px;
}

.event-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}

.event-list i {
  color: var(--brand-primary);
  margin-top: 4px;
}

.price-stack {
  display: grid;
  gap: 12px;
}

.event-program-card--premium {
  background: linear-gradient(180deg, rgba(8, 31, 54, 0.98) 0%, rgba(10, 79, 134, 0.96) 100%);
  border-color: rgba(99, 221, 255, 0.16);
  box-shadow: 0 18px 40px rgba(10, 79, 134, 0.18);
  color: rgba(255, 255, 255, 0.84);
}

.event-program-card--premium::before {
  background: linear-gradient(135deg, #081f36 0%, #1188c8 65%, #63ddff 100%);
}

.event-program-card--premium h3,
.event-program-card--premium h4,
.event-program-card--premium p {
  color: inherit;
}

.event-program-card--premium .event-info-box {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.event-program-card--premium .price-item {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.event-program-card--premium .event-list li,
.event-program-card--premium .price-label {
  color: rgba(255, 255, 255, 0.92);
}

.event-program-card--premium .price-value {
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.event-program-card--premium .price-value small {
  color: rgba(255, 255, 255, 0.82);
}

.event-program-card--premium .event-info-box h4,
.event-program-card--premium .price-label i {
  color: #fff;
}

.event-program-card--premium .badge-blue {
  background: rgba(255, 255, 255, 0.10);
  color: var(--brand-accent);
  border-color: rgba(255, 255, 255, 0.14);
}

.event-program-card--premium .badge-primary,
.event-program-card--premium .badge-teal,
.event-program-card--premium .badge-accent {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.premium-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(8, 31, 54, 0.96) 0%, rgba(17, 136, 200, 0.96) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(10, 79, 134, 0.18);
  white-space: nowrap;
}

.premium-ribbon i {
  color: var(--brand-accent);
  font-size: 0.78rem;
}

.events-program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid rgba(17, 136, 200, 0.12);
}

.price-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.price-label i {
  color: var(--brand-primary);
}

.price-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--text-heading);
  text-align: right;
}

.price-value small {
  display: block;
  margin-top: 3px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-muted);
}

.events-band {
  background: var(--text-heading);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}

.events-band::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  top: -120px;
  right: -80px;
  background: rgba(99, 221, 255, 0.14);
}

.events-band>* {
  position: relative;
  z-index: 1;
}

.events-band-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.events-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.events-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.events-subject-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.events-subject-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(233, 244, 250, 0.88) 100%);
  border: 1px solid rgba(17, 136, 200, 0.12);
  box-shadow: var(--shadow-xs);
  color: var(--text-heading);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.events-subject-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(17, 136, 200, 0.10);
  color: var(--brand-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.events-subject-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.events-subject-title {
  font-weight: 700;
  color: var(--text-heading);
}

.events-subject-desc {
  font-size: 0.84rem;
  color: var(--text-secondary);
}

.events-cta-note {
  margin-top: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.events-format-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

.events-format-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.events-format-card--online {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(233, 244, 250, 0.95) 100%);
}

.events-format-card--offline {
  background: linear-gradient(180deg, rgba(17, 136, 200, 0.10) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(17, 136, 200, 0.24);
  box-shadow: 0 16px 34px rgba(17, 136, 200, 0.10);
}

.events-format-card--support {
  background: linear-gradient(180deg, rgba(8, 31, 54, 0.96) 0%, rgba(10, 79, 134, 0.96) 100%);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(99, 221, 255, 0.14);
}

.events-format-card--support h4,
.events-format-card--support p {
  color: inherit;
}

.events-format-card--support .feature-icon {
  background: rgba(99, 221, 255, 0.14);
  color: #fff;
}

.events-format-card--support .events-format-list li {
  color: rgba(255, 255, 255, 0.82);
}

.events-format-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-format-card--online .events-format-badge {
  background: rgba(99, 221, 255, 0.18);
  color: var(--brand-secondary);
}

.events-format-card--offline .events-format-badge {
  background: rgba(17, 136, 200, 0.14);
  color: var(--brand-secondary);
}

.events-format-card--support .events-format-badge {
  background: rgba(255, 255, 255, 0.10);
  color: var(--brand-accent);
}

.events-format-lead {
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.events-format-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.events-format-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}

.events-format-list i {
  color: var(--brand-primary);
  margin-top: 4px;
}

.events-support-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.events-support-card {
  position: relative;
  min-height: 100%;
}

.events-support-card--fdp {
  background: linear-gradient(180deg, rgba(17, 136, 200, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(17, 136, 200, 0.22);
}

.events-support-card--languages {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(233, 244, 250, 0.95) 100%);
}

.events-support-card--subjects {
  background: linear-gradient(180deg, rgba(8, 31, 54, 0.96) 0%, rgba(10, 79, 134, 0.96) 100%);
  border-color: rgba(99, 221, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.events-support-card--subjects h4,
.events-support-card--subjects p {
  color: inherit;
}

.events-support-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-support-card--fdp .events-support-badge {
  background: rgba(17, 136, 200, 0.12);
  color: var(--brand-secondary);
}

.events-support-card--languages .events-support-badge {
  background: rgba(99, 221, 255, 0.18);
  color: var(--brand-secondary);
}

.events-support-card--subjects .events-support-badge {
  background: rgba(255, 255, 255, 0.10);
  color: var(--brand-accent);
}

.events-support-lead {
  font-size: 0.92rem;
  margin-bottom: 14px;
}

.events-support-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.events-support-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}

.events-support-list i {
  color: var(--brand-primary);
  margin-top: 4px;
}

.events-support-card--subjects .events-support-list li {
  color: rgba(255, 255, 255, 0.82);
}

.events-support-card--subjects .events-support-list i {
  color: var(--brand-accent);
}

@media (max-width: 992px) {

  .events-stat-grid,
  .events-subject-grid,
  .events-band-grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-format-grid {
    grid-template-columns: 1fr;
  }

  .events-support-grid {
    grid-template-columns: 1fr;
  }

  .events-program-grid {
    grid-template-columns: 1fr !important;
  }

  .event-program-head,
  .event-program-summary,
  .event-program-card .event-info-box:first-of-type,
  .event-list {
    min-height: 0;
  }
}

@media (max-width: 640px) {

  .events-stat-grid,
  .events-subject-grid,
  .events-band-grid {
    grid-template-columns: 1fr;
  }

  .events-hero-actions,
  .cta-box .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .events-hero-actions .btn,
  .cta-box .cta-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .events-stat-card,
  .event-info-box,
  .events-subject-card {
    padding: 16px;
  }

  .event-program-head,
  .price-item {
    align-items: flex-start;
  }

  .event-program-head {
    flex-direction: column;
  }

  .price-item {
    grid-template-columns: 1fr;
  }

  .price-value {
    text-align: left;
  }

  .event-program-head,
  .event-program-summary,
  .event-program-card .event-info-box:first-of-type,
  .event-list {
    min-height: 0;
  }

  .events-band {
    padding: 28px 22px;
  }

  .events-subject-card {
    gap: 12px;
  }

  .events-subject-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }
}

/* ============================
   FINAL LANDING SYNC OVERRIDES
   Keep this block last.
   ============================ */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: #ffffff;
}

.navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.72) !important;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.navbar-inner {
  height: 72px;
  max-width: none;
  padding: 0 32px;
}

.navbar-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav-links {
  gap: clamp(18px, 2vw, 32px);
}

.nav-links a {
  color: #374151;
  font-size: 0.84rem;
  font-weight: 600;
}

.nav-links a::after {
  height: 2px;
  bottom: -8px;
  background: #1594d2;
}

.nav-links a:hover,
.nav-links a.active {
  color: #1594d2;
}

.mobile-nav {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
}

.hero,
.course-hero,
.courses-page-hero {
  background-color: #051220 !important;
  background-image:
    linear-gradient(90deg, rgba(5, 18, 32, 0.96) 0%, rgba(7, 23, 40, 0.88) 38%, rgba(7, 23, 40, 0.46) 66%, rgba(7, 23, 40, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 23, 40, 0.18) 0%, rgba(5, 18, 32, 0.5) 100%),
    url("../testimony/mentoring_session.png") !important;
  background-size: cover !important;
  background-position: 74% center !important;
  color: #ffffff;
}

.hero {
  min-height: calc(100svh - 72px);
  padding-top: 72px;
}

.course-hero,
.courses-page-hero {
  padding: 50px 0 !important;
}

.hero-circle-1,
.hero-circle-2,
.hero-circle-3,
.course-hero-bg,
.courses-page-hero-bg {
  display: none !important;
}

.hero h1,
.course-hero h1,
.courses-page-hero h1,
.courses-page-hero h2 {
  color: #ffffff;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.hero p,
.hero-sub,
.course-hero-desc,
.course-highlight,
.course-hero-breadcrumb,
.courses-page-hero p {
  color: rgba(241, 245, 249, 0.9) !important;
}

.course-hero-breadcrumb a,
.hero-eyebrow,
.course-highlight svg {
  color: #43c0e8;
}

.gradient-text {
  background: none !important;
  color: #43c0e8 !important;
  -webkit-text-fill-color: currentColor !important;
}

.hero-eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(67, 192, 232, 0.32);
}

.hero-eyebrow .dot {
  background: #43c0e8;
}

.hero-stats,
.events-stat-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-stat {
  border-color: rgba(255, 255, 255, 0.14);
}

.hero-stat-num,
.events-stat-value {
  color: #ffffff;
}

.hero-stat-label,
.events-stat-label {
  color: rgba(241, 245, 249, 0.78);
}

.btn {
  border-radius: 8px;
}

.btn-primary {
  background: #1594d2;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(21, 148, 210, 0.22);
}

.btn-primary:hover {
  background: #0ea5e9;
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(21, 148, 210, 0.28);
}

.btn-secondary,
.btn-outline-primary,
.btn-outline-brand {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.86);
  color: #ffffff;
}

.section .btn-secondary,
.section .btn-outline-primary,
.section .btn-outline-brand,
.card .btn-secondary,
.card .btn-outline-primary,
.card .btn-outline-brand,
.course-card .btn-secondary,
.course-card .btn-outline-primary,
.course-card .btn-outline-brand {
  border-color: #1594d2;
  color: #1594d2;
  background: transparent;
}

.btn-secondary:hover,
.btn-outline-primary:hover,
.btn-outline-brand:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0e3a54;
  transform: translateY(-3px);
}

.section .btn-secondary:hover,
.section .btn-outline-primary:hover,
.section .btn-outline-brand:hover,
.card .btn-secondary:hover,
.card .btn-outline-primary:hover,
.card .btn-outline-brand:hover,
.course-card .btn-secondary:hover,
.course-card .btn-outline-primary:hover,
.course-card .btn-outline-brand:hover {
  background: #1594d2;
  border-color: #1594d2;
  color: #ffffff;
}

.card,
.course-card,
.feature-item,
.course-sidebar-card,
.event-info-box {
  border-radius: 12px;
  border-color: rgba(226, 232, 240, 0.86);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}

.card:hover,
.course-card:hover,
.feature-item:hover {
  border-color: rgba(21, 148, 210, 0.32);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

.trust-bar {
  background: #0e3a54;
}

footer {
  background: #0e3a54 !important;
  border-top: 0;
  color: #ffffff;
}

footer::before {
  display: none;
}

footer h5,
footer .footer-col h5 {
  color: #ffffff;
}

footer p,
footer .footer-brand p,
footer .footer-bottom p,
footer .footer-col ul li a,
footer .footer-bottom-links a {
  color: rgba(226, 232, 240, 0.78);
}

footer .footer-col ul li a:hover,
footer .footer-bottom-links a:hover,
footer .social-btn:hover {
  color: #43c0e8;
}

footer .social-btn {
  border-color: rgba(226, 232, 240, 0.28);
  color: rgba(226, 232, 240, 0.78);
}

footer .social-btn:hover {
  border-color: #43c0e8;
}

footer .footer-bottom {
  border-top-color: rgba(226, 232, 240, 0.16);
}

@media (max-width: 768px) {
  .navbar-inner {
    padding: 0 20px;
  }

  .hero,
  .course-hero,
  .courses-page-hero {
    background-position: 68% center !important;
  }
}

@media (max-width: 480px) {
  .navbar-inner {
    height: 64px;
  }

  .navbar-logo-img {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: 64px;
    max-height: calc(100vh - 64px);
  }
}
/* ============================
   ASSOL PAGE-SPECIFIC LANDING SYNC
   ============================ */
footer .navbar-logo-img {
  width: 140px;
  height: 50px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-head {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle {
  color: #374151;
  font-size: 0.72rem;
  transition: var(--transition);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  color: #334155;
  font-size: 0.86rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(21, 148, 210, 0.12);
  color: #0e3a54;
}

.mobile-nav-group {
  border-bottom: 1px solid rgba(17, 136, 200, 0.10);
}

.mobile-nav-group > a {
  border-bottom: 0;
}

.mobile-nav-submenu {
  display: grid;
  gap: 4px;
  padding: 0 0 10px 14px;
}

.mobile-nav-submenu a {
  padding: 7px 4px;
  font-size: 0.9rem;
  color: #64748b;
  border-bottom: 0;
}

.events-fdp-shell {
  margin-top: -68px;
  padding: clamp(42px, 6vw, 76px);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(5, 18, 32, 0.96) 0%, rgba(7, 23, 40, 0.84) 52%, rgba(7, 23, 40, 0.56) 100%),
    url("../testimony/mentoring_session.png");
  background-size: cover;
  background-position: 74% center;
  color: #ffffff;
  overflow: hidden;
}

.events-fdp-shell h2,
.events-fdp-shell h3,
.events-fdp-shell p {
  color: #ffffff;
}

.events-fdp-shell .events-fdp-lead,
.events-fdp-shell .events-fdp-intro-text {
  color: rgba(241, 245, 249, 0.86);
}

.events-fdp-shell .events-fdp-intro-band,
.events-fdp-shell .events-fdp-stat-card,
.events-fdp-shell .events-fdp-card {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

/* Landing header/footer shared across Assol pages */
#mainHeader,
#mobileNav,
footer {
  font-family: 'Inter', sans-serif;
}

#mainHeader {
  color: #0e3a54;
}

#mainHeader .bg-primary,
#mobileNav .bg-primary {
  background-color: #0e3a54 !important;
}

#mainHeader .text-primary,
#mobileNav.text-primary,
#mobileNav .text-primary {
  color: #0e3a54 !important;
}

#mainHeader .bg-accent,
#mobileNav .bg-accent {
  background-color: #1594d2 !important;
}

#mainHeader .text-accent,
#mobileNav .text-accent {
  color: #1594d2 !important;
}

#mainHeader .hover\:bg-sky-500:hover,
#mobileNav .hover\:bg-sky-500:hover {
  background-color: #0ea5e9 !important;
}

#mainHeader .hover\:text-accent:hover,
#mobileNav .hover\:text-accent:hover {
  color: #1594d2 !important;
}

footer.bg-primary {
  background-color: #0e3a54 !important;
  padding-top: 3.5rem !important;
  padding-bottom: 1rem !important;
}

footer.bg-primary > div > .grid {
  margin-bottom: 2rem !important;
  gap: 2rem !important;
}

footer.bg-primary h4 {
  margin-bottom: 1.25rem !important;
}

footer.bg-primary img {
  margin-bottom: 1.25rem !important;
}

footer.bg-primary p {
  margin-bottom: 1.25rem !important;
}

footer.bg-primary ul {
  gap: 0.85rem !important;
}

footer.bg-primary ul.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 1rem !important;
}

footer.bg-primary .pt-8.border-t {
  padding-top: 1rem !important;
}

footer.text-white,
footer .text-white {
  color: #ffffff !important;
}

footer .text-accent,
footer a.hover\:text-accent:hover {
  color: #1594d2 !important;
}

footer .border-accent,
footer a.hover\:border-accent:hover {
  border-color: #1594d2 !important;
}

footer .text-gray-400 {
  color: rgb(156 163 175) !important;
}

footer .text-gray-500 {
  color: rgb(107 114 128) !important;
}

footer .border-gray-600 {
  border-color: rgb(75 85 99) !important;
}

footer .border-gray-800 {
  border-color: rgb(31 41 55) !important;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e3a54;
  min-width: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 1.24rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-name span:last-child {
  color: #1594d2;
}

.brand-subtitle {
  margin-top: 5px;
  color: #64748b;
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.announcement-bar {
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.announcement-bar::before,
.announcement-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  z-index: 2;
  pointer-events: none;
}

.announcement-bar::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
}

.announcement-bar::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, rgba(255, 255, 255, 0));
}

.announcement-track {
  display: flex;
  width: max-content;
  gap: 28px;
  animation: announcement-scroll 28s linear infinite;
  will-change: transform;
}

.announcement-bar:hover .announcement-track {
  animation-play-state: paused;
}

.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0e3a54;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1594d2;
  box-shadow: 0 0 0 4px rgba(21, 148, 210, 0.14);
}

@keyframes announcement-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.nav-menu {
  gap: clamp(0.72rem, 1vw, 1rem);
}

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 500;
  font-size: 0.82rem;
  padding: 0.35rem 0;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: #1594d2;
  outline: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #1594d2;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 300px;
  max-width: calc(100vw - 32px);
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  height: 16px;
}

.nav-dropdown-link {
  display: block;
  border-radius: 8px;
  padding: 10px 12px;
  color: #334155;
  font-size: 0.86rem;
  line-height: 1.25;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
  background: rgba(21, 148, 210, 0.12);
  color: #0e3a54;
  outline: none;
}

.nav-dropdown-link span {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 500;
}

.nav-menu .nav-dropdown:nth-last-child(-n+2) .nav-dropdown-panel {
  left: auto;
  right: 0;
  transform: translateY(10px);
}

.nav-menu .nav-dropdown:nth-last-child(-n+2):hover .nav-dropdown-panel,
.nav-menu .nav-dropdown:nth-last-child(-n+2):focus-within .nav-dropdown-panel {
  transform: translateY(0);
}

#mobileNav {
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  display: flex !important;
}

#mobileNav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.burger-active .burger-line1 {
  transform: rotate(45deg) translate(4px, 5px);
}

.burger-active .burger-line2 {
  opacity: 0;
  transform: translateX(-10px);
}

.burger-active .burger-line3 {
  transform: rotate(-45deg) translate(4px, -5px);
}

@media (max-width: 640px) {
  .brand-lockup {
    gap: 8px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-subtitle {
    margin-top: 4px;
    font-size: 0.56rem;
    letter-spacing: 0.13em;
  }
}

/* Fix for footer heading colors on pages using styles.css */
footer h4 {
  color: #ffffff !important;
}
