/* ═══════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════ */
:root {
  --ink: #1c3a30;
  --ink2: #22ab80;
  --ink3: #131a27;
  --cyan: #22ab80;
  --cyan-dim: #198b69;
  --blue: #1c3a30;
  --gold: #DAE823;
  --white: #ffffff;
  --white80: rgba(255, 255, 255, 0.8);
  --white60: rgba(255, 255, 255, 0.6);
  --white40: rgba(255, 255, 255, 0.4);
  --white20: rgba(255, 255, 255, 0.2);
  --white10: rgba(255, 255, 255, 0.1);
  --white05: rgba(255, 255, 255, 0.05);
  --cyan10: rgba(34, 171, 128, 0.1);
  --cyan20: rgba(34, 171, 128, 0.2);
  --blue10: rgba(28, 58, 48, 0.1);
  --gold10: rgba(245, 166, 35, 0.1);
  --goldbg: rgba(218, 232, 35, 0.05);
  --goldbr: rgba(245, 166, 35, 0.2);
  --goldlinearG: linear-gradient(135deg, #DAE823 0%, #C8D91F 100%);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Lexend", system-ui, sans-serif;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .grad-cyan {
    animation: none;
    background-position: 0 center;
  }
  
}

/* ── Accessibility ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--cyan);
  color: var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.3s;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Typography ── */
.font-display {
  font-family: var(--font-display);
}

/* ── Gradient Text (animated) ── */
.grad-cyan,
.grad-cyan .word,
.grad-cyan .char {
 background: linear-gradient(
    105deg,
    #ffffff 0%,
    #22ab80 35%,
    #ffffff 60%,
    #22ab80 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.grad-cyan,
.grad-cyan .word,
.grad-cyan .char {
  animation: gradShimmer 6s var(--ease-smooth) infinite;
}

/* ---Gold color--- */
.grad-gold {
 background: linear-gradient(
  105deg,
  #ffffff 0%,
  #DAE823 25%,
  #f4ff9d 50%,
  #ffffff 75%,
  #DAE823 100%
);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-gold {
  animation: gradShimmer 6s var(--ease-smooth) infinite;
}
@keyframes gradShimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}


/* ── Vector icons (SVG sprite) ── */
.vector-icon {
  display: block;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
}
.vector-icon--xs {
  width: 14px;
  height: 14px;
}
.vector-icon--md {
  width: 22px;
  height: 22px;
}
.vector-icon--lg {
  width: 28px;
  height: 28px;
}
.icon-cyan {
  color: #fff;
}
.icon-blue {
  color:#fff;
}
.icon-gold {
  color: var(--white);
}
.gov-badge-icon svg {
  color: var(--gold);
}
.icon-bg-blue {
  background: var(--blue10);
}
.icon-bg-gold {
  background: var(--gold10);
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 99px;
}

/* ═══════════════════════════════════════════════
   NOISE TEXTURE OVERLAY
═══════════════════════════════════════════════ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════
   GRID BACKGROUND
═══════════════════════════════════════════════ */
.grid-bg {
  background-image:
    linear-gradient(rgba(34, 171, 128, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 171, 128, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--ink);
  /* backdrop-filter: blur(24px) saturate(180%); */
  border-bottom: 1px solid rgba(34, 171, 128, 0.08);
  transition:
    border-color 0.3s,
    background 0.3s;
}
#navbar.scrolled {
  background: var(--ink);
  border-color: rgba(0, 212, 255, 0.15);
}
.nav-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-image {
  display: block;
  width: 42%;
  height: auto;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #0057ff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--white60);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover {
  color: var(--cyan);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: 10px;
   background: linear-gradient(
  135deg,
  #22ab80 0%,
  #22ab80 60%,
  #ffffff 90%,
  #ffffff 100%
);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c3a30, #22ab80);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(28, 58, 48, 0.4);
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.375rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 212, 255, 0.25);
  color:#fff;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  background: transparent;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: rgba(34, 171, 128, 0.6);
  background: rgba(34, 171, 128, 0.06);
  color: var(--white80);
  transform: translateY(-2px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  /* padding: 8px; */
  border-radius: 8px;
}
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
#mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  /* background: rgba(5, 8, 14, 0.97); */
  background:#052f22d6;
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white10);
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-120%);
  transition: transform 0.4s var(--ease-out);
  display: none;
}
@media (max-width: 960px) {
  #mobile-drawer {
    display: block;
  }
}
#mobile-drawer.open {
  transform: translateY(0);
}
#mobile-drawer a {
  display: block;
  padding: 0.875rem 0;
  color: var(--white60);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-bottom: 1px solid var(--white05);
  transition: color 0.2s;
}
#mobile-drawer a:hover {
  color: var(--cyan);
}
#mobile-drawer a:last-child {
  border-bottom: none;
  margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
background:
  radial-gradient(
    ellipse 70% 60% at 60% 50%,
    rgba(34, 171, 128, 0.25) 0%,
    transparent 65%
  ),
  radial-gradient(
    ellipse 40% 40% at 15% 80%,
    rgba(34, 171, 128, 0.15) 0%,
    transparent 60%
  );
}

.hero-blob-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  /* background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.18) 0%,
    transparent 65%
  ); */
  filter: blur(70px);
  animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob-2 {
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 65%
  );
  filter: blur(60px);
  animation: blobFloat 15s ease-in-out infinite reverse;
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }
}

.hero-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 5rem 6rem 4rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.title-line {
  overflow: hidden;
  display: block;
}
.title-line-inner {
  display: block;
}
.text-split .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.text-split .char {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: #fff;
  line-height: 1.75;
  max-width: 460px;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
@media (max-width: 960px) {
  .hero-sub {
    margin: 0 auto 2.5rem;
  }
}

.hero-btns {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
@media (max-width: 960px) {
  .hero-btns {
    justify-content: center;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--white10);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-lbl {
  font-size: 0.6875rem;
  color: var(--white40);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .hero-visual {
    display: none;
  }
}

.orbit-system {
  position: relative;
  width: 440px;
  height: 440px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 212, 255, 0.08);
}
.orbit-ring-1 {
  inset: 0;
  animation: spinRing 22s linear infinite;
}
.orbit-ring-2 {
  inset: 50px;
  border-color: rgba(34, 171, 128, 0.12);
  animation: spinRing 30s linear infinite reverse;
}
.orbit-ring-3 {
  inset: 100px;
  animation: spinRing 18s linear infinite;
}
@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.orbit-dot {
  position: absolute;
  border-radius: 50%;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-dot-lg {
  width: 10px;
  height: 10px;
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
}
.orbit-dot-md {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--blue);
}
.orbit-dot-sm {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.orbit-core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orbit-core-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow:
    0 0 80px rgba(0, 212, 255, 0.12),
    inset 0 0 40px rgba(0, 87, 255, 0.1); */
  animation: coreBreath 5s ease-in-out infinite;
}
/* @keyframes coreBreath {
  0%,
  100% {
    box-shadow:
      0 0 60px rgba(0, 212, 255, 0.12),
      inset 0 0 30px rgba(0, 87, 255, 0.1);
  }
  50% {
    box-shadow:
      0 0 100px rgba(0, 212, 255, 0.2),
      inset 0 0 60px rgba(0, 87, 255, 0.18);
  }
} */
.orbit-core-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 40%,
    rgba(34, 171, 128, 0.3),
    rgba(28, 58, 48, 0.1)
  );
  border: 1px solid rgba(0, 212, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
}

.orbit-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  border: 1px solid;
  background: rgba(5, 8, 14, 0.9);
  white-space: nowrap;
  animation: chipFloat 6s ease-in-out infinite;
}
.chip-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  top: 30px;
  right: 20px;
  animation-delay: 0s;
}
.chip-gold {
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  bottom: 80px;
  left: 10px;
  animation-delay: 1.5s;
}
.chip-white {
  color: var(--ease-in-out);
  border-color: var(--white10);
  bottom: 20px;
  right: 40px;
  animation-delay: 3s;
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ═══════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════ */
.trust-bar {
  background: var(--ink2);
  border-top: 1px solid var(--white05);
  border-bottom: 1px solid var(--white05);
  padding: 1.5rem 0;
  overflow: hidden;
}
.trust-bar-inner {
  position: relative;
  /* max-width: 1280px; */
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding: 0 6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.trust-bar-inner::before,
.trust-bar-inner::after {
  content: none;
}
.trust-marquee {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  width: 100%;
}
.trust-marquee::before,
.trust-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  pointer-events: none;
  z-index: 2;
}
.trust-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink2) 0%, transparent 100%);
}
.trust-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink2) 0%, transparent 100%);
}
.trust-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  min-width: max-content;
  will-change: transform;
}
 .trust-track:hover {
    animation-play-state: paused;
  }
.trust-group {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  margin-right: 4rem;
  flex-shrink: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: color 0.2s;
  cursor: default;
}
.trust-item:hover {
  color: var(--white60);
}

.trust-item svg {
    flex-shrink: 0;
    stroke: var(--ink);
    fill: #fff;
    stroke-width: 1.5;
    width:100px;
    height:100px;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
.trust-sep {
  color: var(--white10);
  font-size: 18px;
  line-height: 1;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
  }

/* ═══════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--cyan);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.25),
    transparent
  );
  margin: 0 3rem;
}

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
#about {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}
.about-glow {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.08) 0%,
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}
.about-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 960px) {
  #about {
    padding: 5rem 0;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about-text p {
  color: #fff;
  line-height: 1.8;
  font-weight: 300;
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}
.gov-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.25rem;
  border-radius: 14px;
  /* border: 1px solid rgba(245, 166, 35, 0.2); */
  boder: 1px solid var(--goldbr);
  /* background: rgba(245, 166, 35, 0.05); */
  background:var(--goldbg);
  margin-top: 1rem;
}
.gov-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(245, 166, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.chip-gold .vector-icon {
  color: var(--gold);
}
.gov-badge-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
}
.gov-badge-sub {
  font-size: 0.6875rem;
  color: var(--white60);
  margin-top: 0.1rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-card {
  background: var(--ink2);
  border: 1px solid rgba(0, 212, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  transition:
    border-color 0.3s,
    transform 0.3s var(--ease-out);
}
.about-card:hover {
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-4px);
}
.about-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cyan10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about-card p {
  font-size: 0.75rem;
  color: #fff;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
#transformation {
  padding: 8rem 0;
  background: var(--ink2);
}
@media (max-width: 960px) {
  #transformation {
    padding: 5rem 0;
  }
}
.services-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
}
.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 2rem;
  background: var(--ink);
  border: 1px solid rgba(0, 212, 255, 0.08);
  transition: all 0.4s var(--ease-out);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.sc-1::before {
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}
.sc-2::before {
  background: linear-gradient(90deg, transparent, #0057ff, transparent);
}
.sc-3::before {
  background: linear-gradient(90deg, transparent, #f5a623, transparent);
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card:hover::before {
  opacity: 1;
}
.sc-1:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 24px 64px rgba(0, 212, 255, 0.08);
}
.sc-2:hover {
  border-color: rgba(0, 87, 255, 0.3);
  box-shadow: 0 24px 64px rgba(0, 87, 255, 0.08);
}
.sc-3:hover {
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 24px 64px rgba(245, 166, 35, 0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.si-1 {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.15),
    rgba(0, 87, 255, 0.08)
  );
}
.si-2 {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 255, 0.15),
    rgba(0, 212, 255, 0.08)
  );
}
.si-3 {
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.15),
    rgba(251, 191, 36, 0.08)
  );
}

.service-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1rem;
  border: 1px solid;
}
.service-tag h3 {
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  font-size: 20px;
  font-weight: 500;
 
}
.st-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.05);
}
.st-blue {
  color: #5b88ff;
  border-color: rgba(0, 87, 255, 0.2);
  background: rgba(0, 87, 255, 0.05);
}
.st-gold {
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(245, 166, 35, 0.05);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.8125rem;
  color: #fff;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   PRODUCTS — PINNED HORIZONTAL SCROLL
═══════════════════════════════════════════════ */
#products-section {
  position: relative;
}
.products-sticky-header {
  position: sticky;
  padding:1.5rem 6rem!important;
  top: var(--nav-h);
  z-index: 30;
  padding: 1.5rem 2rem;
  background: rgba(5, 8, 14, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white05);
}
.products-header-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-header-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.progress-pills {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media (max-width: 640px) {
  .progress-pills {
    display: none;
  }
}
.pill {
  height: 4px;
  border-radius: 99px;
  background: var(--white20);
  transition: all 0.4s var(--ease-out);
}
.pill.active {
  background: var(--cyan);
  width: 28px !important;
}

/* h-scroll */
#h-scroll-wrapper {
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--ink);
}
#h-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#h-track {
  display: flex;

  will-change: transform;
}
.h-panel {
  min-width: 100vw;
  width: 100vw;
  flex-shrink: 0;
  padding: 2rem 2rem 3rem;
  background-color: var(--ink);
  display: flex;
  align-items: center;
}
.h-panel-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  width: 100%;
  display: grid;
  padding: 0 4rem;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 960px) {
  .h-panel-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #h-scroll-wrapper {
    height: auto;
  }
  #h-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  #h-track {
    flex-direction: column;
    width: 100%;
    background: var(--ink);
  }
  .h-panel {
    width: 100%;
    padding: 4rem 1.5rem;
    border-bottom: 1px solid var(--white05);
  }
}

.panel-num {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid;
  margin-bottom: 1.5rem;
}
.pn-cyan {
  color: var(--cyan);
  border-color: rgba(0, 212, 255, 0.2);
  background: rgba(0, 212, 255, 0.06);
}
.pn-blue {
  color: #6b9dff;
  border-color: rgba(0, 87, 255, 0.2);
  background: rgba(0, 87, 255, 0.06);
}
.pn-gold {
  color: var(--gold);
  border-color: var(--goldbr);
  background:var(--goldbg);
}
.pn-red {
  color: #ff8080;
  border-color: rgba(255, 80, 80, 0.2);
  background: rgba(255, 80, 80, 0.06);
}

.panel-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.875rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.panel-desc {
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 480px;
}
.feature-list {
  list-style: none;
  space-y: 0.75rem;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #fff;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--white05);
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-arrow {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Panel visuals */
.panel-visual {
  border-radius: 20px;
  border: 1px solid var(--ink2);
  background: var(--ink);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.panel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.visual-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color:#fff;
  margin-bottom: 1.5rem;
  position: relative;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  position: relative;
}
.bar-label {
  font-size: 0.6875rem;
  color:#fff;
  width: 80px;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 5px;
  background: var(--white10);
  border-radius: 99px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #22ab80, #fff);
  transition: width 1.6s var(--ease-out);
}
.bar-pct {
  font-size: 0.6875rem;
  color: var(--cyan);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

.vis-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white05);
  position: relative;
}
.vis-card {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid;
}
.vc-green {
  background: rgba(52, 211, 153, 0.05);
  border-color: rgba(52, 211, 153, 0.15);
}
.vc-cyan {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.15);
  color:#fff;
}
.vis-card-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}
.vc-green .vis-card-num {
  color: #34d399;
}
.vc-cyan .vis-card-num {
  color:#fff;
}
.vis-card-sub {
  font-size: 0.6875rem;
  color: var(--white30);
}

.pipeline-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 12px;
  margin-bottom: 0.625rem;
  border: 1px solid;
  position: relative;
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.step-text {
  font-size: 0.75rem;
  flex: 1;
}
.step-badge {
  font-size: 0.625rem;
  padding: 0.2rem 0.5rem;
  border-radius: 99px;
  border: 1px solid;
  font-weight: 500;
  flex-shrink: 0;
}

.ps-done {
  background: var(--white05);
  border-color: var(--white10);
}
.ps-done .step-num {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.ps-done .step-text {
  color: var(--white60);
}
.ps-done .step-badge {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.2);
}

.ps-active {
  background: rgba(0, 212, 255, 0.04);
  border-color: rgba(0, 212, 255, 0.2);
}
.ps-active .step-num {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.25);
}
.ps-active .step-text {
  color: #fff;
}
.ps-active .step-badge {
  background: rgba(0, 212, 255, 0.08);
  color: var(--white);
  border-color: rgba(0, 212, 255, 0.2);
  animation: pulse 2s ease infinite;
}

.ps-queued {
  background: var(--white05);
  border-color: var(--white05);
  opacity: 0.45;
}
.ps-queued .step-num {
  background: var(--white05);
  color: var(--white20);
  border: 1px solid var(--white10);
}
.ps-queued .step-text {
  color: var(--white30);
}
.ps-queued .step-badge {
  background: var(--white05);
  color: var(--white30);
  border-color: var(--white10);
}

.ps-gold-done {
  background: var(--white05);
  border-color: var(--white10);
}
.ps-gold-done .step-num {
  background:var(--goldbg);
  color: var(--gold);
  border: 1px solid var(--goldbr);
}
.ps-gold-done .step-text {
  color: var(--white60);
}
.ps-gold-done .step-badge {
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.2);
}

.ps-gold-active {
  background: var(--goldbg);
  border-color: var(--goldbr);
}
.ps-gold-active .step-num {
  background:var(--goldbg);
  color: var(--gold);
  border: 1px solid var(--goldbr);
}
.ps-gold-active .step-text {
  color: #fff;
}
.ps-gold-active .step-badge {
  background: rgba(245, 166, 35, 0.08);
  color: var(--gold);
  border-color: rgba(245, 166, 35, 0.2);
  animation: pulse 2s ease infinite;
}

/* Sec 4 security bars */
/* .sec-bar-red .bar-fill {
  background: linear-gradient(90deg, #991b1b, #f87171);
} */

.security-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white05);
  position: relative;
}
.sec-mini-card {
  border-radius: 12px;
  padding: 0.875rem 0.75rem;
  text-align: center;
  border: 1px solid var(--white10);
  background: var(--white05);
}
.sec-mini-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.2rem;
}
/* .sec-mini-num.red {
  color: #f87171;
} */
.sec-mini-sub {
  font-size: 0.625rem;
  color: var(--white30);
}
.blink {
  animation: pulse 2s ease infinite;
}

/* ═══════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════ */
#why-us {
  padding: 8rem 0;
  background: var(--ink);
}
@media (max-width: 960px) {
  #why-us {
    padding: 5rem 0;
  }
}
.why-inner {
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 6rem;
}
.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--white10);
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
}
@media (max-width: 768px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 960px) {
  .diff-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.diff-cell {
  padding: 2rem;
  background: var(--ink2);
  border-right: 1px solid var(--white05);
  border-bottom: 1px solid var(--white05);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.diff-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  /* background: linear-gradient(90deg, transparent, var(--cyan), transparent); */
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.diff-cell:hover {
  background: var(--ink);
}
.diff-cell:hover::before {
  transform: scaleX(1);
}

.diff-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color:var(--white60);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}
.diff-cell h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.diff-cell p {
  font-size: 0.75rem;
  color: var(--white80);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
#cta {
  padding: 9rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--ink2);
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(28, 58, 48, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  background: var(--ink);
  color: white;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.cta-sub {
  color:#fff;
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5rem;
}
.cta-btns {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary.lg,
.btn-ghost.lg {
  padding: 1rem 2rem;
  font-size: 0.875rem;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--white05);
  background: var(--ink);
  padding: 3.5rem 6rem 0;
}
.footer-inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--white05);
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.72rem;
  color: var(--white80);
  line-height: 1.6;
  margin: 0 0 0.3rem;
}

/* Col titles */
.footer-col-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}

/* Nav lists */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.8rem;
  color: var(--white80)!important;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav-list a:hover {
  color: var(--cyan);
}

/* Address */
.footer-address {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--white80);
  line-height: 1.8;
}

/* LinkedIn */
.footer-linkedin {
  display: inline-flex;
  align-items: center;
  color: var(--white40) !important;
  transition: color 0.2s;
}

.footer-linkedin:hover {
  color: var(--cyan) !important;
}


.footer-logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, #0057ff, #00d4ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.75rem;
  color: var(--white40);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cyan);
}
.footer-copy {
  font-size: 0.6875rem;
  color: var(--white40);
}
/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.6875rem;
  color: var(--white40);
}

/* Responsive */
@media (max-width: 900px) {
  footer {
    padding: 3rem 2rem 0;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }
}

@media (max-width: 540px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.w-100, .h-100{
  width: 100px;
  height: 100px;
}


/*============================================

Solution by company

==============================================*/
/* ── Solutions by Industry ── */

  

/* ═══════════════════════════════════════════════
   SOLUTIONS — PINNED HORIZONTAL SCROLL
═══════════════════════════════════════════════ */
#sol-scroll-wrapper {
  min-height: 100vh;
  overflow: hidden;
  background-color: var(--ink);
}
#sol-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#sol-track {
  display: flex;
  will-change: transform;
}
#solutions .products-sticky-header {
    position: sticky;
    padding: 1.5rem 6rem !important;
    top: var(--nav-h);
    z-index: 30;
    padding: 1.5rem 2rem;
    background: rgba(5, 8, 14, 0.88);
    border-bottom: 1px solid var(--white05);
}

@media (max-width: 960px) {
  #sol-scroll-wrapper {
    height: auto;
  }
  #sol-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  #sol-track {
    flex-direction: column;
    width: 100%;
    background: var(--ink2);
  }
  #sol-track .h-panel {
    width: 100%;
    padding: 4rem 1.5rem;
    border-bottom: 1px solid var(--white05);
  }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL STATES
═══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
}

/* ═══════════════════════════════════════════════
   CURSOR GLOW (desktop only)
═══════════════════════════════════════════════ */
#cursor-glow {
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.55);
  box-shadow:
    0 0 20px rgba(0, 212, 255, 0.24),
    inset 0 0 4px rgba(255, 255, 255, 0.15); */
      background: rgba(218, 232, 35, 0.08);
  border: 1px solid rgba(218, 232, 35, 0.55);
  box-shadow:
    0 0 20px rgba(218, 232, 35, 0.24),
    inset 0 0 4px rgba(255, 255, 255, 0.15);
  transform: translate3d(0, 0, 0) translate(-50%, -50%);
  z-index: 999999999;
  will-change: transform;
}
#cursor-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  /* background: rgba(0, 212, 255, 0.95);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.35); */
 background: rgba(218, 232, 35, 0.95);
  box-shadow: 0 0 12px rgba(218, 232, 35, 0.35);
  transform: translate(-50%, -50%);
}
#cursor-glow.active {
  /* background: rgba(0, 212, 255, 0.14); */
   background: rgba(218, 232, 35, 0.14);
}
@media (min-width: 961px) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  select,
  label {
    cursor: none !important;
  }
}
@media (max-width: 960px) {
  #cursor-glow {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   SECTION SCROLL PROGRESS LINE
═══════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #1c3a30, #22ab80);
  z-index: 9998;
  width: 0%;
  transition: width 0.1s;
}



@media(max-width:960px){
    .btn-primary{
    display: none!important;
  }
}

@media(max-width:670px){
    .nav-inner{
        padding:0 1rem;
    }
     .hero-inner{
    padding: 4rem 1rem!important;
  }
  .about-inner{
    padding:0 1rem;
  }
  .services-inner{
    padding:0 1rem;
    }  
    .products-sticky-header{
        padding:1.5rem 1rem!important;
    }
    .h-panel{
        padding:4rem 1rem;
    }
    .why-inner{
        padding:0 1rem;
    }
    #cta{
        padding:5rem 0;
    }
    .cta-inner{
        padding:0 1rem;
    }
    footer{
        padding:2.25rem 1rem;
    }
    .trust-bar-inner{
        padding:0 1rem; 
    }
    .h-panel-inner{
        padding:0 1rem;
    }
    .trust-bar{
        padding:1rem 0rem;
    }

    .trust-item svg{
        width:60px!important;
        height:60px!important;
    }
     .trust-item img{
        width:60px!important;
        height:60px!important;
    }
    #solutions .products-sticky-header{
              padding: 1.5rem 1rem !important;
    }
    
.form-group {
    min-height: 36px!important;
}

}


.ind-feature-card{
  display:flex;
  gap:10px;
}


/* whats app */

.whatsapp-float {
    position: fixed !important;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgb(7 106 44 / 94%);
    z-index: 1000000 !important;

    /* Initially hide */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

/* Show after scroll */
.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Text box */
.wa-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);

    background: #fff;
    color: var(--ink2);
    border: 1px solid #25D366;

    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%) translateX(10px);

    transition: all 0.3s ease;
}

/* Hover show */
.whatsapp-float:hover .wa-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.one {
  transform: translateX(1px);
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}



/* Contact us styles */ 


.contact-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999999;
   overscroll-behavior: contain;
    inset: 0;
}

.contact-modal.active{
  display:flex;
}

.contact-modal-content{
  width:90%;
  overflow-y:auto;
  height:680px;
  max-width:550px;
  background:#1c3a30;
  padding:30px;
  border-radius:20px;
  border:1px solid rgba(34,171,128,.25);
  position:relative;
}

.contact-modal-content h2{
  color:#22ab80;
  margin-bottom:20px;
}

/* Chrome, Edge, Safari */
.contact-modal-content::-webkit-scrollbar{
    width: 0px;
}

.contact-modal-content::-webkit-scrollbar-track{
    background: transparent;
}

.contact-modal-content::-webkit-scrollbar-thumb{
    background: #22ab80;
    border-radius: 20px;
}

.contact-modal-content::-webkit-scrollbar-thumb:hover{
    background: #1c3a30;
}

body.modal-open{
    overflow:hidden !important;
}

html.modal-open{
    overflow:hidden !important;
}

body.modal-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}

.form-group{
  margin-bottom:12px!important;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:14px;
  border-radius:10px;
  border:1px solid rgba(34,171,128,.2);
  outline:none;
  color:#1c3a30!important;
  font-size:14px;
}

.submit-btn{
  width:100%;
  padding:14px;
  background:#22ab80;
  border:none;
  border-radius:10px;
  color:#fff;
  cursor:pointer;
  font-weight:600;
}

.close-modal{
  position:absolute;
  top:10px;
  right:15px;
  background:none;
  border:none;
  color:#22ab80;
  font-size:30px;
  cursor:pointer;
}







/* 
.parsley-errors-list {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    color: #ff4d4f;
    font-size: 13px;
    line-height: 1.4;
}

.parsley-errors-list li {
    color: #ff4d4f;
} */

/* .form-group {
    display: flex;
    flex-direction: column;
    min-height: 76px;
} */

/* .parsley-errors-list {
    position: static !important;
    display: block !important;
} */

.parsley-error {
    border-color: #ff6b6b !important;
}

/* .parsley-errors-list {
    margin-top: 4px;
} */

.parsley-success {
    border-color: #22ab80 !important;
}


.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
     min-height: 76px;
}

.parsley-errors-list {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
    position: static !important;
    display: block !important;
}

.parsley-errors-list li {
    color: #ff4d4f;
    font-size: 14px;
    line-height: 1.4;
}

.success-msg{
    background:#22ab80;
    color:#fff;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
}

.error-msg{
    background:#ff4d4f;
    color:#fff;
    padding:12px;
    border-radius:8px;
    margin-bottom:15px;
}

.msgField, .nameField, .emailField, .mobileField, .selectField{
  margin-top:12px;
}

.selectField {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    padding-right: 50px;
    border: 1px solid rgba(34,171,128,.25);
    border-radius: 12px;
    background: #fff;
    color: #1c3a30;
    font-size: 15px;
    cursor: pointer;

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

   
}

.selectField:focus {
    outline: none;
    border-color: #22ab80;
    box-shadow: 0 0 0 3px rgba(34,171,128,.15);
}


.selectField.parsley-error{
    border:1px solid #ff4d4f;
}

/* .parsley-errors-list{
    margin-top:6px;
    padding:0;
    list-style:none;
}

.parsley-errors-list li{
    color:#ff4d4f;
    font-size:13px;
    line-height:1.4;
} */



/* ----choise arrow--- /*


/* Main Select Box */
.choices__inner{
    min-height: 56px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid rgba(34,171,128,.25);
    border-radius: 10px!important;
    color: #1c3a30;
    font-size: 15px;
    font-weight:300;
    margin-top: 12px!important; 
    
   
}

/* Focus State */
.is-focused .choices__inner,
.is-open .choices__inner{
    border-color: #22ab80!important;
    box-shadow: 0 0 0 3px rgba(34,171,128,.15);
}

/* Dropdown */
.choices__list--dropdown,
.choices__list[aria-expanded]{
    border: 1px solid rgba(34,171,128,.25);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

/* Option Hover */
.choices__list--dropdown .choices__item--selectable.is-highlighted{
    background: #22ab80;
   
}

/* Selected Item */
.choices__item--selectable{
    color: #1c3a30;
}

/* Arrow */
.choices[data-type*="select-one"]::after{
    border-color: #22ab80 transparent transparent;
    right: 15px;
}


.choices[data-type*="select-one"].is-open::after{
    border-color: transparent transparent #22ab80;
}


.choices__placeholder{
    color: #7a8a85;
    opacity: 1;
}

.choices{
    margin-bottom:-20px!important;
}



#enquiryTypeError {
    margin-top: 48px;
    
}



#enquiryTypeError .parsley-errors-list {
    margin: 0;
    padding: 0;
    list-style: none;
    
}

#enquiryTypeError .parsley-errors-list li {
    color: #ff4d4f;
    font-size: 13px;
    margin-top:-25px;
}

@media (min-width:1200px) and (max-width:1340px){
    .contact-modal-content{
        height:580px;
    }
}