/* ============================================================
   MTA — Modern Technology Academy  |  Custom Stylesheet
   Theme: Modern Dark-Tech
   ============================================================ */

:root {
  --navy:      #0a192f;
  --navy-card: #112240;
  --navy-mid:  #18385f;
  --cyan:      #38bdf8;
  --cyan-dim:  #7dd3fc;
  --white:     #e6f1ff;
  --muted:     #a9bfd8;
  --border:    #2f5e92;
  --danger:    #ff6b6b;
  --font-main: 'Inter', sans-serif;
  --font-head: 'Space Grotesk', sans-serif;
}

/* ─── Base ─────────────────────────────────────────── */
body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.975rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--white);
}

.text-cyan  { color: var(--cyan) !important; }
.fw-700     { font-weight: 700 !important; }
.fw-800     { font-weight: 800 !important; }
.fw-600     { font-weight: 600 !important; }
.text-muted { color: var(--muted) !important; }

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-dim); }

/* ─── Navbar ─────────────────────────────────────────── */
.mta-navbar {
  background: rgba(10, 25, 47, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(56, 189, 248, 0.2);
  padding: 0.75rem 0;
  transition: background 0.3s;
}

.mta-navbar .navbar-brand { color: var(--white); }
.mta-navbar .nav-link {
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mta-navbar .nav-link:hover,
.mta-navbar .nav-link.active { color: var(--cyan); background: rgba(56, 189, 248, 0.09); }

.mta-dropdown {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 180px;
}
.mta-dropdown .dropdown-item {
  color: var(--muted);
  border-radius: 6px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}
.mta-dropdown .dropdown-item:hover { color: var(--cyan); background: rgba(56, 189, 248, 0.09); }

/* ─── Buttons ─────────────────────────────────────────── */
.btn-cyan {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-cyan:hover {
  background: var(--cyan-dim);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.32);
}
.btn-outline-cyan {
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-weight: 700;
  border-radius: 8px;
  background: transparent;
  transition: background 0.2s, transform 0.15s;
}
.btn-outline-cyan:hover {
  background: rgba(56, 189, 248, 0.13);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ─── Hero Section ─────────────────────────────────────── */
.mta-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2137 60%, #0a3050 100%);
  position: relative;
  overflow: hidden;
}
.mta-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.mta-hero::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10, 80, 150, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
}
.hero-headline .highlight { color: var(--cyan); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
}

/* ─── Home Simulation Lab (Inspired Layout) ─────────── */
.sim-lab-shell {
  position: relative;
  transform: perspective(1000px) rotateY(-12deg) rotateX(2deg);
  transform-origin: center;
  animation: shell-float 7s ease-in-out infinite;
  max-width: 920px;
  margin-left: auto;
}

.sim-lab-banner {
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.22), rgba(14, 165, 233, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #cdefff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}

.sim-lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sim-panel {
  background: #0a223b;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.sim-panel-head {
  background: linear-gradient(180deg, #173a5f, #102b49);
  border-bottom: 1px solid rgba(56, 189, 248, 0.24);
  color: #d9f1ff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
}

.sim-panel-body {
  padding: 0.7rem;
  min-height: 145px;
}

.panel-prompt .sim-panel-body,
.panel-input .sim-panel-body {
  min-height: 185px;
}

.terminal-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e6f7ff;
  margin-bottom: 0.6rem;
}

.terminal-feed {
  font-family: "Courier New", monospace;
  font-size: 0.73rem;
  color: #bde8ff;
  line-height: 1.45;
}

.terminal-feed p {
  margin: 0 0 6px;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.22);
}

.line-flag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.08rem 0.38rem;
  margin-right: 6px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
  vertical-align: 1px;
}

.flag-recon {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.24);
  border-color: rgba(96, 165, 250, 0.45);
}

.flag-probe {
  color: #cffafe;
  background: rgba(6, 182, 212, 0.24);
  border-color: rgba(34, 211, 238, 0.45);
}

.flag-exploit {
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.24);
  border-color: rgba(248, 113, 113, 0.45);
}

.flag-withdraw {
  color: #ffedd5;
  background: rgba(249, 115, 22, 0.25);
  border-color: rgba(251, 146, 60, 0.45);
}

.flag-reroute {
  color: #ede9fe;
  background: rgba(124, 58, 237, 0.24);
  border-color: rgba(167, 139, 250, 0.45);
}

.flag-cover {
  color: #fef9c3;
  background: rgba(202, 138, 4, 0.24);
  border-color: rgba(234, 179, 8, 0.45);
}

.flag-defend {
  color: #dcfce7;
  background: rgba(22, 163, 74, 0.24);
  border-color: rgba(74, 222, 128, 0.45);
}

.code-line {
  height: 8px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: linear-gradient(90deg, rgba(56, 189, 248, 0.38), rgba(56, 189, 248, 0.18));
  position: relative;
  overflow: hidden;
}

.code-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 35%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(2px);
  animation: sweep 2.8s linear infinite;
}

.w-95 { width: 95%; }
.w-92 { width: 92%; }
.w-90 { width: 90%; }
.w-88 { width: 88%; }
.w-84 { width: 84%; }
.w-82 { width: 82%; }
.w-60 { width: 60%; }

.bank-sim-board {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bank-card-row {
  display: flex;
  gap: 10px;
}

.bank-card {
  flex: 1;
  border: 1px solid rgba(56, 189, 248, 0.22);
  background: rgba(3, 20, 38, 0.78);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}

.bank-card.full {
  flex: 1;
}

.bank-card-label {
  font-size: 0.66rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #9fc9e6;
}

.bank-card-value {
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e5f5ff;
  margin-top: 4px;
}

.system-feed {
  border: 1px solid rgba(56, 189, 248, 0.2);
  background: #05111f;
  border-radius: 8px;
  padding: 0.55rem;
  min-height: 88px;
  max-height: 88px;
  overflow: auto;
}

.transfer-progress-wrap {
  margin-top: 2px;
}

.transfer-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.transfer-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #0ea5e9);
  transition: width 0.55s ease;
}

.test-row {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 7px;
  padding: 0.5rem;
  margin-bottom: 0.65rem;
  display: flex;
  gap: 6px;
}

.tag {
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.python-code-block {
  margin: 0;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: #05111f;
  border-radius: 8px;
  padding: 0.6rem;
  min-height: 132px;
  max-height: 132px;
  overflow: auto;
  color: #cceeff;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  line-height: 1.35;
  white-space: pre;
}

.python-code-block .py-keyword {
  color: #7dd3fc;
  font-weight: 700;
}

.python-code-block .py-library {
  color: #67e8f9;
  font-weight: 700;
}

.python-code-block .py-string {
  color: #86efac;
}

.python-code-block .py-number {
  color: #facc15;
}

.python-code-block .py-comment {
  color: #94a3b8;
  font-style: italic;
}

.output-caption {
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
  color: #9dc8e6;
  margin-bottom: 0.45rem;
}

.output-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.output-meta-row .output-caption {
  margin-bottom: 0;
}

.output-mode-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  border: 1px solid rgba(56, 189, 248, 0.38);
  background: rgba(8, 27, 48, 0.9);
  color: #d8f4ff;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.1) inset;
}

.output-mode-badge.graph {
  border-color: rgba(74, 222, 128, 0.5);
  background: rgba(6, 44, 28, 0.88);
  color: #d4ffe9;
  animation: badgePulse 1.4s ease-in-out infinite;
}

.is-hidden {
  display: none !important;
}

.output-graph-wrap {
  position: relative;
  border: 1px solid rgba(56, 189, 248, 0.16);
  background:
    radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.2), transparent 40%),
    radial-gradient(circle at 88% 20%, rgba(16, 185, 129, 0.16), transparent 42%),
    #05111f;
  border-radius: 8px;
  min-height: 132px;
  max-height: 132px;
  padding: 0.4rem;
  box-shadow: inset 0 0 24px rgba(56, 189, 248, 0.08);
  overflow: hidden;
}

.output-graph-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(56, 189, 248, 0.05) 0,
      rgba(56, 189, 248, 0.05) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.14), transparent);
  transform: translateX(-100%);
  animation: graphSweep 3.8s linear infinite;
  pointer-events: none;
}

.output-graph-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.16));
}

@keyframes badgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.12) inset;
  }
  50% {
    box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.32) inset, 0 0 10px rgba(34, 197, 94, 0.2);
  }
}

@keyframes graphSweep {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.pandas-table-wrap {
  border: 1px solid rgba(56, 189, 248, 0.16);
  background: #05111f;
  border-radius: 8px;
  overflow: auto;
  min-height: 132px;
  max-height: 132px;
}

.pandas-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
  color: #d7f0ff;
}

.pandas-table thead th {
  position: sticky;
  top: 0;
  background: #0d243f;
  border-bottom: 1px solid rgba(56, 189, 248, 0.25);
  color: #cde8ff;
  padding: 0.36rem 0.4rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.pandas-table tbody td {
  padding: 0.34rem 0.4rem;
  border-bottom: 1px solid rgba(56, 189, 248, 0.09);
  white-space: nowrap;
}

.pandas-flag {
  display: inline-block;
  border-radius: 999px;
  padding: 0.06rem 0.38rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.35px;
  border: 1px solid transparent;
}

.pandas-flag-normal {
  color: #dcfce7;
  background: rgba(22, 163, 74, 0.25);
  border-color: rgba(74, 222, 128, 0.45);
}

.pandas-flag-suspicious {
  color: #ffedd5;
  background: rgba(249, 115, 22, 0.25);
  border-color: rgba(251, 146, 60, 0.45);
}

.pandas-flag-watchlist {
  color: #ede9fe;
  background: rgba(124, 58, 237, 0.24);
  border-color: rgba(167, 139, 250, 0.45);
}

.pandas-flag-critical {
  color: #fee2e2;
  background: rgba(239, 68, 68, 0.24);
  border-color: rgba(248, 113, 113, 0.45);
}

.pandas-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.pandas-row-normal {
  background: rgba(22, 163, 74, 0.08);
}

.pandas-row-suspicious {
  background: rgba(249, 115, 22, 0.1);
}

.pandas-row-watchlist {
  background: rgba(124, 58, 237, 0.1);
}

.pandas-row-critical {
  background: rgba(239, 68, 68, 0.12);
}

.t-blue { width: 48px; background: #38bdf8; }
.t-cyan { width: 56px; background: #67e8f9; }
.t-green { width: 40px; background: #86efac; }
.t-yellow { width: 34px; background: #facc15; }
.t-purple { width: 50px; background: #c084fc; }

.result-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(56, 189, 248, 0.14);
  padding: 0.5rem;
  margin-bottom: 0.65rem;
}

.result-row i {
  font-size: 1.3rem;
}

.result-row .result-bar {
  height: 12px;
  border-radius: 99px;
  flex: 1;
}

.result-row.fail i { color: #f87171; }
.result-row.fail .result-bar { background: rgba(239, 68, 68, 0.85); }
.result-row.pass i { color: #4ade80; }
.result-row.pass .result-bar { background: rgba(34, 197, 94, 0.72); }

@keyframes sweep {
  to {
    left: 120%;
  }
}

@keyframes shell-float {
  0%, 100% {
    transform: perspective(1000px) rotateY(-12deg) rotateX(2deg) translateY(0px);
  }
  50% {
    transform: perspective(1000px) rotateY(-12deg) rotateX(2deg) translateY(-6px);
  }
}

/* ─── About Shield Showcase ─────────────────────────── */
.shield-showcase {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-orb {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.02) 62%, transparent 72%);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-orb i {
  font-size: 8rem;
  color: rgba(125, 211, 252, 0.85);
  text-shadow: 0 0 22px rgba(56, 189, 248, 0.5);
}

.shield-chip {
  position: absolute;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  background: rgba(17, 34, 64, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: #bfe8ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.chip-top-right {
  top: 34px;
  right: 24px;
}

.chip-bottom-left {
  left: 20px;
  bottom: 42px;
}

/* ─── Section Headers ─────────────────────────────────── */
.section-label {
  display: inline-block;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-divider {
  width: 50px; height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  margin: 0.75rem 0 1.5rem;
}
.section-divider.center { margin: 0.75rem auto 1.5rem; }

/* ─── Cards ─────────────────────────────────────────────── */
.mta-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  height: 100%;
}
.mta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.25);
}
.mta-card .card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.mta-card .card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; }
.mta-card .card-text { color: var(--muted); font-size: 0.9rem; }

/* Program card fee badge */
.fee-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.22);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
}

/* ─── Stats Bar ─────────────────────────────────────────── */
.stats-bar { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item .stat-number { font-size: 2rem; font-weight: 800; color: var(--cyan); }
.stat-item .stat-label  { font-size: 0.82rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Page Hero (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2137 100%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.09) 0%, transparent 70%);
  border-radius: 50%;
}

/* ─── Countdown Timer ────────────────────────────────── */
.countdown-widget {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: inline-flex;
  gap: 1.5rem;
  align-items: center;
}
.countdown-unit { text-align: center; }
.countdown-unit .num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  display: block;
}
.countdown-unit .lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.countdown-sep { font-size: 2rem; color: var(--muted); font-weight: 300; }

/* ─── Step Process ─────────────────────────────────────── */
.step-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.step-card:hover { border-color: rgba(56, 189, 248, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.step-number {
  position: absolute; top: -18px; left: 24px;
  width: 36px; height: 36px;
  background: var(--cyan);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem;
}

/* ─── Forms ─────────────────────────────────────────────── */
.mta-form .form-control,
.mta-form .form-select {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.mta-form .form-control:focus,
.mta-form .form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
  background: var(--navy-mid);
  color: var(--white);
}
.mta-form .form-control::placeholder { color: var(--muted); }
.mta-form label { font-weight: 500; font-size: 0.88rem; color: var(--muted); margin-bottom: 0.35rem; }
.mta-form .form-select option { background: var(--navy-card); }

/* ─── Timeline (Internship) ─────────────────────────────── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute; left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
.timeline-item { position: relative; margin-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute; left: -1.75rem; top: 6px;
  width: 12px; height: 12px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.16);
}
.timeline-item h6 { font-weight: 700; color: var(--cyan); }
.timeline-item p  { color: var(--muted); font-size: 0.9rem; }

/* ─── Accordions / FAQ  ─────────────────────────────────── */
.mta-accordion .accordion-item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px !important;
  margin-bottom: 0.75rem;
}
.mta-accordion .accordion-button {
  background: var(--navy-card);
  color: var(--white);
  font-weight: 600;
  border-radius: 12px !important;
}
.mta-accordion .accordion-button:not(.collapsed) { color: var(--cyan); box-shadow: none; }
.mta-accordion .accordion-button::after { filter: invert(1); }
.mta-accordion .accordion-body { color: var(--muted); font-size: 0.93rem; }

/* ─── Blog / News Cards ──────────────────────────────────── */
.blog-card img { height: 200px; object-fit: cover; border-radius: 12px 12px 0 0; }
.blog-meta { font-size: 0.78rem; color: var(--muted); }

/* ─── Testimonials ───────────────────────────────────── */
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.testimonial-card .stars { color: #ffd700; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ─── Service Cards ──────────────────────────────────── */
.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-card .svc-icon {
  font-size: 2.5rem;
  color: var(--cyan);
  margin-bottom: 1rem;
}

/* ─── CTA Band ───────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #0d2137, var(--navy-mid));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}

/* ─── Gallery Grid ───────────────────────────────────── */
.gallery-item { overflow: hidden; border-radius: 12px; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.gallery-item:hover img { transform: scale(1.06); }

/* ─── Partners Logos ─────────────────────────────────── */
.partner-logo {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-weight: 600;
  min-height: 80px;
}

/* ─── Footer ─────────────────────────────────────────── */
.mta-footer { background: #060f1e; border-top: 1px solid var(--border); }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a,
.footer-links li { color: var(--muted); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--cyan); }
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(56,189,248,0.08); }

.program-card-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid rgba(56, 189, 248, 0.16);
}

.program-detail-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

/* ─── Floating WhatsApp Button ──────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* ─── Breadcrumb ─────────────────────────────────────── */
.mta-breadcrumb .breadcrumb-item a { color: var(--cyan); }
.mta-breadcrumb .breadcrumb-item.active { color: var(--muted); }
.mta-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--border); }

/* ─── Responsive helpers ───────────────────────────── */
@media (max-width: 768px) {
  .hero-headline { font-size: 2rem; }
  .countdown-widget { flex-wrap: wrap; justify-content: center; }
  .sim-lab-shell {
    transform: none;
  }
  .bank-card-row {
    flex-direction: column;
  }
  .shield-orb {
    width: 260px;
    height: 260px;
  }
  .shield-orb i {
    font-size: 6rem;
  }
}
