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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-secondary);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

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

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

section {
  position: relative;
  padding: 100px 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 {
  font-family: var(--font-family-secondary);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 30px;
  text-transform: capitalize;
}

h2 {
  font-family: var(--font-family-secondary);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 15px;
  text-transform: capitalize;
}

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: -36px;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(13, 27, 42, 0.12);
}

/* ── TIER 1: TOP BAR ── */
.header-top {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  height: 36px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
}

.header-top-left .bolt {
  color: var(--electric);
  opacity: 0.9;
  font-size: 12px;
}

.top-dot {
  color: rgba(255, 255, 255, 0.18);
  margin: 0 6px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.social-label {
  font-family: var(--font-family-tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-right: 6px;
}

.social-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 8px;
}

.social-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.social-link:hover {
  background: rgba(245, 197, 24, 0.15);
  color: var(--electric);
}

/* ── TIER 2: IDENTITY BAR ── */
.header-mid {
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: 90px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  max-width: 200px;
}

.logo-sub {
  font-family: var(--font-family-secondary);
  font-size: 10px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.4px;
  border-left: 1px solid var(--border);
  padding-left: 10px;
  margin-left: 10px;
  margin-top: 3px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: 3px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.contact-item:hover .contact-icon {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--white);
}

.contact-lbl {
  font-family: var(--font-family-tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 3px;
}

.contact-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.mid-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.mid-cta {
  background: var(--navy);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, color 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.mid-cta:hover {
  background: var(--electric);
  color: var(--white);
  transform: translateY(-1px);
}

/* ── TIER 3: NAV BAR ── */
.header-nav {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  height: 46px;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  list-style: none;
  flex: 1;
}

.nav-menu li {
  display: flex;
  align-items: stretch;
}

.nav-menu a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu li.current-menu-item>a,
.nav-menu li.current-page-item>a,
.nav-menu li.current-menu-ancestor>a {
  color: var(--navy);
}

.nav-menu li:nth-child(1) a:hover,
.nav-menu li:nth-child(1).current-menu-item>a,
.nav-menu li:nth-child(1).current-page-item>a {
  border-bottom-color: var(--electric);
}

.nav-menu li:nth-child(2) a:hover,
.nav-menu li:nth-child(2).current-menu-item>a,
.nav-menu li:nth-child(2).current-page-item>a {
  border-bottom-color: var(--accent-green);
}

.nav-menu li:nth-child(3) a:hover,
.nav-menu li:nth-child(3).current-menu-item>a,
.nav-menu li:nth-child(3).current-page-item>a {
  border-bottom-color: var(--solar);
}

.nav-menu li:nth-child(4) a:hover,
.nav-menu li:nth-child(4).current-menu-item>a,
.nav-menu li:nth-child(4).current-page-item>a {
  border-bottom-color: var(--electric);
}

.nav-menu li:nth-child(5) a:hover,
.nav-menu li:nth-child(5).current-menu-item>a,
.nav-menu li:nth-child(5).current-page-item>a {
  border-bottom-color: var(--accent-green);
}

.nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--electric);
  opacity: 0;
  transition: opacity 0.2s;
}

.nav-menu a:hover .nav-dot,
.nav-menu li.current-menu-item>a .nav-dot,
.nav-menu li.current-page-item>a .nav-dot,
.nav-menu li.current-menu-ancestor>a .nav-dot {
  opacity: 1;
}

.nav-sep {
  width: 1px;
  background: var(--border);
  margin: 10px 0;
  align-self: center;
  height: 20px;
}

.nav-menu-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}

.nav-tag {
  font-family: var(--font-family-tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.nav-tag.green {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent-green);
  border: 1px solid rgba(0, 229, 160, 0.2);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE DRAWER ── */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--electric);
  box-shadow: 0 8px 30px rgba(13, 27, 42, 0.15);
  z-index: 200;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-drawer.open {
  max-height: 500px;
}

.mobile-nav-list {
  list-style: none;
  padding: 8px 0;
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--slate);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.mobile-nav-list li a:hover {
  color: var(--navy);
  border-left-color: var(--electric);
  background: rgba(245, 197, 24, 0.05);
}

.mobile-drawer-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

/* ══ ABOUT HERO ══ */
.about-hero {
  background-color: var(--navy);
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
  filter: blur(80px);
}

.about-hero-container {
  position: relative;
  z-index: 2;
  padding: 0 100px;
  margin: 0;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-title {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.about-hero-partners {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-avatars {
  display: flex;
  align-items: center;
}

.avatar-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-left: -12px;
  background: #252d40;
  overflow: hidden;
}

.avatar-item:first-child {
  margin-left: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(0, 212, 255, 0.1) 100%);
}

.avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partners-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* SHARED */
.eyebrow {
  font-family: var(--font-family-tertiary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

/* PAGE HERO */
.page-hero {
  padding: 100px 64px 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  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: 60px 60px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-tertiary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 24px;
}

.page-hero-tag::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.page-hero h1 {
  font-family: var(--font-family-primary);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.93;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 28px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--electric);
}

.page-hero p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250, 250, 248, 0.6);
  max-width: 580px;
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 64px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--slate);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--electric);
}

.breadcrumb .sep {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--navy);
  font-weight: 500;
}

/* ══ FOOTER ══ */
.site-footer {
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
  background-color: var(--footer-bg);
  background-image: var(--footer-bg-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.4fr 1.5fr 1.5fr 2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-logo img {
  max-width: 200px;
}

.footer-bolt {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-family-primary);
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
}

.footer-logo-text em {
  font-style: normal;
  color: var(--electric);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.25s, color 0.25s;
}

.footer-social-icon svg {
  width: 15px;
  height: 15px;
}

.footer-social-icon:hover {
  background: var(--electric);
  color: var(--white);
}

/* Link Columns */
.footer-heading {
  font-family: var(--font-family-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin: 0 0 22px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-nav li a:hover {
  color: var(--electric);
}

/* Contact Column */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact li a:hover {
  color: var(--white);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #080b14;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-family: var(--font-family-secondary);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-family: var(--font-family-secondary);
  transition: color 0.25s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 64px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 51, 102, 0.2);
}

.cta-card.column {
  flex-direction: column;
}

.cta-body {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-card.column .cta-body {
  text-align: center;
}

.cta-title {
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cta-action {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.cta-note {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* Decorative pulse on the right */
.cta-pulse {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* ══ MISSION & VISION ══ */
.mv-section {
  padding: 80px 0;
}

.mv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Shared card base */
.mv-card {
  border-radius: 8px;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Light card */
.mv-card--light {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Dark card */
.mv-card--dark {
  background: var(--navy);
}

/* Icon */
.mv-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 24px;
}

.mv-card--dark .mv-card-icon {
  background: rgba(0, 212, 255, 0.12);
}

.mv-card-icon svg {
  width: 26px;
  height: 26px;
}

/* Title */
.mv-card-title {
  font-family: var(--font-family-secondary);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}

.mv-card--dark .mv-card-title {
  color: var(--white);
}

/* Accent bar */
.mv-card-bar {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.mv-card-bar--blue {
  background: var(--electric);
}

.mv-card-bar--green {
  background: var(--accent-green);
}

/* Text */
.mv-card-text {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--slate);
  margin: 0;
}

.mv-card--dark .mv-card-text {
  color: rgba(255, 255, 255, 0.7);
}

/* ══ NUMBERS BANNER ══ */
.section-numbers {
  background: var(--white-soft);
  padding: 60px 0;
}

.numbers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Left: Stats */
.numbers-left .eyebrow {
  margin-bottom: 20px;
}

.numbers-heading {
  font-family: var(--font-family-primary);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 1px;
  color: var(--navy);
  margin: 0 0 28px;
}

.numbers-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-family-primary);
  font-size: 52px;
  letter-spacing: 1px;
  color: var(--navy);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--slate);
  max-width: 160px;
  line-height: 1.4;
}

/* Right: Logo/Cert badges */
.numbers-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.logo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 140px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.logo-badge:hover {
  border-color: var(--electric);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.08);
}

.logo-badge img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}

.logo-badge-text {
  font-family: var(--font-family-tertiary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.4;
}

/* ══ HERITAGE / LEGACY SECTION ══ */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left: Content + Timeline */
.heritage-content .eyebrow {
  margin-bottom: 14px;
}

.heritage-content h2 {
  margin: 0 0 30px;
}

/* Timeline */
.heritage-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.htl-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
}

.htl-item:last-child .htl-line {
  display: none;
}

.htl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.htl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--electric);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--electric);
  flex-shrink: 0;
}

.htl-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin-top: 6px;
}

.htl-body {
  padding-bottom: 4px;
}

.htl-year {
  font-family: var(--font-family-tertiary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 6px;
}

.htl-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}

.htl-desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* Right: Image + Badge */
.heritage-visual {
  position: relative;
}

.heritage-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.heritage-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #0a1628 0%, #1a2d50 100%);
  border-radius: 8px;
}

.heritage-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  min-width: 140px;
  text-align: center;
}

.hbadge-stat {
  font-family: var(--font-family-primary);
  font-size: 48px;
  letter-spacing: 1px;
  color: var(--electric);
  line-height: 1;
  margin-bottom: 6px;
}

.hbadge-label {
  font-family: var(--font-family-tertiary);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ══ CORE VALUES PAGE STYLES ══ */
.cv-header {
  text-align: center;
  margin-bottom: 50px;
}

.cv-divider {
  height: 2px;
  width: 60px;
  background-color: var(--navy);
  margin: 0 auto;
  opacity: 0.8;
}

.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cv-card {
  background: var(--white);
  border-radius: 6px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border);
}

.cv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(10, 22, 40, 0.1);
}

.cv-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 22, 40, 0.04);
  color: var(--navy);
  border-radius: 8px;
  margin-bottom: 25px;
}

.cv-icon svg,
.cv-icon table,
.cv-icon img {
  width: 24px;
  height: 24px;
  stroke-width: 2;
  fill: none;
}

.cv-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cv-card p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ══ INTEGRATING INNOVATION PAGE STYLES ══ */
.innovation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.innovation-grid--reverse .inno-content {
  order: 2;
}

.innovation-grid--reverse .inno-image {
  order: 1;
}

.inno-content h2 {
  line-height: 1.15;
}

.inno-content p {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 35px;
}

.inno-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.inno-link:hover {
  color: var(--electric);
}

.inno-link svg {
  transition: transform 0.3s ease;
}

.inno-link:hover svg {
  transform: translateX(5px);
}

.inno-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.inno-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ══ BUTTONS ══ */
a,
.button,
.btn {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.btn {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 18px 30px;
  position: relative;
  font-family: var(--font-family-quaternary);
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  text-decoration: none;
}

.btn i {
  margin-left: 10px;
  font-size: 18px;
}

.btn::before {
  width: 40px;
  height: 40px;
  position: absolute;
  border-radius: 50%;
  content: "";
  background: #1e2126;
  top: 10PX;
  left: 10px;
  z-index: -1;
  transition: all 0.3s ease 0s;
  display: none;
}

.btn:hover::before {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 4px;
  content: "";
  background: #1e2126;
  top: 0;
  left: 0;
  z-index: -1;
}

.btn:hover {
  color: var(--white);
  background: #1e2126;
}

.button-widget {
  display: flex;
  gap: 15px;
}

.btn-blue {
  background: var(--electric);
  color: var(--navy);
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 212, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: rgba(250, 250, 248, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* PRIMARY */
.button-widget .btn-primary {
  background: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  justify-content: center;
}

.button-widget .btn-primary:hover {
  background: var(--alternative);
  border-color: var(--alternative);
  color: var(--black);
}

/* SECONDARY */
.button-widget .btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border: 1px solid var(--secondary);
  justify-content: center;
}

.button-widget .btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* OUTLINE */
.button-widget .btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  justify-content: center;
}

.button-widget .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* GHOST */
.button-widget .btn-ghost {
  background: transparent;
  color: var(--primary);
  border: none;
  justify-content: center;
}

.button-widget .btn-ghost:hover {
  color: var(--white);
  background: var(--primary);
}

/* WHITE */
.button-widget .btn-white {
  background: var(--white);
  color: var(--navy);
  justify-content: center;
}

.btn-white:hover {
  background: var(--electric);
  color: var(--white);
}

/* TEXT ONLY */
.button-widget .btn-text {
  text-transform: capitalize;
  font-weight: 600;
  padding: 0;
  color: var(--navy);
  gap: 8px;
}

.button-widget .btn-text svg {
  transition: transform 0.3s ease;
}

.button-widget .btn-text:hover svg {
  transform: translateX(5px);
}

.button-widget .btn-text:hover {
  color: var(--electric);
  fill: var(--electric);
  background: transparent;
}

/* ══ PRODUCTS & SERVICES STYLES ══ */
.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  margin-bottom: 12px;
}

.services-header p {
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-decoration: none;
  transform: translateZ(0);
  /* Force GPU acceleration */
}

.service-card:hover {
  box-shadow: 0 15px 35px rgba(10, 22, 40, 0.2);
}

.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.5) 40%, rgba(10, 22, 40, 0.1) 100%);
  transition: opacity 0.3s ease;
}

.service-card:hover .sc-overlay {
  background: linear-gradient(to top, rgba(0, 212, 255, 0.9) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.2) 100%);
}

.sc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.service-card:hover .sc-content {
  transform: translateY(-5px);
}

.sc-icon {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  transition: color 0.3s ease;
}

.sc-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sc-content h3 {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* Features Strip */
.section-features-strip {
  background-color: var(--navy);
  padding: 60px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  /* Optional divider */
}

.fs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.fs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fs-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 212, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
}

.fs-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fs-text {
  text-align: center;
}

.fs-text h4 {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fs-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* ══ BREADCRUMB / PAGE TITLE AREA ══ */
.page-title-area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 40vh;
  background-color: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

/* Modern cyan glow effect behind the text */
.page-title-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, rgba(0, 212, 255, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-title-content {
  position: relative;
  z-index: 2;
}

.page-title-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.breadcrumb-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.breadcrumb-nav li {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.breadcrumb-nav li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}

.breadcrumb-nav li a:hover {
  color: var(--electric);
  opacity: 1;
}

.breadcrumb-nav li.separator svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-nav li.active {
  color: var(--electric);
}


/* ══ CONTACT SECTION ══ */
.contact-section {
  padding: 100px 0 0;
  background-color: var(--white);
}

.contact-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.contact-header h1 {
  font-family: var(--font-family-secondary);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-header p {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.contact-form-card {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 51, 102, 0.08);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 32px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}


.form-group {
  flex: 1;
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e1e5ee;
  border-radius: 6px;
  font-size: 1rem;
  color: var(--navy);
  background: #fbfcfe;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder {
  color: #a0aec0;
}

.contact-form-card .btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.info-card {
  background: #f7fafc;
  padding: 24px;
  border-radius: 12px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.info-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.info-content p {
  font-size: 0.95rem;
  color: var(--slate);
  margin-bottom: 4px;
  line-height: 1.5;
}

.info-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
}

.info-link:hover {
  color: var(--electric);
}

.follow-section {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.follow-section h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.social-circle {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.social-circle:hover {
  background: var(--electric);
  transform: scale(1.1);
}

.contact-map-wrapper {
  margin-top: 60px;
  height: 450px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ══ 2 COLUMN CONTENT SECTION ══ */
.section-column-content {
  background-color: var(--navy);
  overflow: hidden;
}

.section-column-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.column-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.title {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  line-height: 1.1;
}

.description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  max-width: 540px;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.feature-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.2);
}

.icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--electric);
  font-size: 20px;
  flex-shrink: 0;
}

.text h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.2));
  animation: floatGlobe 6s ease-in-out infinite;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
  filter: blur(40px);
  pointer-events: none;
}

@keyframes floatGlobe {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}


.feature-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* ══ LEADERSHIP SECTION ══ */
.leadership-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.leadership-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--slate);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.member-card {
  text-align: left;
}

.member-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: #f2f4f7;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 24px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 0 10px;
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.member-role {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.member-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--slate);
}

.leadership-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  border-top: 1px solid var(--border);
  gap: 30px;
  opacity: 0.5;
  filter: grayscale(1);
}

.logo-item span {
  font-family: var(--font-family-tertiary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* 404 PAGE STYLES */
.section-404 {
  padding: 140px 0;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.section-404::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.error-404-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-visual {
  position: relative;
  margin-bottom: 30px;
}

.error-code {
  font-family: var(--font-family-primary);
  font-size: clamp(140px, 20vw, 280px);
  line-height: 1;
  background: linear-gradient(135deg, var(--electric) 0%, rgba(0, 212, 255, 0.3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  position: relative;
  z-index: 2;
}

.error-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.error-text {
  max-width: 600px;
}

.error-tag {
  display: inline-block;
  font-family: var(--font-family-tertiary);
  font-size: 11px;
  font-weight: 700;
  color: var(--error);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  background: rgba(255, 62, 62, 0.1);
  border: 1px solid rgba(255, 62, 62, 0.2);
  border-radius: 2px;
  margin-bottom: 24px;
}

.error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.error-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ══ 3 COLUMN CARD SECTION ══ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-title {
  margin-bottom: 10px;
}

.section-header-subtitle {
  font-family: var(--font-family-secondary);
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto;
}

.col-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col-card {
  height: 100%;
}

.col-card-inner {
  height: 100%;
  padding: 50px 40px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.col-card:hover .col-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
  border-color: var(--electric);
}

.col-card-icon {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.col-card:hover .col-card-icon {
  background: var(--electric);
  transform: scale(1.1);
}

.col-card-icon svg {
  width: 24px;
  height: 24px;
}

.col-card-title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.col-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 20px;
  flex-grow: 1;
}

.col-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}

.feature-check {
  width: 18px;
  height: 18px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--electric);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.col-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.col-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-secondary);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.col-card-link:hover {
  color: var(--electric);
}

.link-arrow {
  transition: transform 0.3s ease;
}

.col-card-link:hover .link-arrow {
  transform: translateX(4px);
}

/* ══ STANDARD CONTENT PAGE ══ */
.section-standard-content {
  padding: 100px 0;
  background-color: var(--white);
}

.standard-content {
  max-width: 900px;
  margin: 0 auto;
}

.standard-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 30px;
}

.standard-content h2,
.standard-content h3,
.standard-content h4 {
  font-family: var(--font-family-primary);
  color: var(--navy);
  letter-spacing: 0.5px;
  margin: 50px 0 25px;
}

.standard-content h2 {
  font-size: clamp(32px, 3.5vw, 42px);
}

.standard-content h3 {
  font-size: clamp(28px, 3vw, 36px);
}

.standard-content h4 {
  font-size: clamp(24px, 2.5vw, 28px);
}

.standard-content h2:first-child,
.standard-content h3:first-child,
.standard-content h4:first-child {
  margin-top: 0;
}

.standard-content ul,
.standard-content ol {
  margin-bottom: 30px;
  padding-left: 20px;
}

.standard-content li {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 12px;
}

.standard-content blockquote {
  background: var(--light-bg);
  border-left: 4px solid var(--electric);
  padding: 40px;
  margin: 40px 0;
  border-radius: 0 12px 12px 0;
}

.standard-content blockquote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 0;
}

.standard-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px 0;
}

.standard-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.standard-content th,
.standard-content td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.standard-content th {
  font-weight: 700;
  color: var(--navy);
}

.standard-content td {
  color: var(--slate);
  font-size: 1rem;
}

/* ══ CUSTOM HERO SLIDER ══ */
.custom-hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 200px);
  min-height: 600px;
  padding: 0;
  overflow: hidden;
  background-color: var(--navy);
}

.custom-slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.custom-slider-wrapper {
  width: 100%;
  height: 100%;
}

.custom-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 1;
}

.custom-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.custom-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.custom-slide.active .custom-slide-bg {
  transform: scale(1);
}

.custom-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.4) 60%, rgba(10, 22, 40, 0.1) 100%);
}

.custom-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.slider-content-container {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}

.slide-text-box {
  max-width: 650px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.custom-slide.active .slide-text-box {
  opacity: 1;
  transform: translateY(0);
}

.slide-subtitle {
  font-family: var(--font-family-tertiary);
  font-size: 14px;
  font-weight: 700;
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 212, 255, 0.1);
  border-left: 3px solid var(--electric);
}

.slide-title {
  font-family: var(--font-family-primary);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.slide-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.slide-text-box .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.slide-text-box .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.slide-action {
  margin-top: 10px;
}

/* Nav */
.custom-slider-nav {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 10;
}

.custom-slider-nav-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.custom-slider-prev,
.custom-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 22, 40, 0.4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
}

.custom-slider-prev {
  left: 30px;
  transform: translate(-30px, -50%);
}

.custom-slider-next {
  right: 30px;
  transform: translate(30px, -50%);
}

.custom-hero-slider:hover .custom-slider-prev,
.custom-hero-slider:hover .custom-slider-next {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.custom-slider-prev:hover,
.custom-slider-next:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--navy);
  transform: translate(0, -50%) scale(1.1);
}

.custom-slider-pagination {
  display: flex;
  gap: 12px;
}

.custom-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.custom-slider-dot.active {
  background: var(--electric);
  transform: scale(1.3);
}

/* Progress bar */
.custom-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.custom-slider-progress-bar {
  height: 100%;
  width: 0;
  background: var(--electric);
}

.custom-slider-progress-bar.animating {
  transition: width 6s linear;
}

/* ══ CORE COMPETENCIES ══ */
.core-competencies-section {
  background-color: #fafbfc;
}

.core-competencies-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.c-header-left {
  max-width: 600px;
}

.c-section-title {
  font-family: var(--font-family-secondary);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.c-section-subtitle {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.6;
}

.c-header-right {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.c-nav-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
}

.c-nav-indicator .indicator-line {
  display: block;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
}

.c-nav-indicator .indicator-line.active {
  width: 32px;
  background: var(--navy);
}

.c-nav-indicator .indicator-line:not(.active) {
  width: 12px;
}

.competencies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.competency-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.03);
  border: 1px solid rgba(13, 27, 42, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.competency-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.08);
}

.c-card-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
}

.c-card-icon svg {
  width: 24px;
  height: 24px;
}

.c-card-title {
  font-family: var(--font-family-secondary);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.c-card-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
  margin-bottom: 30px;
}

.c-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.c-card-link:hover {
  color: var(--electric);
}

.c-card-link svg {
  transition: transform 0.2s ease;
}

.c-card-link:hover svg {
  transform: translateX(4px);
}

/* ══ SERVICES PAGE HERO ══ */
.services-hero {
  position: relative;
  background-color: var(--navy);
  padding: 160px 0 140px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 60%, transparent 100%);
}

.services-hero-container {
  position: relative;
  z-index: 2;
}

.services-hero-content {
  max-width: 640px;
}

.services-hero-content .button-widget .btn-outline {
  color: var(--white);
  border: 1px solid var(--white);
}

.services-hero-content .button-widget .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.services-hero-content .button-widget .btn-ghost {
  color: var(--white);
  border: none;
}

.services-hero-content .button-widget .btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.services-hero-content .button-widget .btn-text {
  color: var(--white);
}

.services-hero-content .button-widget .btn-text:hover {
  color: var(--electric);
}

.s-eyebrow {
  display: inline-block;
  font-family: var(--font-family-tertiary);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #f5a623;
  border: 1px solid rgba(245, 166, 35, .4);
  padding: 6px 14px;
  background: rgba(245, 166, 35, .05);
  border-radius: 4px;
  margin-bottom: 28px;
}

.s-hero-title {
  font-family: var(--font-family-primary);
  font-size: clamp(46px, 6vw, 80px);
  line-height: 1.04;
  margin-bottom: 22px;
  color: var(--white);
}

.s-hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 40px;
  max-width: 480px;
}

/* ══ SERVICES ALTERNATING LIST ══ */
.s-list-band {
  background-color: var(--white);
  padding: 100px 0;
}

.s-list-band.band-alt {
  background-color: var(--light-bg);
}

.band-alt .s-list-image-wrapper {
  flex-direction: row-reverse;
}

.s-list-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.s-list-row.row-reverse {
  flex-direction: row-reverse;
}

.s-list-image-col {
  flex: 0 0 50%;
  max-width: 50%;
  position: relative;
}

.s-list-content-col {
  flex: 1;
}

.s-list-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  display: flex;
  align-items: flex-end;
}

.s-list-image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(13, 27, 42, .14);
}

.s-list-overlay-icon {
  margin-bottom: -20px;
  width: 82px;
  height: 82px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(13, 27, 42, .18);
  z-index: 2;
  padding: 20px;
}

.s-list-overlay-icon.pos-right {
  margin-left: -25px;
}

.s-list-overlay-icon.pos-left {
  margin-right: -40px;
}

.s-list-overlay-icon.blue {
  background: var(--blue);
  color: var(--white);
}

.s-list-overlay-icon.yellow {
  background: var(--solar-dark);
  color: var(--white);
}

.s-list-title {
  font-family: var(--font-family-secondary);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}

.s-list-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  margin-bottom: 32px;
}

.s-list-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s-list-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.feat-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* scrollUp */
#scrollUp {
  background: var(--primary);
  height: 45px;
  width: 45px;
  right: 50px;
  bottom: 50px;
  color: var(--white);
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  line-height: 45px;
  transition: .3s;
}

#scrollUp svg {
  fill: var(--white);
  width: 25px;
  height: 25px;
}

#scrollUp:hover {
  background: var(--primary);
  opacity: 0.9;
}