@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Logo palette — Volga brand colors (ignoring black) */
  --bg: #ECF0F3;
  /* Neumorphic base background */
  --bg-alt: #d4e8f5;
  /* light steel blue — logo V lighter tone */
  --surface: #ffffff;
  --surface2: #E8F1F8;
  /* pale blue tint for cards/sections */
  --accent: #E8930A;
  /* amber gold — logo swoosh */
  --accent2: rgb(27, 79, 114);
  /* deep teal navy — logo main V */
  --accent3: #0D2B3E;
  /* darkest navy — deepest dark */
  --accent-red: #E8501A;
  /* red-orange — logo accent swoosh */
  --text: #0D1F2D;
  /* near-black text (not pure black) */
  --text-muted: #0d2b3e;
  /* muted slate text */
  --border: rgba(27, 79, 114, 0.12);
  --glow: 0 10px 30px rgba(232, 147, 10, 0.18);

  /* Neumorphic Shadows */
  --neu-light: #ffffff;
  --neu-dark: #d1d9e6;
  --neu-shadow-out: 8px 8px 16px var(--neu-dark), -8px -8px 16px var(--neu-light);
  --neu-shadow-in: inset 8px 8px 16px var(--neu-dark), inset -8px -8px 16px var(--neu-light);
  --neu-shadow-out-sm: 4px 4px 8px var(--neu-dark), -4px -4px 8px var(--neu-light);
  --neu-shadow-in-sm: inset 4px 4px 8px var(--neu-dark), inset -4px -4px 8px var(--neu-light);


  --font-display: "Sora", sans-serif;
 
  --font-ui: 'Inter', sans-serif;

  --font-mono: 'Inter', sans-serif;
 


  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --primary-dark: #1B4F72;
  --primary-light: #E8930A;
  --white: #ffffff;
}

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

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

/* Ensure no horizontal scrolling on narrow viewports */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  overflow-x: hidden;
  cursor: auto;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

ul {
  list-style: none;
}

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

/* ── CONTAINER ──────────────────────────────────────────── */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────────── */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999;
}

.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-red));
  width: 0%;
  transform-origin: 0% 50%;
}

/* ── CURSOR ─────────────────────────────────────────────── */


/* ─── BLUR & GRAIN CIRCULAR EFFECT AROUND CURSOR ─────────── */

/* ─── 3D CARD ENHANCEMENTS ───────────────────────────────── */
.solutions-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.solutions-card .card-default,
.solutions-card .card-hover {
  backface-visibility: hidden;
}

/* Add more depth to sections with subtle shadows */
section {
  position: relative;
  will-change: transform, opacity;
}

/* Hero parallax layers */
.Hero {
  perspective: 1000px;
}

.Hero-content {
  transform-style: preserve-3d;
}

/* ── LOADER ─────────────────────────────────────────────── */
@property --state-top-corners {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 0%;
}

@property --state-top-center {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 0%;
}

@property --state-bottom-corners {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 0%;
}

@property --state-bottom-center {
  syntax: '<percentage>';
  inherits: true;
  initial-value: 0%;
}

.loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.95), rgba(244, 239, 229, 0.95) 28%, rgba(233, 226, 212, 1) 100%),
    linear-gradient(180deg, #fcfbf8 0%, #f0e8dc 52%, #e8ddce 100%);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loader-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.loader-bg span {
  position: absolute;
  inset: 0;
  animation:
    move 7s calc(var(--i) * 0.08s) ease-in-out infinite,
    colors 7s calc(var(--i) * 0.08s) ease-in-out infinite;
  clip-path: polygon(0% var(--state-top-corners, 0%),
      50% var(--state-top-center, 0%),
      100% var(--state-top-corners, 0%),
      100% var(--state-bottom-corners, 0%),
      50% var(--state-bottom-center, 0%),
      0% var(--state-bottom-corners, 0%));
  -webkit-clip-path: polygon(0% var(--state-top-corners, 0%),
      50% var(--state-top-center, 0%),
      100% var(--state-top-corners, 0%),
      100% var(--state-bottom-corners, 0%),
      50% var(--state-bottom-center, 0%),
      0% var(--state-bottom-corners, 0%));
  opacity: 0.95;
  transform: scale(calc(1 + var(--i) * 0.02));
  transform-origin: center;
}

@keyframes move {
  12% {
    --state-top-corners: 0%;
    --state-top-center: 0%;
    --state-bottom-corners: 0%;
    --state-bottom-center: 0%;
  }

  24%,
  28% {
    --state-top-corners: 0%;
    --state-top-center: 0%;
    --state-bottom-corners: 0%;
    --state-bottom-center: 100%;
  }

  40%,
  60% {
    --state-top-corners: 0%;
    --state-top-center: 0%;
    --state-bottom-corners: 100%;
    --state-bottom-center: 100%;
  }

  72%,
  76% {
    --state-top-corners: 0%;
    --state-top-center: 100%;
    --state-bottom-corners: 100%;
    --state-bottom-center: 100%;
  }

  88% {
    --state-top-corners: 100%;
    --state-top-center: 100%;
    --state-bottom-corners: 100%;
    --state-bottom-center: 100%;
  }
}

@keyframes colors {

  0%,
  50% {
    z-index: calc(var(--i) + 1);
    --c1: var(--bg);
    --c2: var(--surface);
    --c3: var(--accent);
    --c4: var(--accent2);
    --c5: var(--accent3);
    --c6: var(--accent-red);
    --c7: rgba(27, 79, 114, 0.85);
    --c8: var(--text);
  }

  51%,
  100% {
    z-index: calc(8 - var(--i));
    --c8: var(--bg);
    --c7: var(--surface);
    --c6: var(--accent);
    --c5: var(--accent2);
    --c4: var(--accent3);
    --c3: var(--accent-red);
    --c2: rgba(27, 79, 114, 0.85);
    --c1: var(--text);
  }
}


.loader-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--accent);
  letter-spacing: 0.1em;
  text-shadow: 0 0 80px rgba(0, 245, 212, 0.4);
}

.loader-logo-img {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(27, 79, 114, 0.2));
  margin-bottom: 0.5rem;
}

.loader-bar {
  width: 220px;
  height: 2px;
  background: var(--surface2);
  margin: 1.5rem auto 1rem;
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.05s linear;
  border-radius: 1px;
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ── NAV ────────────────────────────────────────────────── */
/* ----- Keep your existing .nav, .nav-logo-box, .nav-cta-orange, .nav-burger as they are ----- */
:root {
  --navbar-height: 110px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2.5rem;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;

  background: #ffffff;
  border-bottom: 1px solid rgba(27, 79, 114, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 25px rgba(27, 79, 114, 0.12);
  border-bottom: 1px solid rgba(27, 79, 114, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
  flex-shrink: 0;
}

.nav-burger {
  display: none;
}

.mobile-menu {
  display: none;
  
}

/* Hamburger lines */
.nav-burger {
  width: 52px;
  height: 52px;
  padding: 6px;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: none;
  border-radius: 12px;
  box-shadow: var(--neu-shadow-out-sm);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.nav-burger:hover {
  box-shadow: var(--neu-shadow-in-sm);
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--accent2);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.nav-burger span+span {
  margin-top: 6px;
}

/* Mobile close button */
.mobile-close {
  position: absolute;
  right: 1rem;
  top: 0.8rem;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  border: none;
  z-index: 1;
}

.nav-logo svg {
  width: 96px;
  height: 96px
}

.nav-logo img {
  width: 220px;
  max-width: 240px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  display: block;
}




.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  height: 72px;

}

.nav-item {
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 50px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--accent2);
  text-decoration: none;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  border: none;
  background: none;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-item:hover .nav-link,
.nav-item.active .nav-link {
  color: var(--accent)
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
  transform: scaleX(1)
}

.nav-arrow {
  width: 5px;
  height: 5px;
  border-right: 1.2px solid currentColor;
  border-bottom: 1.2px solid currentColor;
  transform: rotate(45deg) translateY(-0.5px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-item.open .nav-arrow {
  transform: rotate(-135deg) translateY(-0.5px)
}

.nav-cta,
.btn-see-all {
  color: var(--accent2);
}

.home-suite-link {
  position: relative;
  overflow: hidden;
  z-index: 1;
  --ripple-x: 50%;
  --ripple-y: 50%;
}

.nav-cta {
  position: relative;
  overflow: hidden;
  --ripple-x: 50%;
  --ripple-y: 50%;
  margin-left: 20px;
  padding: 12px 28px;
  background: var(--bg);
  color: var(--accent2) !important;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 16px;

  text-decoration: none;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  flex-shrink: 0;

}

.nav-cta:hover {
  box-shadow: var(--neu-shadow-in);
  color: var(--accent) !important;
}

.nav-cta::before {
  content: '';
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: 0;
  height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(232, 80, 26, 0.25);
  background: var(--accent2);
  color: #ffffff !important;
}

.nav-cta:hover::before {
  width: 400px;
  height: 400px;
}

.btn-see-all {
  position: relative;
  overflow: hidden;
  --ripple-x: 50%;
  --ripple-y: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 1rem 2.4rem;
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(27, 79, 114, 0.15);
}

.btn-see-all::before {
  content: '';
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: 0;
  height: 0;
  background: var(--primary-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-see-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 79, 114, 0.25);
}

.btn-see-all:hover::before {
  width: 400px;
  height: 400px;
}

.home-suite-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  background-color: transparent;
}

.home-suite-link::before {
  content: '';
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: 0;
  height: 0;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.home-suite-link:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 79, 114, 0.15);
}

.home-suite-link:hover::before {
  width: 400px;
  height: 400px;
}

.home-suite-link i {
  transition: transform 0.2s ease;
}

.home-suite-link:hover i {
  transform: translateX(4px);
}

/* ── MEGA MENU (COMPACT FLOATING GLASSMORPHIC) ── */
.mega-menu {
  position: fixed;
  top: calc(var(--navbar-height, 74px) + 8px);
  width: auto;
  max-width: 660px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 16px;
  border: 1px solid rgba(27, 79, 114, 0.14);
  box-shadow:
    0 12px 32px rgba(13, 31, 45, 0.09),
    0 24px 54px -12px rgba(13, 31, 45, 0.16),
    0 0 0 1px rgba(27, 79, 114, 0.06);
  padding: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  overflow: hidden;
  will-change: opacity, transform, visibility;
}

#menu-company {
  max-width: 220px;
}

#menu-company .mega-inner {
  padding: 10px 10px;
}

#menu-company .mega-cols {
  grid-template-columns: 1fr;
  gap: 2px;
}

#menu-company .mega-item {
  padding: 8px 10px;
  gap: 10px;
}

.mega-menu.visible {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

/* Subtle top amber highlight glow line */
.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(232, 147, 10, 0.7) 50%, transparent 100%);
  z-index: 3;
}

.mega-inner {
  max-width: 100%;
  margin: 0;
  padding: 18px 20px;
  display: block;
  position: relative;
  z-index: 2;
}

.mega-label {
  display: none;
}

.mega-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
  width: 100%;
}

.mega-col {
  min-width: 0;
}

.mega-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent3, #0D2B3E);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
}

.mega-item::before {
  display: none;
}

.mega-item:hover {
  color: var(--accent, #E8930A);
  background: rgba(27, 79, 114, 0.05);
  border-color: rgba(27, 79, 114, 0.09);
  transform: translateX(3px);
}

.mega-item-dot {
  display: none;
}

.mega-item-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 79, 114, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(27, 79, 114, 0.08);
  transition: all 0.2s ease;
  color: var(--accent2, #1B4F72);
}

.mega-item:hover .mega-item-icon {
  background: rgba(232, 147, 10, 0.12);
  border-color: rgba(232, 147, 10, 0.28);
  color: var(--accent, #E8930A);
}

.mega-item-icon svg,
.mega-item > svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--accent2, #1B4F72);
  color: var(--accent2, #1B4F72);
  transition: all 0.2s ease;
}

.mega-item:hover .mega-item-icon svg,
.mega-item:hover > svg {
  stroke: var(--accent, #E8930A) !important;
  color: var(--accent, #E8930A) !important;
  transform: scale(1.1);
}

/* Stagger animation on open */
.mega-menu.visible .mega-item {
  animation: item-slide 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mega-menu.visible .mega-items li:nth-child(1) .mega-item { animation-delay: 0.03s; }
.mega-menu.visible .mega-items li:nth-child(2) .mega-item { animation-delay: 0.06s; }
.mega-menu.visible .mega-items li:nth-child(3) .mega-item { animation-delay: 0.09s; }
.mega-menu.visible .mega-items li:nth-child(4) .mega-item { animation-delay: 0.12s; }
.mega-menu.visible .mega-items li:nth-child(5) .mega-item { animation-delay: 0.15s; }

@keyframes item-slide {
  from {
    opacity: 0;
    transform: translateX(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Highlight card hidden */
.mega-highlight {
  display: none !important;
}

/* ── BACKDROP ── */
#backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(13, 43, 62, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

#backdrop.active {
  background: rgba(13, 43, 62, 0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: all;
}

/* ── PAGE CONTENT ── */
.Hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  padding: 0 2rem 4rem 2rem;
  position: relative;
  overflow: hidden;
}







.Hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn-primary:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 81, 26, 0.4);
}

.btn-outline {
  padding: 13px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05)
}



/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-ghost-light {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 1rem 2.4rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
  background-color: var(--primary-dark);
  color: var(--white);
}



.btn-ghost,
.btn-ghost-light {
  --ripple-x: 50%;
  --ripple-y: 50%;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: 0;
  height: 0;
  background: var(--primary-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(232, 80, 26, 0.3);
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary-dark);
}

.btn-ghost::before {
  content: '';
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: 0;
  height: 0;

  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-ghost:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(27, 79, 114, 0.15);
}

.btn-ghost:hover::before {
  width: 400px;
  height: 400px;
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-ghost-light::before {
  content: '';
  position: absolute;
  top: var(--ripple-y);
  left: var(--ripple-x);
  width: 0;
  height: 0;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1),
    height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-ghost-light:hover {
  color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-ghost-light:hover::before {
  width: 400px;
  height: 400px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── SECTION COMMON ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #E8930A;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-size: 1.02rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header .section-sub {
  margin: 0 auto;
  text-align: center;
}

.section-header .section-label,
.section-header .section-heading {
  text-align: center;
}

/* ── Hero───────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════
   HERO — Cinematic Redesign
══════════════════════════════════════════════════════════ */
.Hero {
  position: relative;
  height: min(100vh, 56.25vw);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 132px 5vw 48px;
  overflow: hidden;
  background: var(--bg);
}

/* ── Video ── */
.Hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.Hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  border: none;
  transform: scale(1.04);
  will-change: transform;
  filter: brightness(0.45) saturate(0.8);
}

.Hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5, 10, 20, 0.92) 0%, rgba(5, 10, 20, 0.5) 60%, transparent 100%),
    linear-gradient(to top, rgba(5, 10, 20, 0.8) 0%, transparent 40%);
}

.Hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  display: none;
  pointer-events: none;
}

/* ── Grid overlay ── */
.Hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  pointer-events: none;
}

/* ── Hero visual ── */
.Hero-image {
  position: absolute;
  right: 3vw;
  left: auto;
  top: 50%;
  width: min(44vw, 700px);
  height: auto;
  max-height: 82%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-50%) perspective(1400px) rotateX(2deg) rotateY(-8deg);
  z-index: 1;
  pointer-events: none;
  filter:
    drop-shadow(0 38px 52px rgba(27, 79, 114, 0.18))
    drop-shadow(0 12px 18px rgba(27, 79, 114, 0.12))
    saturate(1.08);
  animation: hero-image-float 5s ease-in-out infinite;
  transition: transform 0.35s ease;
}

@keyframes hero-image-float {
  0%, 100% {
    transform: translateY(-50%) perspective(1400px) rotateX(2deg) rotateY(-8deg) translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-50%) perspective(1400px) rotateX(4deg) rotateY(-6deg) translateY(-12px) translateX(-8px);
  }
}

.Hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: transparent;
  pointer-events: none;
}

/* ── Ambient glow orbs ── */
.Hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  display: none;
  animation: orb-float 8s ease-in-out infinite;
}

.Hero-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 147, 10, 0.18) 0%, transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.Hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 79, 114, 0.25) 0%, transparent 70%);
  bottom: -10%;
  right: 10%;
  animation-delay: 3s;
}

.Hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 80, 26, 0.12) 0%, transparent 70%);
  top: 40%;
  right: 25%;
  animation-delay: 5s;
}

@keyframes orb-float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

/* ── Content ── */
.Hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  width: 100%;
  margin: 0;
  padding: 0 2vw 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Badge ── */
.Hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 147, 10, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-20px);
  
}

.Hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

.Hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--accent2);
  margin-bottom: 1.8rem;
  overflow: hidden;
}

.Hero-heading em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.Hero-line {
  display: block;
  overflow: hidden;
  max-width: 1400px;
  padding-bottom: 0.05em;
  font-weight: 600;
  opacity: 0;
  transform: translateY(110%);
}

/* ── Sub ── */
.Hero-sub {
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--accent2);
  max-width: 800px;
  width: 100%;
  line-height: 1.8;
  margin: 0 0 2.5rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
}

/* ── CTAs ── */
.Hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(20px);
}

.Hero-cta-row .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Stats ── */
.Hero-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(2, 58, 95);
  width: 100%;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  opacity: 0;
  transform: translateY(20px);
}

.stat-value,
.stat-num-row {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.Hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(27, 79, 114, 0.18);
  flex-direction: row;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: inline-block;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
  line-height: 1;
  margin-left: 2px;
  vertical-align: baseline;
}

.stat-label {
  flex: 0 0 100%;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(27, 79, 114);
  margin-top: 0.4rem;
  font-weight: 600;
}

.Hero .btn-ghost-light {
  border-color: #1B4F72;
  color: #1B4F72;
  background: transparent;
}

.Hero .btn-ghost-light::before {
  background: #1B4F72;
}

.Hero .btn-ghost-light:hover {
  background: #1B4F72;
  color: #ffffff;
  border-color: #1B4F72;
}

.Hero-cta-row .btn-primary:hover {
  background: #154060;
  box-shadow: 0 10px 28px rgba(27,79,114,0.35);
  transform: translateY(-2px);
}

/* ── Scroll hint ── */
.Hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 6vw;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  opacity: 0;
}

.Hero-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.Hero-scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-wheel 1.8s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(10px);
    opacity: 0;
  }

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

/* ── Responsive ── */
@media (max-width: 1024px) {
  .Hero {
    padding: 0 4vw;
  }

  .Hero-heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
  }

  .Hero-orb-1 {
    width: 400px;
    height: 400px;
  }

  .Hero-orb-2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .Hero {
    min-height: 95vh;
    padding: 0 1.5rem;
    background: var(--bg);
  }

  .Hero-content {
    max-width: 100%;
    padding-top: 100px;
    padding-bottom: 120px;
    padding-right: 0;
  }

  .Hero-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .Hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .Hero-cta-row {
    flex-direction: column;
  }

  .Hero-cta-row .btn-primary,
  .Hero-cta-row .btn-ghost,
  .Hero-cta-row .btn-ghost-light {
    width: 100%;
    justify-content: center;
  }

  .Hero-stats {
    gap: 1.5rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .Hero-grid,
  .Hero-orb-3 {
    display: none;
  }

  .Hero-image {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    top: auto;
    width: min(58vw, 220px);
    height: auto;
    transform: none;
    opacity: 1;
  }

  .Hero-scroll-hint {
    left: 1.5rem;
  }

  .Hero-glass-panel,
  .Hero-decor-left,
  .Hero-decor-right {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════
   TICKER — Skeuomorphic LED departure board
   ══════════════════════════════════════════════════════ */
.ticker-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;

  /* Deep recessed panel — pressed into the page */
  background:
    /* Scanline texture */
    repeating-linear-gradient(180deg,
      transparent 0px,
      transparent 3px,
      rgba(0, 0, 0, 0.18) 3px,
      rgba(0, 0, 0, 0.18) 4px),
    /* Subtle horizontal grain */
    repeating-linear-gradient(90deg,
      transparent 0px,
      transparent 60px,
      rgba(255, 255, 255, 0.012) 60px,
      rgba(255, 255, 255, 0.012) 61px),
    /* Panel base */
    linear-gradient(180deg, #0a1018 0%, #0d1520 50%, #0a1018 100%);

  border-top: 1px solid rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);

  /* Inset shadow — the panel is pressed into the surface */
  box-shadow:
    inset 0 3px 10px rgba(0, 0, 0, 0.85),
    inset 0 -3px 10px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Left + right bezel vignette — simulates physical screen edge */
.ticker-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.7) 0%,
      transparent 8%,
      transparent 92%,
      rgba(0, 0, 0, 0.7) 100%);
  z-index: 3;
  pointer-events: none;
}

/* Top phosphor glow line */
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(232, 147, 10, 0.25) 20%,
      rgba(232, 147, 10, 0.5) 50%,
      rgba(232, 147, 10, 0.25) 80%,
      transparent 100%);
  z-index: 4;
  pointer-events: none;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  will-change: transform;
  gap: 2.4rem;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 0;
  animation: ticker 28s linear infinite;
  position: relative;
  z-index: 2;

  /* Phosphor amber glow on text */
  color: #e8930a;
  text-shadow:
    0 0 8px rgba(232, 147, 10, 0.75),
    0 0 18px rgba(232, 147, 10, 0.35),
    0 0 35px rgba(232, 147, 10, 0.15);
}

.ticker-track:hover {
  animation-play-state: paused;
}

/* Separator — lit LED diamond */
.ticker-dot {
  color: #e8930a;
  font-size: 0.6rem;
  opacity: 0.7;
  text-shadow:
    0 0 6px rgba(232, 147, 10, 0.9),
    0 0 14px rgba(232, 147, 10, 0.5);
  animation: tickerDotPulse 3s ease-in-out infinite;
}

.ticker-dot:nth-child(4n) {
  animation-delay: 0s;
}

.ticker-dot:nth-child(4n+2) {
  animation-delay: 0.75s;
}

.ticker-dot:nth-child(4n+3) {
  animation-delay: 1.5s;
}

.ticker-dot:nth-child(4n+1) {
  animation-delay: 2.25s;
}

@keyframes tickerDotPulse {

  0%,
  100% {
    opacity: 0.5;
    text-shadow: 0 0 6px rgba(232, 147, 10, 0.7), 0 0 14px rgba(232, 147, 10, 0.3);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 8px rgba(232, 147, 10, 1), 0 0 20px rgba(232, 147, 10, 0.6);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}





/* ── SERVICES ───────────────────────────────────────────── */
/* Reveal helpers — GPU friendly initial states */
.reveal-fade,
.reveal-split,
.reveal-li,
.reveal-card,
.reveal-step {
  opacity: 0;
  transform: translateY(12px);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.parallax-img {
  will-change: transform;
  transform: translateZ(40px);
}

@media (prefers-reduced-motion: reduce) {

  .reveal-fade,
  .reveal-split,
  .reveal-li,
  .reveal-card,
  .reveal-step,
  .Hero-line,
  .Hero-video {
    transition: none !important;
    animation: none !important;
  }
}

/* ── Services grid — recessed tray like tech section ── */
.nav-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 18px;
  padding: 40px;
  /* First card spans full column-width (tall featured card) */
  align-content: start;
}

/* First card is the featured one — taller */
.nav-services-grid .service-tilt-card:first-child {
  grid-column: 1 / -1;
}

.nav-services-grid .service-tilt-card:first-child .service-tilt-inner {
  min-height: 300px;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.nav-services-grid .service-tilt-card:first-child .service-tilt-inner h3 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.nav-services-grid .service-tilt-card:first-child .service-tilt-inner p {
  max-width: 420px;
}

.service-tilt-card {
  perspective: 800px;
}

.service-tilt-inner {
  position: relative;
  min-height: 230px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.38) 40%,
      rgba(0, 0, 0, 0.82) 100%),
    var(--card-bg) center/cover no-repeat;
  /* Raised card bevel */
  border: none;
  box-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    3px 5px 0 rgba(0, 0, 0, 0.45),
    5px 8px 16px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2.8vw, 30px);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out, box-shadow 0.22s ease;
  cursor: pointer;
}

/* Specular sheen on each card */
.service-tilt-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 100%);
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  z-index: 1;
}

.service-tilt-inner:hover {
  transform: translateY(-4px) translateX(-1px);
  box-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    5px 8px 0 rgba(0, 0, 0, 0.48),
    7px 12px 22px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(232, 147, 10, 0.12);
}

.service-tilt-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(232, 147, 10, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.service-tilt-card:hover .service-tilt-glow {
  opacity: 1;
}

/* Category label — engraved plate */
.service-tilt-label {
  color: #e8930a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateZ(40px);
  position: relative;
  z-index: 2;
  text-shadow: 0 0 8px rgba(232, 147, 10, 0.4);
}

.service-tilt-inner h3 {
  color: #f0f8ff;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 10px 0 8px;
  transform: translateZ(32px);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.service-tilt-inner p {
  color: rgba(200, 225, 240, 0.82);
  font-size: 0.87rem;
  line-height: 1.6;
  margin: 0;
  max-width: 340px;
  transform: translateZ(20px);
  position: relative;
  z-index: 2;
}

/* Tech tag chips — engraved labels */
.service-tilt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
  transform: translateZ(20px);
  position: relative;
  z-index: 2;
}

.service-tilt-meta small {
  background: linear-gradient(180deg, #0e1e2c 0%, #0c1a26 100%);
  border: none;
  border-radius: 6px;
  color: rgba(180, 210, 230, 0.8);
  font-size: 0.7rem;
  padding: 5px 10px;
  box-shadow:
    inset 1px 1px 3px rgba(0, 0, 0, 0.65),
    inset -1px -1px 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.05);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.5);
}

@media (max-width:1040px) {
  .nav-services-grid {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .nav-services-grid .service-tilt-card:first-child {
    grid-column: 1;
  }

  .nav-services-grid .service-tilt-card:first-child .service-tilt-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 260px;
  }
}

@media (max-width:720px) {
  .nav-services-grid {
    padding: 0 18px 40px;
    gap: 14px;
  }

  .service-tilt-inner {
    min-height: 220px;
  }
}


/* ── PROCESS ────────────────────────────────────────────── */




@media (max-width: 768px) {}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.benefit-pill {
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.benefit-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 147, 10, 0.08);
}

/* ── MISSION ────────────────────────────────────────────── */
.mission {
  padding: 4rem 0 6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 147, 10, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mission::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mission .container {
  position: relative;
  z-index: 100;
}

.mission-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--primary-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  justify-self: center;
  font-weight: 700;
  animation: fadeInDown 0.6s ease-out;
}

.mission-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  background: var(--primary-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.mission-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 4rem;
  text-align: center;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* Card */
.mission-card {
  perspective: 1000px;
  cursor: pointer;
  height: 100%;
  animation: float 3s ease-in-out infinite;
}

.mission-card:nth-child(1) {
  animation-delay: 0s;
}

.mission-card:nth-child(2) {
  animation-delay: 0.2s;
}

.mission-card:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes float {

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

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

.mission-card-inner {
  position: relative;
  width: 100%;
  height: 400px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mission-card:hover .mission-card-inner {
  transform: rotateY(180deg);
}

/* Front & back shared */
.mission-card-front,
.mission-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  inset: 0;
}

/* Front */
.mission-card-front {
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mission-card:hover .mission-card-front {
  box-shadow: 0 20px 60px rgba(232, 147, 10, 0.3);
}

.mission-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 5;
  border-radius: 20px;
}

.mission-card:hover .mission-card-front::before {
  opacity: 1;
}

.mission-card-front::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(232, 147, 10, 0);
  transition: border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 4;
}

.mission-card:hover .mission-card-front::after {
  border-color: rgba(232, 147, 10, 0.5);
  box-shadow: 0 0 30px rgba(232, 147, 10, 0.3);
}

.mission-card-front img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
  filter: brightness(0.9) contrast(1.05);
}

.mission-card:hover .mission-card-front img {
  transform: scale(1.12) rotate(2deg);
  filter: brightness(1) contrast(1.1);
}

/* Back */
.mission-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--surface2) 0%, rgba(220, 232, 240, 0.8) 100%);
  border: 2px solid rgba(232, 147, 10, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  box-shadow: inset 0 0 20px rgba(232, 147, 10, 0.1);
}

.mission-card-back .mission-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, rgba(232, 147, 10, 0.2) 0%, rgba(27, 79, 114, 0.1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin: 0;
}

.mission-card-back h3 {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1.3;
}

.mission-card-back p {
  color: var(--text-muted);
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.7;
  margin: 0;
}

/* Mobile — tap to flip */
@media (max-width: 768px) {
  .mission {
    padding: 3rem 0 4rem 0;
  }

  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 100%;
  }

  .mission-card {
    animation: none;
  }

  .mission-card-inner {
    height: 350px;
  }

  .mission-card:hover .mission-card-inner {
    transform: none;
  }

  .mission-card.flipped .mission-card-inner {
    transform: rotateY(180deg);
  }

  .mission-card-front img {
    transform: none !important;
  }

  .mission-card:hover .mission-card-front img {
    transform: none;
  }

  .container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .mission {
    padding: 2.5rem 0 3.5rem 0;
  }

  .mission-grid {
    gap: 1.5rem;
  }

  .mission-card-inner {
    height: 320px;
  }

  .mission-card-back {
    padding: 1.5rem 1.2rem;
  }

  .mission-heading {
    font-size: 1.8rem;
  }

  .mission-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
}

/* ── GEOMETRIC DIVIDER ─────────────────────────────────────────── */
.geometric-divider {
  position: relative;
  width: 100%;
  height: 60px;
  background: linear-gradient(180deg, var(--bg) 0%, #d4e8f5 50%, var(--bg) 100%);
  overflow: hidden;
}

.geo-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(232, 147, 10, 0.15) 1px, transparent 1px),
    linear-gradient(rgba(27, 79, 114, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 20% 50%, rgba(232, 147, 10, 0.2) 2px, transparent 2px),
    radial-gradient(circle at 40% 30%, rgba(27, 79, 114, 0.15) 1.5px, transparent 1.5px),
    radial-gradient(circle at 60% 70%, rgba(232, 147, 10, 0.15) 2px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(27, 79, 114, 0.2) 1.5px, transparent 1.5px);
  background-size:
    60px 100%,
    100% 30px,
    200px 60px,
    150px 60px,
    180px 60px,
    160px 60px;
  animation: geoShift 8s linear infinite;
}

.geo-pattern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232, 147, 10, 0.4) 20%,
    rgba(27, 79, 114, 0.4) 50%,
    rgba(232, 147, 10, 0.4) 80%,
    transparent 100%);
}

.geo-pattern::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(232, 147, 10, 0.5) 30%,
    rgba(27, 79, 114, 0.5) 50%,
    rgba(232, 147, 10, 0.5) 70%,
    transparent 100%);
}

@keyframes geoShift {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      60px 0,
      0 30px,
      200px 0,
      150px 0,
      180px 0,
      160px 0;
  }
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
  text-align: center;

}



.cta-bg {
  position: fixed;
  inset: 0;
  background: url('assets/images/homepage/fixed.jpg') center/cover no-repeat fixed;
  
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 79, 114, 0.82);
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta-heading {
  color: #ffffff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  opacity: 1;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}



/* ── CONTACT ────────────────────────────────────────────── */
.contact {
  padding: 9rem 0;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  margin-top: 2.5rem;
}

.ci-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.ci-item:first-child {
  border-top: 1px solid var(--border);
}

.ci-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.ci-val {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}



/* ── SCROLL REVEAL INIT STATES ──────────────────────────── */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-img {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
}

.reveal-service {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal-step {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-card {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-pill {
  opacity: 0;
  transform: scale(0.85);
}

.reveal-mission {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-li {
  opacity: 0;
  transform: translateX(-20px);
}

.reveal-split {
  opacity: 1;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit {
    width: 280px;
    height: 280px;
  }

  .orbit-ring-1 {
    width: 280px;
    height: 280px;
  }

  .orbit-ring-2 {
    width: 190px;
    height: 190px;
  }

  .orbit-ring-3 {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 768px) {

  /* Navigation */
  .nav {
    padding: 0.6rem 1.2rem;
    width: calc(100% - 2rem);
    top: 0.8rem;
    border-radius: 40px;
  }

  .nav.scrolled {
    padding: 0.5rem 1rem;
  }

  .nav-logo img {
    height: 72px;
    width: auto;
    max-width: 195px;
  }

  .nav.scrolled .nav-logo img {
    height: 60px;
    width: auto;
  }

  .nav-tagline {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  /* HeroSection - Compact */
  .Hero {
    min-height: 70vh;
    padding-bottom: 2.5rem;
    padding-top: 5rem;
  }

  .Hero-content {
    padding: 0 1.2rem;
    max-width: 100%;
  }

  .Hero-heading {
    font-size: 2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
  }

  .Hero-sub {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }

  .Hero-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1rem;
  }

  .Hero-cta-row {
    flex-direction: column;
    gap: 0.6rem;
  }

  .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }

  .Hero-stats {
    display: none;
  }

  .Hero-scroll-hint {
    display: none;
  }

  /* Ticker - Compact */
  .ticker-wrap {
    padding: 0.5rem 0;
  }

  .ticker-track {
    font-size: 0.85rem;
    gap: 1.2rem;
  }

  /* Services Section - Compact */
  .services {
    padding: 3rem 0;
  }

  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .section-sub {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .section-label {
    font-size: 0.65rem;
    margin-bottom: 0.7rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .service-item {
    grid-template-columns: 35px 1fr;
    gap: 0.8rem;
    padding: 1.2rem 0;
  }

  .service-item::before {
    font-size: 2.5rem;
    right: 15px;
  }

  .service-arrow {
    display: none;
  }

  .service-icon {
    font-size: 1.1rem;
  }

  .service-body h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
  }

  .service-body p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  /* Innovation Section - Compact */
  .innovation {
    padding: 3rem 0;
  }

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

  .innovation-visual {
    order: -1;
  }

  .orbit {
    width: 220px;
    height: 220px;
  }

  .orbit-ring-1 {
    width: 220px;
    height: 220px;
  }

  .orbit-ring-2 {
    width: 150px;
    height: 150px;
  }

  .orbit-ring-3 {
    width: 90px;
    height: 90px;
  }

  .orbit-center {
    width: 50px;
    height: 50px;
    font-size: 0.85rem;
  }

  .orbit-dot {
    width: 35px;
    height: 35px;
    font-size: 0.55rem;
  }

  .innovation-list {
    margin: 1rem 0;
  }

  .innovation-list li {
    font-size: 0.85rem;
    padding: 0.4rem 0;
  }

  /* Process Section - Compact */
  .process {
    padding: 3rem 0;
  }

  .process-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .process-step {
    max-width: 100%;
    padding: 1.5rem 1.2rem;
  }

  .ps-num {
    font-size: 0.65rem;
    margin-bottom: 0.7rem;
  }

  .ps-icon {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }

  .process-step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }

  .process-step p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .process-connector {
    width: 1.5px;
    height: 1rem;
    margin: 0 auto;
  }

  /* Mission Grid - Compact */
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
  }

  .mission-item:last-child {
    border-bottom: none;
  }

  /* Footer - Compact */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ft {
    margin-top: -150px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }

  /* About Page - Compact */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-img-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wide {
    height: 180px;
  }

  .about-img-card {
    height: 160px;
  }

  /* Contact - Compact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Why Cards - Compact */
  .why-cards {
    grid-template-columns: 1fr;
  }

  /* General Container */
  .container {
    padding: 0 1.2rem;
  }

}



/* ── PORTFOLIO PAGE ──────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.portfolio-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.08);
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-overlay a {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.portfolio-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.portfolio-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.pf-btn {
  padding: 8px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pf-btn:hover,
.pf-btn.active {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  font-weight: 600;
}

.portfolio-card.hidden {
  display: none;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 50%, var(--accent-red) 100%);
  padding: 60px 0;
}

.stats-strip .Hero-stats {
  justify-content: center;
  gap: 80px;
}

.stats-strip .stat-num,
.stats-strip .stat-plus {
  color: #000;
}

.stats-strip .stat-label {
  color: rgba(0, 0, 0, 0.7);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 1.5rem;
}

.socials {
  display: flex;
  gap: 16px;
  margin-top: 1.5rem;
}

.social-link,
.social-link-l,
.social-link-i,
.social-link-f,
.social-link-y,
.social-link-w {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: #E8930A;
  font-size: 0.85rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s;
}

.social-link::before,
.social-link-l::before,
.social-link-i::before,
.social-link-f::before,
.social-link-y::before,
.social-link-w::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.4s ease-out;
  z-index: -1;
  border-radius: 50%;
}

.social-link::after,
.social-link-l::after,
.social-link-i::after,
.social-link-f::after,
.social-link-y::after,
.social-link-w::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -25%;
  width: 150%;
  height: 0;
  background: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C150,120 350,0 600,60 C850,120 1050,0 1200,60 L1200,120 L0,120 Z' fill='%23ffffff20'/%3E%3C/svg%3E");
  background-size: 200% 100%;
  transition: height 0.4s ease-out;
  animation: wave 3s linear infinite;
  z-index: -1;
}

@keyframes wave {
  0% {
    background-position-x: 0%;
  }

  100% {
    background-position-x: 200%;
  }
}

.social-link-l:hover::before,
.social-link-l:hover::after {
  height: 100%;
  background-color: #0A66C2;
}

.social-link-l:hover {
  color: #fff !important;
  border-color: #0A66C2 !important;
}

.social-link-i:hover::before,
.social-link-i:hover::after {
  height: 100%;
  background: linear-gradient(45deg, #F77737, #E1306C, #833AB4);
}

.social-link-i:hover {
  color: #fff !important;
  border-color: #E1306C !important;
}

.social-link-f:hover::before,
.social-link-f:hover::after {
  height: 100%;
  background-color: #1877F2;
}

.social-link-f:hover {
  color: #fff !important;
  border-color: #1877F2 !important;
}

.social-link-y:hover::before,
.social-link-y:hover::after {
  height: 100%;
  background-color: #FF0000;
}

.social-link-y:hover {
  color: #fff !important;
  border-color: #FF0000 !important;
}

.social-link-w:hover::before,
.social-link-w:hover::after {
  height: 100%;
  background-color: #25D366;
}

.social-link-w:hover {
  color: #fff !important;
  border-color: #25D366 !important;
}


/* CHANGE TRACK HEIGHT */
.track {
  display: flex;
  gap: 0;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  overflow: hidden;
  min-height: 520px;
  /* increased for 6 panels */
}

/* DEFAULT PANEL WIDTH */
.panel {
  flex: 1;
  border-right: 1px solid #1e1e1e;
  position: relative;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.77, 0, 0.175, 1), background 0.3s;
  overflow: hidden;
  background: #E8930A;
  display: flex;
  flex-direction: column;
  min-width: 70px;
  /* important for 6 panels */
}

/* ACTIVE PANEL */
.panel.active {
  flex: 5;
  /* more space for expanded content */
  background: #E8930A;
}

/* COLLAPSED TITLE */
.col-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 16px;
  /* slightly smaller */
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: auto 0;
}

/* EXPANDED CONTENT */
.expanded-view {
  position: absolute;
  inset: 0;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.35s 0.25s, transform 0.35s 0.25s;
  pointer-events: none;
  min-width: 260px;
}

/* TITLE */
.exp-title {
  font-size: 34px;
  /* adjusted for better fit */
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 0.95;
  margin-bottom: 18px;
}

/* TAGS */
.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: auto;
}

.tag {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* DESCRIPTION */
.exp-desc {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 20px;
  max-width: 320px;
}

/* RESPONSIVE */
@media(max-width:1200px) {

  .track {
    flex-direction: column;
    min-height: auto;
  }

  .panel {
    min-height: 90px;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #1e1e1e;
  }

  .panel.active {
    min-height: 420px;
  }

  .col-title {
    writing-mode: initial;
    transform: none;
    font-size: 20px;
    margin-top: 20px;
  }

  .collapsed-view {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .expanded-view {
    position: relative;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .panel:not(.active) .expanded-view {
    display: none;
  }
}

.why-vr-ar-top,
.why-vr-ar-bottom {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}

.why-vr-ar-top {
  top: -1px;
}

.why-vr-ar-bottom {
  bottom: -6px;
}

.why-vr-ar-top svg,
.cta-shape-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

.mission {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wrapper {
  width: 100%;
  margin: auto;
  max-width: 100rem;
}

.cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.col {
  width: calc(33.333% - 2rem);
  margin: 1rem;
  cursor: pointer;
}

.container {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-perspective: 1000px;
  perspective: 1000px;



}

.front,
.back {
  background-size: cover;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  background-position: center;
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-align: center;
  min-height: 280px;
  height: auto;
  border-radius: 10px;
  color: #fff;
  font-size: 1.6rem;


}

.back {
  background-color: #1B4F72;
  justify-content: center;

}

.front:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  opacity: .6;
  background-color: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}

.container:hover .front,
.container:hover .back {
  -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

}

.inner {
  -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
  transform: translateY(-50%) translateZ(60px) scale(0.94);
  top: 50%;
  position: absolute;
  left: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
}

.container .back {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container .front {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .back {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.container:hover .front {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.front .inner p {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.front .inner p:after {
  content: '';
  width: 4rem;
  height: 2px;
  position: absolute;
  background: #C6D4DF;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -.75rem;
}

.front .inner span {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Montserrat';
  font-weight: 300;
}

@media screen and (max-width: 64rem) {
  .col {
    width: calc(33.333333% - 2rem);
  }
}

@media screen and (max-width: 48rem) {
  .col {
    width: calc(50% - 2rem);
  }
}

@media screen and (max-width: 32rem) {
  .col {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}

/* Comprehensive homepage responsive overrides */
@media (max-width: 1200px) {

  /* Make large Hero/visual assets scale down */
  .Hero,
  .Hero {
    padding-top: calc(var(--navbar-height) + 2rem);
    padding-bottom: 3rem;
  }

  .Hero-content,
  .Hero-content {
    max-width: 620px;
    margin: 0;
  }

  .Hero-heading,
  .Hero-heading {
    font-size: clamp(2.6rem, 6vw, 4.2rem);
  }

  .ticker-track {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {

  /* Navigation compact */
  .nav {
    width: calc(100% - 2rem);
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s;
  }

  .nav-burger:hover {
    background: rgba(0, 0, 0, 0.06);
  }

  .burger-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  .nav-burger[aria-expanded="true"] .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-burger[aria-expanded="true"] .burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-burger[aria-expanded="true"] .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 25, 0.96);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: transform 0.35s ease, opacity 0.35s ease;
    z-index: 20000;
    padding-top: 5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 1.5rem;
    display: grid;
    gap: 1rem;
  }

  .mobile-menu .mm-link {
    display: block;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-menu .mm-link:hover {
    color: var(--accent);
  }

  /* About / Bento grid stacks to two columns */
  .about-new-cards,
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .about-new-card {
    min-height: auto;
  }

  /* Services tabs become horizontal scroll */
  .s2-tabs {
    overflow-x: auto;
    gap: 0.6rem;
  }

  .s2-tab-label {
    display: none;
  }
}

@media (max-width: 768px) {

  /* Global container padding */
  .container {
    padding: 0 1rem;
  }

  /* Hero adjustments */
  .Hero,
  .Hero {
    display: block;
    min-height: 70vh;
    padding-top: calc(var(--navbar-height) + 1.5rem);
    padding-bottom: 2.5rem;
  }

  .Hero-content,
  .Hero-content {
    max-width: 620px;
    padding: 1.15rem 0;
    border-radius: 0;
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .Hero-heading,
  .Hero-heading {
    font-size: clamp(2rem, 9vw, 3.2rem);
    line-height: 1.05;
  }

  .Hero-sub,
  .Hero-sub {
    font-size: 1rem;
    max-width: 100%;
  }

  .Hero-cta-row,
  .Hero-cta-row {
    flex-direction: column;
    gap: 0.8rem;
    align-items: flex-start;
  }

  .Hero-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    padding: 1rem;
    margin-top: 1.6rem;
  }

  /* Ticker and progress */
  .ticker-wrap {
    padding: 0.4rem 0;
  }

  /* About - single column */
  .about-new-cards,
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-new-card-image {
    height: 200px;
    position: relative;
  }

  /* Services-V2 stack */
  .s2-container {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }

  .s2-content-wrap {
    min-height: auto;
    padding-left: 0;
  }

  .s2-panel {
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .s2-tabs {
    border-bottom: 1px solid rgba(0, 245, 212, 0.08);
  }

  /* Innovation */
  .innovation-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Why VR/AR*/
  .why-vr-grid {
    grid-template-columns: 1fr;
  }

  .why-bg-twist,
  .why-bg-cube {
    opacity: 0.4;
  }

  /* Mission cards: stack & reduce size */
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .mission-card-inner {
    height: 300px;
  }

  /* CTA */
  .cta-banner {
    padding: 3.5rem 1.5rem;
    margin-bottom: 0;
    height: auto;
    min-height: auto;
    position: relative;
    z-index: 1;
  }

  .cta-heading {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .cta-btns {
    flex-direction: column;
    gap: 0.75rem;
  }

  /* Blog */
  .blog-cards-row {
    flex-direction: column;
  }

  .card {
    min-height: 260px;
  }

  /* Contact */
  .contact-grid,
  .c2-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .c2-form-card,
  .contact-form {
    padding: 20px;
    border-radius: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}

@media (max-width: 480px) {

  /* Extra small screens */
  .nav {
    top: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 36px;
  }

  .nav-logo img {
    height: 68px;
    width: auto;
    max-width: 185px;
  }

  .mobile-menu .mm-link {
    font-size: clamp(1.25rem, 8vw, 2rem);
  }

  .Hero-heading,
  .Hero-heading {
    font-size: clamp(1.6rem, 9vw, 2.6rem);
  }

  .Hero-content {
    padding: 1rem 0;
    border-radius: 0;
  }

  .Hero-cta-row .btn-primary,
  .Hero-cta-row .btn-ghost,
  .btn-primary,
  .btn-ghost {
    width: 100%;
    padding: 0.8rem 1rem;
  }

  .about-new-card-image {
    height: 160px;
  }

  .about-new-card {
    padding: 1rem;
  }

  .portfolio-grid {
    gap: 16px;
  }

  .portfolio-card-body h3 {
    font-size: 1rem;
  }

  .mission-card-inner {
    height: 240px;
  }

  .blog-section {
    padding: 1rem 0.6rem;
  }

  .card {
    min-height: 200px;
  }

  .cta-heading {
    font-size: 1.25rem;
  }
}

/* Small helper: ensure mobile-menu overlays content fully */
.mobile-menu {
  z-index: 20000;
}

.solutionss-section {
  position: relative;
  background: linear-gradient(160deg, #F8FAFD 0%, #F0F4F9 45%, #F5F8FD  75%, #F8FAFD  100%);
  overflow: hidden;
  padding: 5rem 5%;
  border-top: 1px solid rgba(39, 75, 110, 0.1);
  border-bottom: 1px solid rgba(39, 75, 110, 0.1);
  animation: none;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.solutionss-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(39, 75, 110, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(65, 119, 172, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
  animation: none;
}

@keyframes floatParticles {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 0 0, 0 0, 80px 80px;
  }
}

.solutionss-section::after {
  display: none;
}

@keyframes moveParticles {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(30px, -20px) rotate(10deg);
  }
}

.solutionss-section>* {
  position: relative;
  z-index: 7;
}

.solutionss-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto 3.75rem auto;
}

.solutionss-kicker {
  color: #274B6E;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.solutionss-title {
  color: #1A3A52;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
  line-height: 1;
  margin: 0;
  max-width: 920px;
}

.solutionss-desc {
  color: #4A6B8A;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

.solutionss-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto 34px;
  background: linear-gradient(160deg, #FFFFFF 0%, #F8FAFD 60%, #FFFFFF 100%);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(39, 75, 110, 0.08);
  box-shadow:
    0 10px 40px rgba(39, 75, 110, 0.06),
    0 2px 8px rgba(39, 75, 110, 0.04);
}

.solutions-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #F8FAFD 60%, #FFFFFF 100%);
  border: 1px solid rgba(39, 75, 110, 0.08);
  border-radius: 14px;
  cursor: pointer;
  min-height: 250px;
  overflow: hidden;
  padding: 28px 22px 24px;
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 
    0 8px 16px rgba(39, 75, 110, 0.15),
    0 16px 32px rgba(39, 75, 110, 0.12),
    0 4px 8px rgba(39, 75, 110, 0.1);
}

.solutions-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  border-radius: 14px 14px 0 0;
  z-index: 1;
  pointer-events: none;
}

.solutions-card:hover {
  transform: translateY(-8px) translateX(-2px);
  box-shadow:
    0 12px 24px rgba(39, 75, 110, 0.2),
    0 32px 64px rgba(39, 75, 110, 0.25),
    0 8px 16px rgba(39, 75, 110, 0.15);
}

/* Footer Styles */
.footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer-wrap {
  font-family: var(--font-ui);
  background: #fff;
  width: 100%;
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e8e8e8;
}

.footer-inner {
  position: relative;
  max-width: 1900px;
  margin: 0 auto;
  padding: 60px 48px 36px;
  min-height: 460px;
}

.footer-logo {
  width: 210px;
  max-width: 240px;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  max-height: 85px;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 36px;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  max-width: 1900px;
  gap: 24px;
}

.col-left,
.col-right,
.col-extra-left,
.col-extra-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 130px;
}

.col-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.col-left a,
.col-right a,
.col-extra-left a,
.col-extra-right a {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.9;
  transition: color 0.2s;
}

.col-left a:hover,
.col-right a:hover,
.col-extra-left a:hover,
.col-extra-right a:hover {
  color: #1a4fa0;
}

.col-right,
.col-extra-right {
  text-align: right;
}

.col-right .divider,
.col-extra-right .divider {
  width: 32px;
  height: 2px;
  background: #1a1a1a;
  margin: 4px 0 8px auto;
}

.col-extra-left .divider {
  width: 32px;
  height: 2px;
  background: #1a1a1a;
  margin: 4px 0 8px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 32px;
  position: relative;
  z-index: 2;
  border-top: 1px solid #e8e8e8;
  margin-top: 80px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  line-height: 1;
}

.brand-name span {
  font-weight: 700;
}

.copyright {
  font-family: var(--font-ui);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

/* Ensure footer elements are visible by default */
.col-left,
.col-right,
.col-extra-left,
.col-extra-right,
.footer-bottom {
  opacity: 1 !important;
  transform: none !important;
}


.solutions-card:hover::before {
  opacity: 1;
}

/* Solutions Section Responsive */
@media (max-width: 1024px) {
  .solutionss-section {
    padding: 4rem 3rem;
  }

  .solutionss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .solutionss-section {
    padding: 3rem 1.5rem;
  }

  .solutionss-grid {
    grid-template-columns: 1fr;
  }

  .solutionss-header {
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
}

.solutions-card .card-default {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.solutions-card:hover .card-default {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-card img.icon {
  filter: drop-shadow(0 4px 12px rgba(39, 75, 110, 0.15));
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
}

.solutions-card:hover img.icon {
  transform: scale(1.1) rotateY(10deg);
  filter: drop-shadow(0 8px 20px rgba(39, 75, 110, 0.25));
}

.solutions-card h3 {
  color: #1A3A52;
  font-size: 1.70rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 10px;
  font-family: var(--font-display);
}

.solutions-card .card-default p {
  color: #4A6B8A;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  max-width: 100%;
}


.solutions-card .card-hover {
  align-items: center;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  inset: 0;
  justify-content: center;
  opacity: 0;
  overflow: hidden;
  padding: 24px;
  position: absolute;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.solutions-card:hover .card-hover {
  opacity: 1;
}

.solutions-card .card-hover h3,
.solutions-card .card-hover p {
  color: var(--accent);
}



.solutions-card .hover-bg-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
  text-align: center;
  font-family: var(--font-display);
}

.solutions-card .hover-bg-title span {
  color: var(--accent);
}

.solutions-card .hover-icon {
  display: block;
  margin: 0 auto 16px;
  object-fit: contain;
}

.solutions-card .hover-desc {
  color: var(--accent2);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 320px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.solutionss-footer {
  display: flex;
  justify-content: center;
  margin: 50px auto;
  position: relative;
  z-index: 10;
}

.btn-see-all {
  background: linear-gradient(145deg, #274B6E 0%, #1A3A52 60%, #142E44 100%);
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 34px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(39, 75, 110, 0.25),
    4px 6px 10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.35);
}

.btn-see-all::before {
  display: none;
}

.btn-see-all:hover {
  transform: translateY(-3px) translateX(-1px);
  color: #FFFFFF;
  box-shadow:
    0 8px 20px rgba(39, 75, 110, 0.3);
}

.btn-see-all:active {
  transform: translateY(2px) translateX(2px);
  box-shadow: 0 2px 8px rgba(39, 75, 110, 0.25);
}

.btn-see-all:hover::before {
  opacity: 0;
}

@media (max-width: 980px) {
  .solutionss-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .solutionss-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .solutionss-section {
    padding: 48px 18px;
  }

  .solutionss-grid {
    grid-template-columns: 1fr;
  }

  .solutions-card {
    min-height: 250px;
  }
}



.home-suite-section {
  background: var(--bg);
  border: none;
  padding: 70px 40px;
  margin-bottom: 70px;
}

.nav-services-horizontal {
  background: linear-gradient(160deg, #0d1b26 0%, #0a1720 50%, #111f2c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.nav-services-sticky {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(300px, 30vw) minmax(0, 1fr);
}

/* Left intro panel — dark metal matching the right */
.nav-services-intro {
  background:
    repeating-linear-gradient(180deg,
      transparent, transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 3px),
    linear-gradient(160deg, #1a2a38 0%, #142234 50%, #0f1d2e 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(40px, 5vw, 70px) clamp(32px, 5vw, 70px);
  position: relative;
  z-index: 2;
  box-shadow: inset -4px 0 12px rgba(0, 0, 0, 0.3);
}

/* Specular sheen on left panel */
.nav-services-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
  pointer-events: none;
}

.nav-services-intro h2 {
  color: #d6e4f0 !important;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 0 0 22px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.1), 0 -1px 2px rgba(0, 0, 0, 0.6);
}

/* Pastel theme overrides — now unified dark */
.theme-pastel .nav-services-horizontal {
  background: linear-gradient(160deg, #0d1b26 0%, #0a1720 50%, #111f2c 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.theme-pastel .nav-services-intro {
  background:
    repeating-linear-gradient(180deg,
      transparent, transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 3px),
    linear-gradient(160deg, #1a2a38 0%, #142234 50%, #0f1d2e 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  color: #c8dce8;
  justify-content: flex-start;
}

.theme-pastel .nav-services-intro h2 {
  color: #d6e4f0 !important;
}

.theme-pastel .nav-services-intro p,
.theme-pastel .home-suite-link {
  color: rgba(180, 210, 230, 0.65);
}

.theme-pastel .nav-service-panel {
  background:
    linear-gradient(180deg,
      rgba(2, 14, 28, 0.20) 0%,
      rgba(2, 14, 28, 0.30) 40%,
      rgba(2, 14, 28, 0.50) 100%),
    var(--card-bg) center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
}

.theme-pastel .nav-service-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 147, 10, 0.12);
  box-shadow: 0 28px 60px rgba(232, 147, 10, 0.08);
}

.theme-pastel .nav-service-panel h3,
.theme-pastel .nav-service-panel p {
  color: var(--accent2);
}

.theme-pastel .nav-service-panel span {
  color: var(--accent);
}

.theme-pastel .nav-service-meta small {
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.06);
  color: var(--accent);
}

.nav-services-intro p {
  color: rgba(180, 210, 230, 0.6);
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 440px;
}

.nav-services-rail {
  overflow: hidden;
  padding: 7vh 0;
}

.nav-services-track {
  display: flex;
  gap: 20px;
  height: 62%;
  min-width: max-content;
  padding: 0 32px;
  margin-top: 60px;
}

.nav-service-panel {
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.72) 36%,
      rgba(0, 0, 0, 0.78) 62%,
      rgba(0, 0, 0, 0.92) 100%),
    var(--card-bg) center / cover no-repeat;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.24);
  display: flex;
  flex: 0 0 clamp(320px, 35vw, 520px);
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(260px, 28vh, 420px);
  max-height: 920px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.nav-service-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65));
  pointer-events: none;
  z-index: 1;
}

.nav-service-panel>* {
  position: relative;
  z-index: 2;
}

.nav-service-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 147, 10, 0.4);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(232, 147, 10, 0.15);
}

.theme-pastel .nav-service-panel h3,
.theme-pastel .nav-service-panel p {
  color: #ffffff;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.theme-pastel .nav-service-panel span {
  color: #f8fafc;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.theme-pastel .nav-service-meta small {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
}

.nav-services-rail {
  display: grid;
  gap: 24px;
  padding: 30px 0;
}

.nav-services-row {
  overflow: hidden;
  position: relative;
}

.nav-services-row--left .nav-services-track,
.nav-services-row--right .nav-services-track {
  display: flex;
  gap: 24px;
  width: max-content;
  height: max-content;
  align-items: stretch;
  animation: services-marquee 46s linear infinite;
}

.nav-services-row--right .nav-services-track {
  animation-direction: reverse;
}

.nav-services-row--left .nav-services-track:hover,
.nav-services-row--right .nav-services-track:hover {
  animation-play-state: paused;
}

.nav-services-divider {
  display: flex;
  justify-content: center;
  align-items: center;

}

.nav-services-divider span {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 147, 10, 0.32), transparent);
  position: relative;
}

.nav-services-divider span::before,
.nav-services-divider span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: rgba(232, 147, 10, 0.2);
  border-radius: 999px;
  transform: translateY(-50%);
}

.nav-services-divider span::before {
  left: 0;
}

.nav-services-divider span::after {
  right: 0;
}

@keyframes services-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════════════════
   SVC-SECTION — Rebuilt Services Section (Homepage)
   Full-width header row + 3-col card grid below.
   No side-by-side split — no height mismatch possible.
   ══════════════════════════════════════════════════════ */

.svc-section {
  background: linear-gradient(160deg, #F8FAFD 0%, #F0F4F9 45%, #F8FAFD 75%, #F0F4F9 100%);
  padding: 5rem 5%;
  border-top: 1px solid rgba(39, 75, 110, 0.08);
  border-bottom: 1px solid rgba(39, 75, 110, 0.08);
  overflow: hidden;
  position: relative;
}

/* ── Header row — label+title left, desc+cta right ── */
.svc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto 3.5rem auto;
}

.svc-header-left {
  flex: 1 1 auto;
  max-width: 650px;
}

.svc-kicker {
  color: #274B6E;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.svc-title {
  color: #1A3A52;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.18;
  margin: 0;
}

.svc-header-right {
  flex: 0 0 auto;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 6px;
}

.svc-desc {
  color: #4A6B8A;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
}

/* CTA button — raised dark key */
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: 10px;
  background: linear-gradient(145deg, #274B6E 0%, #1A3A52 60%, #142E44 100%);
  border: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
  box-shadow: 0 4px 12px rgba(39, 75, 110, 0.25);
}

.svc-link:hover {
  transform: translateY(-3px) translateX(-1px);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(39, 75, 110, 0.3);
}

.svc-link:active {
  transform: translateY(2px) translateX(2px);
  box-shadow: 0 2px 8px rgba(39, 75, 110, 0.25);
}

.svc-link i {
  transition: transform 0.2s ease;
}

.svc-link:hover i {
  transform: translateX(4px);
}

/* Ambient tray glow — follows mouse across the whole bento grid */
.svc-tray-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 75, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: 0;
  top: 0;
  left: 0;
}

/* ── Card grid — bento dark recessed tray ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFFFFF 0%, #F8FAFD 60%, #FFFFFF 100%);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(39, 75, 110, 0.08);
  box-shadow: 0 10px 40px rgba(39, 75, 110, 0.06);
}

/* ── Bento slot assignments ── */

/* Card 1 — hero: spans 2 cols, taller */
.svc-card:nth-of-type(1) {
  grid-column: 1 / 3;
  grid-row: 1;
}

.svc-card:nth-of-type(1) .svc-card-inner {
  min-height: 320px;
}

.svc-card:nth-of-type(1) .svc-card-inner h3 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

/* Card 2 — tall right column, spans 2 rows */
.svc-card:nth-of-type(2) {
  grid-column: 3;
  grid-row: 1 / 3;
}

.svc-card:nth-of-type(2) .svc-card-inner {
  min-height: 100%;
  height: 100%;
}

/* Cards 3-6 — fill bottom rows */
.svc-card:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.svc-card:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.svc-card:nth-of-type(5) {
  grid-column: 1;
  grid-row: 3;
}

.svc-card:nth-of-type(3) .svc-card-inner,
.svc-card:nth-of-type(4) .svc-card-inner,
.svc-card:nth-of-type(5) .svc-card-inner {
  min-height: 250px;
}

.svc-card:nth-of-type(6) {
  grid-column: 2 / 4;
  grid-row: 3;
}

.svc-card:nth-of-type(6) .svc-card-inner {
  min-height: 220px;
}

.svc-card:nth-of-type(6) .svc-card-inner h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

/* ── Individual card — raised button ── */
.svc-card {
  perspective: 800px;
}

.svc-card-inner {
  position: relative;
  min-height: 240px;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(to bottom,
      rgba(5, 18, 35, 0.15) 0%,
      rgba(5, 18, 35, 0.05) 35%,
      rgba(5, 18, 35, 0.72) 65%,
      rgba(5, 18, 35, 0.92) 100%),
    var(--card-bg, linear-gradient(135deg, #F0F4F9, #F8FAFD)) center/cover no-repeat;
  border: 1px solid rgba(39, 75, 110, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.5vw, 28px);
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
  /* Dark raised bevel */
  box-shadow: 
    0 8px 16px rgba(39, 75, 110, 0.15),
    0 16px 32px rgba(39, 75, 110, 0.12),
    0 4px 8px rgba(39, 75, 110, 0.1);
  transition: transform 0.18s ease-out, box-shadow 0.22s ease;
}

/* Specular sheen — subtle top fade */
.svc-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 35%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
  border-radius: 14px 14px 0 0;
  pointer-events: none;
  z-index: 1;
}

/* Screw-hole corner detail */
.svc-card-inner::after {
  content: '';
  position: absolute;
  bottom: 9px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #A8C5E0, #6B9BC3);
  box-shadow: inset 1px 1px 3px rgba(39, 75, 110, 0.2), 0 0 0 1px rgba(39, 75, 110, 0.15);
  pointer-events: none;
  z-index: 2;
}

.svc-card-inner:hover {
  transform: translateY(-6px) translateX(-2px);
  box-shadow: 
    0 12px 24px rgba(39, 75, 110, 0.2),
    0 24px 48px rgba(39, 75, 110, 0.25),
    0 8px 16px rgba(39, 75, 110, 0.15);
}

.svc-card-inner:active {
  transform: translateY(2px) translateX(2px);
  box-shadow: 0 2px 8px rgba(39, 75, 110, 0.1);
  transition: transform 0.06s, box-shadow 0.06s;
}

/* Mouse-follow amber glow */
.svc-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(39, 74, 110, 0.726), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 0;
}

.svc-card:hover .svc-card-glow {
  opacity: 1;
}

/* Content group — slides up on hover to make room for tags */
.svc-card-content {
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.svc-card:hover .svc-card-content,
.svc-card-inner:hover .svc-card-content {
  transform: translateY(-38px);
}

/* Category label — frosted pill badge */
.svc-card-label {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.svc-card-inner h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 8px;
}

.svc-card-inner p {
  color: var(--bg-alt);
  font-size: 0.84rem;
  line-height: 1.6;
  margin: 0;
}

/* Recessed tech chip tags — absolutely positioned, floats over content on hover */
.svc-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  position: absolute;
  bottom: clamp(18px, 2.5vw, 28px);
  left: clamp(18px, 2.5vw, 28px);
  right: clamp(18px, 2.5vw, 28px);
  z-index: 3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.12s, transform 0.3s ease 0.12s;
}

.svc-card:hover .svc-card-tags,
.svc-card-inner:hover .svc-card-tags {
  opacity: 1;
  transform: translateY(0);
}

.svc-card-tags small {
  background: linear-gradient(180deg, #0e1e2c 0%, #0c1a26 100%);
  border-radius: 6px;
  color: rgba(180, 210, 230, 0.8);
  font-size: 0.68rem;
  padding: 4px 10px;
  box-shadow:
    inset 1px 1px 3px rgba(0, 0, 0, 0.65),
    inset -1px -1px 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Responsive — bento collapses to uniform grid */
@media (max-width: 1040px) {
  .svc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-card:nth-of-type(1),
  .svc-card:nth-of-type(2),
  .svc-card:nth-of-type(3),
  .svc-card:nth-of-type(4),
  .svc-card:nth-of-type(5),
  .svc-card:nth-of-type(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .svc-card:nth-of-type(1) .svc-card-inner,
  .svc-card:nth-of-type(2) .svc-card-inner,
  .svc-card:nth-of-type(6) .svc-card-inner {
    min-height: 240px;
    height: auto;
  }

  .svc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 2.2rem;
  }

  .svc-header-left {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .svc-header-right {
    flex: none;
    width: 100%;
    max-width: 100%;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .svc-section {
    padding: 2.5rem 1rem;
  }

  .svc-header {
    gap: 14px;
    margin-bottom: 1.8rem;
  }

  .svc-title {
    font-size: clamp(1.6rem, 6.5vw, 2.1rem);
  }

  .svc-desc {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .svc-grid {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 14px;
  }

  .svc-card-inner {
    min-height: 200px !important;
    height: auto !important;
  }
}



/* Nav Services Horizontal Responsive */
@media (max-width: 1024px) {
  .nav-services-sticky {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nav-services-intro {
    border-right: none;
    border-bottom: 1px solid rgba(27, 79, 114, 0.12);
    padding: 2.5rem 2rem;
  }

  .nav-services-rail {
    padding: 2rem 0;
  }

  .nav-services-track {
    gap: 16px;
  }

  .nav-service-panel {
    flex: 0 0 clamp(280px, 50vw, 400px);
    padding: clamp(20px, 3vw, 32px);
  }
}

@media (max-width: 768px) {
  .nav-services-intro {
    padding: 2rem 1.5rem;
  }

  .nav-services-intro h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .nav-services-track {
    gap: 12px;
    padding: 0 1.5rem;
  }

  .nav-service-panel {
    flex: 0 0 85vw;
    min-height: 240px;
  }

  .nav-services-divider span {
    width: 90%;
  }
}

.home-suite-testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 26px 0 16px;
  /* Break out of container to be full width */
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* Fade edges */
.home-suite-testimonials-wrapper::before,
.home-suite-testimonials-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.home-suite-testimonials-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-alt, #E8F1F8), transparent);
}

.home-suite-testimonials-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-alt, #E8F1F8), transparent);
}

.home-suite-testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: testimonials-marquee 32s linear infinite;
}

.home-suite-testimonials-track:hover {
  animation-play-state: paused;
}

.home-suite-work-card.testimonial-card {
  min-width: 320px;
  flex: 0 0 320px;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.home-suite-work-card.testimonial-card .home-suite-work-thumb {
  height: 140px;
  align-items: flex-start;
  padding-top: 22px;
  font-size: 1.75rem;
}

.home-suite-work-card.testimonial-card span {
  color: #E8930A;
}

.home-suite-work-card.testimonial-card h3 {
  margin: 20px 0 12px;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
}

.home-suite-work-card.testimonial-card p {
  color: rgba(27, 79, 114, 0.88);
}

@keyframes testimonials-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.home-suite-industries-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 160px;
}

.home-suite-industry:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.home-suite-industry:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.home-suite-industry:nth-child(4) {
  grid-column: span 2;
}

.home-suite-industry:nth-child(6) {
  grid-column: span 2;
}

.home-suite-industry:nth-child(8) {
  grid-column: span 2;
}

/* ══════════════════════════════════════════════════════════
   TECH STACK — SKEUOMORPHIC REDESIGN
   Panel: brushed dark-metal plate. Cards: raised physical buttons.
   ══════════════════════════════════════════════════════════ */

.tech-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 5%;

  /* Dark brushed-metal background plate */
  background:
    /* Horizontal grain lines */
    repeating-linear-gradient(180deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.018) 2px,
      rgba(255, 255, 255, 0.018) 3px),
    /* Subtle vertical grain */
    repeating-linear-gradient(90deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.008) 40px,
      rgba(255, 255, 255, 0.008) 41px),
    /* Base metal gradient */
    linear-gradient(170deg, #1a2a38 0%, #0d1b26 40%, #0a1720 70%, #111f2c 100%);

  /* Raised panel edge — top light, bottom shadow */
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.04),
    inset 0 -2px 8px rgba(0, 0, 0, 0.5),
    0 8px 32px rgba(0, 0, 0, 0.4);
}

.tech-section>* {
  position: relative;
  z-index: 1;
}

/* Recessed label groove at the very top */
.tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(255, 255, 255, 0.06) 100%);
  z-index: 0;
}

.tech-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1320px;
  margin: 0 auto 3rem auto;
}

.tech-kicker {
  color: #e8930a;
  font-family: var(--font-mono);
  font-size: 0.70rem;
  letter-spacing: 0.25em;
  margin-bottom: 6px;
  text-transform: uppercase;
  /* Stamped / debossed text feel */
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 -1px 0 rgba(0, 0, 0, 0.5);
}

.tech-title {
  color: #d6e4f0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  max-width: 720px;
  /* Engraved metal text */
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.18),
    0 -1px 2px rgba(0, 0, 0, 0.7);
}

.tech-desc {
  color: rgba(180, 210, 230, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0;
}

/* ── Grid panel — recessed tray ── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
  margin: 0 auto;

  /* Recessed tray holding the buttons */
  background:
    repeating-linear-gradient(180deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.08) 3px,
      rgba(0, 0, 0, 0.08) 4px),
    linear-gradient(160deg, #0b1820 0%, #0e1e2b 60%, #091520 100%);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 4px 14px rgba(0, 0, 0, 0.7),
    inset 0 -2px 6px rgba(255, 255, 255, 0.04),
    inset 2px 0 6px rgba(0, 0, 0, 0.3),
    inset -2px 0 6px rgba(0, 0, 0, 0.3),
    0 2px 0 rgba(255, 255, 255, 0.06);
}

/* ── Skeuomorphic raised button card ── */
.tech-card {
  background: linear-gradient(155deg,
      #1e3548 0%,
      #162a3d 35%,
      #112035 65%,
      #1a3046 100%) !important;
  border: none;
  border-radius: 14px;
  cursor: default;
  padding: 2rem 1rem 1.6rem;
  text-align: center;
  transition:
    box-shadow 0.18s ease,
    transform 0.18s cubic-bezier(0.23, 1, 0.32, 1),
    background 0.18s ease;

  /* Raised button effect: thick bottom/right shadow + bright top-left edge */
  box-shadow:
    /* Top-left bevel (light hits from top-left) */
    -1px -1px 0 rgba(255, 255, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 1px 0 0 rgba(255, 255, 255, 0.07),
    /* Bottom-right bevel (shadow) */
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    inset -1px 0 0 rgba(0, 0, 0, 0.3),
    /* Cast shadow — makes it look physically lifted */
    4px 5px 0 rgba(0, 0, 0, 0.45),
    6px 8px 14px rgba(0, 0, 0, 0.55),
    /* Ambient glow */
    0 0 0 1px rgba(0, 0, 0, 0.4);

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* Specular highlight stripe across the top */
.tech-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 38%;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(255, 255, 255, 0.01) 70%,
      transparent 100%);
  border-radius: 14px 14px 0 0;
  pointer-events: none;
  z-index: 3;
}

/* Bottom edge screw-hole detail */
.tech-card::after {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a4560, #0a1520);
  box-shadow:
    inset 1px 1px 2px rgba(0, 0, 0, 0.8),
    inset -1px -1px 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 3;
}

/* Hover — subtle lift */
.tech-card:hover {
  transform: translateY(-3px) translateX(-1px);
  background: linear-gradient(155deg,
      #234059 0%,
      #1a3248 35%,
      #15273f 65%,
      #1f3854 100%) !important;
  box-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    inset -1px 0 0 rgba(0, 0, 0, 0.3),
    6px 8px 0 rgba(0, 0, 0, 0.48),
    8px 12px 18px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 0 18px rgba(232, 147, 10, 0.12);
}

/* Active/pressed — card sinks into the tray */
.tech-card:active {
  transform: translateY(2px) translateX(2px);
  background: linear-gradient(155deg,
      #0f1e2c 0%,
      #142030 35%,
      #111d29 65%,
      #132028 100%) !important;
  box-shadow:
    /* Inverted — now the shadow is top-left, highlight bottom-right */
    inset 2px 2px 5px rgba(0, 0, 0, 0.7),
    inset -1px -1px 3px rgba(255, 255, 255, 0.05),
    1px 2px 4px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.06s ease, transform 0.06s ease;
}

.tech-card:active::before {
  opacity: 0.3;
}

.tech-card .card-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Logo badge — recessed circular well */
.tech-card .card-default i {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: radial-gradient(circle at 40% 35%, #1a2e42, #0c1a26);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  box-shadow:
    inset 2px 2px 6px rgba(0, 0, 0, 0.7),
    inset -1px -1px 3px rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06);
  font-style: normal;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tech-card:hover .card-default i {
  transform: scale(1.07);
  box-shadow:
    inset 2px 2px 6px rgba(0, 0, 0, 0.65),
    inset -1px -1px 3px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 0 10px rgba(232, 147, 10, 0.15);
}

.tech-card:active .card-default i {
  transform: scale(0.96);
  box-shadow:
    inset 3px 3px 8px rgba(0, 0, 0, 0.8),
    inset -1px -1px 2px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.5);
}

.tech-card .card-default i img {
  width: 116px !important;
  height: 116px !important;
  max-width: 116px;
  max-height: 116px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}

/* Label plate — engraved nameplate below the logo well */
.tech-card h3 {
  color: rgba(190, 220, 240, 0.82);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  padding: 5px 14px 4px;
  background: linear-gradient(180deg, #0c1b28 0%, #0f2030 100%);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.6),
    inset 0 -1px 1px rgba(255, 255, 255, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.06);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.1),
    0 -1px 0 rgba(0, 0, 0, 0.6);
}

/* Staggered fade-in */
.tech-card:nth-child(1) {
  animation: techCardIn 0.5s ease-out 0.05s both;
}

.tech-card:nth-child(2) {
  animation: techCardIn 0.5s ease-out 0.10s both;
}

.tech-card:nth-child(3) {
  animation: techCardIn 0.5s ease-out 0.15s both;
}

.tech-card:nth-child(4) {
  animation: techCardIn 0.5s ease-out 0.20s both;
}

.tech-card:nth-child(5) {
  animation: techCardIn 0.5s ease-out 0.25s both;
}

.tech-card:nth-child(6) {
  animation: techCardIn 0.5s ease-out 0.30s both;
}

.tech-card:nth-child(7) {
  animation: techCardIn 0.5s ease-out 0.35s both;
}

.tech-card:nth-child(8) {
  animation: techCardIn 0.5s ease-out 0.40s both;
}

@keyframes techCardIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 1100px) {
  .tech-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .tech-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .tech-section {
    padding: 3rem 1.2rem;
  }

  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
  }

  .tech-card .card-default i {
    width: 96px;
    height: 96px;
  }

  .tech-card .card-default i img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px;
    max-height: 60px;
  }
}

.nav-service-panel span {
  color: #E8930A;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nav-service-panel h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
  margin: auto 0 24px;
  max-width: 420px;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.nav-service-panel p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.nav-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.nav-service-meta small {
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.12);
  border-radius: 999px;
  color: #E8930A;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 11px;
}

.home-suite-soft {
  background: #f4f9fc;
}

.home-suite-header {
  align-items: flex-end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin: 0 auto 36px;
  max-width: 1320px;
}

.home-suite-label {
  color: #e8930a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(232, 147, 10, 0.35), 0 1px 0 rgba(255, 255, 255, 0.1), 0 -1px 0 rgba(0, 0, 0, 0.5);
}


.home-suite-title {
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 10px;
}

.home-suite-sub {
  color: #687b8c;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

/* See all Services button — raised dark key */
.nav-services-intro .home-suite-link {
  align-items: center;
  border: none;
  border-radius: 10px;
  color: rgba(180, 210, 230, 0.85);
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 9px;
  padding: 12px 20px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
  background: linear-gradient(145deg, #1e3448 0%, #162a3d 60%, #112035 100%);
  box-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    3px 4px 0 rgba(0, 0, 0, 0.42),
    4px 6px 10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  width: fit-content;
}

.nav-services-intro .home-suite-link:hover {
  transform: translateY(-3px) translateX(-1px);
  color: #e8930a;
  box-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    5px 6px 0 rgba(0, 0, 0, 0.45),
    6px 8px 14px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 0 14px rgba(232, 147, 10, 0.18);
}

.nav-services-intro .home-suite-link:active {
  transform: translateY(2px) translateX(2px);
  box-shadow:
    inset 2px 2px 5px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.4);
}

.nav-services-intro .home-suite-link i {
  transition: transform 0.2s ease;
}

.nav-services-intro .home-suite-link:hover i {
  transform: translateX(4px);
}

.home-suite-services-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.home-suite-service-card {
  background: #f9fcff;
  border: 1px solid rgba(27, 79, 114, 0.14);
  border-radius: 14px;
  cursor: pointer;
  min-height: 250px;
  overflow: hidden;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-suite-service-card:hover {
  border-color: rgba(232, 147, 10, 0.55);
  box-shadow: 0 20px 46px rgba(27, 79, 114, 0.14);
  transform: translateY(-4px);
}

.home-suite-service-default,
.home-suite-service-hover {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-suite-service-default {
  height: 100%;
  position: relative;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.home-suite-service-card:hover .home-suite-service-default {
  opacity: 0;
  transform: translateY(12px);
}

.home-suite-service-hover {
  background: linear-gradient(135deg, #E8F1F8 0%, #ffffff 100%);
  inset: 0;
  opacity: 0;
  overflow: hidden;
  padding: 24px;
  position: absolute;
  transition: opacity 0.3s ease;
}

.home-suite-service-card:hover .home-suite-service-hover {
  opacity: 1;
}

.home-suite-icon {
  align-items: center;
  border-radius: 14px;
  display: flex;
  font-size: 1.55rem;
  height: 66px;
  justify-content: center;
  margin-bottom: 16px;
  width: 66px;
}

.home-suite-blue {
  background: #e5f3fa;
  color: #3e7d9a;
}

.home-suite-purple {
  background: #eee9fb;
  color: #6953b8;
}

.home-suite-green {
  background: #e5f5ed;
  color: #318a63;
}

.home-suite-orange {
  background: #fff0e7;
  color: #c46836;
}

.home-suite-service-card h3,
.home-suite-work-card h3,
.home-suite-insight h3 {
  color: #0D2B3E;
  font-size: 1.02rem;
  line-height: 1.3;
  margin: 0 0 8px;
}

.home-suite-service-card p,
.home-suite-work-card p,
.home-suite-insight p {
  color: #687b8c;
  font-size: 0.86rem;
  line-height: 1.6;
  margin: 0;
}

.home-suite-bg-title {
  color: rgba(27, 79, 114, 0.08);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 700;
  inset: 0;
  line-height: 0.95;
  padding: 20px;
  position: absolute;
  text-align: center;
  z-index: 0;
}

.home-suite-service-hover .home-suite-icon,
.home-suite-service-hover p {
  position: relative;
  z-index: 2;
}

.home-suite-industries-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.home-suite-industry {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.12);
  border-radius: 14px;
  color: #0D2B3E;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  gap: 12px;
  min-height: 132px;
  justify-content: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.home-suite-industry:hover {

  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.09);
}

.home-suite-industry i {

  font-size: 1.65rem;
}

.home-suite-industry-scroll-section {
  background: #0D2B3E;
  color: #ffffff;
  overflow: hidden;
  padding: 74px 0 78px;
  position: relative;
  z-index: 1;
}

.home-suite-industry-scroll-head {
  align-items: flex-start;
  padding: 0 40px;
}

.home-suite-industry-scroll-section .home-suite-label {
  color: #FAC26A;
}

.home-suite-industry-scroll-section .home-suite-title {
  color: #ffffff;
  max-width: 820px;
}

.home-suite-industry-scroll-section .home-suite-sub {
  color: rgba(255, 255, 255, 0.68);
}

.home-suite-industry-rail {
  margin-top: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 40px 18px;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
  scrollbar-width: thin;
}

.home-suite-industry-track {
  display: flex;
  gap: 18px;
  min-width: max-content;
}

.home-suite-industry-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at top right, rgba(168, 212, 230, 0.2), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  display: flex;
  flex: 0 0 clamp(310px, 34vw, 470px);
  flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.home-suite-industry-panel::after {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  content: "";
  height: 220px;
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
}

.home-suite-industry-panel span {
  color: #FAC26A;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-suite-industry-panel h3 {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 34px 0 18px;
  max-width: 360px;
}

.home-suite-industry-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
  max-width: 370px;
}

.home-suite-panel-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.home-suite-panel-meta small {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  padding: 7px 10px;
}

.home-suite-scroll,
.home-suite-tech-scroll {
  display: flex;
  gap: 16px;
  margin: 0 auto;
  max-width: 1320px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-color: #c6d7e1 transparent;
  scrollbar-width: thin;
}

.home-suite-work-card {
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.12);
  border-radius: 16px;
  flex: 0 0 292px;
  overflow: hidden;
}

.home-suite-work-thumb,
.home-suite-insight-thumb {
  align-items: center;
  display: flex;
  font-size: 2rem;
  height: 150px;
  justify-content: center;
}

.home-suite-work-card>div:last-child,
.home-suite-insight>div:last-child {
  padding: 18px;
}

.home-suite-work-card span,
.home-suite-insight span {
  color: #E8930A;
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.home-suite-insights-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.home-suite-insight {
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.home-suite-about {
  align-items: center;
  background: #f4f9fc;
  border-bottom: 1px solid rgba(27, 79, 114, 0.1);
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  padding: 74px 40px;
}

.home-suite-about-text {
  justify-self: end;
  max-width: 620px;
}

.home-suite-about h2 {
  color: #0D2B3E;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 16px;
}

.home-suite-about p {
  color: #687b8c;
  line-height: 1.75;
  margin: 0 0 20px;
}

.home-suite-about-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.home-suite-about-stats div {
  background: #ffffff;
  border: 1px solid rgba(27, 79, 114, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.home-suite-about-stats strong {
  color: #E8930A;
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.home-suite-about-stats span {
  color: #687b8c;
  display: block;
  font-size: 0.84rem;
  margin-top: 6px;
}

.home-suite-about-visual {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  max-width: 460px;
}

.home-suite-about-tile {
  align-items: center;
  border-radius: 18px;
  display: flex;
  font-size: 2rem;
  justify-content: center;
  min-height: 170px;
}

.home-suite-about-tile:first-child {
  grid-row: span 2;
  min-height: 356px;
}

.home-suite-cta {
  background: #1B4F72;
  color: #ffffff;
  padding: 68px 40px;
  text-align: center;
}

.home-suite-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  margin: 0 0 12px;
}

.home-suite-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto 26px;
  max-width: 560px;
}

.home-suite-cta>div {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.home-suite-cta .btn-see-all {
  background: #ffffff;
  border-color: #ffffff;
  color: #1B4F72;
}

.home-suite-cta-link {
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.home-suite-cta-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.52);
}

@media (max-width: 1040px) {

  .home-suite-services-grid,
  .home-suite-insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-suite-industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-suite-about {
    grid-template-columns: 1fr;
  }

  .home-suite-about-text {
    justify-self: start;
  }
}

@media (max-width: 720px) {

  .home-suite-services-grid,
  .home-suite-industries-grid,
  .home-suite-insights-grid,
  .home-suite-about-stats {
    grid-template-columns: 1fr;
  }

  .home-suite-header,
  .home-suite-cta>div {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-suite-section,
  .home-suite-about,
  .home-suite-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-suite-about-visual {
    grid-template-columns: 1fr;
  }

  .home-suite-about-tile:first-child {
    min-height: 180px;
  }

  .nav-services-sticky {
    display: block;
    min-height: auto;
  }

  .nav-services-intro {
    border-right: 0;
    padding: 52px 18px 28px;
  }

  .nav-services-rail {
    overflow-x: auto;
    padding: 0 0 40px;
  }

  .nav-services-track {
    padding: 0 18px;
  }

  .nav-service-panel {
    flex-basis: 84vw;
    min-height: 420px;
  }

  .home-suite-industry-scroll-head,
  .home-suite-industry-rail {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-suite-industry-panel {
    flex-basis: 86vw;
    min-height: 320px;
  }
}

.blog-section {
  display: block;
  width: 100%;
  min-height: 560px;
  overflow: hidden;
  background: var(--bg);
  font-family: var(--font-display);
  position: relative;
  padding: 2.5rem 0 1.5rem;



}

.blog-section-heading {
  position: relative;
  max-width: 1260px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;

}

.blog-heading-label {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-dark);

  text-align: center;
}

.blog-section-heading h2 {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 3vw, 3rem);
  line-height: 1.05;

  color: var(--primary-dark);
  text-align: center;
}

.blog-heading-subline {
  margin: 0;
  color: var(--accent2);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.blog-cards-row {
  display: flex;
  width: 100%;
  min-height: 440px;
}

.blog-section-footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.blog-section-footer .btn-see-all {
  background: linear-gradient(145deg, #274B6E 0%, #1A3A52 60%, #142E44 100%);
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 34px;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, color 0.16s ease;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 4px 12px rgba(39, 75, 110, 0.25),
    4px 6px 10px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.35);
}

.blog-section-footer .btn-see-all::before {
  display: none;
}

.blog-section-footer .btn-see-all:hover {
  transform: translateY(-3px) translateX(-1px);
  color: #FFFFFF;
  box-shadow:
    0 8px 20px rgba(39, 75, 110, 0.3);
}

.blog-section-footer .btn-see-all:active {
  transform: translateY(2px) translateX(2px);
  box-shadow: 0 2px 8px rgba(39, 75, 110, 0.25);
}

.blog-section::before {
  display: none;
}

.card {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.card:last-child {
  border-right: none;
}

.card:hover {
  flex: 2.5;
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s ease;
  filter: brightness(0.7) saturate(0.2);
}

.card:hover .card-bg {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(0.25);
}

.color-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
  transition: opacity 0.4s ease;
  opacity: 0.85;
}

.card:hover .color-overlay {
  opacity: 0.7;
}

.dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.25) 100%);
}

.scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.07) 3px,
      rgba(0, 0, 0, 0.07) 4px);
  pointer-events: none;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  transform: translateY(60px);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-content {
  transform: translateY(0);
}

.card-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 6px;
}

.card-name {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.card-bio {
  font-family: 'Source Serif 4', serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s 0.1s ease, transform 0.35s 0.1s ease;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card:hover .card-bio {
  opacity: 1;
  transform: translateY(0);
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  opacity: 0;
  transition: opacity 0.3s 0.15s ease;
}

.card:hover .card-cta {
  opacity: 1;
}

.card-number {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}

.card-genre-pill {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sr-only .h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  color: rgba(0, 0, 0, 0.75);
}


.card:hover .card-genre-pill {
  opacity: 1;
}

.card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s 0.05s ease, transform 0.3s 0.05s ease;
}

.card:hover .card-avatar {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 1024px) {
  .blog-cards-row {
    flex-direction: column;
    min-height: auto;
  }

  .card {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .blog-section {
    margin: 4rem 0;
  }

  .card {
    min-height: 320px;
  }

  .card-name {
    font-size: 22px;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   UNIVERSAL RESPONSIVE ENGINE — ALL CLIENT PAGES & DEVICES
   Supports: 4K/2K PC, 1080p Laptops, Tablets, & All Mobile Viewports
   ═══════════════════════════════════════════════════════════════════ */

/* Global safety against horizontal overflow across all client views */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

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

img, video, canvas, svg, iframe {
  max-width: 100%;
}

/* ── LARGE LAPTOPS & DESKTOPS (1025px - 1440px) ── */
@media (max-width: 1280px) {
  .container {
    max-width: 1200px;
    padding: 0 32px;
  }

  #navbar {
    padding: 0 1.75rem;
  }

  .nav-links {
    gap: 2px;
  }

  .nav-link {
    padding: 0 12px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 10px 20px;
    font-size: 12px;
    margin-left: 10px;
  }

  .mega-inner {
    padding: 28px 36px;
    gap: 24px;
  }
}

/* ── TABLETS LANDSCAPE & SMALL LAPTOPS (992px - 1024px) ── */
@media (max-width: 1024px) {
  :root {
    --navbar-height: 88px;
  }

  #navbar {
    height: var(--navbar-height);
    padding: 0 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .nav-burger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(27, 79, 114, 0.05);
    border: 1px solid rgba(27, 79, 114, 0.12);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .nav-burger:hover {
    background: rgba(232, 147, 10, 0.1);
    border-color: var(--accent);
  }

  .nav-burger.open .burger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-burger.open .burger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-burger.open .burger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer-inner {
    padding: 48px 32px 30px;
  }

  .footer-cols {
    flex-wrap: wrap;
    gap: 28px 20px;
  }

  .col-left, .col-right, .col-extra-left, .col-extra-right, .col-far-right {
    min-width: calc(33.333% - 20px);
    text-align: left !important;
  }

  .col-right .divider, .col-extra-right .divider, .col-far-right .divider {
    margin: 4px 0 8px 0 !important;
  }
}

/* ── TABLETS PORTRAIT & LARGE PHONES (768px - 991px) ── */
@media (max-width: 991px) {
  :root {
    --navbar-height: 78px;
  }

  #navbar {
    height: var(--navbar-height);
    padding: 0 1.25rem;
  }

  .container {
    padding: 0 24px;
  }

  .Hero {
    min-height: auto;
    padding: calc(var(--navbar-height) + 2rem) 1.5rem 3.5rem;
  }

  .Hero-content {
    max-width: 100%;
    padding-right: 0;
  }

  .Hero-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none !important;
    animation: none !important;
    width: 100%;
    max-width: 480px;
    margin: 2rem auto 0;
    display: block;
  }

  .bento-grid,
  .svc-grid,
  .solutionss-grid,
  .gallery-grid,
  .impact-grid,
  .ind-bento-grid,
  .cr-bento,
  .cr-t-grid,
  .why-vr-grid,
  .innovation-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  .solutionss-header,
  .svc-header,
  .section-header {
    margin-bottom: 2.5rem;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
    display: grid !important;
    gap: 24px;
  }

  .col-left, .col-right, .col-extra-left, .col-extra-right, .col-far-right {
    min-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
  }
}

/* ── MOBILE SCREENS (481px - 767px) ── */
@media (max-width: 767px) {
  :root {
    --navbar-height: 92px;
  }

  #navbar {
    height: var(--navbar-height);
    padding: 0 1rem;
  }

  .nav-logo img {
    height: 68px;
    width: auto;
    max-width: 180px;
  }

  .container {
    padding: 0 16px;
  }

  /* Typography fluid downscaling */
  h1, .hero-heading, .Hero-heading, .section-heading, .solutionss-title, .section-title {
    font-size: clamp(1.85rem, 8vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.01em !important;
    word-break: break-word;
  }

  h2 {
    font-size: clamp(1.5rem, 6.5vw, 2.1rem) !important;
  }

  h3 {
    font-size: clamp(1.2rem, 5vw, 1.5rem) !important;
  }

  p, .section-sub, .Hero-sub, .solutionss-desc {
    font-size: 0.92rem !important;
    line-height: 1.65 !important;
  }

  /* Single column grids for mobile */
  .bento-grid,
  .svc-grid,
  .solutionss-grid,
  .gallery-grid,
  .impact-grid,
  .ind-bento-grid,
  .cr-bento,
  .cr-t-grid,
  .why-vr-grid,
  .innovation-grid,
  .mission-grid,
  .contact-grid,
  .c2-grid,
  .about-new-cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .cr-bento-card.featured,
  .nav-services-grid .service-tilt-card:first-child {
    grid-column: 1 / -1 !important;
  }

  /* Hero stats */
  .Hero-stats {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.25rem 2rem !important;
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
  }

  .Hero-stat-divider {
    display: none !important;
  }

  .stat {
    min-width: 100px;
    flex: 1 1 calc(50% - 1.5rem);
  }

  /* CTAs & Button stacks */
  .Hero-cta-row,
  .cta-btns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }

  .Hero-cta-row .btn-primary,
  .Hero-cta-row .btn-ghost,
  .Hero-cta-row .btn-ghost-light,
  .btn-see-all,
  .btn-primary,
  .btn-ghost {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
  }

  /* Form and controls full width on mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="password"],
  select,
  textarea {
    font-size: 16px !important; /* Prevents iOS auto-zoom */
    width: 100% !important;
    max-width: 100% !important;
  }

  .c2-form-card,
  .contact-form,
  .apply-modal {
    padding: 20px 16px !important;
    border-radius: 14px !important;
  }

  .filter-bar,
  .portfolio-filter,
  .tags-filter {
    overflow-x: auto !important;
    white-space: nowrap !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch !important;
    display: flex !important;
    gap: 8px !important;
  }

  /* Mobile menu full screen touch overlay */
  .mobile-menu {
    display: block !important;
    position: fixed !important;
    inset: 0 !important;
    background: rgba(9, 23, 38, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    z-index: 99999 !important;
    padding: calc(var(--navbar-height) + 1.5rem) 1.5rem 3rem !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-20px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s !important;
  }

  .mobile-menu.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .mobile-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
  }

  .mobile-menu ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mobile-menu .mm-link {
    font-family: var(--font-display) !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 12px 14px !important;
    border-radius: 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s !important;
  }

  .mobile-menu .mm-link:hover,
  .mobile-menu .mm-link:active {
    color: var(--accent) !important;
    background: rgba(232, 147, 10, 0.08) !important;
  }

  .mobile-menu .mm-has-sub {
    border-radius: 8px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    overflow: hidden !important;
    transition: background 0.25s ease !important;
  }

  .mobile-menu .mm-has-sub.open {
    background: rgba(255, 255, 255, 0.03) !important;
  }

  .mobile-menu .mm-sub-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .mobile-menu .mm-has-sub .mm-link {
    border-bottom: none !important;
    flex: 1 !important;
  }

  .mobile-menu .mm-toggle-btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer !important;
    padding: 12px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .mobile-menu .mm-toggle-btn svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-menu .mm-has-sub.open .mm-toggle-btn svg {
    transform: rotate(180deg) !important;
  }

  .mobile-menu .mm-has-sub.open .mm-link,
  .mobile-menu .mm-has-sub.open .mm-toggle-btn {
    color: var(--accent) !important;
  }

  .mobile-menu .mm-sub-menu {
    list-style: none !important;
    margin: 0 !important;
    padding: 2px 0 10px 18px !important;
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: rgba(0, 0, 0, 0.15) !important;
    border-radius: 0 0 8px 8px !important;
  }

  .mobile-menu .mm-has-sub.open .mm-sub-menu {
    display: flex !important;
  }

  .mobile-menu .mm-sub-link {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font-ui) !important;
    font-size: 0.98rem !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease !important;
  }

  .mobile-menu .mm-sub-link:hover,
  .mobile-menu .mm-sub-link:active {
    color: var(--accent) !important;
    background: rgba(232, 147, 10, 0.1) !important;
    transform: translateX(4px) !important;
  }

  .mobile-menu .mm-sub-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: var(--accent) !important;
    flex-shrink: 0 !important;
    opacity: 0.85 !important;
  }

  /* Footer on small mobile */
  .footer-inner {
    padding: 40px 16px 24px !important;
  }

  .footer-cols {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .brand-name {
    font-size: 28px !important;
  }
}

/* ── ULTRA-SMALL MOBILE (320px - 480px) ── */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .Hero {
    padding: calc(var(--navbar-height) + 1.25rem) 12px 2.5rem;
  }

  h1, .hero-heading, .Hero-heading, .section-heading, .solutionss-title, .section-title {
    font-size: clamp(1.65rem, 8.5vw, 2.2rem) !important;
  }

  .stat {
    flex: 1 1 100%;
  }

  .stat-num {
    font-size: 2rem !important;
  }

  .ticker-track {
    font-size: 0.72rem !important;
    gap: 1.5rem !important;
  }

  .service-tilt-inner,
  .solutions-card,
  .card {
    min-height: 200px !important;
    padding: 18px 14px !important;
  }

  .pf-details {
    left: 12px !important;
    right: 12px !important;
    padding: 16px !important;
  }
}