/* =====================================================
   ERP Basis — Navy Blue Premium Theme
   Palette: Navy · White · Amber Yellow · Emerald Green
   Fonts: Poppins · JetBrains Mono
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&family=Bricolage+Grotesque:wght@400;600;700;800&display=swap');

:root {
  /* Obsidian Basis */
  --obsidian:    #020617;
  --sapphire:    #006cff; /* Ultra Vibrant Sapphire */
  --sapphire-dk: #004ecc;
  --sapphire-lt: #eff6ff;

  /* Radiance Tone */
  --radiance:    #facc15; /* Vibrant Gold/Yellow */
  --radiance-dk: #eab308;
  --radiance-lt: #fefce8;
  --radiance-gl: rgba(250, 204, 21, 0.25);

  /* Semantic */
  --emerald:     #10b981;
  --emerald-lt:  #f0fdf4;
  --crimson:     #ef4444;
  --ruby-lt:     #fff1f2;
  --indigo:      #6366f1;
  --indigo-lt:   #eef2ff;
  --teal:        #14b8a6;
  --teal-lt:     #f0fdfa;

  /* Surfaces */
  --ink:         #0f172a;
  --body:        #334155;
  --subtle:      #64748b;
  --border:      #e2e8f0;
  --surface:     #f8fafc;
  --white:       #ffffff;

  /* Elevation */
  --glass:       rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  /* Elite Gradients */
  --grad-hero:    radial-gradient(circle at top right, #0a192f 0%, #020617 100%);
  --grad-btn:     linear-gradient(135deg, #006cff, #0056cc);
  --grad-gold:    linear-gradient(135deg, #facc15, #eab308);
  --grad-emerald: linear-gradient(135deg, #10b981, #059669);
  --grad-sapphire: linear-gradient(135deg, #006cff 0%, #002b66 100%);

  /* Radius */
  --r:      10px;
  --r-lg:   18px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,22,40,.08);
  --shadow:    0 3px 12px rgba(10,22,40,.1), 0 1px 4px rgba(10,22,40,.06);
  --shadow-lg: 0 8px 32px rgba(10,22,40,.12), 0 2px 8px rgba(10,22,40,.06);
  --shadow-xl: 0 20px 60px rgba(10,22,40,.18);

  /* Transitions */
  --ease: cubic-bezier(.25,.46,.45,.94);
  --t:    .25s var(--ease);

  /* New: Grid Pattern */
  --grid-size: 30px;
  --grid-color: rgba(0, 108, 255, 0.07); /* Subtle Navy-Blue Grid */
}

/* ─── UTILITIES ───────────────────────────────────── */
.bg-grid {
  background-image: 
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
}

.text-bright { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }

.lighting-blue-hover { transition: var(--t); }
.lighting-blue-hover:hover {
  background: var(--sapphire) !important;
  box-shadow: 0 8px 32px rgba(0, 108, 255, 0.4);
  color: #fff !important;
}

/* ─── RESET ───────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box }
html { scroll-behavior: smooth }
html, body { 
  width: 100%; overflow-x: hidden;
  position: relative;
  line-height: 1.75;
}
body {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 15px; color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5 {
  font-family: 'Bricolage Grotesque', 'Poppins', sans-serif;
  font-weight: 700; color: var(--ink);
  line-height: 1.15; letter-spacing: -.025em;
}
a { text-decoration: none }
p { margin-bottom: 0 }

/* ─── TOP ANNOUNCEMENT BAR ───────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, #001a4d, #004ecc, #001a4d);
  background-size: 200% auto;
  animation: shimmer-bar 8s linear infinite;
  padding: 8px 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.95); font-weight: 600;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  overflow: hidden;
}
.announce-bar marquee {
  flex: 1;
  display: flex;
  align-items: center;
}
@keyframes shimmer-bar {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.announce-badge {
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid rgba(250, 204, 21, 0.2);
  padding: 2px 8px; border-radius: 6px;
  font-size: 0.65rem; font-weight: 800; color: var(--radiance);
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-flex; align-items: center; gap: 5px;
}
.announce-badge .dot-live {
  width: 6px; height: 6px; background: #fbbf24; border-radius: 50%;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
  animation: pulse-live 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}
.announce-bar a, 
.announce-bar a:visited, 
.announce-bar a:focus { 
  color: var(--radiance); 
  text-decoration: none; 
  white-space: nowrap;
  font-weight: 700; 
  border-bottom: 1.5px solid rgba(250, 204, 21, 0.3); 
  transition: var(--t); 
  flex-shrink: 0;
}
.announce-bar a:hover { color: #fff; border-bottom-color: #fff; }
.announce-bar a:active { color: #f43f5e; transform: scale(0.98); }

/* Offer Chips */
.offer-chip.chip-sapphire { background: var(--sapphire-lt); color: var(--sapphire); border-color: rgba(0, 108, 255, 0.1) !important; }

.offer-chip.chip-gold { background: var(--radiance-lt); color: var(--radiance-dk); border-color: rgba(234, 179, 8, 0.1) !important; }
.offer-chip.chip-emerald { background: var(--emerald-lt); color: var(--emerald); border-color: rgba(16, 185, 129, 0.1) !important; }
.offer-chip.chip-crimson { background: rgba(244, 63, 94, 0.1); color: #f43f5e; border-color: rgba(244, 63, 94, 0.1) !important; }

/* ─── COLOR SPECTRUM UTILITIES ─── */
.bg-brand-lt { background: var(--sapphire-lt) !important; }
.text-brand { color: var(--sapphire) !important; }
.bg-emerald-lt { background: var(--emerald-lt) !important; }
.text-emerald { color: var(--emerald) !important; }
.bg-radiance-lt { background: var(--radiance-lt) !important; }
.text-radiance { color: var(--radiance-dk) !important; }
.bg-ink { background: var(--ink) !important; }
.bg-surface-alt { background: #fdfdfe !important; }
.bg-indigo-lt { background: var(--indigo-lt) !important; }
.text-indigo { color: var(--indigo) !important; }
.bg-ruby-lt { background: var(--ruby-lt) !important; }
.text-ruby { color: var(--crimson) !important; }
.bg-teal-lt { background: var(--teal-lt) !important; }
.text-teal { color: var(--teal) !important; }

/* ─── Elite Professional Offers (Glassmorphism) ─── */
.offer-adv-pro {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s var(--ease);
  z-index: 1;
  animation: float-adv 4s ease-in-out infinite;
}

@keyframes float-adv {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.offer-adv-pro::before {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  animation: sweep-pro 3.5s infinite;
  z-index: 1;
}

@keyframes sweep-pro {
  0% { left: -150%; }
  25% { left: 150%; }
  100% { left: 150%; }
}

.offer-adv-pro.pro-ramadan { 
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.85) 0%, rgba(5, 150, 105, 0.6) 100%); 
  color: #fff; 
  border-color: rgba(250, 204, 21, 0.6) !important;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3), 0 10px 40px rgba(6, 78, 59, 0.4);
}

.offer-adv-pro.pro-sapphire { 
  background: linear-gradient(135deg, rgba(0, 108, 255, 0.7) 0%, rgba(0, 43, 102, 0.5) 100%); 
  color: #fff; 
  border-color: rgba(0, 108, 255, 0.5) !important;
  box-shadow: 0 4px 20px rgba(0, 108, 255, 0.35), 0 10px 40px rgba(0, 108, 255, 0.25);
}
.offer-adv-pro.pro-gold { 
  background: rgba(234, 179, 8, 0.15); 
  color: #fff; 
  border-color: rgba(234, 179, 8, 0.35) !important;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.2), 0 10px 40px rgba(234, 179, 8, 0.15);
}
.offer-adv-pro.pro-emerald { 
  background: rgba(16, 185, 129, 0.15); 
  color: #fff; 
  border-color: rgba(16, 185, 129, 0.35) !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2), 0 10px 40px rgba(16, 185, 129, 0.15);
}
.offer-adv-pro.pro-crimson { 
  background: rgba(244, 63, 94, 0.15); 
  color: #fff; 
  border-color: rgba(244, 63, 94, 0.35) !important;
  box-shadow: 0 4px 15px rgba(244, 63, 94, 0.2), 0 10px 40px rgba(244, 63, 94, 0.15);
}

.offer-chip i {
  animation: icon-bounce 2s infinite ease-in-out;
  display: inline-block;
}

@keyframes offer-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes offer-shimmer {
  0% { transform: translateX(-150%) rotate(30deg); }
  100% { transform: translateX(150%) rotate(30deg); }
}

@keyframes icon-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 20px rgba(10,22,40,.08);
}

/* Home Page Mobile: Fixed Header (Nav + Announcement) */
@media (max-width: 991.98px) {
  .page-index .home-header-fixed {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1050;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }
  .page-index .home-header-fixed .nav {
    position: relative !important;
    border-bottom: none;
    box-shadow: none;
  }
  .page-index .home-header-fixed .announce-bar {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  /* Offset content for fixed header - perfectly tight with header bottom */
    .page-index .hero {
      padding-top: 155px !important;
    }
}

@media (max-width: 480px) {
  /* Smaller offset for smaller mobile nav (68px) */
  .page-index .hero {
    padding-top: 135px !important;
  }
}

.nav-i { display: flex; align-items: center; height: 130px; gap: 12px }
.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0 }
.logo-img-pro { 
    height: 190px; 
    width: auto; 
    margin: -4px 0; 
    transition: var(--t); 
    filter: drop-shadow(0 4px 15px rgba(0,108,255,0.2)); 
    object-fit: contain;
    position: relative;
    z-index: 10;
}
.logo-img-mob { height: 65px; width: auto; }
.logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--grad-btn);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  box-shadow: 0 4px 14px rgba(18,72,160,.35);
}
.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem; font-weight: 800; color: #020617; letter-spacing: -.02em;
  margin-left: -8px;
}
.logo-sub { 
  font-family: 'Poppins', sans-serif; font-size: .62rem; font-weight: 600; color: var(--subtle); 
  display: block; letter-spacing: .2px; margin-top: -2px; text-transform: uppercase; 
  margin-left: -8px;
}

@media (max-width: 991.98px) {
    .logo-img-pro { height: 160px !important; margin: -15px 0 !important; width: auto !important; margin-right: 0px !important; margin-left: 0 !important; }
    .logo-text { font-size: 1.1rem !important; font-weight: 800 !important; color: #020617 !important; }
    .logo-sub { font-size: 0.6rem !important; letter-spacing: 0.2px !important; margin-top: -2px !important; text-transform: uppercase !important; margin-left: -8px !important; }
    .logo { gap: 0 !important; display: flex !important; align-items: center !important; }
    .nav-i { height: 110px !important; gap: 8px !important; }
    .btn-cta { padding: 9px 20px !important; font-size: 0.85rem !important; }
}

@media (max-width: 480px) {
    .logo-img-pro { height: 90px !important; width: auto !important; }
    .logo-text { font-size: 0.95rem !important; }
    .logo-sub { font-size: 0.55rem !important; margin-left: -8px !important; }
    .logo { gap: 8px !important; }
    .nav-i { height: 95px !important; }
}

.nav-links { display: flex; list-style: none; margin: 0 0 0 2rem; padding: 0; gap: 4px }
.nav-links a {
  display: block; padding: 8px 16px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: #1e293b; border-radius: 8px; transition: var(--t); letter-spacing: .015em;
}
.nav-links a:hover { color: var(--sapphire); background: var(--sapphire-lt) }
.nav-links a.active { color: var(--sapphire); background: var(--sapphire-lt); font-weight: 700 }

.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 8px }
.btn-ghost {
  padding: 8px 16px; font-family: 'Poppins', sans-serif;
  font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.7);
  border-radius: 8px; border: 1.5px solid var(--glass-border); transition: var(--t);
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,.3); background: var(--glass) }
.btn-cta {
  padding: 6px 14px; font-family: 'Poppins', sans-serif;
  font-size: .82rem; font-weight: 700; color: var(--obsidian) !important;
  background: var(--grad-gold); border-radius: 6px;
  border: none; transition: var(--t);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 8px var(--radiance-gl);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--radiance-gl); color: var(--obsidian) !important; }

.btn-obsidian {
  padding: 5px 14px; font-family: 'Poppins', sans-serif;
  font-size: .8rem; font-weight: 700; color: #fff !important;
  background: var(--obsidian); border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1); transition: var(--t);
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-obsidian:hover { 
  background: #000; transform: translateY(-2px); 
  box-shadow: 0 8px 24px rgba(0,0,0,0.25); color: #fff !important; 
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  background: var(--grad-hero);
  padding: 85px 0 60px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 1; pointer-events: none; z-index: 1;
}

/* Page Specific Hero Layouts */
.hero-about { background: radial-gradient(circle at top right, #2e1065 0%, #020617 100%); }
.hero-about .hero-orb-1 { background: #8b5cf6; opacity: .15; }
.hero-about .hero-orb-2 { background: #7c3aed; opacity: .1; }
.hero-pricing { background: radial-gradient(circle at top right, #004ecc 0%, #020617 100%); border-bottom: none; }

.hero-services { background: radial-gradient(circle at top right, #064e3b 0%, #020617 100%); }
.hero-services .hero-orb-1 { background: var(--emerald); opacity: .15; }
.hero-services .hero-orb-2 { background: #0ea5e9; opacity: .1; }

.hero-pricing { background: radial-gradient(circle at top right, #004ecc 0%, #020617 100%); border-bottom: none; }
.hero-pricing h1 { color: #fff; }
.hero-pricing .hero-sub { color: rgba(255,255,255,0.8); }
.hero-pricing .hero-chip span { color: rgba(255,255,255,0.6); }
.hero-pricing .hero-chip { background: var(--glass); border-color: var(--glass-border); }
.hero-pricing .hero-chip .dot { background: var(--emerald); box-shadow: 0 0 10px var(--emerald); }

.hero-training { background: radial-gradient(circle at top right, #312e81 0%, #020617 100%); }
.hero-training .hero-orb-1 { background: #6366f1; opacity: .15; }
.hero-training .hero-orb-2 { background: #ec4899; opacity: .1; }

.hero-contact { background: radial-gradient(circle at top right, #1e1b4b 0%, #020617 100%); border-bottom: none; }
.hero-contact h1 { color: #fff; }
.hero-contact .hero-sub { color: rgba(255,255,255,0.8); }
.hero-contact .hero-orb-1 { background: #a78bfa; opacity: .15; }
.hero-contact .hero-orb-2 { background: #f472b6; opacity: .1; }
.hero-contact .hero-chip span { color: rgba(255,255,255,0.6); }
.hero-contact .hero-chip { background: var(--glass); border-color: var(--glass-border); }
/* HERO ACTIONS - STACKED FOR MOBILE FORMAT */
.hero-actions-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

@media (min-width: 992px) {
  .hero-actions-stacked {
    flex-direction: row;
    gap: 16px;
    margin-top: 2rem;
  }
}

.btn-hero-p-stacked, .btn-hero-s-stacked {
  padding: 7px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  width: 100%;
  max-width: 260px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .btn-hero-p-stacked, .btn-hero-s-stacked {
    width: auto;
    padding: 14px 32px;
    font-size: 1rem;
  }
}

.btn-hero-p-stacked {
  background: #0061f2; /* Vibrant Blue from user image */
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(0, 97, 242, 0.3);
}

.btn-hero-s-stacked {
  background: #facc15; /* Vibrant Amber from user image */
  color: #020617 !important;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-hero-p-stacked:hover, .btn-hero-s-stacked:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.hero-mob-image-zero {
  padding: 0;
  margin-top: -10px; /* Pull closer to header if needed */
}

.hero-mob-image-zero .hero-image-panel {
  border-radius: 24px; /* Matches user image look */
}

/* Full-Bleed Hero Utilities */
.hero-image-panel-wrap {
  position: relative;
  z-index: 5;
  padding: 20px;
}
.hero-image-panel {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 48px;
  box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.hero-image-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(2, 6, 23, 0.4));
  border-radius: 48px;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .hero-image-bleed {
    position: relative;
    right: 0;
    width: 100%;
    height: 350px;
    margin-top: 2rem;
    border-radius: 24px;
  }
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .15; pointer-events: none }
.hero-orb-1 { width: 400px; height: 400px; background: var(--sapphire); top: -100px; right: -50px; }
.hero-orb-2 { width: 300px; height: 300px; background: var(--radiance); bottom: -50px; left: -50px; opacity: .08 }
.hero-orb-3 { width: 250px; height: 250px; background: var(--sapphire); top: 20%; left: -5%; opacity: .05; filter: blur(120px); }
.hero-z { position: relative; z-index: 5 }

.hero-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 12px; margin-bottom: 2rem; backdrop-filter: blur(10px); }
.hero-chip span { font-size: .6rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.7) }
.hero-chip .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--emerald); box-shadow: 0 0 10px var(--emerald) }

/* Live Announcement Bar */
.live-bar {
  background: rgba(0, 108, 255, 0.1);
  border-bottom: 1px solid rgba(0, 108, 255, 0.1);
  padding: 8px 0;
  font-size: .8rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}
.live-badge {
  background: var(--radiance);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.live-link { color: var(--radiance); text-decoration: none; font-weight: 700; border-bottom: 1px solid transparent; transition: var(--t) }
.live-link:hover { border-bottom-color: var(--radiance); }

.hero h1 { font-size: 4rem; color: #fff; font-weight: 800; line-height: 1; letter-spacing: -.05em; margin-bottom: 0.75rem }
@media (max-width: 991.98px) { .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); } }
@media (max-width: 575.98px) { .hero h1 { font-size: 2rem !important; } }
.hero h1 .hl { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 520px; line-height: 1.6; margin-bottom: 1.5rem; font-family: 'Poppins', sans-serif }

.hero-actions { display: flex; gap: 16px; margin-top: 1rem; margin-bottom: 2.5rem; align-items: center }
.btn-hero-p { background: var(--grad-btn); color: #fff; font-weight: 700; padding: 11px 26px; border-radius: 10px; font-size: 0.92rem; transition: var(--t); box-shadow: 0 10px 25px rgba(0, 108, 255, 0.3); border: none }
.btn-hero-p:hover { transform: translateY(-2px); box-shadow: 0 15px 35px rgba(0, 108, 255, 0.45); color: #fff }
.btn-hero-s { background: var(--glass); border: 1px solid var(--glass-border); color: #fff; font-weight: 600; padding: 11px 26px; border-radius: 10px; font-size: 0.92rem; transition: var(--t) }
.btn-hero-s:hover { opacity: 0.9; }

.hero-metrics { display: flex; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.hm-n { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.25rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px }
.hm-l { font-size: .75rem; color: rgba(255,255,255,.45); text-transform: uppercase; font-weight: 700; letter-spacing: 1px }

.hero-panel { background: rgba(255,255,255,.03); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 32px; padding: 2.5rem; box-shadow: 0 32px 64px rgba(0,0,0,.35) }
.panel-head { font-family: 'JetBrains Mono', monospace; font-size: .65rem; font-weight: 700; color: var(--radiance); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.5rem }
.mod-row { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-bottom: 1px solid var(--glass-border); border-radius: 12px; transition: var(--t) }
.mod-row:last-child { border-bottom: none }
.mod-row:hover { 
  background: var(--sapphire) !important; 
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 108, 255, 0.4);
  color: #fff !important;
}
.mod-row:hover .mod-name, .mod-row:hover .mod-ico { color: #fff !important; }

.mod-ico { width: 32px; height: 32px; border-radius: 8px; background: rgba(16, 185, 129, 0.12); color: var(--emerald); display: flex; align-items: center; justify-content: center; font-size: .9rem }
.mod-name { font-size: .88rem; font-weight: 600; color: #fff; flex: 1; letter-spacing: .01em }

.mod-tag { 
  display: inline-flex; align-items: center; justify-content: center;
  height: 22px; padding: 0 10px; border-radius: 50px;
  font-size: .58rem; font-weight: 800; text-transform: uppercase; letter-spacing: .8px;
  min-width: 50px;
}
.t-live { background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.2); }
.t-new  { background: rgba(59,130,246,.15); color: #3b82f6; border: 1px solid rgba(59,130,246,.2); }
.t-hot  { background: rgba(244,63,94,.15);  color: #ef4444; border: 1px solid rgba(244,63,94,.2); }

@media (max-width: 767.98px) {
  .hero-panel { padding: 1.25rem; border-radius: 24px; }
  .panel-head { margin-bottom: 1rem; font-size: 0.55rem; }
  .mod-row { padding: 8px 10px; gap: 10px; }
  .mod-ico { width: 28px; height: 28px; font-size: 0.75rem; }
  .mod-name { font-size: 0.8rem; }
  .mod-tag { height: 18px; min-width: 42px; font-size: 0.5rem; padding: 0 6px; }
}

/* ─── TRUST BAR ───────────────────────────────────── */
.trust { 
  background: rgba(0, 108, 255, 0.04); 
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(0, 108, 255, 0.08); 
  border-bottom: 1px solid rgba(0, 108, 255, 0.05); 
  padding: 16px 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.trust-lbl { 
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; 
  color: #1e293b; margin-right: 2rem; white-space: nowrap; font-family: 'Poppins', sans-serif; 
  opacity: 0.9;
}
.trust-co { 
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.05rem; font-weight: 700; 
  color: #64748b; padding: 0 24px; transition: var(--t); opacity: 0.85; 
}
.trust-co:hover { opacity: 1; color: var(--sapphire); transform: translateY(-1px) scale(1.04); }

/* ─── SECTIONS ────────────────────────────────────── */
.sec { padding: 40px 0 }
.svc-carousel-btn-wrap { margin-top: 2rem; }
.sec-surface { background: var(--surface) }
.sec-dark { background: var(--navy-deep) }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--radiance-dk); margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}
.tag::before { content: ''; display: block; width: 14px; height: 2px; background: var(--grad-gold); border-radius: 2px }

.sec-h { font-size: 2.5rem; margin-bottom: 0.5rem; letter-spacing: -1px; }
@media (max-width: 991.98px) { .sec-h { font-size: clamp(1.8rem, 5vw, 2.2rem); } }
.sec-p { color: var(--subtle); font-size: 1.05rem; max-width: 650px; margin: 0 0 2rem 0; font-family: 'Poppins', sans-serif; opacity: 0.85; line-height: 1.6; }

/* ─── SERVICE CARDS ───────────────────────────────── */
.card-svc {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05); /* Softer border */
  border-radius: 28px; /* Slightly more rounded */
  height: 100%; transition: all .4s var(--bezier);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.01); /* Premium shadow */
}
.card-img-top {
  width: 100%; height: 260px;
  object-fit: cover;
  object-position: top center;
  border-bottom: 1.5px solid var(--border);
  transition: transform .6s var(--ease);
}
.card-svc:hover .card-img-top { transform: scale(1.08); }

.card-body-svc {
  padding: 3rem 2.75rem; /* Significantly increased padding */
  flex: 1; display: flex; flex-direction: column;
  position: relative;
}
.card-svc::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-sapphire);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card-svc:hover { 
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--sapphire); 
}
.card-svc:hover .card-ico { transform: scale(1.1); color: #fff; }
.card-svc:nth-child(6n+1):hover .card-ico { background: #006cff; box-shadow: 0 8px 20px rgba(0, 108, 255, 0.4); }
.card-svc:nth-child(6n+2):hover .card-ico { background: #10b981; box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4); }
.card-svc:nth-child(6n+3):hover .card-ico { background: #6366f1; box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4); }
.card-svc:nth-child(6n+4):hover .card-ico { background: #f59e0b; box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4); }
.card-svc:nth-child(6n+5):hover .card-ico { background: #f43f5e; box-shadow: 0 8px 20px rgba(244, 63, 94, 0.4); }
.card-svc:nth-child(6n+6):hover .card-ico { background: #14b8a6; box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4); }
.card-svc:hover::after { transform: scaleX(1) }

.card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: var(--navy-deep);
  opacity: 0.06; 
  line-height: 1; margin-bottom: 0px; letter-spacing: -.05em;
  position: absolute; top: 0.8rem; right: 1.25rem;
  /* Remove background-clip for solid color */
  background: none;
  -webkit-text-fill-color: initial;
  pointer-events: none;
}
.card-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--sapphire-lt); color: var(--sapphire);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 2rem;
  transition: all .3s var(--ease);
  box-shadow: 0 8px 16px rgba(0, 108, 255, 0.1);
}
.card-svc:nth-child(6n+2) .card-ico { 
  background: rgba(16, 185, 129, 0.15); color: #10b981; 
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}
.card-svc:nth-child(6n+3) .card-ico { 
  background: rgba(99, 102, 241, 0.15); color: #6366f1; 
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}
.card-svc:nth-child(6n+4) .card-ico { 
  background: rgba(245, 158, 11, 0.15); color: #f59e0b; 
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}
.card-svc:nth-child(6n+5) .card-ico { 
  background: rgba(244, 63, 11, 0.15); color: #f43f5e; 
  box-shadow: 0 4px 12px rgba(244, 63, 11, 0.15);
}
.card-svc:nth-child(6n+6) .card-ico { 
  background: rgba(20, 184, 166, 0.15); color: #14b8a6; 
  box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}
.ico-yellow {
  background: var(--radiance-lt) !important;
  color: var(--radiance-dk) !important;
  box-shadow: 0 8px 16px var(--radiance-gl) !important;
}
.card-svc:hover .ico-yellow {
  background: var(--radiance) !important;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4) !important;
}

/* ─── DASHBOARD ELITE ─────────────────────────────── */
.hero-dash {
  background: var(--grad-hero);
  padding: 4rem 0 3rem;
  border-radius: 0 0 40px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.hero-dash::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 108, 255, 0.05) 0%, transparent 50%);
}
.hero-dash h2 { color: #fff; font-weight: 800; }
.hero-dash p { color: rgba(255,255,255,0.6); font-size: 1.1rem; }

.card-dash {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  height: 100%; transition: all .3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  display: flex; flex-direction: column;
  position: relative;
}
.card-dash:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.dash-ico {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 1.5rem;
}
.dash-ico-p { background: var(--sapphire-lt); color: var(--sapphire); }
.dash-ico-s { background: var(--emerald-lt); color: var(--emerald); }
.dash-ico-a { background: var(--radiance-lt); color: var(--radiance-dk); }

.table-dash {
  border-collapse: separate;
  border-spacing: 0 .75rem;
}
.table-dash thead th {
  border-bottom: none;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  color: var(--subtle); padding: 0 1rem 1rem;
}
.table-dash tbody tr {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  border-radius: 12px;
}
.table-dash tbody td {
  padding: 1.25rem 1rem; border: none;
  background-clip: padding-box;
}
.table-dash tbody tr td:first-child { border-radius: 12px 0 0 12px; }
.table-dash tbody tr td:last-child { border-radius: 0 12px 12px 0; }

.enquiry-item {
  padding: 1.5rem; border-radius: 16px;
  background: var(--surface); border: 1px solid rgba(0,0,0,0.03);
  margin-bottom: 1rem; transition: var(--t);
}
.enquiry-item:hover { background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }

/* Badge Utilities */
.bg-emerald-lt { background: var(--emerald-lt) !important; color: var(--emerald) !important; }
.text-emerald { color: var(--emerald) !important; }
.bg-radiance-lt { background: var(--radiance-lt) !important; color: var(--radiance-dk) !important; }
.bg-sapphire-lt { background: var(--sapphire-lt) !important; color: var(--sapphire) !important; }
.card-svc h5 { 
  font-size: 1.5rem; font-weight: 800; color: var(--ink); 
  margin-bottom: 1.25rem; line-height: 1.2;
}
.card-svc p { 
  font-size: 1rem; font-weight: 500; color: var(--subtle); 
  margin-bottom: 0; line-height: 1.8; opacity: 0.9;
}
.badge-custom { 
  display: inline-flex; align-items: center; justify-content: center;
  height: 24px; padding: 0 14px; border-radius: 50px;
  background: var(--radiance-lt); color: var(--radiance-dk); 
  font-size: .7rem; font-weight: 800; text-transform: uppercase; 
  letter-spacing: 1.2px; margin-bottom: 1.25rem;
  border: 1px solid var(--radiance-gl);
}
.card-check {
  position: absolute; top: 1.5rem; left: 1.5rem;
  width: 24px; height: 24px; background: var(--emerald); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; z-index: 10; box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.lnk { font-size: .9rem; font-weight: 700; color: var(--sapphire); display: inline-flex; align-items: center; gap: 8px; transition: var(--t); font-family: 'Poppins', sans-serif; }
.lnk:hover { gap: 12px; color: var(--radiance-dk) }

/* ─── WHY US ──────────────────────────────────────── */
.feat-ico { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0 }

/* ─── CURRICULUM ──────────────────────────────────── */
.curric { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-xl); padding: 2.25rem; box-shadow: var(--shadow-lg); }
.curric-h { font-family: 'JetBrains Mono', monospace; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--subtle); margin-bottom: 1.25rem }
.curric-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); font-size: .875rem }
.curric-row:last-child { border-bottom: none }
.curric-row i { color: var(--emerald); font-size: .72rem; flex-shrink: 0 }
.curric-row span:not(.cr-t) { color: var(--ink); flex: 1; font-weight: 500; }
.cr-t { 
  font-size: .62rem; font-weight: 800; 
  padding: 3px 10px; border-radius: 99px; 
  display: inline-flex; align-items: center; justify-content: center;
  width: fit-content; min-width: 44px; white-space: nowrap;
}

/* ─── PRICING ─────────────────────────────────────── */
.plan {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem 2rem;
  height: 100%; display: flex; flex-direction: column;
  transition: var(--t);
}
.plan:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--radiance) }
.plan.featured { background: var(--white); border: 3px solid var(--sapphire); position: relative; transform: scale(1.02); z-index: 10; box-shadow: var(--shadow-xl); }
.featured-tag {
  position: absolute; top: -1.5px; left: 50%; transform: translateX(-50%);
  background: var(--grad-btn); color: #fff;
  font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px;
  padding: 4px 16px; border-radius: 0 0 10px 10px;
  font-family: 'Poppins', sans-serif;
}
.plan-name { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--subtle); margin-bottom: .3rem; font-family: 'Poppins', sans-serif; }
.plan.featured .plan-name { color: var(--sapphire) }
.price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 3rem; font-weight: 800; color: var(--ink); line-height: 1 }
.plan.featured .price { color: var(--ink) }
.price-sym { font-size: 1.25rem; vertical-align: top; margin-top: 10px; font-weight: 500; color: var(--subtle) }
.plan.featured .price-sym { color: var(--subtle) }
.price-old { font-size: .875rem; color: var(--subtle); text-decoration: line-through; margin-left: 5px }
.plan.featured .price-old { color: var(--subtle); opacity: .6; }
.price-note { font-size: .78rem; color: var(--subtle); margin-top: 4px }
.plan.featured .price-note { color: var(--subtle) }

.plan-ul { list-style: none; padding: 0; margin: 1.5rem 0 2rem; flex: 1 }
.plan-ul li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: .875rem; color: var(--body) }
.plan.featured .plan-ul li { border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.7) }
.plan-ul li:last-child { border-bottom: none }
.plan-ul li i { color: var(--emerald); font-size: .72rem; flex-shrink: 0 }

.btn-plan { display: block; width: 100%; text-align: center; padding: 10px; border-radius: 8px; font-weight: 700; font-size: .82rem; transition: var(--t); border: none; font-family: 'Poppins', sans-serif; }
.btn-plan-blue { background: var(--grad-btn); color: #fff; box-shadow: 0 4px 12px rgba(0, 108, 255,.25) }
.btn-plan-blue:hover { box-shadow: 0 8px 20px rgba(0, 108, 255,.4); transform: translateY(-1px); color: #fff }
.btn-plan-out { background: transparent; color: var(--sapphire); border: 2px solid var(--sapphire) }
.btn-plan-out:hover { background: var(--sapphire); color: #fff }
.btn-plan-wh { background: var(--grad-yellow); color: var(--navy-deep); border: none }
.btn-plan-wh:hover { transform: translateY(-2px); box-shadow: 0 8px 20px var(--yellow-glow); color: var(--navy-deep) }

/* ─── CTA BAND (Purple Illustrative Format) ───────── */
.cta-sec { 
  background: linear-gradient(135deg, #1e0b36 0%, #4c1d95 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden; 
  box-shadow: inset 0 20px 40px rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.cta-sec::before {
  content: ''; position: absolute; inset: 0; 
  background-image: 
    linear-gradient(rgba(255,255,255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255, 0.05) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  opacity: 0.4; pointer-events: none; z-index: 0;
}
.cta-ill-left, .cta-ill-right { 
  position: absolute; top: -10%; height: 120%; width: 50%; 
  z-index: 1; pointer-events: none; transition: transform 0.8s var(--ease);
  mix-blend-mode: screen; object-fit: contain; opacity: 0.85;
}
/* Masking to remove square borders and blend edges */
.cta-ill-left { 
  left: 0%; object-position: left center;
  mask-image: radial-gradient(ellipse at center left, black 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center left, black 50%, transparent 95%);
}
.cta-ill-right { 
  right: 0%; object-position: right center;
  mask-image: radial-gradient(ellipse at center right, black 50%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse at center right, black 50%, transparent 95%);
}

@media (max-width: 991.98px) {
  .cta-ill-left, .cta-ill-right { width: 55%; height: 100%; top: 0; opacity: 0.4 !important; }
  .cta-ill-left { left: -5%; }
  .cta-ill-right { right: -5%; }
}

.cta-tag { 
  display: inline-block; font-family: 'JetBrains Mono', monospace; 
  font-size: .7rem; font-weight: 700; color: #d8b4fe; 
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1.5rem;
}
.cta-sec h2 { 
  font-family: 'Bricolage Grotesque', sans-serif;
  color: #fff; font-size: clamp(2.5rem, 6vw, 4.2rem); margin-bottom: 1rem; 
  font-weight: 800; letter-spacing: -.05em; line-height: 1;
}
.cta-sec h2 span { color: #facc15 }
.cta-sec p { 
  color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 650px; 
  margin: 0 auto 3rem; font-family: 'Poppins', sans-serif; line-height: 1.7;
}

.cta-ms { display: flex; justify-content: center; gap: 4rem; margin-top: 4rem; padding-top: 3.5rem; border-top: 1px solid rgba(255,255,255,0.05); flex-wrap: wrap }
.ms-val { display: block; font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: 2px }
.ms-lbl { font-size: .65rem; font-weight: 700; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1.5px }

/* ─── ELITE PROFESSIONAL FOOTER ────────────────────── */
.f-elite { 
  background: #020617; border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 80px 0 0;
  position: relative; overflow: hidden; font-family: 'Poppins', sans-serif;
}
.f-elite::before {
  content: ''; position: absolute; inset: 0; 
  background-image: radial-gradient(circle at 20% 30%, rgba(0, 108, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.f-elite-z { position: relative; z-index: 5; }

.f-brand-pro { display: flex; align-items: center; gap: 0 !important; margin-bottom: 1.5rem !important; margin-top: -25px; }
@media (max-width: 991.98px) { .f-brand-pro { margin-top: 0; } }
.f-logo-img-pro { 
  height: 95px; width: auto; 
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 108, 255, 0.25));
}
.f-name-pro { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.55rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; margin-left: -12px; }











.f-about-pro { color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; line-height: 1.8; max-width: 340px; margin-bottom: 1.25rem !important; }

.f-trust-pill { 
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); 
  padding: 6px 16px; border-radius: 50px; gap: 10px;
}
.trust-dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; box-shadow: 0 0 10px var(--emerald); }
.trust-lbl-pro { font-family: 'JetBrains Mono', monospace; font-size: 0.68rem; font-weight: 700; color: rgba(255, 255, 255, 0.5); text-transform: uppercase; letter-spacing: 1px; }

.f-social-elite .se-lnk { 
  width: 40px; height: 40px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); 
  border-radius: 10px; display: flex; align-items: center; justify-content: center; 
  color: rgba(255, 255, 255, 0.4); font-size: 1rem; transition: all 0.3s var(--ease); 
}
.f-social-elite .se-lnk:hover { 
  background: var(--sapphire); border-color: var(--sapphire); color: #fff; 
  transform: translateY(-4px); box-shadow: 0 10px 20px rgba(0, 108, 255, 0.3); 
}

.f-h-pro { 
  font-family: 'Bricolage Grotesque', sans-serif; 
  font-size: 0.72rem; font-weight: 800; 
  text-transform: uppercase; letter-spacing: 2.5px; 
  color: #fff; margin-bottom: 1.5rem;
  display: inline-flex; align-items: center; 
  background: linear-gradient(90deg, rgba(255, 171, 0, 0.15), transparent);
  padding: 6px 16px;
  border-left: 3px solid var(--radiance);
  border-radius: 0 4px 4px 0;
  box-shadow: 4px 0 15px rgba(255, 171, 0, 0.1);
}
.f-ul-pro { list-style: none; padding: 0; margin: 0; }
.f-ul-pro li { margin-bottom: 0.65rem; }
.f-ul-pro a { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; font-weight: 500; transition: all 0.3s var(--ease); text-decoration: none; }
.f-ul-pro a:hover { color: var(--radiance); transform: translateX(5px); }

.f-contact-pro .f-c-lnk { 
  display: flex; align-items: center; gap: 14px; text-decoration: none; 
  color: rgba(255, 255, 255, 0.6); font-size: 0.95rem; font-weight: 500; transition: var(--t); 
}
.f-contact-pro .f-c-lnk:hover { color: #fff; }
.f-c-ico { 
  width: 36px; height: 36px; background: rgba(255, 255, 255, 0.04); border-radius: 10px; 
  display: flex; align-items: center; justify-content: center; color: var(--sapphire); font-size: 0.9rem; transition: var(--t);
}
.f-c-lnk:hover .f-c-ico { background: var(--sapphire); color: #fff; }
.f-c-ico.Email { color: var(--radiance); }
.f-c-lnk:hover .f-c-ico.Email { background: var(--radiance); color: #000; }
.f-c-ico.WhatsApp { color: var(--emerald); }
.f-c-lnk:hover .f-c-ico.WhatsApp { background: var(--emerald); color: #fff; }

.f-bottom-elite { margin-top: 30px; padding: 25px 0; }
.f-copy-pro { color: rgba(255, 255, 255, 0.3); font-size: 0.85rem; letter-spacing: 0.3px; }

.f-status-pro { 
  background: rgba(16, 185, 129, 0.05); border: 1px solid rgba(16, 185, 129, 0.1); 
  padding: 8px 18px; border-radius: 50px; gap: 12px; 
}
.f-dot-pro { width: 10px; height: 10px; position: relative; }
.f-dot-inner { width: 100%; height: 100%; background: var(--emerald); border-radius: 50%; box-shadow: 0 0 12px var(--emerald); }
.f-dot-pro::after { 
  content: ''; position: absolute; inset: -4px; border-radius: 50%; 
  border: 2px solid var(--emerald); opacity: 0.4; animation: pulseStatusElite 2s infinite; 
}
@keyframes pulseStatusElite { 0% { transform: scale(1); opacity: 0.4; } 100% { transform: scale(2.5); opacity: 0; } }
.f-status-text { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; font-weight: 700; color: var(--emerald); text-transform: uppercase; letter-spacing: 1px; }

.f-social-mob-pro a { color: rgba(255, 255, 255, 0.3); font-size: 1.25rem; transition: var(--t); }
.f-social-mob-pro a:hover { color: var(--sapphire); transform: scale(1.1); }

/* Mobile Optimization: Ultra Compact */
@media (max-width: 767.98px) {
  .f-elite { padding-top: 10px; }
  .f-h-pro { margin-bottom: 0.5rem; }
  .f-ul-pro li { margin-bottom: 0.1rem; }
  .f-ul-pro a { line-height: 1.2; font-size: 0.88rem; }
  .f-brand-pro { margin-bottom: 0.5rem !important; }
  .f-about-pro { margin-bottom: 0.5rem !important; font-size: 0.82rem; line-height: 1.4; }
  .f-bottom-elite { margin-top: 15px; padding: 15px 0; }
  .f-contact-pro { gap: 0rem !important; }
  .f-c-lnk { gap: 10px !important; font-size: 0.88rem !important; margin-bottom: 0px !important; }
  .f-c-ico { width: 32px !important; height: 32px !important; font-size: 0.8rem !important; }
  .f-elite-z > .row { --bs-gutter-y: 1.25rem; }
}






/* --- ABOUT PAGE SPECIFIC --- */
.transition-hover { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.transition-hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--yellow) !important; }
.bg-grad-accent { background: var(--grad-accent); }

/* --- SERVICES PAGE SPECIFIC --- */
.badge-custom { background: var(--yellow-lt); color: var(--yellow-dk); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; padding: 4px 12px; border-radius: var(--r-pill); display: inline-block; font-family: 'Poppins', sans-serif; }

/* --- PRICING PAGE SPECIFIC --- */
/* --- PRICING PAGE SPECIFIC --- */
.plan {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 108, 255, 0.1);
  border-radius: 20px;
  padding: 1.25rem 1rem;
  height: 100%; display: flex; flex-direction: column;
  transition: all .5s var(--bezier);
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.02), 0 2px 4px rgba(0,0,0,0.01);
}
.plan:hover { 
  transform: translateY(-12px); 
  box-shadow: 0 40px 80px rgba(0,108,255,0.15);
  border-color: var(--sapphire-lt);
  background: white;
}

/* --- ENTERPRISE CONTACT BOX --- */
.card-elite-contact {
  background: radial-gradient(circle at top left, #001a4d, #020617);
  border: 1px solid rgba(0, 108, 255, 0.2);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  transition: all 0.5s var(--bezier);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}
.card-elite-contact:hover {
  transform: translateY(-8px);
  border-color: var(--radiance);
  box-shadow: 0 40px 80px rgba(0, 108, 255, 0.2);
}
.card-elite-contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; line-height: 1.6; }
@media (max-width: 991.98px) {
    .card-elite-contact { padding: 1.5rem !important; margin-bottom: 2rem; }
    .card-elite-contact h5 { font-size: 1.15rem !important; }
}

/* Unique Highlight for 1-Day Rental (First Card) */
.col-lg-4:nth-child(1) .plan {
  border-color: var(--radiance-gl);
  box-shadow: 0 10px 40px rgba(250, 204, 21, 0.05);
}
.col-lg-4:nth-child(1) .plan:hover {
  border-color: var(--radiance);
  box-shadow: 0 40px 80px rgba(250, 204, 21, 0.15);
}
.col-lg-4:nth-child(1) .plan-name { color: var(--radiance-dk) !important; font-weight: 900; }
.col-lg-4:nth-child(1) .price-pro { 
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent; 
}

.featured-pro { 
  background: white !important; 
  border: 2.5px solid var(--sapphire) !important; 
  color: var(--obsidian) !important; 
  z-index: 10; 
  box-shadow: 0 30px 60px rgba(0,108,255,0.08) !important; 
}
.featured-pro:hover { transform: translateY(-12px); box-shadow: 0 40px 80px rgba(0,108,255,0.15) !important; }

.featured-pro .plan-name { color: var(--sapphire) !important; font-weight: 800; opacity: 1; letter-spacing: 2.5px; }
.featured-pro .price-pro { 
  background: linear-gradient(135deg, var(--sapphire) 0%, #001a4d 100%); 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none; 
}
.featured-pro .period { color: var(--subtle) !important; }
.featured-pro .currency { color: var(--sapphire) !important; }
.featured-pro .plan-features li { border-bottom-color: rgba(0,0,0,0.04) !important; color: var(--body) !important; }
.featured-pro .price-strikethrough { color: var(--subtle) !important; opacity: 0.6; }

.price-pro { 
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.4rem; font-weight: 800; 
  background: linear-gradient(135deg, var(--obsidian) 0%, var(--subtle) 100%); 
  -webkit-background-clip: text; 
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1; letter-spacing: -1.5px; margin: 0.5rem 0; 
  display: inline-block;
}
.currency { font-size: 1.1rem; vertical-align: top; margin-top: 6px; margin-right: 2px; color: var(--subtle); font-weight: 700; opacity: 0.8; }
.period { font-size: 0.75rem; font-weight: 700; color: var(--subtle); text-transform: uppercase; letter-spacing: 0.5px; }

.off-badge { 
  background: var(--grad-gold); color: var(--obsidian); 
  font-size: 0.7rem; font-weight: 900; padding: 4px 10px; border-radius: 10px; 
  box-shadow: 0 4px 12px rgba(250,204,21,0.25);
}

.plan-name { font-size: 0.65rem; font-weight: 800; color: var(--sapphire); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.25rem; opacity: 0.8; }

.plan-features { list-style: none; padding: 0; margin: 0; }
.plan-features li { 
  padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.04); 
  font-size: 0.8rem; display: flex; align-items: center; gap: 8px; 
  font-weight: 600;
}
.plan-features li i { color: var(--emerald); font-size: 0.75rem; }
.featured-pro .plan-features li i { color: var(--radiance); }

.btn-plan-pro { 
  display: flex; align-items: center; justify-content: center; width: 100%; 
  padding: 10px; border-radius: 10px; font-weight: 800; font-size: 0.8rem; 
  transition: all .3s cubic-bezier(.165,.84,.44,1); text-transform: uppercase; letter-spacing: 1px;
}
.btn-pro-accent { 
  background: var(--grad-gold); color: var(--obsidian); 
  box-shadow: 0 10px 30px rgba(250,204,21,0.35);
}
.btn-pro-accent:hover { transform: translateY(-4px); box-shadow: 0 15px 40px rgba(250,204,21,0.45); color: var(--obsidian); }
.btn-pro-outline { 
  border: 2px solid var(--sapphire); color: var(--sapphire); 
  background: transparent;
}
.btn-pro-outline:hover { background: var(--sapphire); color: #fff; box-shadow: 0 10px 30px rgba(0,108,255,0.25); }

.featured-badge { 
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%); 
  background: var(--grad-gold); color: var(--obsidian); 
  font-size: 0.6rem; font-weight: 950; letter-spacing: 1.2px; 
  padding: 4px 16px; border-radius: 99px; box-shadow: 0 6px 15px rgba(250,204,21,0.35); 
  z-index: 50; 
}
.custom-acc .accordion-button:not(.collapsed) { color: var(--brand); box-shadow: none; }
.custom-acc .accordion-button:focus { box-shadow: none; border: none; }

/* --- TRAINING PAGE SPECIFIC --- */
.roadmap-v { padding-left: 10px; }
.roadmap-line { width: 16px; position: relative; margin-right: -10px; }
.roadmap-dot { width: 10px; height: 10px; border-radius: 50%; z-index: 1; }
.roadmap-track { flex: 1; width: 1.5px; margin-top: -1px; }
.roadmap-item:last-child { margin-bottom: 0 !important; }
.roadmap-item:last-child .roadmap-track { display: none; }
.border-white-op { border-color: var(--border) !important; }
.text-white-80 { color: var(--body); }
.text-white-50 { color: var(--subtle); }

.text-sapphire { color: var(--sapphire) !important; }
.text-emerald  { color: var(--emerald) !important; }
.text-radiance { color: var(--radiance-dk) !important; }

/* --- CONTACT PAGE SPECIFIC --- */
.support-ico { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; }
.bg-green-lt { background: var(--emerald-lt); }
.bg-brand-lt { background: var(--sapphire-lt); }
.bg-yellow-lt { background: var(--radiance-lt); }
.glass-form { 
  background: rgba(255,255,255,0.92); 
  backdrop-filter: blur(12px); 
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08) !important;
}
.glass-form h3 { letter-spacing: -1.5px; }
.custom-f .form-control, .custom-f .form-select { 
  border-radius: 12px; 
  border: 1.5px solid var(--border); 
  background: var(--white); 
  font-size: 0.95rem; 
  font-weight: 500; 
  font-family: 'Poppins', sans-serif; 
  transition: all 0.25s var(--ease);
}
.custom-f .form-control:focus, .custom-f .form-select:focus { border-color: var(--sapphire); box-shadow: 0 0 0 4px var(--sapphire-lt); }
.custom-f label { color: var(--subtle); font-weight: 600; font-family: 'Poppins', sans-serif; }

.custom-f label { color: var(--subtle); font-weight: 600; font-family: 'Poppins', sans-serif; }

.support-card { transition: var(--t); cursor: default; }
.support-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg) !important; border-color: var(--radiance) !important; }

/* Unified Support Matrix */
.support-matrix-unified {
  transition: all 0.4s var(--ease);
}
.support-matrix-unified:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.12) !important;
}
.matrix-item {
  transition: background 0.3s ease;
}
.matrix-item:hover {
  background: var(--sapphire-lt);
}
.badge-mini {
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.03);
}

/* Professional Gated Button */
.btn-syllabus-locked {
  background: var(--surface) !important;
  color: var(--subtle) !important;
  border: 1.5px dashed var(--border) !important;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.btn-syllabus-locked:hover {
  background: var(--white) !important;
  border-color: var(--sapphire) !important;
  color: var(--sapphire) !important;
  transform: translateY(-2px);
}
.btn-unlocked {
  background: var(--grad-emerald) !important;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3) !important;
}

/* --- AUTH PAGES (Login / Register) --- */
.auth-screen {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--surface); position: relative; overflow: hidden; padding: 40px 20px;
}
.auth-screen .hero-orb { filter: blur(120px); opacity: 0.1; }
.glass-auth-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 28px; width: 100%; max-width: 480px; padding: 48px;
  color: var(--ink); box-shadow: var(--shadow-xl);
}
.auth-icon { width: 64px; height: 64px; background: var(--sapphire-lt); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 24px; color: var(--sapphire); border: 1.5px solid var(--sapphire-lt); }
.auth-input-group label { font-size: 0.75rem; font-weight: 700; color: var(--subtle); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 8px; display: block; font-family: 'JetBrains Mono', monospace; }
.auth-input { background: var(--surface) !important; border: 1.5px solid var(--border) !important; color: var(--ink) !important; border-radius: 12px !important; padding: 13px 16px !important; transition: var(--t) !important; font-family: 'Poppins', sans-serif !important; font-size: .9rem !important; }
.auth-input::placeholder { color: var(--subtle) !important; opacity: .5; }
.auth-input:focus { border-color: var(--sapphire) !important; background: var(--white) !important; box-shadow: 0 0 0 4px var(--sapphire-lt) !important; outline: none !important; }
.auth-btn { background: var(--grad-btn); color: #fff; font-weight: 700; border-radius: 12px; padding: 14px; border: none; transition: var(--t); font-family: 'Poppins', sans-serif; box-shadow: 0 4px 12px rgba(0, 108, 255,.2); }
.auth-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 108, 255,.4); color: #fff; }
.auth-link { color: var(--sapphire); font-weight: 600; text-decoration: none; transition: var(--t); }
.auth-link:hover { color: var(--obsidian); text-decoration: underline; }

/* --- ADMIN "MANAGEMENT CONSOLE" ELITE THEME --- */
:root {
  --adm-navy:    #020617; /* Project Sapphire Obsidian */
  --adm-blue:    #006cff; /* Project Sapphire Blue */
  --adm-blue-lt: #eff6ff;
  --adm-yellow:  #facc15; /* Project Sapphire Radiance */
  --adm-yellow-lt: #fefce8;
  --adm-green:   #10b981;
  --adm-green-lt: #f0fdf4;
  --adm-surface: #f8fafc;
  --adm-border:  #e2e8f0;
  --adm-text:    #0f172a;
  --adm-subtle:  #64748b;
  --adm-shadow:  0 20px 60px rgba(0,0,0,.15);
  --adm-shadow-lg: 0 40px 100px rgba(0,0,0,.2);
}

.adm-sidebar {
  min-width: 280px; max-width: 280px; min-height: 100vh;
  background: var(--adm-navy); position: relative;
  z-index: 100; display: flex; flex-direction: column;
  box-shadow: 10px 0 30px rgba(2, 6, 23, 0.2);
}
.adm-sidebar-brand { padding: 36px 32px 24px; border-bottom: 1px solid rgba(255,255,255,.05); }
.adm-logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--adm-blue); font-size: 1.1rem; box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.adm-logo-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 1rem; font-weight: 800; color: #fff; letter-spacing: -.01em; line-height: 1.2; }
.adm-logo-sub { font-size: .65rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .8px; margin-left: 5px; }

.adm-nav-section { padding: 20px 12px 8px; }
.adm-nav-label { font-size: .6rem; font-weight: 700; color: rgba(255,255,255,.25); text-transform: uppercase; letter-spacing: 1.5px; padding: 0 12px; margin-bottom: 6px; display: block; }
/* Conflict removed - specialized admin logo should have a unique class if needed */
.adm-logo-img { 
  height: 72px; width: auto; 
  object-fit: contain; 
}
.logo-img-mob { height: 54px; width: auto; object-fit: contain; }
.logo { display: flex; align-items: center; gap: 3px !important; text-decoration: none; }

.logo-text { 
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 1.45rem; font-weight: 850; 
  color: var(--obsidian); letter-spacing: -1.5px; line-height: 1;
  display: block;
}
.logo-sub { 
  display: block; font-size: 0.65rem; font-weight: 600; 
  color: rgba(0, 0, 0, 0.4); text-transform: uppercase; 
  letter-spacing: 0.5px;
}












.adm-nav-link {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px;
  color: rgba(255,255,255,.55); font-size: .875rem; font-weight: 500; text-decoration: none; transition: all .2s ease; margin-bottom: 6px;
}
.adm-nav-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.adm-nav-link.active {
  background: rgba(0, 108, 255, 0.1);
  color: var(--adm-blue); border-left: 3px solid var(--adm-blue);
}

.adm-topbar {
  height: 85px; background: #fff; border-bottom: 1px solid var(--adm-border); padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between; box-shadow: 0 1px 4px rgba(10,22,40,.06);
}
.adm-user-pill {
  display: flex; align-items: center; gap: 10px; background: var(--adm-surface);
  border: 1.5px solid var(--adm-border); border-radius: 50px; padding: 6px 14px 6px 6px;
}
.adm-user-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--adm-blue); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; font-weight: 700; }

.adm-card { 
    background: #fff; border: 1.5px solid var(--adm-border); border-radius: 24px; 
    transition: all .25s ease; padding: 32px !important;
}
.adm-card:hover { border-color: var(--adm-yellow); box-shadow: var(--adm-shadow-lg); }

.adm-content { padding: 40px !important; }

/* Table Modernization for Admin */
.adm-card table th { padding: 16px 20px !important; font-size: .72rem !important; opacity: 0.6; }
.adm-card table td { padding: 20px !important; font-size: .9rem !important; }
.adm-card table tr { border-bottom: 1px solid rgba(0,0,0,0.03); }
.adm-card table tr:last-child { border-bottom: none; }
.adm-stat-icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.adm-stat-value { font-family: 'Bricolage Grotesque', sans-serif; font-size: 2.75rem; font-weight: 800; line-height: 1; letter-spacing: -2px; color: var(--adm-navy); }
.adm-stat-label { font-size: .78rem; color: var(--adm-subtle); font-weight: 500; }
.adm-stat-badge { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 3px 10px; border-radius: 99px; }

.adm-quick-card { display: block; text-decoration: none; background: #fff; border: 1.5px solid var(--adm-border); border-radius: 16px; padding: 24px; transition: all .25s ease; }
.adm-quick-card:hover { border-color: var(--adm-yellow); transform: translateY(-4px); box-shadow: var(--adm-shadow-lg); }
.adm-quick-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 14px; }
.adm-quick-title { font-size: .875rem; font-weight: 700; color: var(--adm-navy); margin-bottom: 4px; }
.adm-quick-desc { font-size: .78rem; color: var(--adm-subtle); }

.adm-section-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; color: var(--adm-navy); letter-spacing: -1px; }
.adm-section-sub { font-size: .82rem; color: var(--adm-subtle); }

.adm-alert { border-radius: 14px; border: none; font-size: .875rem; font-weight: 500; }
.adm-alert-success { background: var(--adm-green-lt); color: #065f46; border-left: 4px solid var(--adm-green); }
.adm-alert-danger  { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ─── ELITE NOTIFICATIONS ───────────────────────── */
.noti-container {
  position: relative; z-index: 1050; margin-top: 1.5rem;
}

.noti-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 108, 255, 0.08); border-radius: 18px;
  padding: 1rem 1.25rem; margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  animation: slideInDown 0.5s var(--bezier);
  position: relative; overflow: hidden;
}

.noti-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.noti-content { flex: 1; min-width: 0; }
.noti-title { 
  display: block; font-size: .65rem; font-weight: 800; 
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 1px;
}
.noti-msg { 
  display: block; font-size: .85rem; font-weight: 500; 
  color: var(--navy-deep); line-height: 1.3;
}

/* Variants */
.noti-emerald { border-left: 4px solid var(--emerald); }
.noti-emerald .noti-icon { background: var(--emerald-lt); color: var(--emerald-dk); }
.noti-emerald .noti-title { color: var(--emerald-dk); }

.noti-sapphire { border-left: 4px solid var(--sapphire); }
.noti-sapphire .noti-icon { background: var(--sapphire-lt); color: var(--sapphire-dk); }
.noti-sapphire .noti-title { color: var(--sapphire-dk); }

.noti-yellow { border-left: 4px solid var(--radiance); }
.noti-yellow .noti-icon { background: var(--yellow-lt); color: var(--yellow-dk); }
.noti-yellow .noti-title { color: var(--yellow-dk); }

.noti-close {
  background: transparent !important; border: none !important; 
  font-size: .85rem !important; color: var(--subtle) !important; 
  opacity: 0.4; transition: var(--t);
  padding: .4rem !important; line-height: 1; outline: none !important;
  box-shadow: none !important; margin-left: auto;
}
.noti-close:hover { opacity: 1; color: var(--navy-deep) !important; transform: scale(1.1); }

@keyframes slideInDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ─── NAVIGATION USER BADGE ────────────────────────── */
.user-profile-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px 4px 6px;
  transition: var(--t);
  cursor: default;
}
.user-avatar-sm {
  width: 26px; height: 26px;
  background: var(--sapphire);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.user-name-text {
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.2px;
}
.user-profile-badge:hover {
  background: var(--white);
  border-color: var(--sapphire-lt);
  box-shadow: var(--shadow-sm);
}

/* ─── DASHBOARD ENQUIRY LIST ─────────────────────── */
.enquiry-scroll {
  max-height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px;
}
/* Custom Scrollbar */
.enquiry-scroll::-webkit-scrollbar { width: 5px; }
.enquiry-scroll::-webkit-scrollbar-track { background: var(--surface); border-radius: 10px; }
.enquiry-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.enquiry-scroll::-webkit-scrollbar-thumb:hover { background: var(--subtle); }

.enquiry-item {
  position: relative;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 1.25rem;
  transition: all 0.3s var(--bezier);
}
.enquiry-item:hover {
  border-color: var(--sapphire);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.enquiry-item-index {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--surface); /* Subtle background number */
  line-height: 1;
  z-index: 0;
  opacity: 0.15;
}
.enquiry-item .noti-msg {
  color: var(--subtle);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.btn-hero-s {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.75rem; border-radius: 12px;
  background: var(--grad-gold); color: var(--navy-deep);
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: none; transition: all 0.3s var(--bezier);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.2);
}
.btn-hero-s:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 184, 0, 0.4);
  color: var(--navy-deep);
}
/* Elite Color Utilities */
.text-sapphire { color: var(--sapphire) !important; }
.bg-sapphire-lt { background-color: var(--sapphire-lt) !important; }
.text-emerald { color: var(--emerald) !important; }
.bg-emerald-lt { background-color: var(--emerald-lt) !important; }
.text-radiance { color: var(--radiance-dk) !important; }
.bg-radiance-lt { background-color: var(--radiance-lt) !important; }
.text-crimson { color: var(--crimson) !important; }
.bg-crimson-lt { background-color: #fef2f2 !important; }

/* ─── ELITE AUTH & CTA ──────────────────────────── */
.btn-cta {
  background: var(--grad-gold); color: var(--navy-deep);
  font-weight: 700; padding: 0.6rem 1.4rem; border-radius: 10px;
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.2);
  transition: all .25s var(--ease);
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
  color: var(--navy-deep);
}

/* ─── ELITE AUTH V2 (PRO SPLIT-PANE) ──────────────── */
.auth-wrapper {
  min-height: 100vh;
  display: flex;
  background: #f8fafc;
}

/* Left Pane: Branding & Visuals (Desktop Only) */
.auth-side-brand {
  flex: 0 0 58%;
  background: var(--obsidian);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px;
}
.auth-side-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/assets/auth-visual-v2.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.65;
  mix-blend-mode: luminosity;
  transition: transform 10s ease;
}
.auth-side-brand:hover .auth-side-bg { transform: scale(1.1); }

.auth-side-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.4) 100%);
  z-index: 1;
}

.auth-side-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; }
.auth-side-header { margin-bottom: auto; }
.auth-side-footer { margin-top: auto; }

.auth-side-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px; border-radius: 10px;
  font-size: 0.65rem; font-weight: 800; color: #fff;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 2rem;
}

.auth-side-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.25rem); font-weight: 800; color: #fff;
  line-height: 1; letter-spacing: -3px; margin-bottom: 1.5rem;
}
.auth-side-h span { color: var(--radiance); }

.auth-v2-features {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem;
}
.auth-v2-feat {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem; border-radius: 20px; backdrop-filter: blur(10px);
}
.auth-v2-feat i { font-size: 1.25rem; color: var(--radiance); margin-bottom: 1rem; display: block; }
.auth-v2-feat b { font-size: 0.95rem; color: #fff; display: block; margin-bottom: 4px; }
.auth-v2-feat p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); line-height: 1.5; }

/* Right Pane: Form Hub */
.auth-side-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: #fff;
}

.auth-v2-card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  padding: 2.25rem;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  animation: authFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes authFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-v2-card-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.85rem; font-weight: 800; color: var(--obsidian);
  letter-spacing: -1px; margin-bottom: 0.25rem;
}

/* Premium Header Elements */
.auth-logo-pro {
    height: 52px; width: auto; margin-bottom: 0.75rem;
    filter: drop-shadow(0 4px 12px rgba(0, 108, 255, 0.15));
}
.auth-status-bar {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(0, 108, 255, 0.05); border: 1px solid rgba(0, 108, 255, 0.1);
    padding: 5px 14px; border-radius: 99px;
}
.auth-status-dot {
    width: 6px; height: 6px; background: var(--emerald); border-radius: 50%;
    box-shadow: 0 0 8px var(--emerald); animation: statusPulse 2s infinite;
}
.auth-status-text {
    font-size: 0.6rem; font-weight: 800; letter-spacing: 1px; color: var(--sapphire); text-transform: uppercase;
}

/* Input Fields v2 */
.input-v2-group { position: relative; margin-bottom: 1.15rem; }
.input-v2-label {
  display: block; font-size: 0.68rem; font-weight: 800; color: var(--subtle);
  text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 6px;
}
.input-v2-field {
  width: 100%; padding: 13px 44px 13px 44px !important;
  background: var(--surface) !important; border: 1.5px solid var(--border) !important;
  border-radius: 14px !important; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  font-family: 'Poppins', sans-serif !important; font-size: 0.88rem !important;
  color: var(--obsidian) !important; font-weight: 500 !important;
}
.input-v2-field:focus {
  background: #fff !important; border-color: var(--sapphire) !important;
  box-shadow: 0 0 0 5px rgba(0, 108, 255, 0.08) !important; outline: none;
}
.input-v2-rel { position: relative; width: 100%; }
.input-v2-ico {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--subtle); opacity: 0.4; font-size: 0.9rem; transition: all 0.3s ease;
  pointer-events: none;
}
.input-v2-field:focus ~ .input-v2-ico { color: var(--sapphire); opacity: 1; transform: translateY(-50%) scale(1.1); }

.input-status-ico {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  font-size: 0.8rem; pointer-events: none; opacity: 0; transition: var(--t);
  z-index: 5;
}
.input-status-ico.show { opacity: 1; }
.input-status-ico.text-danger { color: #ef4444 !important; }
.input-status-ico.text-success { color: #10b981 !important; }

.input-v2-field.is-invalid {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}
.input-v2-field.is-valid {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1) !important;
}

.btn-auth-v2 {
  width: 100%; padding: 15px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, #0052D4 0%, #4364F7 50%, #6FB1FC 100%);
  color: #fff; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(0, 82, 212, 0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-auth-v2:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 20px 45px rgba(0, 82, 212, 0.4);
    filter: brightness(1.1);
}
.btn-auth-v2:active { transform: scale(0.97); }

@media (max-width: 1200px) {
  .auth-side-brand { display: none; }
  .auth-side-form { padding: 40px 15px; background: var(--surface); }
  .auth-v2-card {
    background: #fff; padding: 2.5rem 1.5rem; border-radius: 28px;
    border: 1px solid var(--border); box-shadow: var(--shadow-xl);
  }
}

.bg-navy { background-color: var(--obsidian) !important; }
.bg-navy .modal-title { color: #ffffff !important; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.modal-backdrop { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); background-color: rgba(2, 6, 23, 0.4); }
.shadow-xl { box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.25) !important; }

@keyframes statusPulse { 
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}
.password-wrapper { position: relative; }
.password-toggle {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  color: var(--subtle); cursor: pointer; transition: all 0.2s;
  z-index: 5; font-size: 1.1rem;
}
.password-wrapper .input-v2-field { padding-right: 78px !important; }
.password-wrapper .input-status-ico { right: 44px; }
/* Hide Browser-Default Password Reveal Icons */
input::-ms-reveal,
input::-ms-clear,
input::-webkit-contacts-auto-fill-button,
input::-webkit-credentials-auto-fill-button {
  display: none !important;
}

/* ─── Radiance Button (Premium Gold) ─── */
.btn-radiance {
  background: var(--grad-gold) !important; color: var(--obsidian) !important;
  font-weight: 700; padding: 11px 26px; border-radius: 10px;
  font-size: 0.92rem; border: none; transition: all .3s var(--ease);
  box-shadow: 0 10px 30px var(--radiance-gl);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none !important;
}
.btn-radiance:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px var(--radiance-gl);
  color: var(--obsidian) !important;
}
.btn-radiance:active {
  transform: translateY(0) scale(0.96) !important;
  box-shadow: 0 5px 15px var(--radiance-gl) !important;
  background: var(--grad-gold) !important; 
  color: var(--obsidian) !important;
}
.btn-radiance:focus { outline: none !important; box-shadow: 0 0 0 4px var(--radiance-gl); }
.btn-radiance i { font-size: 0.85rem; }

/* ─── ELITE CURRICULUM HIGHLIGHTS v2 ──────────────── */
.curric-elite {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 32px;
  padding: 3rem;
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: var(--t);
}
.curric-elite:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.1);
  border-color: var(--sapphire-lt);
}
.ce-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.ce-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--sapphire);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.5rem;
}
.ce-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0;
}
.ce-ico {
  width: 52px;
  height: 52px;
  background: var(--radiance-lt);
  color: var(--radiance-dk);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 8px 16px var(--radiance-gl);
}
.ce-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ce-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.ce-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ce-check {
  width: 24px;
  height: 24px;
  background: var(--emerald-lt);
  color: var(--emerald);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}
.ce-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  flex: 1;
}
.ce-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.ce-info {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--subtle);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  white-space: nowrap;
}
.ce-lvl {
  background: rgba(0, 108, 255, 0.05);
  color: var(--sapphire-dk);
  border-color: rgba(0, 108, 255, 0.1);
}
.ce-badge {
  display: inline-flex; align-items: center; justify-content: center;
  height: 20px; padding: 0 10px; border-radius: 50px;
  font-size: 0.58rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-live { background: rgba(16, 185, 129, 0.12); color: var(--emerald); border: 1px solid rgba(16,185,129,0.1); }
.badge-new {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

/* ─── SECURITY VERIFICATION (6-DIGIT) ──────────────── */
.code-input-group {
    display: flex; gap: 12px; justify-content: center; margin-bottom: 2rem;
}
.code-digit {
    width: 60px; height: 74px; text-align: center;
    font-size: 1.75rem; font-weight: 800; border-radius: 12px;
    border: 2px solid var(--border); background: var(--surface);
    color: var(--obsidian); transition: all 0.2s var(--bezier);
    font-family: 'JetBrains Mono', monospace;
}
.code-digit:focus {
    outline: none; border-color: var(--sapphire);
    background: #fff; transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 108, 255, 0.15);
}
.code-digit::placeholder { color: var(--border); opacity: 0.5; }

.security-countdown {
    font-size: 0.75rem; font-weight: 700; color: var(--subtle);
    display: block; margin-top: 1.5rem; letter-spacing: 0.5px;
}

/* ─── SAPPHIRE ULTRA-PREMIUM COMMAND CENTER ─────────── */
.dash-layout {
    display: flex;
    min-height: 100vh;
    background: #f1f5f9;
}

.dash-sidebar {
    width: 280px;
    background: #0f172a;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    z-index: 1000;
    border-right: 1px solid rgba(255,255,255,0.05);
    overflow-y: auto;
}

.dash-sidebar-brand {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}

.dash-sidebar-brand i { 
    font-size: 1.8rem;
    color: var(--sapphire);
    filter: drop-shadow(0 0 10px rgba(0, 108, 255, 0.4));
}

.dash-nav-section {
    margin-bottom: 2rem;
}

.dash-nav-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--radiance);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding-left: 12px;
}

.dash-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--bezier);
}

.dash-nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.dash-nav-link.active {
    color: #fff;
    background: var(--sapphire);
    box-shadow: 0 10px 20px rgba(0, 108, 255, 0.25);
}

.dash-nav-link.active i { color: #fff !important; }

.icon-crimson { color: #f43f5e !important; }

/* Compact Version for Mobile Menu */
.dash-nav-link-sm {
    padding: 10px 14px;
    font-size: 0.82rem;
    gap: 10px;
    border-radius: 10px;
}

.dash-nav-link i {
    transition: all 0.3s var(--bezier);
}

.dash-nav-link:hover i {
    transform: scale(1.1);
}

/* Content Area */
.dash-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-left: 280px;
}

.dash-topbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 900;
}

/* Force show text in offcanvas even on mobile */
.offcanvas .dash-sidebar-brand span, 
.offcanvas .dash-nav-link span, 
.offcanvas .dash-nav-label { 
    display: block !important; 
}

.vr {
    width: 1px;
    height: 24px;
    background: var(--border);
    opacity: 1;
}

.dash-breadcrumb {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--subtle);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dash-content-inner {
    padding: 3rem;
}

/* Enhanced Cards */
.card-ultra {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2.25rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.04);
}

.stat-aura-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat-aura-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    position: relative;
    overflow: hidden;
}

.stat-aura-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.4;
}

.monitor-card {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.monitor-header {
    padding: 1.75rem 2rem;
    background: #fafafa;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.monitor-specs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.spec-chip {
    padding: 4px 10px;
    background: #f1f5f9;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
}

.monitor-pulse {
    width: 10px;
    height: 10px;
    background: var(--emerald);
    border-radius: 50%;
    position: relative;
}

.monitor-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--emerald);
    border-radius: 50%;
    animation: dash-pulse 2s infinite;
}

@keyframes dash-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.system-log-feed {
    list-style: none;
    padding: 2px;
    margin: 0;
    max-height: 460px;
    overflow-y: auto;
    padding-right: 12px;
}

/* Custom Scrollbar for Logs */
.system-log-feed::-webkit-scrollbar {
    width: 5px;
}
.system-log-feed::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}
.system-log-feed::-webkit-scrollbar-thumb {
    background: var(--sapphire-lt);
    border-radius: 10px;
    transition: var(--t);
}
.system-log-feed:hover::-webkit-scrollbar-thumb {
    background: var(--sapphire);
}

.log-item {
    position: relative;
    padding-left: 2.75rem;
    padding-bottom: 1.25rem; /* Reduced for high density */
}

.log-item:last-child { padding-bottom: 0; }

.log-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.log-item:last-child::before { display: none; }

.log-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--subtle);
    z-index: 1;
}

.log-indicator-done { 
    background: var(--sapphire-lt);
    border-color: var(--sapphire);
    color: var(--sapphire);
}

.log-body {
    background: #fff;
    border: 1px solid var(--border);
    padding: 0.85rem 1rem; /* Compact padding */
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: var(--t);
}
.log-body:hover {
    border-color: var(--sapphire);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

/* ─── MOBILE COMMAND VIEW ────────────────────────── */
@media (max-width: 1200px) {
    .dash-sidebar { width: 100px; padding: 2rem 1rem; align-items: center; }
    .dash-main { margin-left: 100px; }
    .dash-sidebar-brand span, .dash-nav-link span, .dash-nav-label { display: none; }
}

@media (max-width: 768px) {
    .dash-layout { flex-direction: column; }
    .dash-sidebar { display: none; } /* Use bottom trigger on mobile */
    .dash-main { margin-left: 0; }
    .dash-topbar { padding: 0.75rem 1.25rem !important; min-height: 64px; }
    .dash-content-inner { padding: 1.25rem !important; }

    /* Mobile Brand & User Pill */
    .dash-mob-brand { display: flex; align-items: center; gap: 4px; max-width: 220px; }
    .dash-mob-brand span { font-size: 0.85rem !important; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; }
    .dash-mob-brand i { font-size: 1.1rem; }
    
    .dash-user-pill {
        display: flex; align-items: center; gap: 6px;
        background: #fff; padding: 2px 2px 2px 10px;
        border-radius: 99px; border: 1.5px solid var(--border);
        box-shadow: var(--shadow-sm);
        max-width: 140px;
    }

    /* High-Density Stats Grid */
    .card-ultra { padding: 1.25rem !important; border-radius: 20px !important; }
    .stat-aura-wrap { gap: 12px !important; flex-direction: row !important; text-align: left !important; align-items: center; }
    .stat-aura-icon { 
        width: 42px !important; height: 42px !important; 
        font-size: 1.1rem !important; border-radius: 12px !important; 
        flex-shrink: 0;
    }
    .stat-aura-data h2 { font-size: 1.4rem !important; line-height: 1; margin-bottom: 2px !important; }
    .stat-aura-data p { font-size: 0.62rem !important; letter-spacing: 0; font-weight: 800 !important; }

    /* Utility Helpers for Mobile Grid */
    .w-mob-100 { width: 100% !important; }
    .mt-mob-2 { margin-top: 0.5rem !important; }

    /* Streamlined Infrastructure Monitor */
    .monitor-header { padding: 1.15rem 1.25rem !important; }
    .monitor-header h6 { font-size: 0.95rem !important; }
    .monitor-specs { gap: 6px !important; margin-top: 8px !important; flex-wrap: wrap; }
    .spec-chip { font-size: 0.58rem !important; padding: 2px 8px !important; }
    
    .dash-content-inner h1 { font-size: 1.85rem !important; margin-bottom: 0.5rem !important; }
    .dash-content-inner p.fs-5 { font-size: 0.95rem !important; margin-bottom: 1.5rem !important; }
}


/* ─── PREMIUM FORMS & OTP RESTORATION ──────────────── */
.custom-f {
  position: relative;
  overflow: visible;
}

.custom-f::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--radiance);
  transition: all 0.4s var(--ease);
  transform: translateX(-50%);
  z-index: 10;
}

.custom-f:focus-within::after {
  width: 100%;
}

.custom-f .form-control:focus {
  border-color: var(--radiance-gl) !important;
  box-shadow: 0 0 0 4px var(--radiance-gl) !important;
}

.otp-verify-box {
  background: var(--sapphire-lt);
  border: 1px solid rgba(0, 108, 255, 0.15);
  border-radius: 12px;
  padding: 1rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: authFadeIn 0.5s var(--ease);
}

.otp-title {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--sapphire-dk);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-verify {
  background: var(--sapphire);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 8px 16px;
  border: none;
  transition: var(--t);
}

.btn-verify:hover {
  background: var(--sapphire-dk);
  transform: translateY(-1px);
}

.btn-verify:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ────────────────────────────────────────────────── */

/* ─── MOBILE BAR OVERRIDES FOR DASHBOARD ────────────── */
@media (max-width: 768px) {
    .mobile-command-trigger {
        display: none; /* Hide the old floating trigger */
    }

    /* Modern Dashboard Nav Toggle */
    .dash-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: var(--sapphire-lt);
        color: var(--sapphire);
        border: 1px solid rgba(0, 108, 255, 0.1);
        border-radius: 10px;
        font-size: 1.1rem;
        transition: all 0.2s var(--bezier);
        box-shadow: 0 4px 12px rgba(0, 108, 255, 0.1);
    }
    
    .dash-nav-toggle:active {
        transform: scale(0.9);
        background: var(--sapphire);
        color: #fff;
    }
}

/* ─── MOBILE VIEW OPTIMIZATION (PREMIUM POLISH) ─── */
.mob-overlay, .mob-side-drawer { display: none; }

@media (max-width: 1199.98px) {
    .mob-overlay, .mob-side-drawer { display: flex; }
    /* Professional Side Drawer Styling */
    .mob-overlay {
        position: fixed; inset: 0; background: rgba(2, 6, 23, 0.4);
        backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
        z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.4s ease;
    }
    .mob-overlay.active { opacity: 1; visibility: visible; }

    .mob-side-drawer {
        position: fixed; top: 0; right: -290px; width: 290px; height: 100vh;
        background: #ffffff; z-index: 2001; transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
        display: flex; flex-direction: column; box-shadow: -15px 0 45px rgba(0,0,0,0.12);
        visibility: hidden; pointer-events: none;
    }
    .mob-side-drawer.active { transform: translateX(-290px); visibility: visible; pointer-events: auto; }

    .drawer-header {
        padding: 1.5rem 1.25rem; display: flex; align-items: center; justify-content: space-between;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .btn-drawer-close {
        width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
        background: var(--surface); color: var(--subtle); display: flex; align-items: center;
        justify-content: center; font-size: 1rem; transition: all 0.2s;
    }
    .btn-drawer-close:active { transform: scale(0.9); background: #eee; }

    .drawer-nav { padding: 1.25rem 0; flex: 1; overflow-y: auto; }
    .drawer-link {
        display: flex; align-items: center; gap: 1rem; padding: 0.85rem 1.25rem;
        text-decoration: none; color: var(--body); font-weight: 500; font-size: 0.95rem;
        transition: all 0.3s;
    }
    .drawer-link:hover { background: var(--surface); }
    .drawer-link.active { background: var(--sapphire-lt); color: var(--sapphire); font-weight: 700; border-right: 3px solid var(--sapphire); }
    .dl-ico {
        width: 38px; height: 38px; border-radius: 10px; background: var(--surface);
        color: var(--subtle); display: flex; align-items: center; justify-content: center;
        font-size: 0.95rem; transition: inherit;
    }
    .dl-label { letter-spacing: -0.2px; }
    .drawer-link.active .dl-ico { background: var(--white); color: var(--sapphire); box-shadow: var(--shadow-sm); }

    /* Modern Colorized Icons (Drawer) */
    .icon-sapphire { color: #006cff !important; background: rgba(0, 108, 255, 0.08) !important; }
    .icon-emerald  { color: #10b981 !important; background: rgba(16, 185, 129, 0.08) !important; }
    .icon-radiance { color: #f59e0b !important; background: rgba(245, 158, 11, 0.08) !important; }
    .icon-indigo   { color: #6366f1 !important; background: rgba(99, 102, 241, 0.08) !important; }
    .icon-ruby     { color: #ef4444 !important; background: rgba(239, 68, 68, 0.08) !important; }
    .icon-teal     { color: #14b8a6 !important; background: rgba(20, 184, 166, 0.08) !important; }

    .drawer-sep { height: 1px; background: rgba(0,0,0,0.04); margin: 1.25rem 1.25rem; }

    .btn-drawer-p {
        display: flex; align-items: center; justify-content: center; width: calc(100% - 2.5rem);
        margin: 0 1.25rem; padding: 0.65rem; background: var(--obsidian); color: #fff;
        border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 0.85rem;
        box-shadow: 0 8px 16px rgba(2, 6, 23, 0.15); transition: all 0.2s;
    }
    .btn-drawer-s {
        display: flex; align-items: center; justify-content: center; width: calc(100% - 2.5rem);
        margin: 0 1.25rem; padding: 0.65rem; background: var(--surface); color: var(--obsidian);
        border: 1px solid var(--border); border-radius: 10px; text-decoration: none;
        font-weight: 700; font-size: 0.85rem; transition: all 0.2s;
    }

    .btn-mob-toggle {
        width: 44px; height: 44px; border-radius: 10px; border: 1.5px solid var(--border);
        background: var(--white); color: var(--obsidian); display: flex; align-items: center;
        justify-content: center; font-size: 1.1rem; transition: all 0.2s;
    }
    .btn-mob-toggle:active { transform: scale(0.9); border-color: var(--sapphire); color: var(--sapphire); }

    .f-about { margin-bottom: 1rem !important; }
    .f-h { margin-top: 0.75rem; margin-bottom: 0.75rem; }
    .f-sep { margin-top: 1.5rem !important; margin-bottom: 1rem !important; }
    .f-copy { text-align: center; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
    .f-status { justify-content: center; margin-top: 0.5rem; }
}

@media (max-width: 576px) {
    h1, .hero h1 { font-size: 1.85rem !important; }
    /* Security Code Input */
    .code-digit { width: 45px !important; height: 60px !important; font-size: 1.25rem !important; }
    .code-input-group { gap: 8px !important; }
}

/* ─── TARGETED MOBILE OPTIMIZATION (PREMIUM FIX) ─── */
@media (max-width: 991.98px) {
    .hero-pricing h1 { font-size: 2.25rem !important; }
    .hero-pricing .hero-sub { font-size: 0.95rem !important; }
    .plan { padding: 2rem 1.5rem; margin-bottom: 2rem; }
}

@media (max-width: 767.98px) {
    .nav-actions .btn-obsidian { display: none !important; } /* Hide dashboard/logout from main header */
    .nav-actions .btn-cta { padding: 4px 10px !important; font-size: 0.75rem !important; border-radius: 5px !important; }
    .nav-actions .btn-cta i { font-size: 0.6rem !important; }
    .btn-mob-toggle { width: 32px !important; height: 32px !important; font-size: 0.85rem !important; border-radius: 6px !important; }

    
    .header-mobile-padding { padding-top: 10px !important; }
    
    .hero { padding: 40px 0 20px !important; } /* Balanced top/bottom padding */
    .hero-chip { margin-top: 0 !important; margin-bottom: 1rem !important; padding-top: 0 !important; }
    .hero h1 { font-size: 1.85rem !important; line-height: 1.15 !important; margin-bottom: 0.75rem !important; letter-spacing: -0.5px; }
    .hero-sub { font-size: 0.88rem !important; line-height: 1.5 !important; margin-bottom: 1rem !important; color: rgba(255,255,255,0.7); }
    
    /* Hero Ordering & Minimal Space */
    .flex-column-reverse-sm { flex-direction: column-reverse !important; }
    .hero-image-panel-wrap { 
        margin: 0 !important; padding: 0 !important;
        background: none !important; box-shadow: none !important; 
    }
    .hero-image-panel { 
        width: 100%; max-width: 330px; margin: 0 auto; display: block;
        aspect-ratio: 16/9; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .hero-image-panel-overlay { display: none !important; } /* Clear background only image content */

    .hero-pricing h1 { font-size: 2.25rem !important; }
    .svc-carousel-wrap { 
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; 
  padding: 1rem 0.5rem; scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.svc-carousel-wrap::-webkit-scrollbar { display: none; }
    .offer-adv-pro { 
        padding: 5px 12px !important; 
        border-radius: 10px !important; 
        font-size: 0.72rem !important;
        max-width: 85%;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .offer-adv-pro .fw-extrabold { font-size: 0.7rem !important; }
    
    /* Mission & Services Card Premium Refinement (Compact) */
    .card-num { display: none !important; }
    
    .card-svc {
        border-radius: 20px !important;
    }
    
    .card-body-svc {
        padding: 1.5rem !important;
    }
    
    .card-ico {
        margin-bottom: 0.75rem !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 0.9rem !important;
        margin-left: 0 !important; /* Align to left with text */
    }
    
    .card-svc h5 {
        font-size: 1.25rem !important;
        margin-bottom: 0.5rem !important;
        letter-spacing: -0.5px;
    }
    
    .card-svc p {
        font-size: 0.875rem !important;
        line-height: 1.5 !important;
        text-align: justify !important; /* Fill the card width */
        hyphens: auto;
    }

    /* Expand Carousel to tablet/mobile (under 768px) */
    .svc-carousel-wrap {
        display: flex !important; 
        flex-wrap: nowrap !important;
        gap: 15px; 
        overflow-x: auto !important;
        padding-bottom: 25px; margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
        scrollbar-width: none; -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .svc-carousel-wrap::-webkit-scrollbar { display: none; }
    .svc-carousel-wrap > div { 
        flex: 0 0 calc(100vw - 48px) !important; /* Full width minus margins */
        min-width: calc(100vw - 48px) !important;
        scroll-snap-align: center;
        padding-left: 5px; padding-right: 5px;
    }
    .svc-indicators {
        display: flex; justify-content: center; gap: 8px; margin-top: -5px; margin-bottom: 20px;
    }
    .svc-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; transition: .3s; }
    .svc-dot.active { width: 24px; border-radius: 4px; background: var(--sapphire); }
    .svc-wrap-outer { overflow: hidden; }

    /* 2-Column Pair View for Methodology */
    .row.g-4.meth-pair > div { width: 50% !important; }
    .meth-pair .card-svc { padding: 1.25rem !important; text-align: center; }
    .meth-pair .card-ico { width: 44px !important; height: 44px !important; font-size: 1.1rem !important; margin-bottom: 12px !important; }
    .meth-pair h5 { font-size: 0.95rem !important; margin-bottom: 6px; }
    .meth-pair p.small { font-size: 0.72rem !important; line-height: 1.3; }

    /* New: 2-Column Grid Utility for Mobile */
    .mob-grid-2 { display: flex; flex-wrap: wrap; margin: 0 -10px; }
    .mob-grid-2 > div { width: 50% !important; padding: 0 10px 20px; }
    .mob-grid-2 .card-svc { padding: 1.5rem 1.25rem !important; }
    .mob-grid-2 .card-ico { width: 40px !important; height: 40px !important; font-size: 1rem !important; margin-bottom: 1rem !important; }
    .mob-grid-2 .card-num { font-size: 2rem !important; top: 1rem !important; right: 1rem !important; margin-bottom: 0.5rem !important; }
    .mob-grid-2 p { font-size: 0.85rem !important; line-height: 1.5 !important; }

    /* Button Scaling & Off Metrics (Round 9) */
    .hero-actions, .cta-sec .d-flex { flex-direction: column !important; align-items: stretch !important; gap: 8px !important; max-width: 300px; margin: 0 auto; width: 100%; }
    .btn-hero-p, .btn-hero-s { width: 100% !important; text-align: center; padding: 10px 18px !important; font-size: 0.85rem !important; display: flex !important; justify-content: center !important; align-items: center !important; }
}

@media (max-width: 575.98px) {
    .hero-pricing { padding-top: 40px !important; padding-bottom: 30px !important; }
    .hero-pricing h1 { font-size: 1.65rem !important; }
    
    /* 2-Column Pricing Mini-Cards */
    .row.pricing-grid-mobile { margin-left: -8px; margin-right: -8px; }
    .pricing-grid-mobile > div { padding-left: 8px; padding-right: 8px; }
    
    .plan { padding: 1.25rem 1rem !important; text-align: left !important; border-radius: 18px !important; position: relative !important; }
    .plan .d-flex.justify-content-between { flex-direction: column !important; align-items: flex-start !important; gap: 2px; margin-bottom: 8px !important; }
    
    .plan-name { font-size: 0.68rem !important; font-weight: 800 !important; color: var(--subtle); text-transform: uppercase; letter-spacing: 0.5px; text-align: left !important; padding-right: 45px !important; width: 100% !important; display: block !important; }
    .price-pro { font-size: 1.65rem !important; line-height: 1; text-align: left !important; }
    .price-pro .currency { font-size: 0.9rem; }
    .price-pro .period { font-size: 0.65rem; opacity: 0.8; display: block; margin-top: 2px; }
    
    .price-strikethrough { display: none !important; }
    .plan-features { display: block !important; margin: 10px 0 !important; text-align: left !important; }
    .plan-features li { 
        padding: 4px 0 !important; font-size: 0.68rem !important; 
        gap: 6px !important; border-bottom: none !important;
        line-height: 1.2 !important; font-weight: 500 !important;
    }
    .plan-features li i { font-size: 0.65rem !important; flex-shrink: 0 !important; }
    
    .off-badge { position: absolute !important; top: 10px !important; right: 10px !important; display: inline-block; padding: 2px 8px; font-size: 0.68rem !important; border-radius: 6px; margin: 0 !important; z-index: 20; }
    .featured-badge { font-size: 0.55rem; padding: 3px 10px; top: -10px; right: 50%; transform: translateX(50%); width: max-content; }
    
    .btn-plan-pro { padding: 6px 10px !important; font-size: 0.7rem !important; border-radius: 8px !important; white-space: nowrap !important; display: flex !important; justify-content: center !important; width: 100% !important; }
    .btn-plan-pro i { display: none; } /* Hide icon to save space */

    .cta-tag { margin-bottom: 0.5rem !important; }

    /* CTA Section Optimization */
    .cta-ms { gap: 0.5rem !important; margin-top: 0.5rem !important; padding-top: 0.5rem !important; justify-content: space-between !important; }
    .ms-val { font-size: 1.05rem !important; margin-bottom: 0 !important; line-height: 1 !important; }
    .ms-lbl { font-size: 0.5rem !important; letter-spacing: 0.5px !important; white-space: nowrap; line-height: 1 !important; }
    .ms-item { flex: 1; text-align: center; }
    .cta-sec { padding: 20px 0 !important; }
    .cta-sec h2 { font-size: 1.45rem !important; margin-bottom: 0.75rem !important; letter-spacing: -0.5px; white-space: nowrap; }
    .cta-sec p { font-size: 0.95rem !important; margin-bottom: 0.75rem !important; text-align: justify; padding: 0 10px; }

    /* Specialized Services Carousel (Round 6: Single-Box Swipe) */
    .svc-carousel-wrap {
        display: flex !important; 
        flex-wrap: nowrap !important; /* Force horizontal */
        gap: 20px; 
        overflow-x: auto !important;
        padding-bottom: 15px; margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem;
        scrollbar-width: none; -ms-overflow-style: none;
        scroll-snap-type: x mandatory; /* Aggressive snap */
        -webkit-overflow-scrolling: touch;
    }
    .svc-carousel-wrap::-webkit-scrollbar { display: none; }
    .svc-carousel-wrap > div { 
        flex: 0 0 calc(100vw - 40px) !important; /* Fill almost full width */
        min-width: calc(100vw - 40px) !important;
        scroll-snap-align: center; /* Center each card on swipe */
    }
    .svc-carousel-wrap .card-svc { 
        height: 100%; min-height: 120px; 
        padding-bottom: 0 !important; 
        border: 1px solid var(--border) !important;
        border-radius: 20px !important;
    }
    .svc-carousel-wrap .card-img-top { 
        height: 180px !important; /* Reverted to compact height */
    }
    .svc-carousel-wrap .card-body-svc {
        padding: 1rem 1.25rem !important; /* Reverted to compact padding */
        display: flex; flex-direction: column; justify-content: center;
    }
    /* .svc-carousel-wrap .card-body-svc p { display: none !important; } */
    .svc-carousel-wrap .card-body-svc h5 { margin-bottom: 0.4rem !important; font-size: 1.05rem !important; }
    /* .card-num hidden via 768px media query */

    /* Carousel Indicators (Round 7) */
    .svc-indicators {
        display: flex; justify-content: center; gap: 8px; margin-top: -10px; margin-bottom: 5px;
    }
    .svc-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; transition: .3s; }
    .svc-dot.active { width: 24px; border-radius: 4px; background: var(--sapphire); }

    .svc-wrap-outer { margin-bottom: 0 !important; margin-top: -10px !important; overflow: hidden; }
    .svc-carousel-btn-wrap { margin-top: 0px !important; margin-bottom: 0px !important; }
    .sec-surface { padding: 15px 0 5px !important; }
    .sec-surface + .sec { padding-top: 5px !important; }
    .sec { padding: 15px 0 !important; }

    /* Round 10: Why Us & Curriculum Spacing Fix */
    .sec-p-wide { margin-bottom: 2.5rem; } /* Desktop Default */
    @media (max-width: 575.98px) {
        .sec-p-wide { margin-bottom: 1rem !important; }
        .mob-grid-2 { margin-top: 0.75rem !important; }
        .mob-grid-2 > div { padding-bottom: 8px !important; }
        .curric { padding: 1.25rem !important; }
        .curric-h { margin-bottom: 0.75rem !important; }
        
        /* About Page Feature Grid Mobile Fixes */
        .about-feat-card { padding: 0.75rem !important; gap: 0.5rem !important; }
        .about-feat-ico { width: 32px !important; height: 32px !important; font-size: 0.8rem !important; }
        .about-feat-h { font-size: 0.8rem !important; line-height: 1.2; }
    }

    /* About Page Feature Grid Desktop Defaults (Restore Original) */
    @media (min-width: 768px) {
        .about-feat-card { padding: 1.5rem !important; gap: 1rem !important; }
        .about-feat-ico { width: 48px !important; height: 48px !important; font-size: 1.25rem !important; }
        .about-feat-h { font-size: 1rem !important; }
    }

    /* Hero Metrics & Spacing */
    .hero { padding-bottom: 0 !important; }
    .hero-metrics { 
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 0.5rem !important; 
      justify-content: space-between !important; 
      margin-bottom: 0.75rem !important;
      width: 100%;
    }
    .hm { flex: 1; text-align: center; }
    .hm-n { font-size: 1.25rem !important; }
    .hm-l { font-size: 0.55rem !important; letter-spacing: 0.2px !important; }
    .hero-actions { 
        margin-top: 0.4rem !important; margin-bottom: 15px !important; gap: 10px !important; 
        position: relative; z-index: 100 !important; /* Force to top above all overlays */
    }
    .btn-hero-p, .btn-hero-s { touch-action: manipulation; }
    .btn-hero-p:active, .btn-hero-s:active { transform: none !important; box-shadow: none !important; opacity: 0.8; } 

.announce-bar { 
    padding: 6px 10px !important; 
    font-size: 0.75rem !important; 
    gap: 8px !important;
}
.announce-bar marquee { 
    flex: 1 !important; 
    min-width: 0 !important; 
}
.announce-badge { 
    transform: scale(0.8); 
    transform-origin: left center;
    margin-right: -10px;
}
.announce-bar a { font-size: 0.7rem !important; }

/* Global Mobile Container Padding Fix */
.container { 
    padding-left: 20px !important; 
    padding-right: 20px !important; 
}

/* Roadmap Card Mobile Refinement */
.roadmap-item .card-svc {
    padding: 1.25rem !important;
}
.roadmap-item .feat-ico {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
}
.roadmap-item h5 {
    font-size: 1rem !important;
}
.roadmap-item p {
    font-size: 0.8rem !important;
}

/* Trust Bar Marquee Fix */
.trust { 
    padding: 8px 0 !important; 
}
.trust .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.trust-lbl { 
    font-size: 0.65rem !important; 
    margin-right: 12px !important; 
}
.trust marquee {
    flex: 1;
    min-width: 0;
}
.trust-co { 
    font-size: 0.85rem !important; 
    margin-right: 20px !important; 
}


    /* Curriculum Row Fix & Scroll */
    .curric { padding: 2.25rem !important; border-radius: var(--r-xl) !important; overflow: hidden; }
    .curric-h { margin-bottom: 1.25rem !important; font-size: .65rem !important; }
    .curric-scroll-wrap { 
        display: flex; gap: 12px; overflow-x: auto; 
        padding-bottom: 15px; margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem;
        scrollbar-width: none; -ms-overflow-style: none;
    }
    .curric-scroll-wrap::-webkit-scrollbar { display: none; }
    .curric-row { 
        flex: 0 0 160px; padding: 10px 14px !important; 
        background: var(--surface); border: 1px solid var(--border) !important; 
        border-radius: 12px !important; flex-direction: column !important; 
        align-items: flex-start !important; gap: 4px !important;
        font-size: 0.82rem !important; margin-bottom: 8px;
    }
    /* Services Scroll */
    .svc-scroll-wrap {
        display: flex; gap: 15px; overflow-x: auto;
        padding-bottom: 20px; margin: 0 -1.25rem; padding-left: 1.25rem; padding-right: 1.25rem;
        scrollbar-width: none; -ms-overflow-style: none;
    }
    .svc-scroll-wrap::-webkit-scrollbar { display: none; }
    .svc-scroll-wrap > div { flex: 0 0 260px; }

    .f-elite { padding: 40px 20px 25px !important; text-align: left; }
    .f-ul-pro { display: flex; flex-direction: column; align-items: flex-start; padding: 0; margin-bottom: 1.5rem; }
    .f-contact-pro { align-items: flex-start !important; margin-bottom: 1rem; }
    .f-h-pro { text-align: left !important; }
    .f-brand-pro { justify-content: flex-start !important; text-align: left !important; }
    .f-trust-pill { justify-content: flex-start !important; text-align: left !important; }
    .f-about-pro { margin-left: 0; margin-right: 0; max-width: 420px; text-align: left !important; }
    
    .f-social-mob a {
        color: var(--sapphire-lt);
        font-size: 1.25rem;
        transition: .3s;
    }
    .f-social-mob a:hover { color: var(--accent); }
    
    .f-copy { font-size: 0.75rem !important; opacity: 0.7; }
    .f-status { font-size: 0.7rem !important; }
    
    .sec-h { font-size: 1.45rem !important; margin-bottom: 0.25rem !important; line-height: 1.2 !important; letter-spacing: -0.5px; }
    .sec-p { font-size: 0.85rem !important; line-height: 1.4 !important; margin-bottom: 1rem !important; }

    /* Round 5: Zero-Space Hero Helper */
    .hero-mob-image-zero { 
        margin: 0.25rem 0 0.75rem !important; 
        padding: 0 !important;
        background: none !important;
        box-shadow: none !important;
    }
}

/* Round 6: High-Density Mobile Pair View */
@media (max-width: 575.98px) {
    .card-svc { border-radius: 18px !important; }
    .card-img-top { height: 110px !important; }
    .card-body-svc { padding: 1.25rem 1.15rem !important; }
    .card-body-svc h5 { font-size: 1.05rem !important; margin-bottom: 0.4rem !important; font-weight: 800 !important; line-height:1.2 !important; word-break: break-word !important; }
    .card-body-svc p { font-size: 0.85rem !important; line-height: 1.5 !important; margin-bottom: 0.5rem !important; opacity: 0.85 !important; display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden !important; text-align: justify !important; hyphens: auto !important; }
    .badge-custom { font-size: 0.5rem !important; padding: 1px 5px !important; margin-bottom: 0.25rem !important; }
    .card-num { display: none !important; }
    .lnk { font-size: 0.68rem !important; font-weight: 700 !important; }
    .card-ico { display: none !important; }
    .card-body-svc .mt-auto { padding-top: 0.5rem !important; margin-top: 0.25rem !important; border-top: 0.5px solid rgba(0,0,0,0.05) !important; }

    /* Round 7: Ultra-Compact Curriculum Highlights */
    .curric-elite { padding: 1.25rem 1.1rem !important; border-radius: 18px !important; display: flex !important; flex-direction: column !important; align-items: flex-start !important; }
    .ce-header { margin-bottom: 1rem !important; width: 100% !important; text-align: left !important; }
    .ce-title { font-size: 1.2rem !important; margin-bottom: 0px !important; text-align: left !important; }
    .ce-tag { font-size: 0.52rem !important; letter-spacing: 1px !important; }
    .ce-list { display: flex !important; flex-direction: column !important; gap: 0 !important; width: 100% !important; align-items: flex-start !important; }
    .ce-item { padding: 0.75rem 0.5rem !important; border-bottom: 0.5px solid rgba(0,0,0,0.05) !important; display: flex !important; flex-direction: column !important; gap: 5px !important; margin-left: 0.5rem !important; width: 100% !important; align-items: flex-start !important; }
    .ce-main-ico { font-size: 0.9rem !important; width: 22px !important; text-align: center !important; flex-shrink: 0 !important; }
    .ce-text { font-size: 0.82rem !important; font-weight: 700 !important; color: #1e293b !important; line-height: 1.2 !important; text-align: left !important; }
    .ce-meta { display: flex !important; gap: 5px !important; flex-wrap: wrap !important; margin-top: 1px !important; padding-left: 28px !important; justify-content: flex-start !important; }
    .ce-info { font-size: 0.55rem !important; padding: 1px 6px !important; border: 0.5px solid rgba(0,0,0,0.08) !important; background: rgba(0,0,0,0.01) !important; }
    .ce-badge { font-size: 0.5rem !important; padding: 0px 4px !important; height: 14px !important; line-height: 14px !important; }
    .ce-ico { font-size: 1rem !important; opacity: 0.3 !important; }
    
    .curric-elite .btn-radiance { 
        padding: 0.75rem 1rem !important; 
        font-size: 0.82rem !important; 
        min-height: unset !important; 
        display: inline-flex !important;
        width: auto !important;
        margin: 0 auto !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Contact Page Mobile Refinement */
    .hero-contact { padding: 40px 0 25px !important; }
    .hero-contact h1 { font-size: 1.75rem !important; }
    .hero-contact .hero-sub { font-size: 0.9rem !important; margin-bottom: 0px !important; }
    .hero-contact .hero-chip { margin-bottom: 1rem !important; padding: 4px 10px !important; }
    
    .glass-form { 
        padding: 1.5rem !important; 
        border-radius: 24px !important; 
        margin-top: -10px !important;
    }
    .glass-form h3 { font-size: 1.35rem !important; }
    .glass-form p { font-size: 0.8rem !important; margin-bottom: 1.5rem !important; }
    
    .support-ico { 
        width: 42px !important; 
        height: 42px !important; 
        font-size: 1.15rem !important; 
        border-radius: 10px !important;
    }
    .support-card h6 { font-size: 0.9rem !important; }
    .support-card p { font-size: 0.75rem !important; }
    
    .form-floating > label { font-size: 0.85rem !important; }
    .form-control { font-size: 0.85rem !important; padding: 0.75rem 0.75rem !important; height: auto !important; }
    .form-floating > .form-control { padding-top: 1.625rem !important; padding-bottom: 0.625rem !important; }

    /* Compact syllabus button for small screens */
    .btn-syllabus-locked, .btn-unlocked {
        padding: 0.65rem 1rem !important;
        font-size: 0.82rem !important;
        border-radius: 12px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        font-weight: 700 !important;
    }

    /* Force full text display for Mission & Vision */
    .ce-text-full {
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        overflow: visible !important;
        opacity: 0.9 !important; /* Slightly more readable */
    }

    /* Restore & Align Mission & Vision Headers (Horizontal) */
    #mvCarousel .card-body-svc > .d-flex {
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.85rem !important;
    }
    #mvCarousel .card-ico {
        display: flex !important;
        width: 38px !important;
        height: 38px !important;
        font-size: 0.95rem !important;
        margin-bottom: 0px !important;
    }
    #mvCarousel .card-body-svc h5 {
        margin-bottom: 0px !important;
        padding-top: 1px !important; /* Visual nudge for glyph centering */
    }
}

/* --- Elite Status Console ------------------------- */
.status-console-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.95));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 20px rgba(0, 108, 255, 0.1);
}

.status-console-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot-premium {
    width: 10px;
    height: 10px;
    background: var(--emerald);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--emerald);
}

.pulse-dot-premium::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--emerald);
    animation: pulse-glow-premium 2s infinite;
    opacity: 0;
}

@keyframes pulse-glow-premium {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

.status-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.latency-pill {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald);
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-msg {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.status-meta {
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-lbl {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.meta-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 500;
}

@media (max-width: 576px) {
    .status-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    .status-console-box {
        padding: 1rem;
    }
}
