
/* ==========================================================================
   BLERDTECH — style.css
   
   ========================================================================== */

/* -------------------- Root Variables -------------------- */

:root {
  --primary: #8348E2;
  --primary-dark: #A76DFF;
  --primary-light: #A985F2;
  --secondary: #2FBF71;
  --heading: #14102B;
  --text: #5B5876;
  --text-light: #8B87A3;
  --border: #E7E3F5;
  --bg: #ffffff;
  --bg-soft: #F7F5FC;
  --bg-dark: #0A0620;
  --footer-bg: #030F22;
  --danger: #E8555B;
  --danger-bg: #FDEEEE;
  --success-bg: #EAFBF1;
  --shadow: 0 20px 40px -12px rgba(52, 27, 120, 0.15);
  --shadow-sm: 0 4px 14px rgba(52, 27, 120, 0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --section-space: 100px;
  --hero-gradient: radial-gradient(120% 130% at 15% 10%, #4A2FA0 0%, #6A3EBF 35%, #8F7ACB 70%, #ffffff 100%);
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

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

ul { list-style: none; padding: 0; margin: 0; }

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

button { font-family: var(--font-body); }

.container-xl {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 15px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

.section-space { padding: var(--section-space) 0; }

/* -------------------- Buttons -------------------- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-pill);
  padding: 13px 26px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px -6px rgba(139, 77, 232, 0.55);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 14px 28px -6px rgba(139, 77, 232, 0.6);
}

.btn-light {
  background: #ffffff;
  color: var(--heading);
}
.btn-light:hover { background: #f1eefc; color: var(--heading); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--heading);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--bg-soft); }

.btn-play {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-play .play-circle {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 10px;
}
.btn-play:hover { background: rgba(255,255,255,0.22); color: #fff; }

.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* background: rgba(20, 8, 56, 0.55); */
  background: radial-gradient(
    120% 130% at 15% 10%,
    #4A2FA0 0%,
    #6A3EBF 35%,
    #8F7ACB 70%,
    #ffffff 122%
);

  
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(15, 6, 43, 0.92);
  box-shadow: 0 6px 24px rgba(10, 4, 30, 0.35);
  padding: 12px 0;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: var(--font-heading); font-size: 17px; font-weight: 800; letter-spacing: 0.01em; }
.brand-text span { font-size: 9px; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--primary-light);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
a.logo-white img {
    width: auto;
    max-width: inherit;
    max-height: 68px;
}
/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--hero-gradient);
  padding: 60px 0 120px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 15%, rgba(255,255,255,0.10) 0%, transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(255,255,255,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 0 3px rgba(47,191,113,0.3);
}
.hero h1 {
  color: #fff;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 30px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13.5px;
  font-weight: 500;
}
.hero-feature i {
  color: var(--secondary);
  font-size: 15px;
}

/* Hero dashboard card */
.hero-visual { position: relative; }
.dash-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 70px -20px rgba(20, 6, 60, 0.45);
  padding: 26px 26px 22px;
  position: relative;
  transform: rotate(0.4deg);
}
.dash-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.dash-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.dash-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  
  padding: 4px 20px;
  border-radius: var(--radius-pill);
}
.dash-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--secondary); }
.dash-card h3 { font-size: 19px; margin-bottom: 18px; }

.dash-ring {
  display: flex;
  justify-content: center;
  margin: 6px 0 22px;
  position: relative;
}
.ring-wrap { position: relative; width: 150px; height: 150px; }
.ring-wrap svg { transform: rotate(-90deg); }
.ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.ring-center strong { font-size: 30px; font-family: var(--font-heading); color: var(--heading); font-weight: 800; }
.ring-center span { font-size: 10.5px; color: var(--text-light); font-weight: 600; letter-spacing: 0.03em; }

.dash-metrics { display: flex; flex-direction: column; gap: 13px; margin-bottom: 8px; }
.dash-metric { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.dash-metric span:first-child { color: var(--text); }
.dash-metric .val { font-weight: 700; color: var(--heading); display: flex; align-items: center; gap: 5px; }
.dash-metric .val.up { color: var(--secondary); }

.dash-floating-badge {
  position: absolute;
 top: -20px;
  right: -10px;
  background: #fff;
  color: var(--heading);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dash-floating-badge i { color: #FFC940; }

.dash-tag {
  position: absolute;
  left: -18px;
  bottom: -20px;
  background: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

/* ==========================================================================
   Trusted Tech Strip
   ========================================================================== */
.trust-strip { padding: 56px 0 20px; text-align: center; }
.trust-strip .eyebrow { justify-content: center; display: flex; margin-bottom: 30px; }
.trust-strip .eyebrow::before { display: none; }
.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.logo-row .logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.65;
  transition: all 0.25s ease;
}
.logo-row span.logo-item {
    background: #F9FAFB;
    padding: 10px 10px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    width: 150px;
    min-height: 90px !important;
    justify-content: center;
}
.logo-row .logo-item:hover { filter: none; opacity: 1; }
.logo-row .logo-item i { font-size: 20px; }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats-section { padding: 50px 0 90px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.stat-item strong {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.stat-item span { font-size: 13.5px; color: var(--text-light); font-weight: 500; }
.stats-badge-wrap { display: flex; justify-content: center; }
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-soft);
  color: var(--primary-dark);
  border: 1px solid var(--border);
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   Org Type Tabs Section
   ========================================================================== */
.org-section { padding: var(--section-space) 0; background: var(--bg-soft); }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-heading .eyebrow { justify-content: center; margin-bottom: 14px; }
.section-heading h2 { font-size: 36px; margin-bottom: 12px; }
.section-heading h2 .highlight { color: var(--primary); }
.section-heading p { color: var(--text); font-size: 15.5px; }

.org-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.org-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}
.org-tab i { font-size: 15px; }
.org-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 22px -8px rgba(139,77,232,0.55);
}

.org-panel { display: none; }
.org-panel.active { display: block; animation: fadeUp 0.4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.org-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.org-left { padding: 40px; }
.org-left > p.lead {
  background: #F0EAFC;
  color: var(--primary-dark);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-weight: 600;
  font-size: 14.5px;
  margin-bottom: 26px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.org-left .lead i { margin-top: 2px; flex-shrink: 0; }
.challenge-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.challenge-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.challenge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--danger-bg);
  border: 1px solid #F8DCDD;
  color: #B23A40;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
}
.challenge-item i { color: var(--danger); flex-shrink: 0; }
.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-bg);
  color: #1E9C5A;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13.5px;
}

.org-right { position: relative; background: var(--bg-soft); display: flex; flex-direction: column; }
.org-right-img { width: 100%; height: 220px; overflow: hidden; position: relative; }
.org-right-img img { width: 100%; height: 100%; object-fit: cover; }
.org-right-img .img-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(20,16,43,0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.org-solutions { padding: 30px 40px 36px; }
.org-solutions .challenge-label { color: var(--primary); }
.solution-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.solution-item:last-child { border-bottom: none; }
.solution-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #F0EAFC;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.solution-text strong { display: block; font-size: 14.5px; color: var(--heading); margin-bottom: 3px; }
.solution-text span { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ==========================================================================
   Case Studies
   ========================================================================== */
.case-section { padding: var(--section-space) 0; }
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.case-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case-media { position: relative; height: 230px; overflow: hidden; }
.case-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.case-card:hover .case-media img { transform: scale(1.06); }
.case-tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--secondary);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.case-tag.gov { background: #3B6EF0; }
.case-body { padding: 26px 28px 28px; }
.case-label { font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.case-body p.desc { font-size: 14.5px; color: var(--text); line-height: 1.55; margin-bottom: 18px; }
.case-results { display: flex; gap: 10px; flex-wrap: wrap; }
.case-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--success-bg);
  color: #1E9C5A;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
  font-weight: 700;
}

/* ==========================================================================
   Services
   ========================================================================== */
.services-section { padding: var(--section-space) 0; background: var(--bg-soft); }
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 44px;
}
.services-head h2 { font-size: 34px; max-width: 520px; }
.services-head h2 .highlight { color: var(--primary); }
.services-head p { color: var(--text); font-size: 14.5px; max-width: 320px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.service-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  color: #fff;
}
.service-card .chev { color: var(--text-light); font-size: 15px; transition: transform 0.3s ease; }
.service-card:hover .chev { transform: rotate(90deg); color: var(--primary); }
.service-card h4 { font-size: 16px; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

.icon-blue { background: #4C8DFF; }
.icon-teal { background: #34C0C7; }
.icon-orange { background: #FF9F43; }
.icon-green { background: #2FBF71; }
.icon-red { background: #F0555F; }
.icon-purple { background: #8B4DE8; }
.icon-cyan { background: #35B4E0; }
.icon-yellow { background: #F0B429; }
.icon-dark { background: #2B2640; }

/* ==========================================================================
   DIY vs BlerdTech Comparison Table
   ========================================================================== */
.compare-section { padding: var(--section-space) 0; }
.compare-table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
table.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead th {
  text-align: left;
  padding: 22px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--heading);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.compare-table thead th span { display: block; font-size: 11.5px; font-weight: 500; color: var(--text-light); margin-top: 3px; text-transform: none; letter-spacing: 0; }
.compare-table thead th.col-blerd { background: var(--primary); color: #fff; }
.compare-table thead th.col-blerd span { color: rgba(255,255,255,0.75); }
.compare-table thead th.col-diy, .compare-table thead th.col-blerd { text-align: center; }
.compare-table tbody td, .compare-table tbody th {
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table tbody th { text-align: left; font-weight: 500; color: var(--heading); }
.compare-table tbody td { text-align: center; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.compare-table td.col-blerd { background: #F6F1FE; }
.compare-table .ico-check { color: var(--secondary); font-size: 17px; }
.compare-table .ico-x { color: var(--danger); font-size: 16px; }
.compare-table .muted-x { color: #D9D5EC; font-size: 16px; }
.compare-table .txt-warn { color: var(--danger); font-weight: 700; font-size: 12.5px; }
.compare-table tfoot td, .compare-table tfoot th { padding: 22px 28px; border-top: 1px solid var(--border); }
.compare-table tfoot th { color: var(--heading); font-weight: 700; font-size: 15px; }
.compare-table tfoot td.col-diy { color: var(--text-light); font-size: 13.5px; text-align: center; }
.compare-table tfoot td.col-blerd { background: transparent; text-align: center; }

/* ==========================================================================
   Story Section
   ========================================================================== */
.story-section {
  padding: var(--section-space) 0;
  background: linear-gradient(135deg, #4A2FA0, #7A4FCB);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.story-section .eyebrow { color: #D6C4FF; justify-content: center; display: flex; }
.story-section .eyebrow::before { background: #D6C4FF; }
.story-section .section-heading h2 { color: #fff; text-align: center; }
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
  margin-top: 44px;
}
.story-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); }
.story-media img { width: 100%; height: 460px; object-fit: cover; }
.story-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(20,10,50,0) 40%, rgba(15,6,40,0.75) 100%);
}
.story-play-btn {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.story-founder-card {
  position: absolute;
  left: 18px; bottom: 18px; right: 18px;
  background: rgba(15,8,40,0.55);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.story-founder-card strong { font-size: 14px; }
.story-founder-card small { color: rgba(255,255,255,0.7); font-size: 12px; }
.founder-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.founder-tags span {
  background: rgba(255,255,255,0.14);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  font-weight: 600;
}

.story-quote { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.92); font-style: italic; margin-bottom: 26px; }
.story-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 34px; }
.story-point {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 18px;
  border-radius: var(--radius);
}
.story-point i { color: #C9B4FF; font-size: 17px; }
.story-point span { font-weight: 600; font-size: 14px; }

.story-journey-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.journey-list { display: flex; flex-direction: column; gap: 12px; }
.journey-item { display: flex; align-items: baseline; gap: 16px; font-size: 13.5px; }
.journey-item .yr { font-family: var(--font-heading); font-weight: 800; color: #C9B4FF; min-width: 44px; }
.journey-item .desc { color: rgba(255,255,255,0.82); }

#founderVideoModal .modal-dialog {
    max-width: 900px;
    margin: 1.75rem auto;
}

#founderVideoModal .modal-content {
    background: transparent;
    border: 0;
    box-shadow: none;
}

#founderVideoModal video {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  color: #000;
}
.cta-section .eyebrow { justify-content: center; display: flex; color: #C9B4FF; }
.cta-section .eyebrow::before { background: #C9B4FF; }
.cta-section h2 { color: #000; font-size: 34px; max-width: 620px; margin: 14px auto 14px; }
.cta-section p { color: #000; max-width: 480px; margin: 0 auto 30px; font-size: 15px; }
.cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.cta-note { font-size: 12.5px; color: #000; display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.cta-note span { display: flex; align-items: center; gap: 6px; }
.cta-note i { color: var(--secondary); }
a.btn.cta-btn {
    border: 1px solid #000;
}
/* ==========================================================================
   Gov Banner
   ========================================================================== */
.gov-banner {
  background: var(--bg-dark);
  padding: 16px 0;
  color: #fff;
}
.gov-banner .container-xl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.gov-banner-text { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,0.85); }
.gov-banner-text i { color: #4C8DFF; font-size: 17px; }
.gov-banner-text strong { color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.62); padding: 64px 0 0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 34px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; margin-bottom: 18px; max-width: 260px; }
.footer-socials { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: background 0.2s ease;
}
.footer-socials a:hover { background: var(--primary); }
.footer-cert {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: #fff; }

.footer-newsletter {
  margin: 40px 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-newsletter h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.footer-newsletter p { font-size: 13px; color: rgba(255,255,255,0.55); }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 380px; min-width: 260px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 13.5px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; border-color: var(--primary-light); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 12.5px; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: #fff; }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(139,77,232,0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  border: none;
  font-size: 16px;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }

.badge-pill-light {
    align-items: center;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}
/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal {  transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}
.reveal{
  opacity: 1 !important;
}
/* ==========================================================================
   Mobile nav offcanvas
   ========================================================================== */
/*.mobile-nav {
  position: fixed; inset: 0;
  background: #14082F;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 26px 24px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 34px; }
.mobile-nav-head .close-btn { background: none; border: none; color: #fff; font-size: 22px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 6px; margin-bottom: 30px; }
.mobile-nav-links a { color: #fff; font-size: 19px; font-weight: 600; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-actions { display: flex; flex-direction: column; gap: 12px; }
*/
/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1199.98px) {
  .hero h1 { font-size: 46px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr; row-gap: 34px; }
}

@media (max-width: 991.98px) {
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .hero-row { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .hero h1 { font-size: 40px; }
  .org-content { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-media img { height: 360px; }
  .compare-table { font-size: 13px; display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 12px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767.98px) {
  :root { --section-space: 64px; }
  .hero { padding: 40px 0 80px; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 15px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-head { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading h2 { font-size: 27px; }
  .org-tabs { gap: 8px; }
  .org-tab { padding: 10px 16px; font-size: 13px; }
  .compare-table thead th, .compare-table tbody td, .compare-table tbody th { padding: 12px 10px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .newsletter-form { max-width: 100%; width: 100%;flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  a.logo-white img{
    width:120px;
  }

}

@media (max-width: 575.98px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .case-body { padding: 20px; }
  .dash-card { padding: 20px 18px 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
/* ==========================================================================
   COMPLETE HEADER & DROPDOWN NAVIGATION CSS
   ========================================================================== */

/* 1. Container & Header Overflow Fixes */
.site-header, 
.navbar-inner, 
.nav-links {
  overflow: visible !important;
}

/* 2. Main Navigation Links Base */
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* 3. Underline Animation (Works for standard links & links with spans/chevrons) */
.nav-links a span {
  position: relative;
  display: inline-block;
}

/* Create animated underline for links with <span> (e.g. Services) */
.nav-links a span::after,
.nav-links a:not(:has(span))::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary-light, #0d6efd);
  transition: width 0.25s ease;
}

/* Trigger underline on hover */
.nav-links a:hover span::after,
.nav-links .nav-item.dropdown:hover .dropdown-toggle span::after,
.nav-links a:not(:has(span)):hover::after {
  width: 100%;
}

/* Prevent double underlines when <span> is used */
.nav-links a:has(span)::after {
  display: none !important;
}

/* 4. Dropdown Container & Chevron Alignment */
.nav-links .nav-item.dropdown {
  position: relative !important;
  display: inline-flex;
  align-items: center;
}

.nav-links .dropdown-icon {
  font-size: 0.75rem;
  margin-left: 0.35rem;
  transition: transform 0.2s ease;
}

.nav-links .nav-item.dropdown:hover .dropdown-icon,
.nav-links .nav-item.dropdown.show .dropdown-icon {
  transform: rotate(180deg);
}

/* 5. Desktop Dropdown Menu Card */
.nav-links .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  min-width: 230px;
  margin-top: 0.25rem;
  padding: 0.5rem 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  
  /* Smooth Fade In / Out */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

/* Invisible Mouse Bridge */
.nav-links .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
}

/* Display Triggers */
.nav-links .nav-item.dropdown:hover .dropdown-menu,
.nav-links .nav-item.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 6. Dropdown Items (Inside the menu) */
.nav-links .dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-links .dropdown-menu .dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #212529 !important;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-links .dropdown-menu .dropdown-item:hover,
.nav-links .dropdown-menu .dropdown-item:focus {
  background-color: #f8f9fa;
  color: var(--primary-light, #0d6efd) !important;
}

/* Remove main nav underline inside the dropdown card */
.nav-links .dropdown-menu .dropdown-item::after,
.nav-links .dropdown-menu .dropdown-item::before {
  display: none !important;
}
/* ===========================
   MOBILE OFFCANVAS
=========================== */

.mobile-nav{

    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    max-width:90%;
    height:100vh;

    background:#fff;

    z-index:99999;

    transition:.35s ease;

    overflow-y:auto;

    display:flex;
    flex-direction:column;

    box-shadow:-10px 0 30px rgba(0,0,0,.15);

}

.mobile-nav.active{
    right:0;
}

body.nav-open{
    overflow:hidden;
}

.mobile-nav-head{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.mobile-nav-head img{
    width:150px;
}

.close-btn{

    background:none;
    border:none;
    font-size:24px;
    cursor:pointer;

}

.mobile-nav-links{

    display:flex;
    flex-direction:column;

    padding:20px;

}

.mobile-nav-links>a{

    padding:14px 0;

    text-decoration:none;

    color:#111;

    font-weight:500;

    border-bottom:1px solid #eee;

}

.mobile-dropdown-toggle{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 0;

    text-decoration:none;

    color:#111;

    font-weight:500;

}

.mobile-dropdown-menu{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    padding-left:15px;

}

.mobile-dropdown.open .mobile-dropdown-menu{

    max-height:300px;

}

.mobile-dropdown-menu a{

    display:block;

    padding:10px 0;

    text-decoration:none;

    color:#555;

}

.mobile-dropdown-icon{

    transition:.3s;

}

.mobile-dropdown.open .mobile-dropdown-icon{

    transform:rotate(180deg);

}

.mobile-nav-actions{

    margin-top:auto;

    padding:20px;

}

.mobile-nav-actions .btn{

    width:100%;

}

/* Desktop */

@media(min-width:992px){

    .mobile-nav{
        display:none;
    }

}