﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@700;800&display=swap");

:root {
  --navy: #061638;
  --ink: #081633;
  --muted: #52617d;
  --line: #dfe7f3;
  --soft: #f5f9ff;
  --blue: #0b49d6;
  --cyan: #19bfff;
  --white: #ffffff;
  --panel: #f7faff;
  --heading-font: "Manrope", "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  --heading-gradient: linear-gradient(100deg, #061638 0%, #0b49d6 54%, #08aeea 100%);
  --heading-accent: linear-gradient(90deg, #0b49d6, #19bfff);
  --shadow: 0 14px 36px rgba(7, 22, 59, 0.08);
  --blue-glow: 0 18px 45px rgba(11, 73, 214, 0.14);
  --soft-glow: 0 0 0 1px rgba(25, 191, 255, 0.1), 0 18px 44px rgba(8, 22, 51, 0.08);
}

/* Modern UX enhancement layer */
@media (min-width: 821px) {
  .header {
    padding: 14px 0 10px;
    transition:
      padding 0.22s ease,
      background-color 0.22s ease,
      box-shadow 0.22s ease;
  }

  .header.is-scrolled .nav-wrap {
    min-height: 62px;
    border-color: rgba(213, 225, 242, 0.78);
    background: #fff;
    box-shadow:
      0 20px 54px rgba(8, 22, 51, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }
}

.nav-wrap {
  transition:
    min-height 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.primary-nav {
  gap: clamp(24px, 2.4vw, 38px);
}

.nav-link {
  position: relative;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-current {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-link:hover::before,
.nav-link.is-current::before {
  opacity: 1;
  transform: scaleX(1);
}

.mega-menu {
  transform: translate(-50%, 14px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}


.solution-card,
.why-card,
.core-service-grid article,
.service-page-card,
.career-card,
.career-feature {
  min-height: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(11, 73, 214, 0.22), rgba(25, 191, 255, 0.1)) border-box;
  box-shadow:
    0 12px 28px rgba(8, 22, 51, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.solution-card:hover,
.why-card:hover,
.core-service-grid article:hover,
.service-page-card:hover,
.career-card:hover,
.career-feature:hover {
  transform: translateY(-8px);
  box-shadow:
    0 26px 54px rgba(8, 22, 51, 0.14),
    0 10px 26px rgba(11, 73, 214, 0.16);
}

.solution-card .symbol,
.core-service-grid i,
.service-page-card i,
.why-card i,
.career-card i,
.career-feature i {
  filter: drop-shadow(0 10px 18px rgba(11, 73, 214, 0.22));
  transition:
    transform 0.24s ease,
    filter 0.24s ease;
}

.solution-card:hover .symbol,
.core-service-grid article:hover i,
.service-page-card:hover i,
.why-card:hover i,
.career-card:hover i,
.career-feature:hover i {
  transform: translateY(-2px) scale(1.08);
  filter: drop-shadow(0 14px 26px rgba(11, 73, 214, 0.3));
}

.solution-card .symbol,
.core-service-grid i,
.service-page-card i {
  font-size: 32px;
}

.solution-card p,
.why-card p,
.core-service-grid p,
.career-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.core-service-grid p {
  -webkit-line-clamp: 2;
}

.solution-card h3,
.why-card h3,
.core-service-grid h3,
.service-page-card h3 {
  letter-spacing: 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s ease var(--reveal-delay, 0ms),
    transform 0.55s ease var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .nav-link,
  .solution-card,
  .why-card,
  .core-service-grid article,
  .service-page-card,
  .career-card,
  .career-feature {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(25, 191, 255, 0.08), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(11, 73, 214, 0.08), transparent 26%),
    #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.shell {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
}

.topbar {
  color: #fff;
  background: var(--navy);
  font-size: 13px;
}

.topbar-inner,
.nav-wrap,
.hero,
.contact-hero-inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-inner {
  min-height: 42px;
}

.topbar-group {
  display: flex;
  align-items: center;
  gap: 28px;
}

.topbar-group > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.topbar-group > * + *::before {
  content: "";
  position: absolute;
  left: -14px;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.22);
}

.topbar a:hover {
  color: #fff;
}

.topbar-phone {
  gap: 8px;
}

.topbar-phone i,
.topbar-hours i {
  font-size: 14px;
}

.topbar-hours {
  gap: 7px;
}

.topbar-hours strong,
.topbar-hours em {
  font-size: inherit;
  font-style: normal;
  line-height: 1;
}

.topbar-hours em {
  color: rgba(255, 255, 255, 0.72);
}

.topbar-hours.is-closed .topbar-hours-time {
  color: #ff5252;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

body[data-current="home"] .header {
  background: transparent;
  border-bottom: 0;
  margin-bottom: 0;
}

body[data-current="home"] .header.is-scrolled {
  background: transparent;
  border-bottom: 0;
}

@media (min-width: 821px) {
  .header {
    padding: 12px 0 8px;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  body[data-current="home"] .header {
    background: transparent;
  }

  body[data-current="home"] .nav-wrap {
    border-color: rgba(223, 231, 243, 0.92);
    background: #fff;
    box-shadow:
      0 18px 42px rgba(8, 22, 51, 0.11),
      0 1px 0 rgba(255, 255, 255, 0.78) inset;
  }

  body[data-current="home"] .header.is-scrolled .nav-wrap {
    border-color: rgba(213, 225, 242, 0.78);
    background: #fff;
    box-shadow:
      0 20px 54px rgba(8, 22, 51, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: none;
  }

  .nav-wrap {
    border: 1px solid rgba(223, 231, 243, 0.92);
    border-radius: 18px;
    padding: 0 18px 0 24px;
    background: #fff;
    box-shadow:
      0 18px 42px rgba(8, 22, 51, 0.11),
      0 1px 0 rgba(255, 255, 255, 0.78) inset;
  }
}

.nav-wrap {
  min-height: 76px;
  gap: 24px;
}

.nav-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
  padding: 0;
  text-decoration: none;
}

.nav-brand:hover {
  transform: translateY(-1px);
}

.nav-brand img {
  display: block;
  width: clamp(150px, 16vw, 190px);
  height: auto;
}

@media (min-width: 821px) {
  .nav-wrap {
    min-height: 68px;
  }
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  padding: 28px 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.nav-link.is-active,
.nav-link.is-current {
  color: var(--blue);
}

.has-menu > .nav-link {
  gap: 7px;
}

.has-menu > .nav-link::after {
  content: "\f107";
  color: currentColor;
  font-family: "Font Awesome 6 Free";
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  transition: transform 0.2s ease;
}

.has-menu:hover > .nav-link::after,
.has-menu:focus-within > .nav-link::after {
  transform: rotate(180deg);
}

.site-search {
  position: relative;
  flex: 0 0 auto;
  width: 40px;
  transition: width 0.2s ease;
}

.site-search.is-expanded {
  width: 224px;
}

.site-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(8, 22, 51, 0.12);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--blue);
  cursor: pointer;
  font-size: 14px;
}

.site-search-control {
  position: absolute;
  top: 50%;
  left: 0;
  right: auto;
  z-index: 45;
  display: none;
  align-items: center;
  gap: 8px;
  width: 224px;
  transform: translateY(-50%);
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(8, 22, 51, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  box-shadow: 0 18px 42px rgba(8, 22, 51, 0.16);
}

.site-search.is-expanded .site-search-control {
  display: flex;
}

.site-search.is-expanded .site-search-toggle {
  display: none;
}

.site-search-control i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
}

.site-search-control input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
}

.site-search-control input::placeholder {
  color: rgba(81, 95, 120, 0.78);
}

.service-search-results {
  position: absolute;
  top: calc(50% + 28px);
  left: 0;
  right: auto;
  z-index: 45;
  display: none;
  width: 224px;
  max-height: 300px;
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 22, 51, 0.16);
}

.site-search.is-open .service-search-results {
  display: block;
}

.service-search-option {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.service-search-option:hover,
.service-search-option.is-active {
  background: var(--soft);
  color: var(--blue);
  transform: none;
}

.service-search-empty {
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
}

.service-page-card,
.core-service-grid article,
.service-directory-cta {
  scroll-margin-top: 110px;
}

.service-page-card.is-search-highlight,
.core-service-grid article.is-search-highlight,
.service-directory-cta.is-search-highlight {
  border-color: rgba(30, 111, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(30, 111, 255, 0.12),
    0 18px 42px rgba(8, 22, 51, 0.18);
  animation: service-search-highlight 1.4s ease;
}

@keyframes service-search-highlight {
  0% {
    transform: translateY(-4px);
  }
  45% {
    transform: translateY(-1px);
  }
  100% {
    transform: translateY(0);
  }
}

.mobile-service-search {
  display: none;
}

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

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 28px;
  text-decoration: none;
  border: 0;
  color: inherit;
  background: transparent;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(8, 22, 51, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 4px;
  padding: 0 24px;
  border: 1px solid var(--blue);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(11, 73, 214, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.header-actions .button.primary,
.mobile-floating-cta {
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0057f0, #0b72ff);
  box-shadow:
    0 16px 34px rgba(11, 73, 214, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button.secondary {
  color: var(--blue);
  background: #fff;
}

.button:hover,
.icon-button:hover,
button:hover,
.text-link:hover {
  transform: translateY(-2px);
}

.button:hover {
  box-shadow: 0 16px 28px rgba(11, 73, 214, 0.24);
}

.icon-button:hover {
  background: var(--soft);
  box-shadow: 0 14px 24px rgba(8, 22, 51, 0.14);
}

.button:active,
.icon-button:active,
button:active,
.text-link:active {
  transform: translateY(0) scale(0.98);
}

.button.is-popping,
.icon-button.is-popping,
button.is-popping,
.text-link.is-popping {
  animation: button-pop 0.32s ease;
}

@keyframes button-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

.menu-toggle {
  display: none;
}

.mobile-menu-backdrop,
.mobile-menu-panel {
  display: none;
}

.mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 1px);
  z-index: 30;
  display: none;
  grid-template-columns: 0.9fr 1.35fr 0.8fr;
  gap: 0;
  width: min(1040px, calc(100vw - 96px));
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(8, 22, 51, 0.14);
  transform: translateX(-50%);
}

.mega-menu-services {
  display: none;
  grid-template-columns: 280px minmax(0, 1fr);
  width: min(980px, calc(100vw - 96px));
  min-height: 360px;
}

.mega-menu-services .service-category-list {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 360px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: #f8fbff;
}

.mega-menu-services .service-category {
  position: static;
}

.mega-menu-services .service-category-link {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  text-decoration: none;
}

.mega-menu-services .service-category-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--blue);
  background: #fff;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(8, 22, 51, 0.06);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.mega-menu-services .service-category-link span {
  min-width: 0;
}

.mega-menu-services .service-category-link::after {
  content: ">";
  justify-self: end;
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.mega-menu-services .service-category:hover .service-category-link,
.mega-menu-services .service-category:focus-within .service-category-link {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 22, 51, 0.08);
}

.mega-menu-services .service-category:hover .service-category-link i,
.mega-menu-services .service-category:focus-within .service-category-link i {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 24px rgba(11, 73, 214, 0.2);
  transform: translateY(-1px);
}

.mega-menu-services
  .service-category-list:not(.has-active):not(:hover):not(:focus-within)
  .service-category:first-child
  .service-category-link,
.mega-menu-services
  .service-category-list:not(:hover):not(:focus-within)
  .service-category.is-active
  .service-category-link {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 22, 51, 0.08);
}

.mega-menu-services
  .service-category-list:not(.has-active):not(:hover):not(:focus-within)
  .service-category:first-child
  .service-category-link
  i,
.mega-menu-services
  .service-category-list:not(:hover):not(:focus-within)
  .service-category.is-active
  .service-category-link
  i {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 24px rgba(11, 73, 214, 0.2);
}

.mega-menu-services .service-panel {
  position: absolute;
  left: 280px;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: #fff;
}

.mega-menu-services
  .service-category-list:not(.has-active):not(:hover):not(:focus-within)
  .service-category:first-child
  .service-panel,
.mega-menu-services
  .service-category-list:not(:hover):not(:focus-within)
  .service-category.is-active
  .service-panel {
  display: grid;
}

.mega-menu-services .service-category:hover .service-panel,
.mega-menu-services .service-category:focus-within .service-panel {
  z-index: 2;
  display: grid;
}

.mega-menu-services .service-panel a {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 11px;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.mega-menu-services .service-panel a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(11, 73, 214, 0.1);
  border-radius: 8px;
  color: var(--blue);
  background: linear-gradient(180deg, #fff, #f3f8ff);
  font-size: 13px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.mega-menu-services .service-panel a span {
  min-width: 0;
}

.mega-menu-services .service-panel a:hover {
  color: var(--blue);
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px rgba(11, 73, 214, 0.08);
  transform: translateX(2px);
}

.mega-menu-services .service-panel a:hover i {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 18px rgba(11, 73, 214, 0.16);
}

.has-menu:hover .mega-menu,
.has-menu:focus-within .mega-menu {
  display: grid;
}

.hero {
  min-height: 450px;
  gap: 36px;
  padding: 28px 0 18px;
}

.home-hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100vh - 118px);
  margin-top: -90px;
  overflow: hidden;
  padding: 132px 0 42px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.48), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 249, 255, 0.18)),
    url("../assets/Hero%20background%20image.webp") center -132px / cover no-repeat;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 92%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  min-height: calc(100vh - 202px);
}

.home-hero .hero-inner {
  align-items: stretch;
  min-height: auto;
}

.hero-copy {
  width: 43%;
}

.hero-brand {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: -30px 0 14px;
  padding: 10px 14px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 22, 56, 0.97), rgba(11, 73, 214, 0.94) 58%, rgba(25, 191, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow:
    0 18px 38px rgba(8, 22, 51, 0.18),
    0 0 0 1px rgba(25, 191, 255, 0.18);
  font-family: var(--heading-font);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(8, 22, 51, 0.22);
}

.hero-brand::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 7px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.2), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 255, 255, 0.32), transparent 34%);
}

.hero-brand::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7cf2ff;
  box-shadow: 0 0 0 5px rgba(124, 242, 255, 0.14);
}

.brand-word {
  display: inline-block;
}

.brand-word-accent {
  color: #061638;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: #061638;
  font-family: var(--heading-font);
  font-weight: 800;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-weight: 900;
}

h3 {
  font-weight: 800;
}

.footer h2,
.footer h3,
.service-page-cta h2 {
  filter: none;
}

.hero h1,
.contact-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.05;
}

/* Home hero left column and mini feature alignment. */
.home-hero .hero-copy {
  display: flex;
  flex-direction: column;
  width: min(49%, 650px);
  padding-top: 18px;
}

.home-hero .eyebrow {
  margin-bottom: 26px;
  font-size: 13px;
  letter-spacing: 0;
}

.home-hero h1 {
  max-width: 650px;
  margin-bottom: 22px;
  color: #061638;
  font-size: clamp(44px, 4.65vw, 64px);
  line-height: 1.16;
}

.home-hero .lead {
  max-width: 590px;
  color: #334461;
  font-size: 18px;
  line-height: 1.72;
}

.hero h1 span {
  color: transparent;
  background: var(--heading-accent);
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 24px 0 34px;
}

.home-hero .hero-actions {
  gap: 18px;
  margin: 30px 0 0;
}

.home-hero .hero-actions .button {
  min-height: 56px;
  border-radius: 6px;
  padding: 0 28px;
  font-size: 17px;
}

.hero-art {
  width: 57%;
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-enquiry {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero-enquiry::before {
  content: "";
  position: absolute;
  inset: 24px 8px 18px 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 73, 214, 0.18), rgba(25, 191, 255, 0.16));
  filter: blur(28px);
  opacity: 0.9;
  pointer-events: none;
}

.home-hero .hero-enquiry {
  width: min(44%, 620px);
  padding-top: 0;
}

.home-hero .hero-enquiry::before {
  display: none;
}

.hero-enquiry-form {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  border-color: rgba(11, 73, 214, 0.16);
  padding: 24px;
  box-shadow:
    0 24px 60px rgba(8, 22, 51, 0.18),
    0 10px 24px rgba(11, 73, 214, 0.12);
}

.home-hero .hero-enquiry-form {
  width: min(100%, 620px);
  border: 1px solid rgba(190, 204, 226, 0.86);
  border-radius: 8px;
  padding: 26px 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 26px 70px rgba(8, 22, 51, 0.16),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(10px);
}

.hero-enquiry-form h2 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.15;
}

.hero-enquiry-form .eyebrow {
  margin-bottom: 10px;
}

.home-hero .hero-enquiry-form .eyebrow {
  margin-bottom: 14px;
  color: #43577c;
}

.hero-enquiry-form .field-grid {
  gap: 10px;
}

.home-hero .hero-enquiry-form .field-grid {
  gap: 12px;
}

.hero-enquiry-form input,
.hero-enquiry-form select,
.hero-enquiry-form textarea {
  margin-bottom: 10px;
  padding: 11px 12px;
}

.home-hero .hero-enquiry-form input,
.home-hero .hero-enquiry-form select,
.home-hero .hero-enquiry-form textarea {
  min-height: 50px;
  margin-bottom: 10px;
  border-color: #d8e2f1;
  border-radius: 5px;
  padding: 12px 14px;
  font-size: 15px;
}

.hero-enquiry-form textarea {
  min-height: 84px;
}

.home-hero .hero-enquiry-form textarea {
  min-height: 94px;
}

.hero-enquiry-form .form-footer {
  margin-top: 14px;
}

.home-hero .hero-enquiry-form .form-footer {
  margin-top: 14px;
}

.home-hero .hero-enquiry-form .form-footer .button {
  min-height: 52px;
  border-radius: 5px;
  padding: 0 28px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Home mini feature strip. Desktop aligns with the enquiry form bottom edge. */
.home-hero .feature-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 720px;
  margin-top: auto;
  gap: 0;
  border: 1px solid rgba(214, 225, 241, 0.62);
  border-radius: 14px;
  padding: 16px 24px 15px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 20px 46px rgba(8, 22, 51, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
  backdrop-filter: blur(5px);
}

.home-hero .mini-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
}

.home-hero .mini-feature + .mini-feature {
  border-left: 1px solid rgba(11, 73, 214, 0.14);
  padding-left: 24px;
}

.mini-feature strong,
.mini-feature span {
  display: block;
}

.mini-feature i {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 17px;
}

.mini-feature strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.mini-feature span {
  color: var(--muted);
  font-size: 12px;
}

.brands {
  padding: 30px 0 34px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.brands p {
  color: var(--blue);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-scroller {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  padding: 12px 0 16px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-scroller::-webkit-scrollbar {
  display: none;
}

.brand-scroller::before,
.brand-scroller::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 56px;
  pointer-events: none;
}

.brand-scroller::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.brand-scroller::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

/* Partner logo marquee speed: increase duration to slow the scroll. */
.brand-row {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: brand-logo-scroll 155s linear infinite;
  will-change: transform;
}

.brand-scroller:hover .brand-row {
  animation-play-state: paused;
}

@keyframes brand-logo-scroll {
  from {
    transform: translateX(0);
  }

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

.brand-logo {
  display: flex;
  width: 158px;
  flex: 0 0 158px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 106px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo img {
  display: block;
  width: 132px;
  height: 66px;
  object-fit: contain;
  image-rendering: auto;
  filter: saturate(1.05) contrast(1.05);
}

.brand-logo span {
  display: none;
}

.technology-partners {
  padding: 42px 0 48px;
}

.technology-partners-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.technology-partners-intro p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.technology-partners-intro h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.15;
}

.technology-partners-intro span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.technology-partners-panel {
  padding: 24px;
  border: 1px solid rgba(8, 22, 51, 0.09);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.technology-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.technology-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(8, 22, 51, 0.12);
  border-radius: 8px;
  background: #f6faff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.technology-tab:hover,
.technology-tab:focus-visible {
  border-color: rgba(30, 111, 255, 0.45);
  color: var(--blue);
  outline: 0;
}

.technology-tab.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.technology-tab-panels {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.technology-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technology-logo-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(8, 22, 51, 0.09);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease,
    transform 0.2s ease;
}

.technology-logo-grid li:hover {
  border-color: rgba(30, 111, 255, 0.28);
  box-shadow: 0 12px 28px rgba(8, 22, 51, 0.08);
  transform: translateY(-2px);
}

.technology-logo-grid img {
  display: block;
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.solutions,
.why {
  padding: 34px 0 24px;
}

.solutions {
  padding-top: 38px;
  background: linear-gradient(180deg, #fbfdff, #f6faff);
}

.section-heading {
  position: relative;
  width: min(780px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  padding-bottom: 14px;
  text-align: center;
}

.section-heading::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 18px rgba(25, 191, 255, 0.24);
  transform: translateX(-50%);
}

.section-heading p {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(11, 73, 214, 0.14);
  border-radius: 999px;
  padding: 7px 16px;
  color: var(--blue);
  background: #f7faff;
  box-shadow: 0 8px 18px rgba(8, 22, 51, 0.06);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: #07163b;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 14px 30px rgba(11, 73, 214, 0.14);
}

.section-heading span {
  display: block;
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.solution-card,
.reach-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.solution-card {
  min-height: 194px;
  padding: 22px 20px;
  box-shadow: var(--soft-glow);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.solution-card:hover {
  border-color: rgba(11, 73, 214, 0.25);
  box-shadow: var(--blue-glow);
  transform: translateY(-4px);
}

.solution-card .symbol {
  color: var(--blue);
  font-size: 25px;
}

.solution-card h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

.solution-card p {
  color: #34415c;
  min-height: 64px;
  font-size: 15px;
  line-height: 1.6;
}

.solution-card a,
.map-card a,
.text-link {
  color: var(--blue);
  text-decoration: none;
}

.button.primary,
.hero-enquiry-form,
.reach-card,
.why-card,
.service-card,
.service-page-card,
.catalog-card,
.career-card,
.career-feature,
.about-story article,
.about-story aside,
.about-value-grid article,
.about-expertise,
.about-next article,
.contact-form,
.map-card,
.office-card,
.branch-office-card,
.faq-list details,
.testimonial-card {
  box-shadow: var(--soft-glow);
}

.button.primary {
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 28px rgba(11, 73, 214, 0.24);
}

.button.primary:hover,
.reach-card:hover,
.why-card:hover,
.service-card:hover,
.service-page-card:hover,
.catalog-card:hover,
.career-card:hover,
.career-feature:hover,
.about-value-grid article:hover,
.about-next article:hover,
.faq-list details:hover,
.testimonial-card:hover {
  box-shadow: var(--blue-glow);
}

.text-link {
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.centered {
  display: block;
  margin: 22px auto 0;
}

.solution-cta {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
  min-height: 46px;
  padding: 0 24px;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  text-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  padding: 26px 30px;
  color: #fff;
  border-radius: 12px;
  background: linear-gradient(135deg, #07163b, #0b4ad5);
  box-shadow: 0 20px 48px rgba(11, 73, 214, 0.24);
}

.stat {
  padding: 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  padding: 8px 10px;
}

.why-card h3 {
  margin-bottom: 8px;
}

.why-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.certifications {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 26px auto 48px;
  padding: 24px;
  border-radius: 12px;
  background: var(--soft);
}

.certifications div {
  text-align: center;
}

.inner-hero {
  padding: 46px 0 24px;
}

.inner-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 48px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 58px;
}

.content-grid article {
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.content-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.feature-band {
  padding-bottom: 48px;
}

.legal-content {
  padding: 0 0 58px;
}

.legal-content article {
  max-width: 920px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(8, 22, 51, 0.05);
}

.legal-content h2 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.office-selector {
  display: grid;
  gap: 10px;
  max-width: 360px;
  margin-bottom: 18px;
}

.office-selector label {
  color: var(--muted);
  font-size: 14px;
}

.office-selector select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
}

.branch-office-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.branch-office-card > div:first-child {
  padding: 22px;
}

.branch-office-card p {
  color: var(--muted);
}

.branch-office-card iframe {
  width: 100%;
  min-height: 220px;
  border: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.process-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.process-grid strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 14px;
}

.process-grid h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
  padding: 48px 0 28px;
}

.service-hero-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, #f7fbff, #edf5ff);
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-hero-panel h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.service-hero-panel ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.service-layout {
  display: grid;
  gap: 32px;
  padding-bottom: 54px;
}

.service-section-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-section-grid article,
.service-use-cases article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(8, 22, 51, 0.04);
}

.service-section-grid p,
.service-use-cases p {
  color: var(--muted);
  line-height: 1.6;
}

.service-use-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 12px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #07163b, #0b4ad5);
}

.service-cta h2 {
  margin-bottom: 6px;
  color: #fff;
}

.service-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.career-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 0 0 24px;
}

.career-feature-grid .e-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 300px;
  aspect-ratio: auto;
  justify-self: center;
  overflow: hidden;
  border-radius: 16px;
  background: #ffbd3d;
  box-shadow: 0 18px 46px rgba(8, 22, 51, 0.22);
  isolation: isolate;
}

.career-feature-grid .e-card.green {
  background: #10c76b;
}

.career-feature-grid .wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.career-feature-grid .wave:nth-child(2),
.career-feature-grid .wave:nth-child(3) {
  top: 210px;
}

.career-feature-grid .wave:nth-child(2) {
  animation-duration: 50s;
}

.career-feature-grid .wave:nth-child(3) {
  animation-duration: 45s;
}

.career-feature-grid .playing .wave {
  animation: wave 3000ms infinite linear;
}

.career-feature-grid .playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.career-feature-grid .playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.career-feature-grid .yellow .wave {
  background: linear-gradient(744deg, #ffd700, #ffb347 60%, #ff7e00);
}

.career-feature-grid .green .wave {
  background: linear-gradient(744deg, #00d97e, #00c853 60%, #009624);
}

.career-feature-grid .infotop {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  color: #fff;
  text-align: center;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.career-feature-grid .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 170px;
}

.career-feature-grid .icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(8, 22, 51, 0.16);
}

.career-feature-grid .name {
  margin: 0 0 10px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.career-feature-grid .description {
  flex: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
}

.career-feature-grid .bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 124px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 8px;
  margin-top: 22px;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  background: rgba(8, 22, 51, 0.42);
  box-shadow: 0 10px 24px rgba(8, 22, 51, 0.2);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.career-feature-grid .bottom a:hover {
  transform: translateY(-2px);
  background: rgba(8, 22, 51, 0.62);
  box-shadow: 0 16px 30px rgba(8, 22, 51, 0.28);
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 34px;
}

.career-grid article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(8, 22, 51, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.career-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 86, 255, 0.22);
  box-shadow: 0 22px 48px rgba(8, 22, 51, 0.18);
}

.career-grid i {
  color: var(--blue);
  font-size: 30px;
}

.career-grid h2 {
  margin: 16px 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.career-grid p {
  flex: 1;
  color: #34415c;
  font-size: 15px;
  line-height: 1.65;
}

.career-apply {
  width: auto;
  min-width: 108px;
  min-height: 38px;
  margin-top: 12px;
  padding-inline: 16px;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(10, 86, 255, 0.18);
}

.career-apply:hover {
  background: #063fc2;
  box-shadow: 0 16px 30px rgba(10, 86, 255, 0.34);
}

.career-stats {
  margin-bottom: 24px;
}

.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  align-items: center;
  gap: 42px;
  padding: 70px 0 44px;
  isolation: isolate;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 28px -24px auto auto;
  z-index: -1;
  width: 46%;
  height: 72%;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(11, 73, 214, 0.13), rgba(25, 191, 255, 0.12));
  filter: blur(22px);
}

.about-copy .eyebrow {
  margin-bottom: 14px;
}

.about-copy h1 {
  margin: 10px 0 18px;
  color: #07163b;
  font-size: clamp(38px, 5.8vw, 70px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow:
    0 0 24px rgba(25, 191, 255, 0.22),
    0 12px 30px rgba(8, 22, 51, 0.08);
}

.about-copy .lead {
  max-width: 680px;
  text-align: justify;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.about-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  width: min(100%, 620px);
  justify-self: end;
  min-height: 0;
  border: 1px solid rgba(223, 231, 243, 0.92);
  border-radius: 14px;
  padding: 0;
  box-shadow: 0 24px 60px rgba(8, 22, 51, 0.14);
  background: #f5f9ff;
}

.about-visual img {
  display: block;
  width: 101.5%;
  height: calc(100% + 16px);
  max-width: none;
  margin: -8px 0;
  border-radius: 14px;
  object-fit: cover;
  object-position: left top;
}

.about-story aside img {
  display: block;
  width: 100%;
  height: auto;
}

.about-visual-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(220px, calc(100% - 40px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background: rgba(7, 22, 59, 0.78);
  box-shadow: 0 18px 34px rgba(8, 22, 51, 0.24);
  backdrop-filter: blur(12px);
}

.about-visual-badge strong,
.about-visual-badge span {
  display: block;
}

.about-visual-badge strong {
  font-size: 34px;
  line-height: 1;
}

.about-visual-badge span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 34px;
  align-items: stretch;
  padding: 36px 0 26px;
}

.about-story article,
.about-story aside {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.about-story article::before,
.about-story aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 73, 214, 0.06), transparent 42%);
  pointer-events: none;
}

.about-story h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.15;
}

.about-story p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #34415c;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

.about-story p:last-child {
  margin-bottom: 0;
}

.about-story aside img {
  position: relative;
  z-index: 1;
  max-height: 260px;
  object-fit: contain;
  margin-bottom: 20px;
}

.about-stats {
  margin-top: 24px;
  margin-bottom: 34px;
  box-shadow: 0 22px 52px rgba(8, 22, 51, 0.18);
}

.about-values {
  padding: 18px 0 36px;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-value-grid article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(11, 73, 214, 0.22), rgba(25, 191, 255, 0.08)) border-box;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(8, 22, 51, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.about-value-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 73, 214, 0.24);
  box-shadow: 0 18px 40px rgba(8, 22, 51, 0.12);
}

.about-value-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--blue);
  background: rgba(11, 73, 214, 0.08);
  font-size: 22px;
}

.about-value-grid h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.about-value-grid p {
  margin-bottom: 0;
  color: #34415c;
  font-size: 15px;
  line-height: 1.7;
  text-align: justify;
}

.about-expertise {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  background: linear-gradient(135deg, #f8fbff, #fff);
  box-shadow: 0 14px 36px rgba(8, 22, 51, 0.06);
}

.about-expertise h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.15;
}

.about-expertise p:not(.eyebrow) {
  margin-bottom: 0;
  color: #34415c;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

.about-next {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 56px;
}

.about-next article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 14px 36px rgba(8, 22, 51, 0.07);
}

.about-next i {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 30px;
}

.about-next h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.about-next p {
  color: #34415c;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-tags span,
.service-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(10, 86, 255, 0.18);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.service-tags a:hover {
  color: var(--blue);
  border-color: rgba(10, 86, 255, 0.38);
  transform: translateY(-2px);
}

.core-services {
  padding-bottom: 36px;
}

.core-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.core-service-grid article {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(8, 22, 51, 0.04);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.core-service-grid article:hover {
  border-color: rgba(11, 73, 214, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(8, 22, 51, 0.1);
}

.core-service-grid i {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 30px;
}

.core-service-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.core-service-grid p {
  flex: 1;
  color: #34415c;
  font-size: 15px;
  line-height: 1.65;
}

.core-service-grid a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.service-directory {
  padding: 16px 0 46px;
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-directory-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbff;
  padding: 24px;
}

.service-directory-grid h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-directory-cta {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #07163b, #0b4ad5) !important;
}

.service-directory-cta h2 {
  color: #fff;
}

.service-directory-cta p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.service-directory-cta .button {
  width: fit-content;
  border-color: #fff;
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.service-page-hero {
  max-width: 980px;
}

.service-page-hero h1 {
  color: #07163b;
  text-shadow:
    0 0 22px rgba(25, 191, 255, 0.22),
    0 10px 28px rgba(8, 22, 51, 0.08);
}

.service-page-hero h1::after {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  box-shadow: 0 0 20px rgba(25, 191, 255, 0.55);
}

.service-page-section {
  padding: 18px 0 34px;
  scroll-margin-top: 120px;
}

.service-page-section:nth-of-type(odd) {
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.service-page-section .section-heading h2 {
  color: #07163b;
  text-shadow: 0 14px 30px rgba(11, 73, 214, 0.14);
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-page-card {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  min-height: 286px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(11, 73, 214, 0.28), rgba(25, 191, 255, 0.1)) border-box;
  padding: 22px;
  box-shadow:
    0 12px 28px rgba(8, 22, 51, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  scroll-margin-top: 118px;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.service-page-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(25, 191, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(248, 251, 255, 0.78), rgba(255, 255, 255, 0));
  opacity: 0.8;
  pointer-events: none;
}

.service-page-card:hover,
.service-page-card:target {
  border-color: rgba(11, 73, 214, 0.25);
  transform: translateY(-6px);
  box-shadow:
    0 24px 48px rgba(8, 22, 51, 0.14),
    0 8px 24px rgba(11, 73, 214, 0.16);
}

.service-page-card i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--blue);
  border-radius: 8px;
  background: rgba(11, 73, 214, 0.08);
  font-size: 24px;
  box-shadow: 0 10px 22px rgba(11, 73, 214, 0.1);
}

.service-page-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.service-page-card p {
  position: relative;
  z-index: 1;
  flex: 1;
  color: #34415c;
  font-size: 15px;
  line-height: 1.65;
}

.service-page-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}


.service-page-cta {
  padding: 20px 0 58px;
}

.service-page-cta .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 12px;
  padding: 28px;
  color: #fff;
  background: linear-gradient(135deg, #07163b, #0b4ad5);
}

.service-page-cta .eyebrow,
.service-page-cta h2 {
  color: #fff;
}

.service-page-cta h2 {
  margin-bottom: 0;
}

.service-page-cta .button {
  border-color: #fff;
  background: #fff;
  color: var(--blue);
  box-shadow: none;
}

.solutions-catalog {
  padding-bottom: 26px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.catalog-grid article {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(8, 22, 51, 0.04);
}

.catalog-grid h2 {
  margin-bottom: 14px;
  font-size: 20px;
}

.catalog-grid a {
  display: block;
  margin-bottom: 12px;
  color: #34415c;
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
}

.catalog-grid a:hover {
  color: var(--blue);
}

.cta-band {
  padding: 28px 0 58px;
}

.cta-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 12px;
  background: var(--soft);
}

.cta-band h2 {
  margin-bottom: 0;
}

.contact-hero {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.contact-hero-inner {
  min-height: 220px;
  gap: 36px;
}

.contact-hero-inner > div {
  width: 48%;
}

.contact-hero img {
  width: 48%;
  max-height: 250px;
  object-fit: contain;
}

.contact-main {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  padding: 20px 0 30px;
}

.contact-form {
  padding: 22px;
  box-shadow: 0 8px 24px rgba(8, 22, 51, 0.05);
}

.contact-form p {
  color: var(--muted);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  min-height: 100px;
  resize: vertical;
}

.service-detail-select[hidden] {
  display: none;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.checkbox input {
  flex: 0 0 auto;
  width: auto;
  margin: 0;
}

.checkbox a {
  color: var(--blue);
  font-weight: inherit;
  text-decoration: none;
}

.checkbox a:hover {
  color: #063fc2;
  text-decoration: underline;
}

.captcha-box {
  width: min(100%, 304px);
  margin: 2px 0 12px;
}

.form-disclaimer {
  display: none;
  margin-top: 8px;
  color: #d12f2f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.contact-form.show-policy-warning .form-disclaimer {
  display: block;
}

.form-status {
  margin-top: 12px;
}

.alert {
  position: relative;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 42px 12px 14px;
  font-size: 14px;
  line-height: 1.45;
}

.alert-success {
  border-color: rgba(30, 126, 72, 0.22);
  color: #146c43;
  background: #eaf7ef;
}

.alert-danger {
  border-color: rgba(209, 47, 47, 0.24);
  color: #b42323;
  background: #fff0f0;
}

.alert .close {
  position: absolute;
  top: 50%;
  right: 12px;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.contact-side h2 {
  margin-bottom: 18px;
}

.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.reach-card {
  padding: 16px;
  box-shadow: 0 6px 16px rgba(8, 22, 51, 0.04);
}

.reach-card strong,
.reach-card span {
  display: block;
}

.reach-card strong {
  margin-bottom: 10px;
  font-size: 15px;
}

.reach-card span {
  color: #000000;
  font-size: 13px;
  line-height: 1.5;
}

.map-card {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: stretch;
  overflow: hidden;
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.map-card > div:first-child {
  padding: 22px;
}

.map-card p {
  color: var(--muted);
  line-height: 1.6;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

.testimonials-section {
  padding: 48px 0 34px;
  background: linear-gradient(180deg, #f8fbff, #fff);
  border-top: 1px solid var(--line);
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 24px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 80px;
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #f8fbff, rgba(248, 251, 255, 0));
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: testimonial-scroll 98s linear infinite;
  will-change: transform;
}

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

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

@keyframes testimonial-scroll {
  from {
    transform: translateX(0);
  }

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

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 310px;
  width: 288px;
  flex: 0 0 288px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px 20px 22px;
  box-shadow: 0 10px 26px rgba(8, 22, 51, 0.06);
}

.testimonial-card.featured {
  border-color: rgba(11, 73, 214, 0.22);
  box-shadow: 0 18px 40px rgba(11, 73, 214, 0.12);
}

.testimonial-mark {
  position: absolute;
  right: 16px;
  top: 4px;
  color: rgba(11, 73, 214, 0.1);
  font-family: Georgia, serif;
  font-size: 76px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-person {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 58px;
  margin-bottom: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.testimonial-stars {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  color: #f7b500;
  font-size: 14px;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.testimonial-person strong,
.testimonial-person span {
  position: relative;
  z-index: 1;
  display: block;
}

.testimonial-person strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.testimonial-person span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.partner-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 6px auto 38px;
  overflow: hidden;
  border: 1px solid rgba(223, 231, 243, 0.92);
  border-radius: 10px;
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7ff 100%);
  box-shadow: 0 14px 32px rgba(8, 22, 51, 0.055);
}

.partner-credential {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 86px;
  padding: 18px 22px;
  border-right: 1px solid rgba(8, 22, 51, 0.11);
}

.partner-credential:last-child {
  border-right: 0;
}

.credential-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  flex: 0 0 48px;
}

.credential-mark img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.aws-mark img {
  width: 44px;
  height: auto;
}

.microsoft-mark img {
  width: 32px;
  height: auto;
}

.outline-mark {
  width: 34px;
  height: 34px;
  flex-basis: 48px;
  border: 1.7px solid #15223c;
  border-radius: 999px;
  color: #15223c;
  font-size: 15px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
}

.outline-mark img {
  width: 15px;
  height: 15px;
  filter: brightness(0) saturate(100%) invert(10%) sepia(25%) saturate(1482%) hue-rotate(184deg) brightness(95%) contrast(98%);
}

.india-mark {
  width: 39px;
  height: 26px;
  flex-basis: 48px;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
}

.india-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-credential strong,
.partner-credential > div > span {
  display: block;
  text-align: left;
}

.partner-credential strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
}

.partner-credential > div > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.25;
}

.faq-section {
  padding: 36px 0 58px;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  padding: 28px;
}

.faq-intro h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.15;
}

.faq-intro p:not(.eyebrow) {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(8, 22, 51, 0.04);
}

.faq-list summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 62px;
  padding: 18px 54px 18px 20px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 18px;
  font-weight: 700;
  transform: translateY(-50%);
}

.faq-list details[open] summary {
  color: var(--blue);
  border-bottom: 1px solid var(--line);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  margin: 0;
  padding: 16px 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.cookie-preferences {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 95;
  width: min(1430px, calc(100vw - 104px));
  border: 1px solid rgba(11, 73, 214, 0.12);
  border-radius: 22px;
  padding: 30px 34px 30px 38px;
  color: #061638;
  background: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 28px 80px rgba(8, 22, 51, 0.2),
    0 8px 24px rgba(11, 73, 214, 0.1);
  opacity: 0;
  transform: translate(-50%, 18px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.cookie-preferences-summary {
  display: grid;
  grid-template-columns: 118px minmax(460px, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cookie-preferences.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cookie-preferences.is-hiding {
  opacity: 0;
  transform: translate(-50%, 18px);
}

.cookie-preferences.is-managing.is-visible {
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
}

.cookie-preferences-icon {
  position: relative;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  justify-self: center;
  color: #fff;
  border-radius: 24px;
  background: linear-gradient(145deg, #49a6ff, #0057f0);
  box-shadow:
    0 18px 36px rgba(11, 73, 214, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cookie-preferences-icon .fa-shield-halved {
  font-size: 58px;
}

.cookie-preferences-icon .fa-cookie-bite {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-size: 25px;
  transform: translate(-50%, -46%);
}

.cookie-preferences-copy h2 {
  margin: 0 0 10px;
  color: #061638;
  font-size: 24px;
  line-height: 1.1;
}

.cookie-preferences-copy p {
  max-width: 610px;
  margin: 0 0 11px;
  color: #263451;
  font-size: 16px;
  line-height: 1.55;
}

.cookie-preferences-copy a {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-preferences-actions,
.cookie-panel-actions {
  display: grid;
  gap: 20px;
  align-items: center;
}

.cookie-preferences-actions {
  grid-template-columns: 220px 190px 190px;
}

.cookie-panel-actions {
  grid-template-columns: repeat(3, minmax(150px, 1fr));
}

.cookie-preferences-actions .button,
.cookie-panel-actions .button {
  min-height: 56px;
  justify-content: center;
  border-radius: 7px;
  padding: 15px 24px;
  font-size: 16px;
  white-space: nowrap;
}

.cookie-preferences-actions .cookie-secondary,
.cookie-panel-actions .cookie-secondary {
  border: 1px solid rgba(11, 73, 214, 0.72);
  color: #073eb2;
  background: #fff;
  box-shadow: none;
}

.cookie-preferences-actions .cookie-secondary:hover,
.cookie-panel-actions .cookie-secondary:hover {
  color: #fff;
  background: #073eb2;
}

.cookie-preferences.is-managing {
  width: min(680px, calc(100vw - 64px));
  padding: 28px;
}

.cookie-preferences-panel {
  display: block;
}

.cookie-preferences-panel[hidden],
.cookie-preferences-summary[hidden] {
  display: none;
}

.cookie-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.cookie-panel-heading span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-panel-heading h2 {
  margin: 0;
  color: #061638;
  font-size: 25px;
  line-height: 1.15;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr 54px;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(11, 73, 214, 0.13);
  border-radius: 12px;
  padding: 15px 16px;
  background: #f8fbff;
}

.cookie-option strong {
  display: block;
  margin-bottom: 5px;
  color: #061638;
  font-size: 15px;
}

.cookie-option em {
  display: block;
  color: #526077;
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.cookie-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #cbd5e4;
  transition: background-color 0.2s ease;
}

.cookie-toggle::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 8px rgba(8, 22, 51, 0.2);
  transition: transform 0.2s ease;
}

.cookie-option input:checked + .cookie-toggle {
  background: var(--blue);
}

.cookie-option input:checked + .cookie-toggle::after {
  transform: translateX(22px);
}

.cookie-option.is-required {
  background: #eef6ff;
}

.cookie-option.is-required .cookie-toggle {
  background: var(--blue);
}

#chatbot-character {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 75;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  filter: drop-shadow(0 18px 28px rgba(8, 22, 51, 0.2));
}

.character {
  width: 76px;
  height: 104px;
  background:
    radial-gradient(circle at 50% 84%, rgba(25, 191, 255, 0.2), transparent 34%),
    url("../assets/ti-bot.webp") no-repeat center / contain;
  animation: chatbot-bounce 2s infinite;
}

.speech-bubble {
  position: relative;
  max-width: 178px;
  margin-right: 12px;
  border: 1px solid rgba(25, 191, 255, 0.22);
  border-radius: 8px;
  padding: 10px 14px;
  color: #07163b;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 14px 30px rgba(8, 22, 51, 0.14);
}

.speech-bubble::before {
  content: "Online now";
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

#chatbot-character.has-unread .speech-bubble::before {
  content: "1 new message";
  color: #ef3340;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}

.chat-unread-badge {
  position: absolute;
  top: 2px;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #ef3340;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(239, 51, 64, 0.35);
}

#chatbot-character.has-unread .chat-unread-badge {
  display: flex;
}

#chatbot-character.has-unread .speech-bubble {
  animation: chat-nudge 1.8s ease-in-out infinite;
}

@keyframes chatbot-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

#chatbot-window {
  position: fixed;
  right: 20px;
  bottom: 118px;
  z-index: 75;
  display: none;
  width: min(430px, calc(100vw - 40px));
  height: min(390px, calc(100vh - 140px));
  max-height: 390px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(11, 73, 214, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, rgba(11, 73, 214, 0.32), rgba(25, 191, 255, 0.18)) border-box;
  box-shadow:
    0 24px 60px rgba(8, 22, 51, 0.22),
    0 10px 24px rgba(11, 73, 214, 0.12);
}

#chatbot-header {
  position: relative;
  min-height: 54px;
  padding: 10px 42px 9px 14px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(25, 191, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #07163b, var(--blue));
  font-weight: 800;
  text-align: left;
}

#chatbot-header::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 5px rgba(37, 211, 102, 0.14);
  vertical-align: 1px;
}

.chat-status {
  display: block;
  margin-top: 3px;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 600;
}

#close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  border: 0;
  padding: 0;
  color: #fff;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

#chatbot-body {
  display: grid;
  flex: 1;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(25, 191, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #f8fbff, #fff);
}

.chat-home-panel,
.chat-message-panel {
  min-width: 0;
  min-height: 0;
  padding: 12px;
}

.chat-home-panel {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-right: 1px solid rgba(11, 73, 214, 0.1);
  background:
    radial-gradient(circle at 0% 18%, rgba(25, 191, 255, 0.12), transparent 34%),
    #f7faff;
}

.chat-message-panel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f9fbff);
}

.chat-panel-label {
  color: #07163b;
  font-size: 12px;
  font-weight: 900;
}

.chat-home-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 9px;
  border: 1px solid rgba(11, 73, 214, 0.12);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 22, 51, 0.06);
}

.chat-agent-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-size: 11px;
  font-weight: 900;
}

.chat-home-card strong {
  display: block;
  margin-bottom: 3px;
  color: #07163b;
  font-size: 13px;
}

.chat-home-card p {
  margin: 0;
  color: #52617d;
  font-size: 12px;
  line-height: 1.38;
}

.chat-start-button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0f63e7);
  box-shadow: 0 14px 28px rgba(11, 73, 214, 0.22);
  font-weight: 800;
}

.chat-thread {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding-top: 8px;
  padding-bottom: 8px;
}

.chat-bubble {
  display: inline-block;
  max-width: 84%;
  margin: 3px 0;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.4;
  word-wrap: break-word;
  animation: chat-fade-in 0.28s ease;
}

.chat-bubble.bot {
  align-self: flex-start;
  margin-left: 5px;
  border: 1px solid rgba(11, 73, 214, 0.1);
  border-bottom-left-radius: 3px;
  color: #263451;
  background: #fff;
  box-shadow: 0 8px 18px rgba(8, 22, 51, 0.06);
  text-align: left;
}

.chat-bubble.user {
  align-self: flex-end;
  margin-right: 5px;
  border-bottom-right-radius: 3px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0f63e7);
  box-shadow: 0 10px 22px rgba(11, 73, 214, 0.16);
  text-align: right;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.08s ease;
}

.chat-bubble.user:hover {
  background: linear-gradient(135deg, #063fc2, var(--cyan));
  transform: scale(1.02);
}

.question-list .chat-bubble.user {
  width: fit-content;
  max-width: 92%;
  border: 1px solid rgba(11, 73, 214, 0.18);
  color: #07163b;
  background: #eef6ff;
  box-shadow: none;
  text-align: left;
}

.question-list .chat-bubble.user:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.typing-indicator {
  display: flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  margin: 10px 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: chat-blink 1.2s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

.question-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.sticky-whatsapp {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.32);
  font-size: 28px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.sticky-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(37, 211, 102, 0.42);
}

@keyframes chat-blink {
  0%,
  80%,
  100% {
    opacity: 0.2;
  }
  40% {
    opacity: 1;
  }
}

@keyframes chat-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes chat-nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
  }
}

.footer {
  color: #fff;
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  padding: 42px 0 28px;
}

.compact-footer {
  margin-top: 12px;
}

.footer-about h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.footer p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.footer-social-links {
  margin-top: 18px;
}

.footer .social-links {
  gap: 10px;
}

.footer .social-links a {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.26);
  font-size: 14px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.footer-column h3 {
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-address p {
  margin-bottom: 10px;
}

.footer-bottom {
  gap: 18px;
  padding: 16px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

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

.hero-enquiry-form,
.solution-card,
.reach-card,
.why-card,
.service-card,
.service-page-card,
.catalog-card,
.career-card,
.career-feature,
.about-story article,
.about-story aside,
.about-value-grid article,
.about-expertise,
.about-next article,
.contact-form,
.map-card,
.office-card,
.branch-office-card,
.faq-list details,
.testimonial-card,
.partner-credentials {
  box-shadow: var(--soft-glow);
}

.hero h1,
.contact-hero h1,
.inner-hero h1,
.about-copy h1,
.service-page-hero h1,
.section-heading h2,
.faq-intro h2,
.cta-band h2,
.about-expertise h2,
.about-next h2,
.about-story h2,
.process-grid h2,
.service-hero-panel h2,
.career-grid h2,
.core-service-grid h3,
.service-directory-grid h2,
.service-directory-cta h2,
.service-page-section .section-heading h2,
.catalog-grid h2,
.contact-side h2 {
  color: transparent;
  background: var(--heading-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 12px 28px rgba(11, 73, 214, 0.14));
}

.hero h1,
.contact-hero h1,
.inner-hero h1,
.about-copy h1,
.service-page-hero h1 {
  letter-spacing: 0;
}

.home-hero h1 {
  color: #061638;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
}

.home-hero h1 span {
  color: transparent;
  background: var(--heading-accent);
  -webkit-background-clip: text;
  background-clip: text;
}

.solution-card h3,
.why-card h3,
.about-value-grid h3,
.footer-column h3,
.service-page-card h3,
.core-service-grid h3,
.catalog-grid h2,
.career-grid h2 {
  color: #061638;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  text-shadow: none;
  filter: none;
}

.solution-card h3,
.why-card h3,
.about-value-grid h3,
.footer-column h3,
.service-page-card h3,
.core-service-grid h3,
.catalog-grid h2,
.career-grid h2 {
  position: relative;
}

.solution-card h3::after,
.why-card h3::after,
.about-value-grid h3::after,
.footer-column h3::after,
.service-page-card h3::after,
.core-service-grid h3::after,
.catalog-grid h2::after,
.career-grid h2::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--heading-accent);
  box-shadow: 0 8px 18px rgba(25, 191, 255, 0.2);
}

.footer h2,
.footer h3,
.service-cta h2,
.service-page-cta h2,
.service-directory-cta h2 {
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  filter: none;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  .hero h1,
  .contact-hero h1,
  .inner-hero h1,
  .about-copy h1,
  .service-page-hero h1,
  .section-heading h2,
  .faq-intro h2,
  .cta-band h2,
  .about-expertise h2,
  .about-next h2,
  .about-story h2,
  .process-grid h2,
  .service-hero-panel h2,
  .career-grid h2,
  .core-service-grid h3,
  .service-directory-grid h2,
  .service-page-section .section-heading h2,
  .service-page-card h3,
  .catalog-grid h2,
  .contact-side h2 {
    color: #061638;
    background: none;
    filter: none;
  }
}

.solution-card:hover,
.reach-card:hover,
.why-card:hover,
.service-card:hover,
.service-page-card:hover,
.catalog-card:hover,
.career-card:hover,
.career-feature:hover,
.about-value-grid article:hover,
.about-next article:hover,
.faq-list details:hover,
.testimonial-card:hover {
  box-shadow: var(--blue-glow);
}

@media (max-width: 1100px) {
  .cookie-preferences-summary {
    grid-template-columns: 76px 1fr;
    gap: 18px 20px;
  }

  .cookie-preferences-actions {
    grid-column: 1 / -1;
  }

  .topbar-group {
    gap: 16px;
  }

  .topbar-group > * + *::before {
    left: -8px;
  }

  .primary-nav {
    gap: 16px;
  }

  .site-search.is-expanded {
    width: 200px;
  }

  .site-search-control,
  .service-search-results {
    width: 200px;
  }

  .nav-brand {
    padding: 9px 11px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero {
    flex-direction: column;
    padding-top: 28px;
  }

  .home-hero {
    min-height: auto;
    padding: 42px 0 38px;
    background-position: center -40px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 32px;
  }

  .home-hero .hero-copy,
  .home-hero .hero-enquiry {
    width: 100%;
  }

  .home-hero .hero-actions {
    margin-bottom: 42px;
  }

  .hero-copy,
  .hero-art,
  .contact-hero-inner > div,
  .contact-hero img {
    width: 100%;
  }

  .hero-enquiry {
    justify-content: center;
  }

  .card-grid,
  .reach-grid,
  .certifications,
  .core-service-grid,
  .service-page-grid,
  .content-grid,
  .process-grid,
  .service-section-grid,
  .service-use-cases,
  .catalog-grid,
  .career-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .career-grid article {
    aspect-ratio: auto;
    min-height: 245px;
  }

  .service-hero {
    grid-template-columns: 1fr;
  }

  .about-hero,
  .about-story,
  .about-expertise {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: min(100%, 560px);
    justify-self: center;
    min-height: auto;
    margin: 0 auto;
  }

  .about-value-grid,
  .about-next {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-row {
    gap: 18px;
  }

  .brand-logo {
    width: 136px;
    flex-basis: 136px;
  }

  .technology-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-hero-inner,
  .contact-main {
    display: block;
  }

  .contact-hero-inner {
    padding: 28px 0;
  }

  .contact-main {
    padding-top: 24px;
  }

  .contact-side {
    margin-top: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 54px;
  }

  .testimonial-card {
    min-height: 270px;
    width: 280px;
    flex-basis: 280px;
  }

  .partner-credentials {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-credential {
    justify-content: center;
    min-height: 82px;
    border-right: 1px solid rgba(8, 22, 51, 0.11);
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (min-width: 821px) and (max-width: 960px) {
  .nav-wrap {
    gap: 18px;
  }

  .primary-nav {
    gap: 12px;
  }

  .nav-brand {
    font-size: 16px;
    padding: 8px 10px;
  }

  .header-actions {
    display: none;
  }
}

@media (min-width: 641px) and (max-width: 1100px) {
  .footer-grid {
    padding: 34px 0 24px;
  }

  .footer-about h2 {
    margin-bottom: 10px;
    font-size: clamp(21px, 2.6vw, 22px);
  }

  .footer-about p {
    margin: 0;
    font-size: 13px;
    line-height: 1.62;
  }

  .footer-social-links {
    margin-top: 16px;
  }

  .footer-columns {
    gap: 22px;
  }

  .footer-column h3 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer-column a,
  .footer-address p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-column a {
    overflow-wrap: anywhere;
  }

  .footer-bottom {
    align-items: center;
    padding: 14px 0 18px;
    font-size: 13px;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    gap: 10px 14px;
  }
}

@media (min-width: 821px) and (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.8fr);
    gap: 30px;
  }

  .footer-about p {
    max-width: 300px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
  }

  .footer-legal-links {
    justify-content: flex-end;
  }
}

@media (max-width: 820px) {
  .cookie-preferences {
    bottom: 14px;
    width: calc(100vw - 28px);
    border-radius: 18px;
    padding: 20px 18px;
  }

  .cookie-preferences.is-managing {
    width: calc(100vw - 28px);
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    padding: 18px;
  }

  .cookie-preferences.is-managing.is-visible {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .cookie-preferences-summary {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .cookie-preferences-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .cookie-preferences-icon .fa-shield-halved {
    font-size: 40px;
  }

  .cookie-preferences-icon .fa-cookie-bite {
    font-size: 18px;
  }

  .cookie-preferences-copy h2 {
    margin-bottom: 7px;
    font-size: 21px;
  }

  .cookie-preferences-copy p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cookie-preferences-actions,
  .cookie-panel-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-preferences-actions .button,
  .cookie-panel-actions .button {
    min-height: 48px;
    width: 100%;
    font-size: 15px;
  }

  .cookie-panel-heading h2 {
    font-size: 21px;
  }

  .cookie-option {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .captcha-box {
    width: 100%;
  }

  body {
    overflow-x: hidden;
  }

  .shell {
    width: min(100% - 28px, 100%);
  }

  .topbar-inner,
  .topbar-group,
  .nav-wrap,
  .stats,
  .why-grid,
  .footer-grid,
  .footer-bottom,
  .map-card,
  .branch-office-card {
    display: block;
  }

  .topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    min-height: auto;
    padding: 7px 0;
  }

  .topbar-group:first-child {
    display: none;
  }

  .topbar-group + .topbar-group {
    margin-top: 0;
  }

  .topbar-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 12px;
    font-size: 12px;
    line-height: 1.25;
  }

  .topbar-group > * {
    min-height: auto;
  }

  .topbar-group > * + *::before {
    display: none;
  }

  .topbar-phone {
    display: none;
  }

  .topbar-group:nth-child(2) > a:not(.social-links a) {
    display: none;
  }

  .topbar-group:nth-child(2) > span:first-child {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
  }

  .topbar-phone i {
    font-size: 15px;
  }

  .topbar .social-links {
    gap: 10px;
  }

  .topbar .social-links a {
    width: auto;
    height: auto;
    border: 0;
    font-size: 16px;
  }

  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 58px;
    padding: 10px 0;
  }

  body[data-current="home"] .header {
    background: #fff;
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
  }

  body[data-current="home"] .header.is-scrolled {
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  body[data-current="home"] .nav-wrap {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu-toggle {
    display: inline-flex;
    position: static;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    height: 42px;
    min-height: 38px;
    border: 1px solid rgba(11, 73, 214, 0.28);
    border-radius: 4px;
    background: linear-gradient(135deg, #fff, #f5f9ff);
    padding: 0;
    color: var(--ink);
    box-shadow: 0 8px 18px rgba(8, 22, 51, 0.08);
  }

  body[data-current="home"] .menu-toggle {
    border-color: rgba(11, 73, 214, 0.28);
    background: linear-gradient(135deg, #fff, #f5f9ff);
    box-shadow: 0 8px 18px rgba(8, 22, 51, 0.08);
  }

  body[data-current="home"] .menu-toggle span {
    background: var(--blue);
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--blue);
  }

  .nav-brand {
    max-width: calc(100% - 108px);
  }

  .nav-brand img {
    width: min(168px, calc(100vw - 156px));
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .mobile-service-search {
    display: block;
    flex: none;
    width: auto;
    margin: 4px 18px 10px;
  }

  .mobile-service-search.site-search.is-expanded {
    width: auto;
  }

  .mobile-service-search.site-search.is-expanded .site-search-toggle {
    display: none;
  }

  .mobile-service-search .site-search-toggle {
    width: 100%;
    border-radius: 8px;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    color: var(--ink);
    font-weight: 700;
  }

  .mobile-service-search .site-search-toggle::after {
    content: "Search services";
    color: var(--ink);
    font-size: 15px;
  }

  .mobile-service-search .site-search-control {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 8px;
    box-shadow: none;
  }

  .mobile-service-search .service-search-results {
    position: static;
    width: 100%;
    max-height: 250px;
    margin-top: 8px;
    box-shadow: none;
  }

  body.mobile-menu-open {
    overflow: hidden;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: block;
    pointer-events: none;
    background: rgba(0, 6, 18, 0.68);
    opacity: 0;
    transition: opacity 0.24s ease;
  }

  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: block;
    width: 50vw;
    padding: 64px 16px 24px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 34px rgba(8, 22, 51, 0.2);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-open .mobile-menu-backdrop {
    pointer-events: auto;
    opacity: 1;
  }

  .mobile-menu-open .mobile-menu-panel {
    transform: translateX(0);
  }

  .mobile-menu-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    color: var(--ink);
    background: transparent;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  }

  .mobile-menu-close:hover,
  .mobile-menu-toggle:hover {
    transform: none;
  }

  .mobile-menu-list {
    display: grid;
  }

  .mobile-menu-link,
  .mobile-submenu a {
    width: 100%;
    border: 0;
    border-bottom: 1px solid #edf0f5;
    color: #101827;
    background: transparent;
    text-align: left;
    text-decoration: none;
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 13px 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      padding-left 0.2s ease;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:focus-visible,
  .mobile-menu-link.is-current {
    color: var(--blue);
    background: rgba(11, 73, 214, 0.06);
    box-shadow: inset 3px 0 0 var(--blue);
    padding-left: 10px;
    outline: 0;
  }

  .mobile-menu-link:hover span::before,
  .mobile-menu-link:focus-visible span::before {
    color: var(--blue);
  }

  .mobile-menu-toggle span::before {
    content: ">";
    display: inline-block;
    color: #9099a8;
    font-size: 17px;
    font-weight: 400;
    transition: transform 0.2s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] span::before {
    transform: rotate(-90deg);
  }

  .mobile-submenu {
    display: none;
  }

  .mobile-menu-section.is-open > .mobile-submenu {
    display: grid;
  }

  .mobile-submenu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 0;
    color: #5d6473;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    transition:
      color 0.2s ease,
      background-color 0.2s ease,
      box-shadow 0.2s ease,
      padding-left 0.2s ease;
  }

  .mobile-submenu a:hover,
  .mobile-submenu a:focus-visible {
    color: var(--blue);
    background: rgba(11, 73, 214, 0.05);
    box-shadow: inset 3px 0 0 rgba(11, 73, 214, 0.75);
    padding-left: 10px;
    outline: 0;
  }

  .mobile-category-list {
    padding-left: 12px;
  }

  .mobile-category-toggle {
    min-height: 48px;
    color: #303849;
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-service-list {
    padding-left: 14px;
  }

  .mobile-service-list a {
    min-height: 40px;
    color: #687284;
    font-size: 13px;
  }

  .field-grid,
  .card-grid,
  .reach-grid,
  .certifications,
  .core-service-grid,
  .service-page-grid,
  .content-grid,
  .process-grid,
  .service-section-grid,
  .service-use-cases,
  .catalog-grid,
  .service-directory-grid,
  .career-feature-grid,
  .career-grid,
  .about-value-grid,
  .about-next {
    grid-template-columns: 1fr;
  }

  .career-grid article {
    aspect-ratio: auto;
    min-height: 230px;
  }

  .service-cta {
    display: block;
  }

  .service-page-card {
    aspect-ratio: auto;
    min-height: 220px;
  }

  .service-page-cta .shell {
    display: block;
  }

  .service-page-cta .button {
    margin-top: 18px;
  }

  .service-cta .button {
    margin-top: 18px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 30px;
    line-height: 1.12;
  }

  .hero,
  .inner-hero,
  .about-hero,
  .service-hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 20px;
    gap: 20px;
  }

  .home-hero {
    margin-top: 0;
    padding: 30px 0 26px;
    background:
      radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.42), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(245, 249, 255, 0.3)),
      url("../assets/Hero%20background%20image.webp") 38% top / auto 100% no-repeat !important;
  }

  .home-hero::after {
    height: 18%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 96%);
  }

  .brands {
    position: relative;
    background: #fff;
  }

  .home-hero .hero-inner {
    gap: 24px;
  }

  .home-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .home-hero .lead {
    font-size: 16px;
  }

  .home-hero .hero-actions {
    flex-wrap: wrap;
    margin: 24px 0 28px;
  }

  .home-hero .hero-actions .button {
    min-height: 50px;
    padding: 0 22px;
    font-size: 15px;
  }

  .about-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .about-visual {
    width: min(100%, 420px);
    min-height: auto;
  }

  .about-copy .lead,
  .about-story p,
  .about-value-grid p,
  .about-expertise p:not(.eyebrow),
  .about-next p {
    text-align: left;
  }

  .about-story article,
  .about-story aside,
  .about-expertise,
  .about-next article {
    padding: 22px;
  }

  .about-visual-badge {
    right: 14px;
    bottom: 14px;
    padding: 14px;
  }

  .about-visual-badge strong {
    font-size: 28px;
  }

  .hero-enquiry-form {
    padding: 20px 16px;
  }

  .home-hero .hero-enquiry-form {
    padding: 22px 16px;
  }

  .hero-enquiry-form h2 {
    font-size: 24px;
  }

  .lead {
    font-size: 15px;
    line-height: 1.55;
  }

  .feature-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
    padding-bottom: 0;
  }

  .home-hero .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 10px;
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-hero .mini-feature,
  .home-hero .mini-feature + .mini-feature {
    border-left: 0;
    padding: 10px 8px;
  }

  .brand-row {
    gap: 18px;
  }

  .brand-logo {
    width: 124px;
    flex-basis: 124px;
    min-height: 94px;
    gap: 7px;
    padding: 0;
  }

  .brand-logo img {
    width: 104px;
    height: 52px;
  }

  .brand-logo span {
    font-size: 11px;
    line-height: 1.2;
  }

  .mini-feature {
    display: grid;
    align-content: center;
    justify-items: center;
    min-width: 0;
    min-height: 92px;
    margin-bottom: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(8, 22, 51, 0.06);
    text-align: center;
  }

  .mini-feature i {
    margin-bottom: 7px;
    font-size: 15px;
  }

  .mini-feature strong {
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.2;
  }

  .mini-feature span {
    line-height: 1.3;
    font-size: 11px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  /* Mobile technology partners section. */
  .technology-partners {
    padding: 30px 0 34px;
  }

  .technology-partners-intro {
    margin-bottom: 18px;
  }

  .technology-partners-intro p {
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.04em;
  }

  .technology-partners-intro h2 {
    font-size: 28px;
    line-height: 1.18;
  }

  .technology-partners-intro span {
    display: block;
    font-size: 14px;
    line-height: 1.55;
  }

  .technology-partners-panel {
    padding: 16px;
  }

  .technology-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 16px;
    padding: 0;
    overflow: visible;
  }

  .technology-tab {
    width: 100%;
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.15;
    white-space: normal;
  }

  .technology-tab-panels {
    padding-top: 16px;
  }

  .technology-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .technology-logo-grid li {
    min-height: 78px;
    padding: 10px;
  }

  .technology-logo-grid img {
    max-height: 44px;
  }

  .hero-brand {
    flex-wrap: wrap;
    gap: 7px;
    max-width: 100%;
    padding: 9px 10px;
    font-size: 28px;
    line-height: 1.1;
  }

  .hero-brand::after {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(124, 242, 255, 0.14);
  }

  .section-heading h2,
  .inner-hero h1 {
    font-size: 28px;
    line-height: 1.18;
  }

  .solutions,
  .why,
  .core-services,
  .service-directory,
  .solutions-catalog {
    padding-top: 26px;
    padding-bottom: 28px;
  }

  .testimonials-section {
    padding: 34px 0 24px;
  }

  .testimonial-marquee {
    padding-bottom: 16px;
  }

  .testimonial-marquee::before,
  .testimonial-marquee::after {
    width: 32px;
  }

  .testimonial-track {
    gap: 12px;
    animation-duration: 116s;
  }

  .testimonial-card {
    min-height: auto;
    width: min(290px, calc(100vw - 58px));
    flex-basis: min(290px, calc(100vw - 58px));
    padding: 20px 18px;
  }

  .testimonial-person {
    min-height: auto;
  }

  .testimonial-card p {
    font-size: 13px;
  }

  .testimonial-mark {
    right: 14px;
    font-size: 60px;
  }

  .partner-credentials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto 18px;
    border-radius: 10px;
  }

  .partner-credential,
  .partner-credential:nth-child(2n),
  .partner-credential:last-child {
    grid-column: auto;
    flex-direction: column;
    gap: 7px;
    min-height: 88px;
    padding: 11px 6px;
    border-right: 1px solid rgba(8, 22, 51, 0.11);
    border-bottom: 0;
  }

  .partner-credential:last-child {
    border-right: 0;
  }

  .credential-mark {
    width: 38px;
    height: 28px;
    flex: 0 0 28px;
  }

  .aws-mark img {
    width: 36px;
  }

  .microsoft-mark img {
    width: 26px;
  }

  .outline-mark {
    width: 32px;
    height: 34px;
    font-size: 15px;
  }

  .outline-mark img {
    width: 14px;
    height: 14px;
  }

  .india-mark {
    width: 34px;
    height: 22px;
  }

  .partner-credential strong,
  .partner-credential > div > span {
    text-align: center;
  }

  .partner-credential strong {
    font-size: 13px;
  }

  .partner-credential > div > span {
    margin-top: 2px;
    font-size: 11px;
  }

  .faq-section {
    padding: 24px 0 36px;
  }

  .faq-layout {
    gap: 18px;
  }

  .faq-intro {
    padding: 22px;
  }

  .faq-intro h2 {
    font-size: 25px;
  }

  .faq-list summary {
    min-height: 54px;
    padding: 15px 48px 15px 16px;
    font-size: 15px;
  }

  .faq-list details p {
    padding: 14px 16px 18px;
    font-size: 14px;
  }

  #chatbot-character {
    right: 14px;
    bottom: 14px;
    display: flex !important;
    z-index: 75;
  }

  .character {
    width: 54px;
    height: 76px;
  }

  .speech-bubble {
    display: none;
  }

  /* Mobile chatbot sizing and stacked layout. */
  #chatbot-window {
    right: 14px;
    bottom: 92px;
    z-index: 75;
    width: min(330px, calc(100vw - 28px));
    height: min(430px, calc(100vh - 128px));
    max-height: min(430px, calc(100vh - 128px));
  }

  #chatbot-body {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    min-height: auto;
    overflow-y: auto;
  }

  .chat-home-panel {
    flex: 0 0 auto;
    gap: 8px;
    padding: 10px 12px 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 73, 214, 0.1);
  }

  .chat-message-panel {
    flex: 1 1 auto;
    min-height: 0;
    padding: 10px 12px 12px;
  }

  .chat-thread {
    max-height: none;
  }

  .chat-start-button {
    position: static;
    flex-shrink: 0;
    margin-bottom: 2px;
  }

  .sticky-whatsapp {
    display: none !important;
  }

  .hero-actions,
  .form-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .stat,
  .why-card {
    margin-bottom: 18px;
  }

  .stat {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-columns {
    grid-template-columns: 1fr 1fr;
    margin-top: 24px;
  }

  .footer-legal-links {
    margin-top: 10px;
  }

  .cta-band .shell {
    display: block;
  }

  .cta-band .button {
    margin-top: 18px;
  }
}

@media (max-width: 520px) {
  .home-hero .feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .home-hero .mini-feature,
  .home-hero .mini-feature + .mini-feature {
    min-height: 68px;
    padding: 8px 6px;
    text-align: center;
  }

  .home-hero .mini-feature i {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .home-hero .mini-feature strong {
    margin-bottom: 2px;
    font-size: 11px;
  }

  .home-hero .mini-feature span {
    font-size: 9.5px;
    line-height: 1.2;
  }

  .technology-partners {
    padding: 26px 0 30px;
  }

  .technology-partners-panel {
    padding: 12px;
  }

  .technology-tabs {
    gap: 7px;
    margin-bottom: 14px;
  }

  .technology-tab {
    min-height: 40px;
    padding: 0 8px;
    font-size: 12px;
  }

  .technology-logo-grid {
    gap: 7px;
  }

  .technology-logo-grid li {
    min-height: 72px;
    padding: 9px;
  }

  .technology-logo-grid img {
    max-height: 40px;
  }

  #chatbot-window {
    bottom: 86px;
    height: min(420px, calc(100vh - 116px));
    max-height: min(420px, calc(100vh - 116px));
  }

  .chat-home-panel {
    padding: 9px 10px 12px;
  }

  .chat-home-card {
    grid-template-columns: 30px 1fr;
    gap: 8px;
    padding: 9px;
  }

  .chat-agent-avatar {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .chat-home-card strong {
    font-size: 12px;
  }

  .chat-home-card p,
  .chat-bubble {
    font-size: 11px;
  }

  .chat-start-button {
    min-height: 36px;
  }
}
/* Theme toggle and dark mode */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(11, 73, 214, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(8, 22, 51, 0.08);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--blue);
  border-color: rgba(11, 73, 214, 0.36);
  box-shadow: 0 16px 30px rgba(11, 73, 214, 0.16);
  transform: translateY(-1px);
  outline: 0;
}

.theme-toggle i {
  color: var(--blue);
  font-size: 14px;
}

.mobile-theme-toggle {
  padding-bottom: 12px;
  border-bottom: 1px solid #edf0f5;
}

.mobile-theme-toggle .theme-toggle {
  width: 100%;
  min-height: 46px;
}

:root[data-theme="dark"] {
  --navy: #071225;
  --ink: #edf5ff;
  --muted: #aab8cc;
  --line: #263754;
  --soft: #111d31;
  --blue: #6aa7ff;
  --cyan: #38d5ff;
  --white: #0b1424;
  --panel: #101b2e;
  --heading-gradient: linear-gradient(100deg, #ffffff 0%, #8ab8ff 54%, #4edcff 100%);
  --heading-accent: linear-gradient(90deg, #6aa7ff, #38d5ff);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  --blue-glow: 0 18px 45px rgba(80, 145, 255, 0.2);
  --soft-glow: 0 0 0 1px rgba(91, 213, 255, 0.13), 0 18px 44px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] body {
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 213, 255, 0.13), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(106, 167, 255, 0.16), transparent 28%),
    #07101f;
}

:root[data-theme="dark"] .header,
:root[data-theme="dark"] .nav-wrap,
:root[data-theme="dark"] .mobile-menu-panel,
:root[data-theme="dark"] .mega-menu,
:root[data-theme="dark"] .site-search-control,
:root[data-theme="dark"] .service-search-results,
:root[data-theme="dark"] .cookie-preferences,
:root[data-theme="dark"] .chatbot-window {
  color: var(--ink);
  border-color: rgba(126, 164, 214, 0.22);
  background: rgba(10, 20, 36, 0.96);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] .header.is-scrolled .nav-wrap,
:root[data-theme="dark"] body[data-current="home"] .header.is-scrolled .nav-wrap {
  border-color: rgba(126, 164, 214, 0.26);
  background: rgba(10, 20, 36, 0.96);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
}

@media (min-width: 821px) {
  :root[data-theme="dark"] .header,
  :root[data-theme="dark"] body[data-current="home"] .header,
  :root[data-theme="dark"] body[data-current="home"] .header.is-scrolled {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
  }
}

:root[data-theme="dark"] .theme-toggle {
  color: #edf5ff;
  border-color: rgba(126, 164, 214, 0.28);
  background: rgba(16, 30, 52, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .nav-link,
:root[data-theme="dark"] .mobile-menu-link,
:root[data-theme="dark"] .mobile-submenu a,
:root[data-theme="dark"] .service-category-link,
:root[data-theme="dark"] .service-panel a,
:root[data-theme="dark"] .footer a {
  color: #dce8f8;
}

:root[data-theme="dark"] .nav-link:hover,
:root[data-theme="dark"] .nav-link.is-current,
:root[data-theme="dark"] .mobile-menu-link:hover,
:root[data-theme="dark"] .mobile-menu-link:focus-visible,
:root[data-theme="dark"] .mobile-menu-link.is-current,
:root[data-theme="dark"] .mobile-submenu a:hover,
:root[data-theme="dark"] .mobile-submenu a:focus-visible,
:root[data-theme="dark"] .footer a:hover {
  color: var(--blue);
}

:root[data-theme="dark"] .topbar,
:root[data-theme="dark"] .footer {
  background: linear-gradient(135deg, #06101f, #0c1b33);
}

:root[data-theme="dark"] .hero,
:root[data-theme="dark"] .home-hero,
:root[data-theme="dark"] .page-hero,
:root[data-theme="dark"] .about-hero,
:root[data-theme="dark"] .service-hero,
:root[data-theme="dark"] .contact-hero,
:root[data-theme="dark"] .career-hero,
:root[data-theme="dark"] .solutions-hero,
:root[data-theme="dark"] .testimonials-section,
:root[data-theme="dark"] .faq-section,
:root[data-theme="dark"] .technology-partners,
:root[data-theme="dark"] .brands,
:root[data-theme="dark"] .feature-band,
:root[data-theme="dark"] .cta-band,
:root[data-theme="dark"] .service-page-cta,
:root[data-theme="dark"] .policy-page,
:root[data-theme="dark"] .policy-section {
  color: var(--ink);
  border-color: rgba(126, 164, 214, 0.18);
  background:
    radial-gradient(circle at 18% 10%, rgba(56, 213, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #0a1424, #07101f);
}

:root[data-theme="dark"] .solution-card,
:root[data-theme="dark"] .why-card,
:root[data-theme="dark"] .core-service-grid article,
:root[data-theme="dark"] .service-page-card,
:root[data-theme="dark"] .career-card,
:root[data-theme="dark"] .career-feature,
:root[data-theme="dark"] .about-value-grid article,
:root[data-theme="dark"] .about-next article,
:root[data-theme="dark"] .testimonial-card,
:root[data-theme="dark"] .reach-card,
:root[data-theme="dark"] .map-card,
:root[data-theme="dark"] .branch-office-card,
:root[data-theme="dark"] .contact-side,
:root[data-theme="dark"] .contact-form,
:root[data-theme="dark"] .enquiry-card,
:root[data-theme="dark"] .hero-enquiry,
:root[data-theme="dark"] .catalog-card,
:root[data-theme="dark"] .faq-list details,
:root[data-theme="dark"] .partner-credentials,
:root[data-theme="dark"] .technology-partners-panel,
:root[data-theme="dark"] .technology-logo-grid li,
:root[data-theme="dark"] .brand-logo,
:root[data-theme="dark"] .mini-feature,
:root[data-theme="dark"] .home-hero .feature-strip,
:root[data-theme="dark"] .office-selector,
:root[data-theme="dark"] .service-directory-cta,
:root[data-theme="dark"] .policy-card,
:root[data-theme="dark"] .content-card {
  color: var(--ink);
  border-color: rgba(126, 164, 214, 0.2);
  background:
    linear-gradient(180deg, rgba(18, 32, 54, 0.98), rgba(12, 23, 41, 0.98)) padding-box,
    linear-gradient(145deg, rgba(106, 167, 255, 0.26), rgba(56, 213, 255, 0.12)) border-box;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

:root[data-theme="dark"] h1,
:root[data-theme="dark"] h2,
:root[data-theme="dark"] h3,
:root[data-theme="dark"] h4,
:root[data-theme="dark"] strong,
:root[data-theme="dark"] .section-heading h2,
:root[data-theme="dark"] .hero-copy h1,
:root[data-theme="dark"] .cookie-preferences-copy h2,
:root[data-theme="dark"] .cookie-panel-heading h2 {
  color: #f5f9ff;
}

:root[data-theme="dark"] p,
:root[data-theme="dark"] li,
:root[data-theme="dark"] em,
:root[data-theme="dark"] .lead,
:root[data-theme="dark"] .section-heading p,
:root[data-theme="dark"] .testimonial-card p,
:root[data-theme="dark"] .form-disclaimer,
:root[data-theme="dark"] .partner-credential > div > span,
:root[data-theme="dark"] .mobile-service-list a,
:root[data-theme="dark"] .service-search-empty {
  color: var(--muted);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] select,
:root[data-theme="dark"] textarea {
  color: #edf5ff;
  border-color: rgba(126, 164, 214, 0.25);
  background: rgba(7, 16, 31, 0.92);
}

:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
  color: #8291a8;
}

:root[data-theme="dark"] input:focus,
:root[data-theme="dark"] select:focus,
:root[data-theme="dark"] textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(106, 167, 255, 0.18);
  outline: 0;
}

:root[data-theme="dark"] .button.secondary,
:root[data-theme="dark"] .cookie-secondary,
:root[data-theme="dark"] .technology-tab,
:root[data-theme="dark"] .service-tags a {
  color: #e9f2ff;
  border-color: rgba(126, 164, 214, 0.24);
  background: rgba(15, 29, 51, 0.88);
}

:root[data-theme="dark"] .button.primary,
:root[data-theme="dark"] .technology-tab.is-active,
:root[data-theme="dark"] .chat-bubble.user {
  color: #ffffff;
  background: linear-gradient(135deg, #1e6dff, #10bde8);
}

:root[data-theme="dark"] .service-search-option:hover,
:root[data-theme="dark"] .service-search-option.is-active,
:root[data-theme="dark"] .technology-tab:hover,
:root[data-theme="dark"] .mobile-menu-link:hover,
:root[data-theme="dark"] .mobile-submenu a:hover {
  background: rgba(106, 167, 255, 0.12);
}

:root[data-theme="dark"] .brand-scroller::before,
:root[data-theme="dark"] .testimonial-marquee::before {
  background: linear-gradient(90deg, #0a1424, rgba(10, 20, 36, 0));
}

:root[data-theme="dark"] .brand-scroller::after,
:root[data-theme="dark"] .testimonial-marquee::after {
  background: linear-gradient(270deg, #07101f, rgba(7, 16, 31, 0));
}

:root[data-theme="dark"] img {
  filter: brightness(0.94) contrast(1.04);
}

:root[data-theme="dark"] .nav-brand img,
:root[data-theme="dark"] .footer-about img,
:root[data-theme="dark"] .brand-logo img,
:root[data-theme="dark"] .technology-logo-grid img,
:root[data-theme="dark"] .credential-mark img,
:root[data-theme="dark"] iframe {
  filter: none;
}

:root[data-theme="dark"] .technology-logo-grid li,
:root[data-theme="dark"] .credential-mark {
  background: rgba(255, 255, 255, 0.92);
}

:root[data-theme="dark"] .brand-logo {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .brand-logo img {
  filter: none;
  mix-blend-mode: normal;
}

:root[data-theme="dark"] .chat-bubble.bot,
:root[data-theme="dark"] .cookie-option {
  color: var(--ink);
  border-color: rgba(126, 164, 214, 0.18);
  background: rgba(13, 25, 44, 0.94);
}

:root[data-theme="dark"] .footer-bottom {
  border-color: rgba(126, 164, 214, 0.16);
}

:root[data-theme="dark"] .home-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 213, 255, 0.16), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(106, 167, 255, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(4, 12, 25, 0.74) 0%, rgba(5, 15, 30, 0.58) 44%, rgba(5, 15, 30, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 14, 28, 0.34), rgba(7, 16, 31, 0.78)),
    url("../assets/Hero%20background%20image.webp") center -132px / cover no-repeat;
}

:root[data-theme="dark"] .home-hero::after {
  background: linear-gradient(180deg, rgba(7, 16, 31, 0), #07101f 92%);
}

@media (max-width: 820px) {
  :root[data-theme="dark"] .home-hero {
    background:
      radial-gradient(circle at 18% 16%, rgba(56, 213, 255, 0.16), transparent 34%),
      radial-gradient(circle at 78% 20%, rgba(106, 167, 255, 0.16), transparent 32%),
      linear-gradient(180deg, rgba(5, 14, 28, 0.66), rgba(7, 16, 31, 0.88)),
      url("../assets/Hero%20background%20image.webp") 38% top / auto 100% no-repeat !important;
  }

  :root[data-theme="dark"] .home-hero::after {
    background: linear-gradient(180deg, rgba(7, 16, 31, 0), #07101f 96%);
  }
}

/* Dark mode refinements */
:root[data-theme="dark"] .mega-menu-services,
:root[data-theme="dark"] .mega-menu-services .service-category-list,
:root[data-theme="dark"] .mega-menu-services .service-panel {
  border-color: rgba(126, 164, 214, 0.22);
  background: #0c1728;
}

:root[data-theme="dark"] .mega-menu-services .service-category-list {
  background: linear-gradient(180deg, #101d31, #0b1526);
}

:root[data-theme="dark"] .mega-menu-services .service-category-link,
:root[data-theme="dark"] .mega-menu-services .service-panel a {
  color: #edf5ff;
}

:root[data-theme="dark"] .mega-menu-services .service-category-link i,
:root[data-theme="dark"] .mega-menu-services .service-panel a i {
  color: var(--blue);
  border-color: rgba(106, 167, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .mega-menu-services .service-category:hover .service-category-link,
:root[data-theme="dark"] .mega-menu-services .service-category:focus-within .service-category-link,
:root[data-theme="dark"] .mega-menu-services
  .service-category-list:not(.has-active):not(:hover):not(:focus-within)
  .service-category:first-child
  .service-category-link,
:root[data-theme="dark"] .mega-menu-services
  .service-category-list:not(:hover):not(:focus-within)
  .service-category.is-active
  .service-category-link {
  color: #ffffff;
  background: rgba(106, 167, 255, 0.13);
  box-shadow:
    inset 3px 0 0 var(--blue),
    0 12px 28px rgba(0, 0, 0, 0.24);
}

:root[data-theme="dark"] .mega-menu-services .service-panel a:hover {
  color: #ffffff;
  background: rgba(106, 167, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(106, 167, 255, 0.2);
}

:root[data-theme="dark"] .mega-menu-services .service-category:hover .service-category-link i,
:root[data-theme="dark"] .mega-menu-services .service-category:focus-within .service-category-link i,
:root[data-theme="dark"] .mega-menu-services .service-panel a:hover i,
:root[data-theme="dark"] .mega-menu-services
  .service-category-list:not(.has-active):not(:hover):not(:focus-within)
  .service-category:first-child
  .service-category-link
  i,
:root[data-theme="dark"] .mega-menu-services
  .service-category-list:not(:hover):not(:focus-within)
  .service-category.is-active
  .service-category-link
  i {
  color: #ffffff;
  background: linear-gradient(135deg, #1e6dff, #10bde8);
}

:root[data-theme="dark"] .nav-brand {
  display: inline-flex;
}

:root[data-theme="dark"] .nav-brand img {
  display: block;
  width: clamp(150px, 16vw, 190px);
  height: auto;
  opacity: 0;
}

:root[data-theme="dark"] .nav-brand {
  background: url("../assets/logo-navbar-dark.webp") left center / contain no-repeat;
}

:root[data-theme="dark"] .hero-copy h1,
:root[data-theme="dark"] .page-hero h1,
:root[data-theme="dark"] .section-heading h2,
:root[data-theme="dark"] .about-hero h1,
:root[data-theme="dark"] .about-story h2,
:root[data-theme="dark"] .about-expertise h2,
:root[data-theme="dark"] .service-hero h1,
:root[data-theme="dark"] .service-section h2,
:root[data-theme="dark"] .solutions-hero h1,
:root[data-theme="dark"] .contact-hero h1,
:root[data-theme="dark"] .career-hero h1,
:root[data-theme="dark"] .policy-hero h1,
:root[data-theme="dark"] .policy-section h2 {
  text-shadow:
    0 0 10px rgba(106, 167, 255, 0.18),
    0 0 22px rgba(56, 213, 255, 0.1);
}

:root[data-theme="dark"] .solution-card h3,
:root[data-theme="dark"] .service-page-card h3,
:root[data-theme="dark"] .core-service-grid h3,
:root[data-theme="dark"] .catalog-card h3 {
  text-shadow: none;
}

:root[data-theme="dark"] .cookie-preferences-copy p,
:root[data-theme="dark"] .cookie-option strong,
:root[data-theme="dark"] .chat-bubble.bot,
:root[data-theme="dark"] .question-list .chat-bubble.user,
:root[data-theme="dark"] .service-search-option,
:root[data-theme="dark"] .mobile-category-toggle,
:root[data-theme="dark"] .mobile-menu-close,
:root[data-theme="dark"] .faq-list summary,
:root[data-theme="dark"] .office-selector label,
:root[data-theme="dark"] .checkbox,
:root[data-theme="dark"] .checkbox a,
:root[data-theme="dark"] .alert,
:root[data-theme="dark"] .form-status,
:root[data-theme="dark"] .topbar span,
:root[data-theme="dark"] .topbar strong,
:root[data-theme="dark"] .topbar em,
:root[data-theme="dark"] .footer-column h3,
:root[data-theme="dark"] .footer-about p,
:root[data-theme="dark"] .footer-bottom p {
  color: #edf5ff;
}

:root[data-theme="dark"] .cookie-option em,
:root[data-theme="dark"] .chat-message-panel,
:root[data-theme="dark"] .chatbot-subtitle {
  color: var(--muted);
}

:root[data-theme="dark"] .section-heading.reveal-on-scroll,
:root[data-theme="dark"] .section-heading.reveal-on-scroll.is-revealed {
  color: #edf5ff;
}

:root[data-theme="dark"] .section-heading::after {
  background: linear-gradient(90deg, #6aa7ff, #38d5ff);
  box-shadow:
    0 0 12px rgba(106, 167, 255, 0.26),
    0 0 22px rgba(56, 213, 255, 0.12);
}

:root[data-theme="dark"] .section-heading p {
  color: #bcd7ff;
  border-color: rgba(106, 167, 255, 0.28);
  background: rgba(106, 167, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .section-heading h2 {
  color: #ffffff;
}

:root[data-theme="dark"] .section-heading span {
  color: #b7c5d9;
}

:root[data-theme="dark"] .solutions,
:root[data-theme="dark"] .why,
:root[data-theme="dark"] .stats,
:root[data-theme="dark"] .why-grid,
:root[data-theme="dark"] .service-page-section,
:root[data-theme="dark"] .solutions-catalog,
:root[data-theme="dark"] .career-section,
:root[data-theme="dark"] .contact-section,
:root[data-theme="dark"] .about-story,
:root[data-theme="dark"] .about-values,
:root[data-theme="dark"] .about-expertise,
:root[data-theme="dark"] .about-next {
  color: var(--ink);
  border-color: rgba(126, 164, 214, 0.16);
  background:
    radial-gradient(circle at 15% 10%, rgba(56, 213, 255, 0.07), transparent 30%),
    linear-gradient(180deg, #0a1424, #07101f);
}

:root[data-theme="dark"] .solution-card,
:root[data-theme="dark"] .service-card,
:root[data-theme="dark"] .service-page-card,
:root[data-theme="dark"] .core-service-grid article,
:root[data-theme="dark"] .catalog-card,
:root[data-theme="dark"] .service-directory-grid article,
:root[data-theme="dark"] .career-card,
:root[data-theme="dark"] .career-feature,
:root[data-theme="dark"] .career-grid article {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 213, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(18, 32, 54, 0.98), rgba(11, 22, 39, 0.98)) padding-box,
    linear-gradient(145deg, rgba(106, 167, 255, 0.3), rgba(56, 213, 255, 0.1)) border-box;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .solution-card:hover,
:root[data-theme="dark"] .service-card:hover,
:root[data-theme="dark"] .service-page-card:hover,
:root[data-theme="dark"] .service-page-card:target,
:root[data-theme="dark"] .core-service-grid article:hover,
:root[data-theme="dark"] .catalog-card:hover,
:root[data-theme="dark"] .career-card:hover,
:root[data-theme="dark"] .career-feature:hover,
:root[data-theme="dark"] .career-grid article:hover {
  border-color: rgba(106, 167, 255, 0.42);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(106, 167, 255, 0.14),
    0 0 24px rgba(56, 213, 255, 0.1);
}

:root[data-theme="dark"] .solution-card::before,
:root[data-theme="dark"] .service-page-card::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 213, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(106, 167, 255, 0.08), rgba(7, 16, 31, 0));
  opacity: 1;
}

:root[data-theme="dark"] .solution-card h3,
:root[data-theme="dark"] .service-card h3,
:root[data-theme="dark"] .service-page-card h3,
:root[data-theme="dark"] .core-service-grid h3,
:root[data-theme="dark"] .catalog-card h3,
:root[data-theme="dark"] .career-card h3,
:root[data-theme="dark"] .career-feature h3,
:root[data-theme="dark"] .career-grid h2,
:root[data-theme="dark"] .service-directory-grid h2 {
  color: #ffffff;
}

:root[data-theme="dark"] .solution-card p,
:root[data-theme="dark"] .service-card p,
:root[data-theme="dark"] .service-page-card p,
:root[data-theme="dark"] .core-service-grid p,
:root[data-theme="dark"] .catalog-card p,
:root[data-theme="dark"] .career-card p,
:root[data-theme="dark"] .career-feature p,
:root[data-theme="dark"] .career-grid p,
:root[data-theme="dark"] .service-directory-grid p {
  color: #b7c5d9;
}

:root[data-theme="dark"] .solution-card a,
:root[data-theme="dark"] .service-page-card a,
:root[data-theme="dark"] .core-service-grid a,
:root[data-theme="dark"] .catalog-card a,
:root[data-theme="dark"] .career-grid a,
:root[data-theme="dark"] .service-directory-grid a {
  color: #8fc2ff;
}

:root[data-theme="dark"] .solution-card .symbol,
:root[data-theme="dark"] .service-card i,
:root[data-theme="dark"] .service-page-card i,
:root[data-theme="dark"] .core-service-grid i,
:root[data-theme="dark"] .catalog-card i,
:root[data-theme="dark"] .career-card i,
:root[data-theme="dark"] .career-feature i,
:root[data-theme="dark"] .career-grid i {
  color: #8fc2ff;
  background: rgba(106, 167, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .career-feature-grid .e-card {
  border: 1px solid rgba(106, 167, 255, 0.2);
  background: linear-gradient(135deg, #9b6a08, #c98214);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

:root[data-theme="dark"] .career-feature-grid .e-card.green {
  background: linear-gradient(135deg, #087543, #0b9d5c);
}

:root[data-theme="dark"] .career-feature-grid .infotop {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 16, 31, 0.34);
  backdrop-filter: blur(5px);
}

:root[data-theme="dark"] .career-feature-grid .icon {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

:root[data-theme="dark"] .career-feature-grid .name,
:root[data-theme="dark"] .career-feature-grid .description {
  color: #ffffff;
}

:root[data-theme="dark"] .career-feature-grid .bottom a {
  color: #ffffff;
  background: rgba(7, 16, 31, 0.58);
}

:root[data-theme="dark"] .inner-hero,
:root[data-theme="dark"] .legal-content,
:root[data-theme="dark"] .about-hero,
:root[data-theme="dark"] .about-values {
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(56, 213, 255, 0.07), transparent 28%),
    linear-gradient(180deg, #0a1424, #07101f);
}

:root[data-theme="dark"] .inner-hero h1,
:root[data-theme="dark"] .about-copy h1 {
  color: #ffffff;
  text-shadow:
    0 0 10px rgba(106, 167, 255, 0.18),
    0 0 22px rgba(56, 213, 255, 0.1);
}

:root[data-theme="dark"] .inner-hero .lead,
:root[data-theme="dark"] .about-copy .lead {
  color: #b7c5d9;
}

:root[data-theme="dark"] .eyebrow,
:root[data-theme="dark"] .about-copy .eyebrow {
  color: #bcd7ff;
  border-color: rgba(106, 167, 255, 0.28);
  background: rgba(106, 167, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 22px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .about-visual,
:root[data-theme="dark"] .about-story article,
:root[data-theme="dark"] .about-story aside,
:root[data-theme="dark"] .about-value-grid article,
:root[data-theme="dark"] .about-expertise,
:root[data-theme="dark"] .about-next article,
:root[data-theme="dark"] .legal-content article {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.22);
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 213, 255, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(18, 32, 54, 0.98), rgba(11, 22, 39, 0.98)) padding-box,
    linear-gradient(145deg, rgba(106, 167, 255, 0.28), rgba(56, 213, 255, 0.1)) border-box;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .about-story article::before,
:root[data-theme="dark"] .about-story aside::before {
  background: linear-gradient(135deg, rgba(106, 167, 255, 0.09), transparent 44%);
}

:root[data-theme="dark"] .about-story h2,
:root[data-theme="dark"] .about-value-grid h3,
:root[data-theme="dark"] .about-expertise h2,
:root[data-theme="dark"] .about-next h2,
:root[data-theme="dark"] .legal-content h2,
:root[data-theme="dark"] .legal-content strong {
  color: #ffffff;
}

:root[data-theme="dark"] .about-story p,
:root[data-theme="dark"] .about-value-grid p,
:root[data-theme="dark"] .about-expertise p:not(.eyebrow),
:root[data-theme="dark"] .about-next p,
:root[data-theme="dark"] .legal-content p,
:root[data-theme="dark"] .legal-content li {
  color: #b7c5d9;
}

:root[data-theme="dark"] .about-value-grid i,
:root[data-theme="dark"] .about-next i {
  color: #8fc2ff;
  background: rgba(106, 167, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

:root[data-theme="dark"] .about-visual-badge {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 16, 31, 0.72);
}

:root[data-theme="dark"] .service-tags a,
:root[data-theme="dark"] .service-tags span {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.24);
  background: rgba(15, 29, 51, 0.9);
}

:root[data-theme="dark"] .service-tags a:hover {
  color: #ffffff;
  border-color: rgba(106, 167, 255, 0.46);
  background: rgba(106, 167, 255, 0.14);
}

:root[data-theme="dark"] .legal-content a {
  color: #8fc2ff;
}

:root[data-theme="dark"] .legal-content ul {
  color: #b7c5d9;
}

:root[data-theme="dark"] .topbar-hours.is-closed .topbar-hours-time {
  color: #ff5252;
}

:root[data-theme="dark"] .topbar-hours em {
  color: rgba(237, 245, 255, 0.72);
}

:root[data-theme="dark"] .site-search-toggle,
:root[data-theme="dark"] .menu-toggle,
:root[data-theme="dark"] body[data-current="home"] .menu-toggle,
:root[data-theme="dark"] .mobile-service-search .site-search-toggle {
  color: #edf5ff;
  border-color: rgba(126, 164, 214, 0.28);
  background: linear-gradient(135deg, rgba(16, 30, 52, 0.96), rgba(10, 20, 36, 0.96));
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

:root[data-theme="dark"] .site-search-toggle i,
:root[data-theme="dark"] .site-search-control i,
:root[data-theme="dark"] .mobile-service-search .site-search-toggle::after {
  color: var(--blue);
}

:root[data-theme="dark"] .service-search-option {
  color: #edf5ff;
}

:root[data-theme="dark"] .service-search-empty {
  color: #aab8cc;
}

:root[data-theme="dark"] .mobile-theme-toggle,
:root[data-theme="dark"] .mobile-menu-link,
:root[data-theme="dark"] .mobile-submenu a {
  border-color: rgba(126, 164, 214, 0.18);
}

:root[data-theme="dark"] .mobile-menu-toggle span::before {
  color: #aab8cc;
}

:root[data-theme="dark"] .hero-enquiry-form,
:root[data-theme="dark"] .catalog-grid article,
:root[data-theme="dark"] .faq-intro,
:root[data-theme="dark"] .cta-band .shell,
:root[data-theme="dark"] .speech-bubble,
:root[data-theme="dark"] .chat-home-card,
:root[data-theme="dark"] #chatbot-window {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(18, 32, 54, 0.98), rgba(11, 22, 39, 0.98)) padding-box,
    linear-gradient(145deg, rgba(106, 167, 255, 0.28), rgba(56, 213, 255, 0.1)) border-box;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

:root[data-theme="dark"] .hero-enquiry::before {
  background: linear-gradient(135deg, rgba(56, 213, 255, 0.12), transparent 48%);
}

:root[data-theme="dark"] .hero-enquiry-form h2,
:root[data-theme="dark"] .catalog-grid h2,
:root[data-theme="dark"] .faq-intro h2,
:root[data-theme="dark"] .chat-panel-label,
:root[data-theme="dark"] .chat-home-card strong {
  color: #ffffff;
}

:root[data-theme="dark"] .catalog-grid a,
:root[data-theme="dark"] .faq-intro p:not(.eyebrow),
:root[data-theme="dark"] .chat-home-card p,
:root[data-theme="dark"] .speech-bubble {
  color: #b7c5d9;
}

:root[data-theme="dark"] .catalog-grid a:hover {
  color: #8fc2ff;
}

:root[data-theme="dark"] .contact-form input,
:root[data-theme="dark"] .contact-form select,
:root[data-theme="dark"] .contact-form textarea,
:root[data-theme="dark"] .hero-enquiry-form input,
:root[data-theme="dark"] .hero-enquiry-form select,
:root[data-theme="dark"] .hero-enquiry-form textarea,
:root[data-theme="dark"] .office-selector select {
  color: #edf5ff;
  border-color: rgba(126, 164, 214, 0.28);
  background: rgba(7, 16, 31, 0.92);
}

:root[data-theme="dark"] .reach-card span,
:root[data-theme="dark"] .map-card p,
:root[data-theme="dark"] .branch-office-card p,
:root[data-theme="dark"] .contact-form p,
:root[data-theme="dark"] .contact-form label,
:root[data-theme="dark"] .form-disclaimer {
  color: #b7c5d9;
}

:root[data-theme="dark"] .checkbox a:hover {
  color: #8fc2ff;
}

:root[data-theme="dark"] .alert-success {
  color: #b7f7cc;
  border-color: rgba(34, 197, 94, 0.3);
  background: rgba(22, 101, 52, 0.22);
}

:root[data-theme="dark"] .alert-danger {
  color: #fecaca;
  border-color: rgba(248, 113, 113, 0.3);
  background: rgba(127, 29, 29, 0.24);
}

:root[data-theme="dark"] .partner-credential {
  border-color: rgba(126, 164, 214, 0.16);
}

:root[data-theme="dark"] .outline-mark {
  color: #15223c;
  border-color: rgba(21, 34, 60, 0.8);
  background: rgba(255, 255, 255, 0.95);
}

:root[data-theme="dark"] #chatbot-body,
:root[data-theme="dark"] .chat-home-panel,
:root[data-theme="dark"] .chat-message-panel {
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 213, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #0c1728, #07101f);
}

:root[data-theme="dark"] .chat-home-panel {
  border-color: rgba(126, 164, 214, 0.16);
}

:root[data-theme="dark"] .speech-bubble::after {
  border-left-color: #122036;
}

:root[data-theme="dark"] .speech-bubble::before {
  color: #8fc2ff;
}

:root[data-theme="dark"] .question-list .chat-bubble.user {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.24);
  background: rgba(106, 167, 255, 0.14);
}

:root[data-theme="dark"] .cookie-toggle {
  background: #334763;
}

:root[data-theme="dark"] .cookie-option.is-required {
  background: rgba(106, 167, 255, 0.12);
}

/* Remove boxed dark backgrounds from shell-level page sections. */
:root[data-theme="dark"] .inner-hero,
:root[data-theme="dark"] .legal-content,
:root[data-theme="dark"] .about-hero,
:root[data-theme="dark"] .about-values,
:root[data-theme="dark"] .about-expertise,
:root[data-theme="dark"] .about-next,
:root[data-theme="dark"] .career-section,
:root[data-theme="dark"] .contact-section,
:root[data-theme="dark"] .solutions-catalog,
:root[data-theme="dark"] .service-page-section {
  background: transparent;
  border-color: transparent;
}

:root[data-theme="dark"] .legal-content article {
  max-width: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .legal-content h2,
:root[data-theme="dark"] .legal-content strong {
  color: #ffffff;
}

:root[data-theme="dark"] .legal-content p,
:root[data-theme="dark"] .legal-content li {
  color: #b7c5d9;
}

/* Eyebrows should read as labels, not pills. */
:root[data-theme="dark"] .eyebrow,
:root[data-theme="dark"] .about-copy .eyebrow,
:root[data-theme="dark"] .section-heading p,
:root[data-theme="dark"] .service-page-cta .eyebrow,
:root[data-theme="dark"] .hero-enquiry-form .eyebrow,
:root[data-theme="dark"] .home-hero .hero-enquiry-form .eyebrow,
:root[data-theme="dark"] .faq-intro .eyebrow {
  display: block;
  width: fit-content;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #8fc2ff;
  background: transparent;
  box-shadow: none;
  letter-spacing: 0.04em;
}

:root[data-theme="dark"] .section-heading p {
  margin-left: auto;
  margin-right: auto;
}

:root[data-theme="dark"] .home-hero .feature-strip {
  border-color: rgba(126, 164, 214, 0.16);
  background: rgba(7, 16, 31, 0.36);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

:root[data-theme="dark"] .home-hero .mini-feature {
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .home-hero .mini-feature + .mini-feature {
  border-left-color: rgba(126, 164, 214, 0.16);
}

:root[data-theme="dark"] .mini-feature i {
  color: #8fc2ff;
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .mini-feature strong {
  color: #ffffff;
}

:root[data-theme="dark"] .mini-feature span {
  color: #aab8cc;
}

:root[data-theme="dark"] .credential-mark {
  overflow: hidden;
  width: 52px;
  height: 42px;
  flex-basis: 52px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 8px;
  padding: 6px;
  background: #ffffff;
  box-shadow: none;
}

:root[data-theme="dark"] .credential-mark img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

:root[data-theme="dark"] .outline-mark {
  width: 42px;
  height: 42px;
  flex-basis: 52px;
  padding: 8px;
  border-radius: 999px;
}

:root[data-theme="dark"] .outline-mark img {
  width: 100%;
  height: 100%;
}

:root[data-theme="dark"] .india-mark {
  width: 52px;
  height: 34px;
  flex-basis: 52px;
  padding: 0;
  border-radius: 6px;
}

:root[data-theme="dark"] .microsoft-mark,
:root[data-theme="dark"] .india-mark {
  border: 0;
  padding: 0;
  background: transparent;
}

:root[data-theme="dark"] .microsoft-mark img {
  width: 32px;
  height: 32px;
}

:root[data-theme="dark"] .india-mark {
  overflow: visible;
  height: 32px;
}

:root[data-theme="dark"] .india-mark img {
  border-radius: 4px;
  box-shadow: none;
}

/* Align solution and internship/career icons with service-card icon boxes. */
.solution-card .symbol,
.career-card i,
.career-feature i,
.career-grid i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(11, 73, 214, 0.08);
  line-height: 1;
}

.solution-card .symbol {
  font-size: 24px;
}

.career-card i,
.career-feature i,
.career-grid i {
  font-size: 22px;
}

:root[data-theme="dark"] .solution-card .symbol,
:root[data-theme="dark"] .career-card i,
:root[data-theme="dark"] .career-feature i,
:root[data-theme="dark"] .career-grid i {
  color: #8fc2ff;
  border: 1px solid rgba(106, 167, 255, 0.18);
  background: rgba(106, 167, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.theme-toggle {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  gap: 0;
  padding: 0;
  border-radius: 999px;
}

.theme-toggle i {
  margin: 0;
}

.mobile-header-theme-toggle {
  display: none;
}

.core-service-grid article > i,
.catalog-grid article > i,
.catalog-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  margin-bottom: 16px;
  border-radius: 10px;
  color: var(--blue);
  background: rgba(11, 73, 214, 0.08);
  font-size: 22px;
  line-height: 1;
}

:root[data-theme="dark"] .core-service-grid article > i,
:root[data-theme="dark"] .catalog-grid article > i,
:root[data-theme="dark"] .catalog-card i {
  color: #8fc2ff;
  border: 1px solid rgba(106, 167, 255, 0.18);
  background: rgba(106, 167, 255, 0.12);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

@media (max-width: 820px) {
  :root[data-theme="dark"] .header,
  :root[data-theme="dark"] body[data-current="home"] .header,
  :root[data-theme="dark"] body[data-current="home"] .header.is-scrolled {
    background: var(--navy);
    border-bottom-color: rgba(126, 164, 214, 0.22);
  }

  .nav-wrap {
    justify-content: flex-start;
  }

  :root[data-theme="dark"] body[data-current="home"] .nav-wrap {
    background: var(--navy);
  }

  .mobile-header-theme-toggle {
    display: inline-flex;
    margin-left: auto;
    margin-right: 6px;
  }

  .menu-toggle {
    margin-left: 0;
  }

  .mobile-theme-toggle {
    display: none;
  }

  :root[data-theme="dark"] .nav-brand img {
    width: min(168px, calc(100vw - 156px));
  }
}

@media (min-width: 641px) and (max-width: 820px) {
  .footer-grid {
    gap: 22px;
  }

  .footer-about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px;
  }

  .footer-about h2 {
    margin-bottom: 8px;
  }

  .footer-about p {
    max-width: 430px;
  }

  .footer-social-links {
    margin-top: 0;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
  }

  .footer-legal-links {
    justify-content: flex-end;
    margin-top: 0;
  }
}

/* Cookie preferences dark-mode polish. */
:root[data-theme="dark"] .cookie-preferences {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.24);
  background:
    radial-gradient(circle at 8% 0%, rgba(56, 213, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(17, 31, 53, 0.98), rgba(9, 18, 33, 0.98));
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

:root[data-theme="dark"] .cookie-preferences-icon {
  background: linear-gradient(145deg, #1e6dff, #10bde8);
  box-shadow:
    0 18px 38px rgba(16, 189, 232, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

:root[data-theme="dark"] .cookie-preferences-copy h2,
:root[data-theme="dark"] .cookie-panel-heading h2 {
  color: #ffffff;
}

:root[data-theme="dark"] .cookie-panel-heading span,
:root[data-theme="dark"] .cookie-preferences-copy a {
  color: #8fc2ff;
}

:root[data-theme="dark"] .cookie-preferences-copy p {
  color: #b7c5d9;
}

:root[data-theme="dark"] .cookie-preferences-actions .cookie-secondary,
:root[data-theme="dark"] .cookie-panel-actions .cookie-secondary {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.34);
  background: rgba(7, 16, 31, 0.72);
  box-shadow: none;
}

:root[data-theme="dark"] .cookie-preferences-actions .cookie-secondary:hover,
:root[data-theme="dark"] .cookie-panel-actions .cookie-secondary:hover {
  color: #ffffff;
  border-color: rgba(106, 167, 255, 0.58);
  background: rgba(106, 167, 255, 0.16);
}

:root[data-theme="dark"] .cookie-option {
  color: #edf5ff;
  border-color: rgba(106, 167, 255, 0.2);
  background: rgba(7, 16, 31, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

:root[data-theme="dark"] .cookie-option.is-required {
  border-color: rgba(56, 213, 255, 0.28);
  background: rgba(56, 213, 255, 0.09);
}

:root[data-theme="dark"] .cookie-option strong {
  color: #ffffff;
}

:root[data-theme="dark"] .cookie-option em {
  color: #aab8cc;
}

:root[data-theme="dark"] .cookie-toggle {
  background: #334763;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

:root[data-theme="dark"] .cookie-toggle::after {
  background: #edf5ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] .cookie-option input:checked + .cookie-toggle,
:root[data-theme="dark"] .cookie-option.is-required .cookie-toggle {
  background: linear-gradient(135deg, #1e6dff, #10bde8);
}



@media (max-width:768px){

  .topbar{
    padding:10px 14px;
  }

  .topbar-inner{
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:12px;
  }

  .topbar-group:first-child{
    display:flex !important;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }

  .topbar-group:first-child > *{
    min-height:auto;
  }

  .topbar-hours{
    display:flex;
    align-items:center;
    gap:6px;
    flex-wrap:wrap;
  }

  .topbar-group:last-child{
    display:flex;
    align-items:center;
    justify-content:flex-end;
  }

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

  .topbar-group > * + *::before{
    display:none;
  }

}



/* SERVICES MENU FIX */
/* FIX SUBMENU HOVER */
.mega-menu{
  overflow: visible !important;
}

.mega-menu-services .service-category{
  position: static !important;
}

.mega-menu-services .service-panel{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.15s ease;
}

.mega-menu-services .service-category:hover .service-panel,
.mega-menu-services .service-category:focus-within .service-panel{
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  display: grid !important;
}




