:root {
  --sb-blue: #00adef;
  --sb-blue-dark: #0073bb;
  --sb-blue-deep: #004f8c;
  --sb-navy: #111;
  --sb-navy-soft: #0b1a28;
  --sb-orange: #ffb800;
  --sb-orange-hover: #e6a600;
  --sb-cyan: #00adef;
  --sb-cyan-mid: #0095d9;
  --sb-text: #111;
  --sb-muted: #111;
  --sb-black: #000000;
  --sb-border: #d0e4f0;
  --sb-surface: #ebf5fa;
  --sb-white: #ffffff;
  --sb-gradient: linear-gradient(145deg, #00adef 0%, #0095d9 48%, #0073bb 100%);
  --sb-gradient-dark: linear-gradient(165deg,
      #0b3a5c 0%,
      #0073bb 42%,
      #0095d9 72%,
      #00adef 100%);
  --sb-gradient-soft: linear-gradient(145deg,
      #0073bb 0%,
      #0095d9 50%,
      #00adef 100%);
  --sb-glow-cyan: rgba(0, 173, 239, 0.32);
  --sb-glow-blue: rgba(0, 149, 217, 0.28);
  --sb-radius: 1rem;
  --sb-radius-lg: 1.5rem;
  --sb-btn-radius: 999px;
  --sb-shadow: 0 12px 40px rgba(0, 73, 140, 0.1);
  --sb-font-display: "Plus Jakarta Sans", sans-serif;
  --sb-font-body: "Plus Jakarta Sans", sans-serif;
  --sb-section-pad: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--sb-font-body);
  color: var(--sb-navy);
  background: var(--sb-white);
  font-weight: 500;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--sb-font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sb-navy);
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* Global Container Sizing: Minimum Width 1240px on Desktop */
@media (min-width: 1240px) {
  .container {
    min-width: 1240px;
  }
}

section,
.section-pad,
.metrics,
.case-studies,
.ai-section,
.testimonials,
.contact-faq {
  padding: var(--sb-section-pad) 0;
}

.section-label {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sb-blue);
  margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--sb-font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: var(--sb-navy);
    margin-bottom: 1rem;
    text-transform: capitalize;
}
.section-lead {
  color: var(--sb-navy);
  font-size: 1.05rem;
  max-width: 60rem;
}

.sb-navbar {
  padding: 0.65rem 0;
  z-index: 1040;
  overflow: visible;
  background-color: #000;
}

.sb-navbar .container-fluid,
.sb-navbar .navbar-collapse,
.sb-navbar .navbar-nav {
  overflow: visible;
}

.sb-navbar.sticky-top {
  top: 0;
}

.sb-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: 0;
}

.sb-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.sb-footer .sb-logo img {
  height: 60px;
}

.sb-nav .nav-link {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff !important;
  padding: 0.65rem 0.85rem !important;
  position: relative;
}

.sb-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.25rem;
  height: 2px;
  background: var(--sb-cyan);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.sb-nav .nav-link:hover::after,
.sb-nav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-sb-orange,
.btn-sb-blue,
.btn-sb-outline-light,
.btn-sb-white,
.btn-sb-ghost,
.btn-sb-dark,
.btn-sb-outline,
.btn-hero-cta,
.btn-service,
.btn-footer-cta {
  border-radius: var(--sb-btn-radius) !important;
}

.btn-sb-orange {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background: var(--sb-orange);
  color: #000000 !important;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.35rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-sb-orange:hover {
  text-decoration: none;
  background: var(--sb-orange-hover);
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.32);
}

.btn-sb-blue {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background: var(--sb-gradient);
  color: var(--sb-white) !important;
  border: none;
  font-family: inherit;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-sb-blue:hover {
  text-decoration: none;
  filter: brightness(1.06);
  color: var(--sb-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.35);
}

.btn-sb-outline-light {
  background: transparent;
  color: var(--sb-white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.btn-sb-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--sb-white);
  color: var(--sb-white) !important;
}

.btn-sb-outline {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background: transparent;
  color: var(--sb-blue) !important;
  border: 1.5px solid var(--sb-blue);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-sb-outline:hover {
  text-decoration: none;
  background: rgba(0, 173, 239, 0.08);
  color: var(--sb-blue) !important;
  transform: translateY(-1px);
}

.btn-sb-white {
  background: var(--sb-white) !important;
  color: var(--sb-navy) !important;
  border: none;
  font-weight: 700;
  padding: 0.8rem 1.6rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn-sb-white:hover,
.btn-sb-white:focus {
  background: var(--sb-orange) !important;
  color: #000000 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 184, 0, 0.35);
}

.btn-sb-ghost {
  background: transparent;
  color: var(--sb-white) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-weight: 700;
  padding: 0.8rem 1.6rem;
}

.btn-sb-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--sb-white) !important;
}

.btn-sb-dark {
  background: var(--sb-navy);
  color: var(--sb-white) !important;
  border: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.85rem 1.75rem;
}

.btn-sb-dark:hover {
  background: #000;
  color: var(--sb-white) !important;
}

/* Mega menu */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown>.nav-link {
  position: relative;
  z-index: 1041;
}

.mega-dropdown>.nav-link .bi-chevron-down {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-dropdown:hover>.nav-link .bi-chevron-down,
.mega-dropdown.show>.nav-link .bi-chevron-down {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  background: var(--sb-white);
  border-top: 1px solid var(--sb-border);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.1);
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 1030;
}

/* Invisible bridge so cursor can move from nav link into the panel */
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
  background: transparent;
}

.mega-dropdown:hover>.mega-menu,
.mega-dropdown.show>.mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 992px) {
  .mega-dropdown>.mega-menu {
    transition-delay: 0s;
  }

  .mega-dropdown:not(:hover):not(.show)>.mega-menu {
    transition-delay: 0.12s;
  }
}

.mega-menu .mega-intro,
.mega-menu .mega-about-nav a,
.mega-menu .mega-service-link,
.mega-menu .mega-industry-link,
.mega-menu .mega-portfolio-item,
.mega-menu .mega-ai-card,
.mega-menu .mega-featured,
.mega-menu .mega-divider>.row>[class*="col-"] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  transition-delay: 0s;
}

.mega-dropdown:hover>.mega-menu .mega-intro,
.mega-dropdown:hover>.mega-menu .mega-about-nav a,
.mega-dropdown:hover>.mega-menu .mega-service-link,
.mega-dropdown:hover>.mega-menu .mega-industry-link,
.mega-dropdown:hover>.mega-menu .mega-portfolio-item,
.mega-dropdown:hover>.mega-menu .mega-ai-card,
.mega-dropdown:hover>.mega-menu .mega-featured,
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"],
.mega-dropdown.show>.mega-menu .mega-intro,
.mega-dropdown.show>.mega-menu .mega-about-nav a,
.mega-dropdown.show>.mega-menu .mega-service-link,
.mega-dropdown.show>.mega-menu .mega-industry-link,
.mega-dropdown.show>.mega-menu .mega-portfolio-item,
.mega-dropdown.show>.mega-menu .mega-ai-card,
.mega-dropdown.show>.mega-menu .mega-featured,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"] {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.3s;
}

.mega-dropdown:hover>.mega-menu .mega-intro,
.mega-dropdown.show>.mega-menu .mega-intro {
  transition-delay: 0.04s;
}

.mega-dropdown:hover>.mega-menu .mega-featured,
.mega-dropdown.show>.mega-menu .mega-featured {
  transition-delay: 0.12s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(1) {
  transition-delay: 0.06s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(2) {
  transition-delay: 0.1s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(3) {
  transition-delay: 0.14s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(4) {
  transition-delay: 0.18s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(5),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(5) {
  transition-delay: 0.22s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(6),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(6) {
  transition-delay: 0.26s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(7),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(7) {
  transition-delay: 0.3s;
}

.mega-dropdown:hover>.mega-menu .mega-about-nav a:nth-child(8),
.mega-dropdown.show>.mega-menu .mega-about-nav a:nth-child(8) {
  transition-delay: 0.34s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) {
  transition-delay: 0.06s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) {
  transition-delay: 0.12s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) {
  transition-delay: 0.18s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(1),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(1),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-portfolio-item,
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-ai-card,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-portfolio-item,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-ai-card {
  transition-delay: 0.08s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(2),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(2) {
  transition-delay: 0.12s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(3),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(3) {
  transition-delay: 0.16s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(4),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-service-link:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(1) .mega-industry-link:nth-child(4) {
  transition-delay: 0.2s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(1),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(1),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-portfolio-item,
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-ai-card,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-portfolio-item,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-ai-card {
  transition-delay: 0.14s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(2),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(2) {
  transition-delay: 0.18s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(3),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(3) {
  transition-delay: 0.22s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(4),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-service-link:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(2) .mega-industry-link:nth-child(4) {
  transition-delay: 0.26s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(1),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(1),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-portfolio-item,
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-ai-card,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(1),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-portfolio-item,
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-ai-card {
  transition-delay: 0.2s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(2),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(2),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(2) {
  transition-delay: 0.24s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(3),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(3),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(3) {
  transition-delay: 0.28s;
}

.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(4),
.mega-dropdown:hover>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-service-link:nth-child(4),
.mega-dropdown.show>.mega-menu .mega-divider>.row>[class*="col-"]:nth-child(3) .mega-industry-link:nth-child(4) {
  transition-delay: 0.32s;
}

.mega-intro h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--sb-orange);
  display: inline-block;
  min-width: 5.5rem;
}

.mega-intro p {
  color: var(--sb-navy);
  font-size: 0.92rem;
  margin: 0.85rem 0 0;
  max-width: 16rem;
  line-height: 1.55;
  opacity: 0.85;
}

.mega-divider {
  position: relative;
}

@media (min-width: 992px) {
  .mega-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--sb-border);
  }

  .mega-divider {
    padding-left: 1.75rem;
  }
}

.mega-industry-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sb-navy);
  transition:
    color 0.2s ease,
    transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-industry-link:hover,
.mega-dropdown:hover>.mega-menu .mega-industry-link:hover,
.mega-dropdown.show>.mega-menu .mega-industry-link:hover {
  color: var(--sb-blue);
  transform: translateX(6px);
}

.mega-industry-link .bi {
  color: var(--sb-blue);
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-industry-link:hover .bi {
  transform: scale(1.12);
}

.mega-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sb-navy);
  transition:
    color 0.2s ease,
    transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-service-link:hover,
.mega-dropdown:hover>.mega-menu .mega-service-link:hover,
.mega-dropdown.show>.mega-menu .mega-service-link:hover {
  color: var(--sb-blue);
  transform: translateX(6px);
}

.mega-service-link .bi {
  color: var(--sb-blue);
  font-size: 1.15rem;
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  transition: transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-service-link:hover .bi {
  transform: scale(1.12);
}

.mega-portfolio-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background 0.2s ease;
  height: 100%;
}

.mega-portfolio-item:hover {
  background: var(--sb-surface);
}

.mega-portfolio-logo {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sb-white);
}

.mega-portfolio-logo.tone-blue {
  background: #00adef;
}

.mega-portfolio-logo.tone-red {
  background: #e03131;
}

.mega-portfolio-logo.tone-teal {
  background: #ffb800;
  color: #000;
}

.mega-portfolio-logo.tone-orange {
  background: #ffb800;
  color: #000;
}

.mega-portfolio-logo.tone-navy {
  background: #111;
}

.mega-portfolio-logo.tone-green {
  background: #2f9e44;
}

.mega-portfolio-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.mega-portfolio-copy strong {
  font-size: 0.95rem;
  color: var(--sb-navy);
  font-weight: 600;
}

.mega-portfolio-copy span {
  font-size: 0.8rem;
  color: var(--sb-navy);
  line-height: 1.4;
  opacity: 0.85;
}

.mega-featured {
  background: #ebf5fa;
  border-radius: 0.85rem;
  padding: 1.25rem;
  height: 100%;
}

.mega-featured h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0.85rem;
}

.mega-featured img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 0.65rem;
  margin-bottom: 0.85rem;
}

.mega-featured strong {
  display: block;
  font-size: 0.95rem;
  color: var(--sb-navy);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.mega-featured a {
  color: var(--sb-blue);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
}

.mega-featured a:hover {
  color: var(--sb-blue-dark);
}

.mega-about-nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  max-width: 28rem;
}

.mega-about-nav a {
  display: block;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sb-navy);
  transition:
    color 0.2s ease,
    transform 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mega-about-nav a:hover,
.mega-dropdown:hover>.mega-menu .mega-about-nav a:hover,
.mega-dropdown.show>.mega-menu .mega-about-nav a:hover {
  color: var(--sb-blue);
  transform: translateX(6px);
}

.mega-ai-card {
  display: flex;
  gap: 0.9rem;
  align-items: stretch;
  background: #f3f9fc;
  border-radius: 0.85rem;
  padding: 0.65rem;
  height: 100%;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.mega-ai-card:hover {
  background: #eef3f8;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 22, 40, 0.08);
}

.mega-ai-thumb {
  width: 88px;
  min-width: 88px;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #dde5ee;
  flex: 0 0 120px;
}

.mega-ai-thumb img {
  width: 100%;
  height: 100%;
  min-height: 88px;
  object-fit: cover;
  display: block;
}

.mega-ai-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.15rem 0.25rem 0.15rem 0;
  min-width: 0;
}

.mega-ai-body h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sb-navy);
  margin: 0 0 0.3rem;
}

.mega-ai-body p {
  font-size: 0.8rem;
  color: var(--sb-navy);
  margin: 0 0 0.65rem;
  line-height: 1.4;
  flex-grow: 1;
}

.mega-ai-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e4e9ef;
  color: var(--sb-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.mega-ai-card:hover .mega-ai-arrow {
  background: var(--sb-orange);
  color: var(--sb-white);
}

.mega-group {
  margin-bottom: 1.35rem;
}

.mega-group:last-child {
  margin-bottom: 0;
}

.mega-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--sb-blue);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--sb-blue);
  display: inline-block;
  width: auto;
  min-width: 0;
}

.mega-service-link,
.mega-industry-link,
.mega-about-nav a,
.mega-portfolio-copy strong,
.mega-ai-body h6,
.mega-link {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--sb-navy) !important;
}

.mega-service-link:hover,
.mega-industry-link:hover,
.mega-about-nav a:hover,
.mega-link:hover,
.mega-dropdown:hover>.mega-menu .mega-service-link:hover,
.mega-dropdown:hover>.mega-menu .mega-industry-link:hover,
.mega-dropdown:hover>.mega-menu .mega-about-nav a:hover,
.mega-dropdown.show>.mega-menu .mega-service-link:hover,
.mega-dropdown.show>.mega-menu .mega-industry-link:hover,
.mega-dropdown.show>.mega-menu .mega-about-nav a:hover,
.mega-portfolio-item:hover .mega-portfolio-copy strong,
.mega-ai-card:hover .mega-ai-body h6 {
  color: var(--sb-blue) !important;
}

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.4rem 0;
}

.mega-link .bi {
  color: var(--sb-blue);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.mega-dropdown.mega-local {
  position: relative !important;
}

.mega-simple {
  min-width: 300px;
  left: 0;
  right: auto;
  width: auto;
  padding: 1rem 0;
  border-radius: 0.75rem;
  border: 1px solid var(--sb-border);
}

.mega-simple .mega-link {
  padding: 0.55rem 1.25rem;
}

/* Hero */
.hero {
  position: relative;
  height: calc(100vh - 90px);
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(to right,
      rgba(0, 79, 140, 0.78) 0%,
      rgba(0, 115, 187, 0.55) 28%,
      rgba(0, 149, 217, 0.32) 55%,
      rgba(0, 173, 239, 0.14) 78%,
      rgba(0, 173, 239, 0.05) 100%),
    url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--sb-white);
  overflow: hidden;
  background-image: unset;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 6.5rem 0 3.5rem;
  display: none;
}

.hero-content {
  padding-bottom: 0.5rem;
}

.hero h1 {
  color: var(--sb-white);
  font-size: clamp(2.35rem, 5vw, 3.65rem);
  line-height: 1.08;
  margin-bottom: 1.35rem;
  max-width: 16ch;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero-lead {
  color: rgba(255, 255, 255);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--sb-gradient);
  color: var(--sb-white) !important;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem 1.55rem;
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-hero-cta:hover {
  filter: brightness(1.08);
  color: var(--sb-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 173, 239, 0.4);
}

.btn-hero-cta .bi {
  font-size: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: stretch;
}

.hero-badge {
  flex: 1 1 120px;
  max-width: 160px;
  min-height: 88px;
  background: rgba(8, 14, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.55rem;
  padding: 0.85rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  backdrop-filter: blur(6px);
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.94);
  animation: heroBadgeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.4s ease;
}

.hero-badge:nth-child(1) {
  animation-delay: 0.45s;
}

.hero-badge:nth-child(2) {
  animation-delay: 0.65s;
}

.hero-badge:nth-child(3) {
  animation-delay: 0.85s;
}

.hero-badge:hover {
  transform: translate3d(0, -6px, 0) scale(1.02);
  background: rgba(5, 13, 22, 0.9);
  border-color: rgba(0, 173, 239, 0.55);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

@keyframes heroBadgeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-badge:hover {
    transform: none;
  }
}

.hero-badge-title {
  display: block;
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sb-blue);
  line-height: 1.2;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-badge-title.gold {
  color: var(--sb-orange);
}

.hero-badge-text {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 991.98px) {
  .hero-inner {
    padding: 5rem 0 2.5rem;
    align-items: flex-end;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-badges {
    justify-content: flex-start;
  }

  .hero-badge {
    max-width: none;
  }
}

/* Metrics */
.metrics {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: var(--sb-white);
}

.metrics .container {
  position: relative;
  z-index: 1;
}

.metrics .section-label {
  color: var(--sb-orange);
}

.metrics .section-lead {
  color: var(--sb-muted);
  max-width: 34rem;
}

.metric-card {
  position: relative;
  background: #f2faff;
  border-radius: 1.15rem;
  box-shadow: 0 10px 30px rgba(0, 73, 140, 0.07);
  border: 1px solid rgba(0, 173, 239, 0.12);
  padding: 2rem 1.25rem 1.65rem;
  height: 100%;
  text-align: center;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sb-orange);
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 73, 140, 0.14);
  border-color: rgba(0, 173, 239, 0.28);
}

.metric-icon {
  /* width: 56px;
  height: 56px; */
  border-radius: 0.85rem;
  /* background: #00abef54; */
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin-bottom: 1.05rem;
  position: relative;
  z-index: 1;
}

.metric-value {
  font-family: var(--sb-font-display);
  font-size: clamp(2rem, 3.2vw, 2.55rem);
  font-weight: 700;
  color: var(--sb-blue);
  line-height: 1;
  margin-bottom: 0.55rem;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}

.metric-label {
  color: var(--sb-navy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.metric-sub {
  color: var(--sb-muted);
  font-size: 0.84rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .metric-card {
    padding: 1.45rem 0.9rem 1.25rem;
  }

  .metric-label {
    font-size: 0.9rem;
  }
}

/* Services */
.services {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%,
      rgba(0, 173, 239, 0.08),
      transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%,
      rgba(0, 115, 187, 0.06),
      transparent 50%),
    var(--sb-surface);
}

.service-card {
  --accent: var(--sb-blue);
  --accent-soft: rgba(0, 173, 239, 0.12);
  background: var(--sb-white);
  border-radius: 1rem;
  border: 1px solid rgba(0, 173, 239, 0.12);
  box-shadow: 0 8px 28px rgba(0, 73, 140, 0.06);
  padding: 1.75rem 1.4rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sb-gradient);
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 73, 140, 0.12);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}

.service-icon {
  /* width: 58px;
  height: 58px; */
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.1rem;
  /* background: var(--accent-soft); */
  color: var(--accent);
  font-size: 1.45rem;
  line-height: 1;
}

.service-icon .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 36px;
  color: #ffb800;
}

.service-icon .fi::before {
  line-height: 1;
}

.service-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
  color: var(--sb-navy);
}

.service-card>p {
  margin: 0 0 1.35rem;
  flex-grow: 1;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--sb-navy);
}

.service-card .btn-service {
  width: 100%;
  border: 1.5px solid var(--sb-navy);
  padding: 0.7rem 1rem;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sb-navy) !important;
  background: transparent !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  box-shadow: none !important;
  outline: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.read-more-link::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 2px;
  background: var(--sb-gradient);
  opacity: 1;
  transition: all 0.2s ease;
  width: 80px;
}

.read-more-link:hover::after {
  transform: translate(-50%, -50%) scaleX(1.2);
}

.service-card .btn-service:hover,
.service-card .btn-service:focus,
.service-card .btn-service:focus-visible,
.service-card .btn-service:active {
  filter: none;
  color: var(--sb-white) !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: none !important;
  outline: none;
}

.service-card .btn-service:focus-visible {
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
}

.accent-orange,
.accent-blue,
.accent-teal,
.accent-indigo,
.accent-green,
.accent-magenta,
.accent-amber,
.accent-violet,
.accent-cyan,
.accent-rose,
.accent-lime,
.accent-navy {
  --accent: #00adef;
  --accent-soft: rgba(0, 173, 239, 0.14);
}

/* Case studies */
.case-studies {
  background:
    radial-gradient(ellipse 65% 50% at 90% 15%,
      var(--sb-glow-cyan),
      transparent 55%),
    radial-gradient(ellipse 50% 40% at 5% 85%,
      var(--sb-glow-blue),
      transparent 50%),
    var(--sb-gradient-dark);
  color: var(--sb-white);
  overflow: hidden;
}

.case-studies .section-label {
  display: block;
  text-align: center;
  color: var(--sb-orange);
}

.case-studies .section-title {
  color: var(--sb-white);
  text-align: center;
  margin-bottom: 1.75rem;
}

.case-tabs-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.case-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--sb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.case-nav:hover {
  background: var(--sb-white);
  color: var(--sb-navy);
  border-color: var(--sb-white);
}

.case-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  margin: 0;
  scrollbar-width: none;
  flex: 1;
  justify-content: center;
}

.case-tabs::-webkit-scrollbar {
  display: none;
}

.case-tab {
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--sb-white);
  border-radius: 999px;
  padding: 0.55rem 1.15rem;
  font-weight: 600;
  font-size: 0.88rem;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

.case-tab.active,
.case-tab:hover {
  background: var(--sb-white);
  color: var(--sb-navy);
  border-color: var(--sb-white);
}

.case-slider-wrap {
  padding: 1.25rem 0 0;
  overflow: hidden;
}

.case-swiper {
  width: 100%;
  overflow: visible;
  padding: 0.5rem 0 7rem;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.case-swiper.is-grabbing {
  cursor: grabbing;
  touch-action: none;
}

.case-swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  min-height: 500px;
  transform: none !important;
}

.case-swiper .swiper-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(420px, 78vw);
  height: auto;
  margin: 0 !important;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateX(-50%);
  opacity: 0.55;
  z-index: 1;
  pointer-events: auto;
  cursor: grab;
  border-radius:25px;
}

.case-swiper .swiper-slide:first-child,
.case-swiper .swiper-slide.is-center,
.case-swiper .swiper-slide[data-status="active"] {
  opacity: 1;
  z-index: 6;
}

.case-swiper .swiper-slide[data-status="inview"] {
  opacity: 0.95;
}

.case-swiper .swiper-slide[data-status="not-active"] {
  opacity: 0.55;
}

.case-card {
  border-radius: 1.75rem;
  padding: 1.85rem;
  height: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
  transition: box-shadow 0.4s ease;
  pointer-events: auto;
}
.case-card img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.case-swiper .swiper-slide.is-center .case-card,
.case-swiper .swiper-slide[data-status="active"] .case-card {
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.55);
}

.case-pagination {
  position: static !important;
  margin-top: 4.75rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.case-pagination .case-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transition:
    width 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s ease,
    border-radius 0.35s ease;
}

.case-pagination .case-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--sb-orange);
}

.case-card.tone-sand {
  background: #b8e4f7;
  color: var(--sb-navy);
}

.case-card.tone-sky {
  background: #8fd4f2;
  color: var(--sb-navy);
}

.case-card.tone-mint {
  background: #a8ede4;
  color: var(--sb-navy);
}

.case-card.tone-blush {
  background: #c5e8f8;
  color: var(--sb-navy);
}

.case-card.tone-lilac {
  background: #7bc4e8;
  color: var(--sb-navy);
}

.case-card.tone-cream {
  background: #d6f3ef;
  color: var(--sb-navy);
}

.case-brand {
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
}

.case-desc {
  font-size: 0.98rem;
  margin-bottom: 1.25rem;
  opacity: 0.92;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.case-stat strong {
  display: block;
  font-family: var(--sb-font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.case-stat span {
  font-size: 0.8rem;
  font-weight: 600;
}

.case-media {
  margin-top: auto;
  border-radius: 1.15rem;
  overflow: hidden;
  min-height: 160px;
}

.case-media img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  pointer-events: none;
}
.case-view {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.5);
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 2;
    pointer-events: none;
}

.case-card:hover .case-view {
  opacity: 1;
}

.case-view span {
  background: var(--sb-white);
  color: var(--sb-navy);
  font-weight: 700;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  pointer-events: none;
}

.case-card:hover .case-view span {
  pointer-events: auto;
  cursor: pointer;
}

@media (max-width: 767.98px) {
  .case-tabs-wrap {
    gap: 0.4rem;
  }

  .case-tabs {
    justify-content: flex-start;
  }

  .case-card {
    min-height: 420px;
    border-radius: 1.35rem;
  }
}

/* AI section */
.ai-section {
  background: var(--sb-white);
  color: var(--sb-text);
  position: relative;
  overflow: hidden;
}

.ai-section::before {
  display: none;
}

.ai-visual {
  position: relative;
  border-radius: var(--sb-radius-lg);
  overflow: hidden;
  min-height: 550px;
  background:
    linear-gradient(160deg,
      rgba(0, 79, 140, 0.55) 0%,
      rgba(0, 115, 187, 0.28) 45%,
      rgba(0, 173, 239, 0.12) 100%),
    url("https://www.stackblue.com/wp-content/uploads/2026/09//ai-chatbot.png") center/cover no-repeat;
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  animation: aiGlow 6s ease-in-out infinite;
}

.ai-visual-tags {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  z-index: 1;
}

.ai-visual-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--sb-navy);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 40, 80, 0.16);
}

.ai-visual-tags i {
  color: var(--sb-blue);
  font-size: 1rem;
}

@keyframes aiGlow {

  0%,
  100% {
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
  }

  50% {
    box-shadow: 0 24px 56px rgba(0, 173, 239, 0.22);
  }
}

.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--sb-blue);
  margin-bottom: 1rem;
}

.ai-section .section-title {
  color: var(--sb-navy);
  margin-bottom: 1rem;
}

.ai-section>.container p,
.ai-copy {
  color: var(--sb-navy);
}

.ai-mini {
  background: var(--sb-surface);
  border: 1px solid var(--sb-border);
  border-radius: 0.85rem;
  padding: 1.15rem;
  height: 100%;
}

.ai-mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 0.85rem;
}



.ai-mini h4 {
  color: var(--sb-navy);
  font-size: 0.98rem;
  margin-bottom: 0.65rem;
}

.ai-mini ul {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--sb-navy);
  font-size: 0.86rem;
}

.ai-mini ul li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--sb-navy);
}

.ai-mini ul li:last-child {
  margin-bottom: 0;
}

.ai-mini ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--sb-blue);
  box-shadow: 0 0 0 3px rgba(0, 173, 239, 0.18);
}

/* Testimonials */
.testimonials {
  color: var(--sb-white);
  background:
    radial-gradient(ellipse 70% 55% at 85% 10%,
      var(--sb-glow-cyan),
      transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 90%,
      var(--sb-glow-blue),
      transparent 50%),
    var(--sb-gradient-dark);
  color: rgba(255, 255, 255, 0.88);
}

.testimonials .section-label {
  color: var(--sb-orange);
}

.testimonials .section-title {
  color: var(--sb-white);
  max-width: 28ch;
}

.testimonial-controls {
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .testimonial-controls {
    justify-content: flex-start;
    margin-top: 1rem;
  }
}

.testimonial-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--sb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.testimonial-arrow:hover {
  background: var(--sb-blue);
  border-color: var(--sb-blue);
  color: var(--sb-white);
}

.testimonials-slider {
  margin: 0 -0.75rem;
}

.testimonials-slider .slick-list {
  padding: 0.25rem 0 0.5rem;
}

.testimonials-slider .slick-slide {
  padding: 0 0.75rem;
  height: auto;
}

.testimonials-slider .slick-track {
  display: flex !important;
}

.testimonials-slider .slick-slide>div {
  height: 100%;
}

.testimonial-slide {
  height: 100%;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.15rem;
  overflow: hidden;
  background: rgba(0, 173, 239, 0.1);
  min-height: 280px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-card.is-video {
  background: #0073bb;
}

.testimonial-card.is-text {
  background: linear-gradient(165deg, #003a66 0%, #00558f 55%, #0073bb 100%);
}

.testimonial-media {
  position: relative;
  display: block;
  min-height: 280px;
  height: 100%;
  flex: 1;
  background: #123;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
}

.testimonial-media:hover img {
  transform: scale(1.04);
}

.testimonial-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.testimonial-media .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sb-blue);
  color: var(--sb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 3;
}

.testimonial-media:hover .play {
  background: var(--sb-orange);
  color: #000000;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 8px 20px rgba(255, 184, 0, 0.35);
}

.testimonial-media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(0, 115, 187, 0.45) 40%,
      rgba(0, 79, 140, 0.72) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: var(--sb-white);
}

.testimonial-media-overlay strong {
  font-family: var(--sb-font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--sb-white);
}

.testimonial-media-overlay span {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.testimonial-quote {
  padding: 1.35rem 1.15rem;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: var(--sb-white);
}

.stars {
  color: var(--sb-orange);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.testimonial-quote p {
  color: var(--sb-white);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: none;
}

.testimonial-author strong {
  display: block;
  color: var(--sb-white);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
}
.error {
    color: #fff;
    background: red;
    font-size: 12px;
    padding: 2px 5px;
    display: block;
}
.form-note {
    margin-top: 5px;
    color: #fff;
	font-size: 12px;
    font-style: normal;
}
.contact-section  .form-note{
	 color: #000;
}
#input#honeypot_field i{
	 
	font-size: 12px;
    font-style: normal;
}
#contactForm .form-note {
    color: #000;
}
@media (max-width: 767.98px) {
  .testimonial-media {
    min-height: 240px;
  }

  .testimonial-quote {
    min-height: 260px;
  }

  .testimonial-media img {
    min-height: 240px;
  }
}

/* Contact + FAQ */
.contact-faq {
  background:
    radial-gradient(ellipse 55% 45% at 0% 10%,
      rgba(0, 173, 239, 0.08),
      transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 90%,
      rgba(255, 184, 0, 0.07),
      transparent 50%),
    var(--sb-surface);
  position: relative;
  overflow: hidden;
}

.contact-faq::before {
  display: none;
}

.contact-faq-shell {
  position: relative;
  z-index: 1;
}

.contact-intro .section-label {
  color: var(--sb-blue);
}

.contact-intro .section-title {
  color: var(--sb-navy);
  margin-bottom: 0.85rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 14ch;
}

.contact-intro>p {
  color: var(--sb-muted);
  margin-bottom: 1.35rem;
  max-width: 30rem;
}

.contact-quick {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.contact-quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--sb-navy);
  font-weight: 700;
  font-size: 0.95rem;
  width: fit-content;
}

.contact-quick-link i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 173, 239, 0.12);
  color: var(--sb-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-quick-link:hover {
  color: var(--sb-blue);
}

.faq-side-title {
  color: var(--sb-navy);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.faq-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  height: auto;
  box-shadow: none;
}

.faq-panel .accordion-item {
  border: none;
  border-bottom: 1px solid var(--sb-border);
  background: transparent;
}

.faq-panel .accordion-item:last-child {
  border-bottom: 1px solid var(--sb-border);
}

.faq-panel .accordion-button {
  font-family: var(--sb-font-display);
  font-weight: 600;
  font-size: 0.98rem;
  box-shadow: none !important;
  background: transparent;
  color: var(--sb-navy);
  padding: 0.95rem 0;
  gap: 0.75rem;
  align-items: center;
}

.faq-panel .accordion-button::after {
  filter: none;
  background-size: 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  margin-left: auto;
}

.faq-num {
  color: var(--sb-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  min-width: 1.6rem;
}

.faq-panel .accordion-button:not(.collapsed) {
  color: var(--sb-blue);
  background: transparent;
}

.faq-panel .accordion-body {
  padding: 0 0 1rem 2.35rem;
  color: var(--sb-muted);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.65;
}

.faq-list {
  list-style: none;
  padding: 0.35rem 0 0;
  margin: 0;
}

.faq-list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: var(--sb-navy);
  font-size: 0.88rem;
  line-height: 1.45;
}

.faq-list li:last-child {
  margin-bottom: 0;
}

.faq-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--sb-blue);
  box-shadow: none;
}

.contact-panel {
  background: var(--sb-white);
  border-radius: 1.35rem;
  padding: 2rem 1.85rem;
  color: var(--sb-navy);
  height: 100%;
  border: none;
  box-shadow: 0 24px 50px rgba(0, 30, 60, 0.22);
}

.contact-panel-top {
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--sb-border);
}

.contact-panel .section-title {
  margin-bottom: 0.4rem;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
}

.contact-panel-top p {
  color: var(--sb-muted);
  margin: 0;
}

.contact-panel label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: capitalize;
  color: var(--sb-navy);
  margin-bottom: 0.35rem;
}

.contact-panel .form-control, .contact-panel .form-select {
    border: none;
    border-bottom: 2px solid var(--sb-border);
    border-radius: 0;
    padding: 0.55rem 0;
    font-size: 0.95rem;
    background: transparent;
    color: var(--sb-navy);
    transition: border-color 0.2s ease,
    box-shadow 0.2s ease;
    appearance: auto;
}

.contact-panel .form-control::placeholder {
  color: #8aa0b3;
}

.contact-panel .form-control:focus,
.contact-panel .form-select:focus {
  border-color: var(--sb-blue);
  box-shadow: none;
  background: transparent;
}

.nda-banner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 184, 0, 0.16);
  color: var(--sb-navy);
  font-weight: 700;
  font-size: 0.86rem;
  border-radius: 0.65rem;
  padding: 0.75rem 0.95rem;
  margin: 1.25rem 0 1rem;
  border: 1px solid rgba(255, 184, 0, 0.35);
}

.nda-banner i {
  font-size: 1.1rem;
  color: var(--sb-orange);
  flex-shrink: 0;
}

.contact-optin {
  margin-bottom: 1.15rem;
}

.contact-panel .form-check-label {
  color: var(--sb-muted);
  font-size: 0.9rem;
}

.contact-panel .form-check-input {
  border-color: #9bb0c2;
  background-color: var(--sb-white);
}

.contact-panel .form-check-input:checked {
  background-color: var(--sb-orange);
  border-color: var(--sb-orange);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1rem;
}

.contact-captcha {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sb-navy);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-captcha .form-control {
  width: 72px;
  text-align: center;
  padding: 0.45rem 0.3rem;
  border: 2px solid var(--sb-border);
  border-radius: 0.5rem;
}

@media (max-width: 991.98px) {
  .contact-intro .section-title {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .contact-panel {
    padding: 1.5rem 1.15rem;
  }

  .contact-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-actions .btn {
    width: 100%;
  }

  .faq-panel .accordion-body {
    padding-left: 0;
  }
}

/* Footer contact + footer */
.footer-contact {
  padding: 0 0 2rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.7rem;
  background: var(--sb-orange);
  border: none;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  line-height: 1;
}

.footer-contact-icon i {
  color: inherit;
  display: block;
  line-height: 1;
}

.footer-contact-item strong {
  display: block;
  font-family: var(--sb-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--sb-white);
  margin-bottom: 0.25rem;
}

.footer-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact-item a {
  color: rgba(255, 255, 255);
}

.footer-contact-item a:hover {
  color: var(--sb-orange);
}

.footer-divider {
  height: 1px;
  margin: 0 0 2.5rem;
  background: rgba(255, 255, 255, 0.12);
}

.sb-footer {
  color: rgba(255, 255, 255, 0.85);
  padding-top: 3.75rem;
  background: linear-gradient(165deg, #003a66 0%, #00558f 55%, #0073bb 100%);
}

.footer-nav-row {
  padding-bottom: 0.5rem;
}

.footer-heading {
  color: var(--sb-white);
  font-family: var(--sb-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.15rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: rgba(255, 255, 255);
  font-size: 0.9rem;
  font-weight: 500;

  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--sb-orange);
}

.footer-more {
  font-weight: 600 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.footer-more i {
  font-size: 0.78rem;
}

.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.15rem;
  padding: 0.65rem 1.45rem;
  background: var(--sb-orange);
  color: #000000 !important;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn-footer-cta:hover {
  background: var(--sb-orange-hover);
  color: #000000 !important;
  transform: translateY(-1px);
}

.footer-units {
  margin-top: 3.25rem;
  padding-top: 0.25rem;
  padding-bottom: 3rem;
}

.footer-units-title {
  color: var(--sb-white);
  font-family: var(--sb-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1.35rem;
}

.footer-unit-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 1.1rem 1.25rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--sb-white);
  height: 100%;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.footer-unit-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(0, 173, 239, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  color: var(--sb-white);
}

.footer-unit-brand {
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.footer-unit-link {
  font-size: 0.84rem;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--sb-white);
}

.footer-unit-link i {
  font-size: 0.75rem;
}

.footer-bottom {
  margin-top: 0;
  padding: 1.05rem 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.footer-legal a {
  color: rgba(255, 255, 255);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--sb-orange);
}

.footer-legal span {
  opacity: 0.5;
}

.footer-copy {
  color: rgba(255, 255, 255);
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border: 1px solid rgba(255, 255, 255);
  border-radius: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 991.98px) {
  .footer-unit-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

  .footer-unit-link {
    white-space: normal;
  }

  .footer-bottom .text-lg-center,
  .footer-bottom .text-lg-end {
    text-align: left !important;
  }
}

/* Bottom popup */
.bottom-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  background: var(--sb-gradient);
  color: var(--sb-white);
  padding: 0.9rem 0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  box-shadow: 0 -8px 30px rgba(0, 173, 239, 0.35);
}

.bottom-popup.show {
  transform: translateY(0);
}

.bottom-popup-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sb-orange);
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bottom-popup p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--sb-white);
}

.bottom-popup .btn-close-popup {
  background: transparent;
  border: none;
  color: var(--sb-white);
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.85;
}

.bottom-popup .btn-close-popup:hover {
  opacity: 1;
}

/* Page hero (inner pages) */
.page-hero {
  background:
    linear-gradient(120deg,
      rgba(0, 115, 187, 0.72) 0%,
      rgba(0, 149, 217, 0.58) 48%,
      rgba(0, 173, 239, 0.42) 100%),
    url("") center/cover;
  color: var(--sb-white);
  padding: 6rem 0 4.5rem;
  text-align: center;
}

.page-hero h1 {
  color: var(--sb-white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 36rem;
  margin: 0.75rem auto 0;
}

/* Industry grid */
.industry-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid var(--sb-border);
  background: var(--sb-white);
  height: 100%;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.industry-item:hover {
  border-color: var(--sb-blue);
  transform: translateY(-3px);
  color: var(--sb-blue);
}

.industry-item .bi {
  width: 40px;
  height: 40px;
  border-radius: 0.55rem;
  background: rgba(255, 184, 0, 0.12);
  color: var(--sb-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

/* Portfolio grid */
.portfolio-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--sb-radius);
  border: 1px solid var(--sb-border);
  height: 100%;
  transition: box-shadow 0.2s ease;
}

.portfolio-item:hover {
  box-shadow: var(--sb-shadow);
}

.portfolio-logo {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: var(--sb-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sb-font-display);
  font-weight: 700;
  color: var(--sb-blue);
  flex-shrink: 0;
}

.featured-insight {
  background: #e8f4fb;
  border-radius: var(--sb-radius);
  padding: 1.5rem;
  height: 100%;
}

.featured-insight img {
  border-radius: 0.75rem;
  margin: 1rem 0;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* Solution cards */
.solution-card {
  background: var(--sb-surface);
  border-radius: var(--sb-radius);
  padding: 1.5rem;
  height: 100%;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  background: #eaf6fc;
}

.solution-card h3 {
  font-size: 1.15rem;
  margin: 0.85rem 0 0.55rem;
}

.solution-card p {
  color: var(--sb-muted);
  font-size: 0.92rem;
  margin: 0;
}

.solution-card .arrow {
  margin-top: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--sb-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sb-blue);
}

/* About sidebar */
.about-nav a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 700;
  border-bottom: 1px solid var(--sb-border);
  color: var(--sb-text);
}

.about-nav a:hover,
.about-nav a.active {
  color: var(--sb-blue);
}

/* Process steps */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sb-blue);
  color: var(--sb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Utilities */
.text-sb-muted {
  color: var(--sb-muted);
}

.bg-surface {
  background: var(--sb-surface);
}

@media (max-width: 991.98px) {
  .mega-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding: 0.5rem 0 1rem;
    pointer-events: auto;
  }

  .mega-menu .mega-intro,
  .mega-menu .mega-about-nav a,
  .mega-menu .mega-service-link,
  .mega-menu .mega-industry-link,
  .mega-menu .mega-portfolio-item,
  .mega-menu .mega-ai-card,
  .mega-menu .mega-featured,
  .mega-menu .mega-divider>.row>[class*="col-"] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mega-dropdown.show>.mega-menu {
    display: block;
  }

  .mega-dropdown>.nav-link .bi-chevron-down {
    transition: transform 0.25s ease;
  }

  .metrics {
    margin-top: -1.5rem;
  }

  .bottom-popup .btn-sb-orange {
    width: 100%;
    margin-top: 0.75rem;
  }
}

@media (max-width: 575.98px) {

  .section-pad,
  .metrics,
  .case-studies,
  .ai-section,
  .testimonials,
  .contact-faq {
    padding: 3.5rem 0;
  }
}

.center-text-root {
  text-align: center;
  width: 100%;
  max-width: 869px;
  margin-inline: auto;
}

.center-text-root .section-lead {
  max-width: 619px;
  margin-inline: auto;
}

.ai-section .section-title {
  width: 100%;
  max-width: 650px;
}

.testimonials .section-title {
  width: 100%;
  max-width: 600px;
}

.ai-section .ai-visual {
  position: relative;
  overflow: hidden;
}

.ai-section .ai-visual-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ai-section .ai-visual-tags {
  z-index: 2;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/*
.hero::before {
    background: linear-gradient(to right,
          rgba(0, 79, 140, 0.78) 0%,
          rgba(0, 115, 187, 0.55) 28%,
          rgba(0, 149, 217, 0.32) 55%,
          rgba(0, 173, 239, 0.14) 78%,
          rgba(0, 173, 239, 0.05) 100%);
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    inset: 0;
    z-index: 11;
} */

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  pointer-events: none;
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 121;
}

/* home-banner  */
.banner-image {
  position: absolute;
  width: 100%;
  inset: 0;
  z-index: -1;
  height: 100%;
}

.banner-image img,
.banner-image video {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: right;
}

#ai-chat-carousel-section {
  --ink-950: #07081f;
  --ink-900: #0a0b2e;
  --ink-800: #160a3b;
  --ink-700: #2a1160;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --lav-050: #f1edff;
  --lav-100: #ede9fe;
  --sub: #dcd8f5;
  --cta: #2563eb;
  --cta-hover: #1d4ed8;
  --bot-ink: #1e1b4b;
  --bot-meta: #4c3a8a;
  --rec: #f87171;
  --focus: #ffd166;
  --pad: clamp(22px, 4.4vw, 64px);
}

#ai-chat-carousel-section .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

#ai-chat-carousel-section :is(a, button):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

#ai-chat-carousel-section .carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0px;
  overflow: hidden;
  /* background: radial-gradient(112% 124% at 73% 50%, rgba(124, 58, 237, .9) 0%, rgba(76, 29, 149, .52) 39%, rgba(10, 11, 46, 0) 70%),
        linear-gradient(117deg, #0A0B2E 0%, #160A3B 46%, #2A1160 100%); */
  touch-action: pan-y;
  /* height: 100vh; */
  height: calc(100vh - 90px);
}

#ai-chat-carousel-section .slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(20px, 3.6vw, 44px);
  width: 100%;
  max-width: 1362px;
  margin-inline: auto;
  padding: 30px 30px;
  align-items: center;
  height: calc(100vh - 90px);
}

#ai-chat-carousel-section .slide[hidden] {
  display: none;
}

/* ================= Copy ================= */
#ai-chat-carousel-section .copy {
  max-width: 34ch;
  transition: all 0.5s;
}

#ai-chat-carousel-section .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 clamp(14px, 2vw, 20px);
  padding: 4px 15px;
  border: 1px solid #0089cf;
  border-radius: 999px;
  font-size: 19px;
  font-weight: 6700;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--lav-100);
  background: #0089cf;
}

#ai-chat-carousel-section .eyebrow .pip {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}

#ai-chat-carousel-section .title {
  margin: 0 0 clamp(12px, 2vw, 20px);
  font-size: clamp(2.5rem, 7.6vw, 4.6rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 15px;
}

#ai-chat-carousel-section .title span {
  width: 100%;
  display: block;
  font-family: var(--sb-font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 0px;
  color: #fff;
  max-width: 100%;
}

#ai-chat-carousel-section .lede {
  color: #fff;
  font-size: 18px;
}

#ai-chat-carousel-section .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font: inherit;
  font-size: 1.04rem;
  text-decoration: none;
  cursor: pointer;
  color: #000;
  border: none;
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  transition:
    filter 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  background: #ffb800;
  text-transform: capitalize;
}

#ai-chat-carousel-section .cta:hover {
  background: #ffb800;
  color: #000;
}

/* ================= Stage ================= */
#ai-chat-carousel-section .stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(300px, 34vw, 420px);
}

#ai-chat-carousel-section .stage::before {
  content: "";
  position: absolute;
  inset: 4% 10%;
  background: radial-gradient(circle at 52% 50%,
      rgba(167, 139, 250, 0.72),
      rgba(124, 58, 237, 0.3) 46%,
      transparent 72%);
  filter: blur(30px);
  animation: aiChatCarouselBreathe 7s ease-in-out infinite;
  display: none;
}

@keyframes aiChatCarouselBreathe {
  50% {
    transform: scale(1.06);
    opacity: 0.85;
  }
}

#ai-chat-carousel-section .laptop {
  position: relative;
  width: min(100%, 545px);
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.55));
  display: none;
}

#ai-chat-carousel-section .spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--violet-300);
  opacity: 0.7;
  display: none;
  animation: aiChatCarouselFloat 6s ease-in-out infinite;
}

#ai-chat-carousel-section .spark:nth-of-type(1) {
  top: 12%;
  left: 5%;
}

#ai-chat-carousel-section .spark:nth-of-type(2) {
  top: 62%;
  left: 1%;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  animation-delay: 1.6s;
}

#ai-chat-carousel-section .spark:nth-of-type(3) {
  top: 7%;
  right: 16%;
  animation-delay: 2.4s;
}

#ai-chat-carousel-section .spark:nth-of-type(4) {
  bottom: 9%;
  right: 6%;
  width: 5px;
  height: 5px;
  animation-delay: 3.4s;
}

@keyframes aiChatCarouselFloat {
  50% {
    transform: translateY(-16px) rotate(20deg);
  }
}

/* ================= Floating chat ================= */
#ai-chat-carousel-section .chat {
  position: absolute;
  right: clamp(10px, 1vw, 0px);
  bottom: 0%;
  width: min(350px, 82%);
  display: flex;
  flex-direction: column;
  z-index: 2;
  gap: 8px;
}

#ai-chat-carousel-section .row {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  max-width: 94%;
  opacity: 0;
}

#ai-chat-carousel-section .row--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

#ai-chat-carousel-section .row--bot {
  align-self: flex-start;
}

#ai-chat-carousel-section .face svg {
  width: 20px;
  height: 20px;
  position: relative;
  left: -1px;
}

#ai-chat-carousel-section .face {
  flex: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  padding-left: 9px;
}

#ai-chat-carousel-section .row--user .face {
  background: var(--lav-050);
  color: var(--bot-ink);
}

#ai-chat-carousel-section .row--bot .face {
  background: var(--sb-gradient);
  color: #fff;
}

#ai-chat-carousel-section .bubble {
  margin: 0;
  padding: 11px 15px;
  border-radius: 18px;
  font-size: clamp(0.87rem, 1.7vw, 0.95rem);
  line-height: 1.42;
  box-shadow: 0 14px 30px rgba(6, 3, 26, 0.45);
}

#ai-chat-carousel-section .row--bot .bubble {
  background: #ffffff;
  color: #000;
  border-bottom-left-radius: 6px;
}

#ai-chat-carousel-section .row--user .bubble {
  background: var(--sb-gradient);
  color: #fff;
  border-bottom-right-radius: 6px;
}

#ai-chat-carousel-section .who {
  display: block;
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

#ai-chat-carousel-section .row--bot .who {
  color: #000;
}

#ai-chat-carousel-section .row--user .who {
  color: #fff;
}

#ai-chat-carousel-section .slide.is-active :is(.row, .mic) {
  animation: aiChatCarouselRiseUp 0.52s cubic-bezier(0.2, 0.85, 0.3, 1) both;
  animation-delay: var(--d, 0s);
}

@keyframes aiChatCarouselRiseUp {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#ai-chat-carousel-section .typing {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  height: 13px;
}

#ai-chat-carousel-section .typing i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0077bf;
  animation: aiChatCarouselBlink 1.2s infinite ease-in-out;
}

#ai-chat-carousel-section .typing i:nth-child(2) {
  animation-delay: 0.18s;
}

#ai-chat-carousel-section .typing i:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes aiChatCarouselBlink {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

/* voice */
#ai-chat-carousel-section .voice {
  display: flex;
  align-items: center;
  gap: 11px;
}

#ai-chat-carousel-section .play {
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

#ai-chat-carousel-section .row--bot .play {
  background: var(--sb-gradient);
  color: #fff;
}

#ai-chat-carousel-section .row--user .play {
  background: #fff;
  color: var(--cta-hover);
}

#ai-chat-carousel-section .wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 24px;
  flex: 1;
  min-width: 110px;
}

#ai-chat-carousel-section .wave span {
  display: block;
  width: 3px;
  border-radius: 2px;
  height: var(--h, 10px);
  background: currentColor;
}

#ai-chat-carousel-section .slide.is-active .wave span {
  animation: aiChatCarouselPulse 1.1s ease-in-out infinite;
}

@keyframes aiChatCarouselPulse {
  50% {
    transform: scaleY(0.35);
  }
}

#ai-chat-carousel-section .dur {
  font-size: 0.76rem;
  font-weight: 700;
  flex: none;
}

#ai-chat-carousel-section .row--bot .dur {
  color: var(--bot-meta);
}

#ai-chat-carousel-section .mic {
  align-self: center;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #ffb800;
  border: 1px solid #ffb800;
  color: #000;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(6, 3, 26, 0.45);
  opacity: 0;
}

#ai-chat-carousel-section .mic .ring {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #0e0e0e;
}

#ai-chat-carousel-section .slide.is-active .mic .ring {
  animation: aiChatCarouselBlip 1.3s ease-in-out infinite;
}

@keyframes aiChatCarouselBlip {
  50% {
    transform: scale(0.6);
    opacity: 0.55;
  }
}

/*
#ai-chat-carousel-section .controls {
    position: absolute;
    left: var(--pad);
    right: var(--pad);
    bottom: clamp(12px, 2vw, 26px);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    max-width: 1362px;
    margin-inline: auto;
}
 */
#ai-chat-carousel-section .controls {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
  max-width: 1362px;
  margin-inline: auto;
  padding: 0px 30px;
}

#ai-chat-carousel-section .ctrl {
  width: 44px;
  height: 44px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: var(--lav-100);
  cursor: pointer;
  background: var(--sb-gradient);
}

#ai-chat-carousel-section .ctrl:hover {
  background: #0089cf;
}

#ai-chat-carousel-section .dots {
  display: flex;
  gap: 4px;
  margin-left: 4px;
}

#ai-chat-carousel-section .dot {
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

#ai-chat-carousel-section .dot::after {
  content: "";
  width: 24px;
  height: 6px;
  border-radius: 999px;
  background: #ffb800;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

#ai-chat-carousel-section .dot[aria-current="true"]::after {
  width: 40px;
  background: #fff;
}

#ai-chat-carousel-section .count {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lav-100);
}

#ai-chat-carousel-section .slide .copy>* {
  transform: translateY(25px);
}

#ai-chat-carousel-section .slide.is-active .copy>* {
  animation: copySlideUp 0.6s ease-out forwards;
}

#ai-chat-carousel-section .slide.is-active .copy>*:nth-child(1) {
  animation-delay: 0.1s;
}

#ai-chat-carousel-section .slide.is-active .copy>*:nth-child(2) {
  animation-delay: 0.2s;
}

#ai-chat-carousel-section .slide.is-active .copy>*:nth-child(3) {
  animation-delay: 0.3s;
}

#ai-chat-carousel-section .slide.is-active .copy>*:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes copySlideUp {
  from {
    transform: translateY(25px);
  }

  to {
    transform: translateY(0);
  }
}

@media (max-width: 1366.98px) {
  #ai-chat-carousel-section .controls {
    padding: 0px 0px;
  }
}

/* ========== Floating feature cards — slides 3 to 5 ========== */
#ai-chat-carousel-section .cloud {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

#ai-chat-carousel-section .win {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w, 164px);
  padding: 14px 15px;
  background: var(--sb-white);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 73, 140, 0.28);
  opacity: 0;
}

#ai-chat-carousel-section .win__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 9px;
  border-radius: 9px;
  background: var(--sb-surface);
  color: var(--sb-blue-dark);
}

#ai-chat-carousel-section .win__title {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sb-navy);
}

#ai-chat-carousel-section .win__note {
  display: block;
  margin-top: 4px;
  font-size: 0.71rem;
  line-height: 1.35;
  color: #0b3a5c;
}

#ai-chat-carousel-section .win--accent {
  background: var(--sb-gradient);
  box-shadow: 0 16px 34px rgba(0, 40, 80, 0.4);
}

#ai-chat-carousel-section .win--accent .win__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--sb-white);
}

#ai-chat-carousel-section .win--accent .win__title,
#ai-chat-carousel-section .win--accent .win__note {
  color: var(--sb-white);
}

#ai-chat-carousel-section .win__stat {
  display: block;
  margin-top: 9px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--sb-white);
}

#ai-chat-carousel-section .win__statnote {
  display: block;
  margin-top: 3px;
  font-size: 0.68rem;
  color: var(--sb-white);
}

#ai-chat-carousel-section .ghost {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w, 96px);
  height: var(--h, 58px);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
}

#ai-chat-carousel-section .slide.is-active .win {
  animation:
    aiChatCarouselPopIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15) both,
    aiChatCarouselDrift 7s ease-in-out infinite;
  animation-delay: var(--d, 0s), calc(var(--d, 0s) + 0.5s);
}

#ai-chat-carousel-section .slide.is-active .ghost {
  animation:
    aiChatCarouselPopIn 0.5s ease-out both,
    aiChatCarouselGhost 6s ease-in-out infinite;
  animation-delay: var(--d, 0s), calc(var(--d, 0s) + 0.5s);
}

@keyframes aiChatCarouselPopIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes aiChatCarouselDrift {
  50% {
    transform: translateY(-9px);
  }
}

@keyframes aiChatCarouselGhost {

  0%,
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }

  50% {
    opacity: 0.35;
    transform: translateY(-12px);
  }
}

@media (max-width: 991.98px) {
  #ai-chat-carousel-section .cloud {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  #ai-chat-carousel-section .win {
    position: static;
    width: auto;
  }

  #ai-chat-carousel-section .ghost {
    display: none;
  }

  #ai-chat-carousel-section .slide.is-active .win {
    animation: aiChatCarouselPopIn 0.5s cubic-bezier(0.2, 0.9, 0.3, 1.15) both;
    animation-delay: var(--d, 0s);
  }
}

@media (max-width: 575.98px) {
  #ai-chat-carousel-section .cloud {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  #ai-chat-carousel-section .win,
  #ai-chat-carousel-section .ghost {
    opacity: 1;
  }
}

/* ===== STATS BAR ===== */
.stats-bar {
  color: var(--sb-white);
  background:
    radial-gradient(ellipse 70% 55% at 85% 10%,
      var(--sb-glow-cyan),
      transparent 55%),
    radial-gradient(ellipse 55% 45% at 10% 90%,
      var(--sb-glow-blue),
      transparent 50%),
    var(--sb-gradient-dark);
  color: rgba(255, 255, 255, 0.88);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
}

.stat-icon {
  width: 47px;
  height: 47px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
}

.stat-item:hover .stat-icon {
  transform: translateY(-4px) scale(1.08);
  background: rgba(255, 255, 255, 0.32);
}

.stat-icon svg {
  width: 25px;
  height: 25px;
  stroke: #fff;
  fill: none;
}

.stat-number {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 0.92rem;
  color: #fff;
  font-weight: 500;
}

.section-had-values {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-bottom: 35px;
}

.section-had-values .section-lead {
  margin-inline: auto;
  width: 100%;
  max-width: 38rem;
}

.values-section>p {
  max-width: 620px;
  margin: 18px auto 56px;
  color: #6b6b74;
  font-size: 1rem;
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  --accent: var(--sb-blue);
  --accent-soft: rgba(0, 173, 239, 0.12);
  background: var(--sb-white);
  border-radius: 1rem;
  border: 1px solid rgba(0, 173, 239, 0.12);
  box-shadow: 0 8px 28px rgba(0, 73, 140, 0.06);
  padding: 1.75rem 1.4rem 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  border-top: 2px solid #009add;
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgb(0 146 214 / 18%);
  border-color: rgb(2 155 221);
}

.value-icon {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--sb-gradient);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 9px;
  margin-inline: auto;
}

.value-card:hover .value-icon {
  transform: rotate(-8deg) scale(1.08);
}

.value-icon svg {
  width: 25px;
  height: 25px;
  stroke: #fff;
  fill: none;
}

.value-card h3 {
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  font-size: 20px;
}

.value-card p {
  color: #000;
  margin-bottom: 0px;
  margin-top: 10px;
}

.industries-section .section-lead {
  max-width: 45rem;
  color: #fff;
  margin-bottom: 35px;
  margin-inline: auto;
}

.industries-section {
  text-align: center;
  background: linear-gradient(165deg, #003a66 0%, #00558f 55%, #0073bb 100%);
}

.industries-section h2 {
  color: #fff;
}

.industries-section>p {
  max-width: 640px;
  margin: 18px auto 44px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.7;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 1062px;
  margin: 0 auto;
}

.pill {
  border-radius: 999px;
  color: #ffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.65rem 1.35rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pill:hover {
  background: #ffb800;
  border-color: transparent;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255, 106, 26, 0.35);
}

.logo-item {
  background: #fff;
  width: 100%;
  padding: 15px;
  border: 1px solid #0077be52;
}

.logo-item img {
  width: auto;
  height: 60px;
  margin-inline: auto;
  display: block;
}

.logo-item img:hover {
  filter: unset;
}

.logos-section {
  background-color: #fff;
  background:
    radial-gradient(ellipse 55% 45% at 0% 10%,
      rgba(0, 173, 239, 0.08),
      transparent 55%),
    radial-gradient(ellipse 45% 40% at 100% 90%,
      rgba(255, 184, 0, 0.07),
      transparent 50%),
    var(--sb-surface);
}

.logos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 35px;
}

.logos-section .section-root-head-block {
  width: 100%;
  max-width: 50rem;
  text-align: center;
}

.logos-section .section-root-head-block h2 {
  color: #000;
}

.logos-section .section-root-head-block {
  width: 100%;
  max-width: 50rem;
  text-align: center;
  margin-inline: auto;
}

.contact-section::placeholder {
  text-transform: capitalize;
}

.contact-section .btn-sb-blue {
  width: 100%;
}

.contact-section .section-head-contact {
  text-align: center;
  margin-bottom: 35px;
}

.contact-section .section-lead {
  max-width: 50rem;
  margin-inline: auto;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle,
      rgba(255, 106, 26, 0.18),
      transparent 70%);
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 8%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(255, 106, 26, 0.14),
      transparent 70%);
  pointer-events: none;
}


.contact-section>p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 16px auto 46px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.contact-form {
  position: relative;
  z-index: 2;
  max-width: 789px;
  margin: 0 auto;
  text-align: left;
  background: var(--sb-white);
  border-radius: 1.35rem;
  padding: 3rem;
  color: var(--sb-navy);
  height: 100%;
  border: none;
  box-shadow: 0 24px 50px rgba(0, 30, 60, 0.22);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e6e6ea;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  color: #1a1a1a;
  background: #fafafc;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #eee;
  background: #fff;
}

.form-field textarea {
  resize: vertical;
  min-height: 156px;
  margin-bottom: 16px;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #e6e6ea;
  border-radius: 10px;
  padding: 0 14px;
  background: #fafafc;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.phone-field:focus-within {
  background: #fff;
}


.phone-field input {
  border: none;
  background: transparent;
  padding: 14px 0;
  flex: 1;
  font-size: 0.92rem;
}

.phone-field input:focus {
  outline: none;
  box-shadow: none;
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(90deg, #ff8a2b, #ff5f1f);
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease;
  box-shadow: 0 12px 30px rgba(255, 106, 26, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(255, 106, 26, 0.42);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  transition: transform 0.35s ease;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: #1a7a3e;
  font-weight: 600;
}

/* 1. Hero Section (Similar to About Us Page Hero) */
.industry-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  background-image: url('https://www.stackblue.com/wp-content/uploads/2026/09/industry-hero-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: calc(100vh - 90px);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.industry-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(9, 15, 22, 0.67);
}

.industry-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  padding: 35px 20px;
  text-align: center;
  top: -40px;
}

.industry-hero-content .section-title {
  color: #ffffff !important;
  font-family: var(--sb-font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.industry-hero-content .section-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255) !important;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .industry-hero-section {
    height: auto;
    min-height: 540px;
    padding: 6rem 1.5rem 4.5rem;
  }

  .industry-hero-content {
    top: 0;
  }
}

/* 2. Suite Section & Vertical Slider */
.industry-suite-section {
  position: relative;
}

.suite-header {
  margin-bottom: 3.5rem;
}

.suite-heading {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.suite-lead {
  font-size: 1.05rem;
  max-width: 1080px;
  margin-bottom: 0;
}

.vertical-suite-card {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #070d14;
  border: 1px solid rgba(0, 173, 239, 0.2);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.suite-nav-pane {
  background: linear-gradient(145deg, #00adef 0%, #0073bb 52%, #004f8c 100%);
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 420px;
}

.suite-nav-list {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-right: 1.5rem;
}

.suite-nav-item {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  color: rgba(255, 255, 255);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  user-select: none;
}

.suite-nav-item:last-child {
  border-bottom: none;
}

.suite-nav-item .num {
  font-weight: 700;
  margin-right: 0.5rem;
  opacity: 0.85;
}

.suite-nav-item:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.suite-nav-item.active {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  transform: translateX(6px);
}

.suite-progress-track {
  position: absolute;
  right: 1.5rem;
  top: 3.5rem;
  bottom: 3.5rem;
  width: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  z-index: 1;
}

.suite-progress-bar {
  position: absolute;
  width: 100%;
  height: 25%;
  background: #ffffff;
  border-radius: 4px;
  top: 0%;
  transition: top 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.suite-content-pane {
  padding: 3.5rem 3rem;
  background: #000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 420px;
}

.suite-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #00adef, #0073bb);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #ffffff;
  margin-bottom: 1.85rem;
  box-shadow: 0 8px 25px rgba(0, 173, 239, 0.4);
}

.suite-content-slide {
  display: none;
}

.suite-content-slide.active {
  display: block;
  animation: suiteFadeIn 0.35s ease forwards;
}

@keyframes suiteFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.suite-content-title {
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.suite-content-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

/* 3. Metrics Card */
.industry-metrics-card {
  background: #f4f8fc;
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem 2.75rem;
  margin-top: 4.5rem;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 173, 239, 0.1);
}

.metric-col {
  padding: 1rem 1.5rem;
}

.metric-big-num {
  font-family: var(--sb-font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  font-weight: 800;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.metric-line-divider {
  width: 100%;
  max-width: 160px;
  height: 2px;
  background: #111111;
  margin: 0 auto 0.95rem;
  opacity: 0.9;
}

.metric-caption {
  font-size: 0.98rem;
  font-weight: 600;
  color: #111111;
  line-height: 1.45;
  max-width: 250px;
  margin: 0 auto;
}

.btn-metrics-action {
  margin-top: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #ffffff;
  color: #000000 !important;
  border: 1.5px solid #000000;
  border-radius: var(--sb-btn-radius);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.75rem 2.2rem;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.btn-metrics-action:hover {
  background: #000000;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.btn-metrics-action i {
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}

.btn-metrics-action:hover i {
  transform: translateX(4px);
}

/* 4. Elevate Vertical Slider Section */
.elevate-slider-section {
  background: #000;
  position: relative;
}

.elevate-header {
  margin-bottom: 4rem;
}

.elevate-title {
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.elevate-lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255);
  max-width: 1000px;
  margin-bottom: 0;
}

.elevate-slider-row {
  align-items: center;
}

.elevate-steps-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.elevate-step-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sb-font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255);
  padding: 0.85rem 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
}

.elevate-step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.elevate-step-item:hover {
  color: rgba(255, 255, 255, 0.75);
}

.elevate-step-item.active {
  color: #ffb800;
  font-weight: 700;
  transform: translateX(4px);
}

.elevate-step-item.active .elevate-step-dot {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.elevate-image-frame {
  position: relative;
  width: 100%;
  height: 330px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.elevate-img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.elevate-img-slide.active {
  opacity: 1;
  transform: scale(1);
}

.elevate-copy-col {
  padding-left: 1.5rem;
}

.elevate-copy-slide {
  display: none;
}

.elevate-copy-slide.active {
  display: block;
  animation: elevateFadeIn 0.35s ease forwards;
}

@keyframes elevateFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.elevate-copy-slide p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255);
  margin-bottom: 0;
}

/* 5. CTA Banner */
.industry-cta-section {
  background: #ffffff;
}

.cta-banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-right: 2rem;
}

.cta-banner-heading {
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.cta-banner-img-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  height: 330px;
}

.cta-banner-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive adjustments for Industry Page */
@media (max-width: 991.98px) {
  .suite-nav-pane {
    min-height: auto;
    padding: 2.25rem 1.5rem;
  }

  .suite-content-pane {
    min-height: auto;
    padding: 2.25rem 1.5rem;
  }

  .elevate-copy-col {
    padding-left: 0;
    margin-top: 1.5rem;
  }

  .elevate-image-frame {
    height: 280px;
    margin: 1.5rem 0;
  }

  .cta-banner-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .industry-hero-card {
    min-height: 380px;
    padding: 3rem 1rem;
  }

  .industry-metrics-card {
    padding: 2.5rem 1.25rem 2rem;
  }

  .metric-line-divider {
    max-width: 120px;
  }
}

/* ==========================================================================
   SERVICES MAIN PAGE STYLES (Web, Mobile & AI Solutions)
   ========================================================================== */

/* 1. Services Hero Section */
.services-hero-section {
  background:
    radial-gradient(ellipse at 80% 20%,
      rgba(0, 173, 239, 0.2),
      transparent 60%),
    radial-gradient(ellipse at 10% 80%,
      rgba(0, 115, 187, 0.2),
      transparent 50%),
    #071524;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
  color: var(--sb-white);
}

.services-hero-eyebrow {
  font-family: var(--sb-font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  color: var(--sb-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.services-hero-title {
  font-family: var(--sb-font-display);
  font-weight: 800;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--sb-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.services-hero-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.btn-craft-success {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--sb-orange);
  color: var(--sb-navy) !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.6rem 0.85rem 1.85rem;
  border-radius: var(--sb-btn-radius);
  border: none;
  box-shadow: 0 10px 28px rgba(255, 184, 0, 0.35);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-craft-success:hover {
  background: var(--sb-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 184, 0, 0.45);
}

.btn-craft-success .btn-arrow-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sb-white);
  color: var(--sb-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.btn-craft-success:hover .btn-arrow-circle {
  transform: translateX(3px);
}

.services-hero-mockup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-hero-laptop-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  border-radius: 1rem;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.6));
  animation: floatLaptop 6s ease-in-out infinite alternate;
}

@keyframes floatLaptop {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

/* Floating Badges */
.floating-tech-badge {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 173, 239, 0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--sb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sb-blue);
  box-shadow: 0 0 20px var(--sb-glow-cyan);
  animation: badgeFloat 4s ease-in-out infinite alternate;
}

.badge-code {
  top: 20%;
  left: 0%;
  animation-delay: 0.2s;
}

.badge-react {
  bottom: 25%;
  right: 5%;
  animation-delay: 1s;
  color: var(--sb-cyan);
  border-color: var(--sb-blue);
}

.badge-css {
  top: 10%;
  right: 2%;
  animation-delay: 0.6s;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* 2. Experience & Metrics Stats Section */
.services-stats-section {
  padding: 5rem 0;
  background: var(--sb-white);
}

.exp-hero-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 2rem;
  background-size: cover;
  background-position: center;
  box-shadow: 0 15px 40px rgba(0, 73, 140, 0.12);
}

.exp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(11, 26, 40, 0.7) 0%,
      rgba(7, 21, 36, 0.95) 100%);
  z-index: 1;
}

.exp-hero-content {
  position: relative;
  z-index: 2;
  color: var(--sb-white);
}

.exp-tag {
  display: inline-block;
  background: var(--sb-surface);
  color: var(--sb-blue-dark);
  border: 1px solid var(--sb-border);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--sb-btn-radius);
  margin-bottom: 0.85rem;
}

.exp-big-title {
  font-family: var(--sb-font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  line-height: 1;
  color: var(--sb-white);
  margin-bottom: 0.75rem;
}

.exp-sub-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sb-white);
  line-height: 1.35;
  margin: 0;
}

.stats-vertical-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 2rem;
}

.stat-metric-row {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--sb-border);
}

.stat-metric-row:last-child {
  border-bottom: none;
}

.stat-number-big {
  font-family: var(--sb-font-display);
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--sb-blue-dark);
  line-height: 1;
  min-width: 220px;
  letter-spacing: -0.03em;
}

.stat-label-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--sb-navy);
  line-height: 1.35;
}

/* 3. Orange Agent Callout Banner */
.services-agent-banner {
  background: var(--sb-gradient-dark);
  padding: 3rem 0;
  color: var(--sb-white);
}

.agent-banner-title {
  font-family: var(--sb-font-display);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: var(--sb-white);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.agent-banner-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 680px;
}

.btn-agent-white {
  background: var(--sb-orange);
  color: var(--sb-navy) !important;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--sb-btn-radius);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-agent-white:hover {
  background: var(--sb-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* 4. From MVP to Scale Section */
.services-scale-section {
  padding: 5rem 0 6rem;
  background: var(--sb-surface);
}

.scale-card {
  border-radius: 1.25rem;
  padding: 2.75rem 2rem;
  color: var(--sb-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--sb-shadow);
  transition:
    transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.3s ease;
}

.scale-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 73, 140, 0.2);
}

.scale-card {
  background: var(--sb-gradient);
}

.scale-num-arrow {
  font-family: var(--sb-font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.scale-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.scale-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

/* 5. How We Work (And Why It's Different) */
.services-how-work-section {
  background: #000000;
  color: var(--sb-white);
}

.work-feature-card {
  background: #151515;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  height: 100%;
  display: flex;
  gap: 1.25rem;
  transition: transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.work-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--sb-blue);
  background: #3f3f3f;
}

.work-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 10px;
  background: var(--sb-gradient);
  color: var(--sb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.work-feature-title {
  font-family: var(--sb-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sb-white);
  margin-bottom: 0.65rem;
}

.work-feature-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

/* 6. Who This Works Best For */
.services-works-best-section {
  padding-bottom: 0;
  background: var(--sb-white);
}

.best-for-card {
  background: var(--sb-surface);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--sb-border);
  display: flex;
  align-items: center;
  gap: 1.15rem;
  height: 100%;
  transition: all 0.25s ease;
}

.best-for-card:hover {
  background: var(--sb-white);
  border-color: var(--sb-blue);
  transform: translateY(-2px);
  box-shadow: var(--sb-shadow);
}

.best-for-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--sb-gradient);
  color: var(--sb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.best-for-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sb-navy);
  margin: 0;
}

/* 7. Interactive Service Offerings Showcase */
.services-showcase-section {
  padding-bottom: 0;
  background: var(--sb-white);
}

.showcase-nav-box {
  border-top: 3px solid var(--sb-blue);
  padding-top: 1rem;
}

.showcase-nav-item {
  padding: 1rem 0rem;
  border-bottom: 1px solid var(--sb-border);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sb-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  user-select: none;
}

.showcase-nav-item:last-child {
  border-bottom: none;
}

.showcase-nav-item .index {
  font-weight: 700;
}

.showcase-nav-item:hover {
  color: var(--sb-navy);
  transform: translateX(4px);
}

.showcase-nav-item.active {
  color: var(--sb-blue-dark);
  font-weight: 800;
  transform: translateX(6px);
}

.showcase-right-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-top-media {
  border-radius: 1.25rem;
  overflow: hidden;
  height: 260px;
  box-shadow: var(--sb-shadow);
  display: none;
}

.showcase-top-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.showcase-split-row {
  display: flex;
  gap: 1.25rem;
}

.showcase-blue-card {
  flex: 1;
  background: var(--sb-gradient);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  color: var(--sb-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px var(--sb-glow-blue);
}

.showcase-icon-badge {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--sb-white);
}

.showcase-blue-title {
  font-family: var(--sb-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  color: var(--sb-white);
}

.showcase-blue-desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255);
  margin-bottom: 1.5rem;
}

.showcase-nav-arrows {
  display: flex;
  gap: 0.75rem;
}

.showcase-arrow-btn {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: var(--sb-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.showcase-arrow-btn:hover {
  background: var(--sb-white);
  color: var(--sb-blue-dark);
  transform: scale(1.08);
}

.showcase-white-card {
  flex: 1;
  background: var(--sb-surface);
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  border: 1px solid var(--sb-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.showcase-bullet-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sb-navy);
  margin-bottom: 0.35rem;
}

.showcase-bullet-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #334155;
  margin: 0;
}

/* 8. Enterprise Mobile Architects Blue Banner */
.services-architects-banner {
  padding: 5rem 0;
  background: var(--sb-white);
}

.architects-banner-card {
  background: var(--sb-gradient-dark);
  border-radius: 1.5rem;
  padding: 4rem 3.5rem;
  color: var(--sb-white);
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 73, 140, 0.3);
}

.architects-eyebrow {
  font-family: var(--sb-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sb-blue);
  margin-bottom: 0.4rem;
}

.architects-title {
  font-family: var(--sb-font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--sb-white);
}

.architects-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255);
  max-width: 580px;
  margin-bottom: 2.25rem;
}

.btn-consult-architect {
  background: var(--sb-orange);
  color: var(--sb-navy) !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--sb-btn-radius);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.25s ease;
}

.btn-consult-architect:hover {
  background: var(--sb-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.architects-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.architects-phone-img {
  border-radius: 1.5rem;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

/* 9. Case Studies Section */
.services-casestudies-section {
  background: #000000;
}

.casestudy-card {
  background: #0b192a;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 173, 239, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.casestudy-left-pane {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.casestudy-logo-title {
  font-family: var(--sb-font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sb-white);
  margin-bottom: 2rem;
}

.casestudy-block {
  margin-bottom: 1.75rem;
}

.casestudy-block-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sb-white);
  margin-bottom: 0.5rem;
}

.casestudy-block-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.casestudy-bullets {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.casestudy-bullets li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.45rem;
  position: relative;
  padding-left: 1.2rem;
}

.casestudy-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sb-blue);
  font-weight: 700;
}

.casestudy-right-pane {
  background: linear-gradient(145deg, #0b3a5c 0%, #0073bb 100%);
  padding: 3.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.casestudy-phones-mockup {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 1rem;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.casestudy-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.casestudy-pagination-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
}

.casestudy-pagination-badge span.current {
  color: var(--sb-white);
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(0, 173, 239, 0.35);
  border-radius: 50px;
}

/* 10. Industry Use Cases Accordion */
.services-industry-accordion-section {
  background: #06111c;
  padding: 5rem 0 7rem;
  color: var(--sb-white);
}

.industry-accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
}

.industry-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.industry-accordion-title {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--sb-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sb-white);
  margin: 0;
}

.industry-accordion-title .index {
  color: var(--sb-blue);
}

.industry-accordion-icon {
  font-size: 1.2rem;
  color: var(--sb-white);
  transition: transform 0.3s ease;
}

.industry-accordion-item.active .industry-accordion-icon {
  transform: rotate(180deg);
}

.industry-accordion-body {
  display: none;
  padding-top: 1.5rem;
  padding-left: 2.75rem;
}

.industry-accordion-item.active .industry-accordion-body {
  display: block;
  animation: accordionFade 0.35s ease forwards;
}

@keyframes accordionFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-pill-tag {
  background: #0e1f33;
  border: 1px solid rgba(0, 173, 239, 0.18);
  border-radius: 50px;
  padding: 0.75rem 1.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sb-white);
  transition: all 0.2s ease;
}

.industry-pill-tag:hover {
  background: #142b45;
  border-color: var(--sb-blue);
}

.industry-pill-tag i {
  color: var(--sb-blue);
  font-size: 1rem;
}

.industry-know-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sb-blue);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1.25rem;
  transition: color 0.2s ease;
}

.industry-know-more:hover {
  color: var(--sb-cyan-mid);
}

/* ==========================================================================
   AI SOLUTIONS & VOICEBOT/CHATBOT PAGE STYLES (ai-solutions.html)
   ========================================================================== */

/* 1. AI Hero Section */
.ai-hero-section {
  position: relative;
  color: var(--sb-white);
  overflow: hidden;
  text-align: center;
  background: radial-gradient(circle at 85% 15%, rgb(1 155 225 / 55%) 0%, transparent 45%), radial-gradient(circle at 10% 85%, rgb(0 0 0 / 51%) 0%, transparent 45%), #000000;
}

.ai-hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("https://www.stackblue.com/wp-content/uploads/2026/09/b5.png");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.ai-hero-content {
  position: relative;
  z-index: 2;
  /* max-width: 960px; */
  margin: 0 auto;
}

.ai-hero-title {
  font-size: clamp(1.6rem, 4.8vw, 3.8rem);
  line-height: 1.18;
  color: var(--sb-white);
  margin-bottom: 25px;
}

.ai-hero-lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255, 255, 255);
  max-width: 820px;
  margin: 0 auto 25px;
}

.ai-hero-badges-row {
  margin-top: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.9;
}

.ai-hero-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--sb-white);
  letter-spacing: 0.02em;
}

.ai-hero-badge-item .badge-tag {
  background: var(--sb-white);
  color: var(--sb-navy);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  text-transform: uppercase;
}

/* 2. Business Risk Section */
.ai-risk-section {
  background: var(--sb-white);
}

.ai-risk-eyebrow {
  display: inline-block;
  background: var(--sb-surface);
  color: var(--sb-blue-dark);
  border: 1px solid var(--sb-border);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 1.25rem;
  border-radius: var(--sb-btn-radius);
  margin-bottom: 1.25rem;
}

.ai-risk-card {
  background: var(--sb-white);
  border-radius: 1.25rem;
  padding: 2.5rem 2.25rem;
  border: 1px solid var(--sb-border);
  box-shadow: var(--sb-shadow);
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ai-risk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 73, 140, 0.12);
  border-color: var(--sb-blue);
}

.ai-risk-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sb-gradient);
  color: var(--sb-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.ai-risk-card-title {
  font-family: var(--sb-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0.75rem;
}

.ai-risk-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #000000;
  margin-bottom: 0;
}

/* 3. AI Capabilities Slider / Showcase */
.ai-capabilities-section {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 173, 239, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 85% 85%, rgba(0, 115, 187, 0.12) 0%, transparent 50%),
    #000000;
  border-top: 1px solid rgba(0, 173, 239, 0.12);
  border-bottom: 1px solid rgba(0, 173, 239, 0.12);
  overflow: hidden;
}

.ai-cap-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-blue);
  background: rgba(0, 173, 239, 0.1);
  border: 1px solid rgba(0, 173, 239, 0.28);
  padding: 0.4rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.ai-cap-swiper {
  padding: 1.5rem 0.25rem 2.5rem;
  overflow: hidden;
  position: relative;
}

.ai-cap-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
}

.ai-cap-swiper:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 calc(33.333% - 1rem);
}

.ai-cap-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.ai-cap-card {
  background: linear-gradient(170deg, rgb(0 0 0 / 72%) 0%, rgb(22 22 22 / 88%) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 1.35rem;
  padding: 2.25rem 2rem 1.85rem;
  border: 1px solid rgba(0, 173, 239, 0.2);
  display: flex;
  flex-direction: column;
  min-height: 440px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.ai-cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sb-gradient);
  opacity: 0.4;
  transform: scaleX(0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-cap-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 173, 239, 0.55);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55), 0 0 32px rgba(0, 173, 239, 0.2);
  background: linear-gradient(170deg, rgb(0 0 0 / 85%) 0%, rgb(0 0 0 / 96%) 100%);
}

.ai-cap-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.ai-cap-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.ai-cap-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #00adef 0%, #0073bb 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 173, 239, 0.35);
  transition: all 0.35s ease;
}

.ai-cap-card:hover .ai-cap-icon {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 173, 239, 0.5);
}

.ai-cap-badge {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00adef;
  background: rgba(0, 173, 239, 0.1);
  border: 1px solid rgba(0, 173, 239, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.ai-cap-card-title {
  font-family: var(--sb-font-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
  line-height: 1.32;
  letter-spacing: -0.01em;
}

.ai-cap-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.5rem;
}

.ai-cap-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.ai-cap-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.ai-cap-pill i {
  color: #00adef;
  font-size: 1rem;
}

.ai-cap-card:hover .ai-cap-pill {
  background: rgba(0, 173, 239, 0.08);
  border-color: rgba(0, 173, 239, 0.2);
}

.ai-cap-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.ai-cap-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }

  70% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    opacity: 0.7;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.ai-cap-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #00adef;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ai-cap-action i {
  transition: transform 0.25s ease;
}

.ai-cap-action:hover {
  color: #ffffff;
}

.ai-cap-action:hover i {
  transform: translateX(4px);
}

.ai-cap-controls-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding: 0 0.5rem;
}

.ai-cap-pagination {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  width: auto !important;
}

.ai-cap-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  transition: all 0.3s ease;
}

.ai-cap-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: var(--sb-blue);
  box-shadow: 0 0 10px rgba(0, 173, 239, 0.6);
}

.ai-cap-nav-btns {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ai-cap-nav-btns .showcase-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 173, 239, 0.35);
  background: rgba(0, 173, 239, 0.08);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.ai-cap-nav-btns .showcase-arrow-btn:hover {
  background: var(--sb-blue);
  border-color: var(--sb-blue);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 173, 239, 0.5);
}

@media (max-width: 767.98px) {
  .ai-capabilities-section {
    padding: 4.25rem 0 4.75rem;
  }

  .ai-cap-card {
    min-height: auto;
    padding: 1.85rem 1.4rem;
  }
}

/* 4. Outcomes Metric Cards */
.ai-outcomes-section {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  padding: var(--sb-section-pad) 0;
  border-top: 1px solid rgba(0, 173, 239, 0.08);
  border-bottom: 1px solid rgba(0, 173, 239, 0.08);
}

.ai-outcome-card {
  background: var(--sb-white);
  border-radius: 1.25rem;
  padding: 2.25rem 1.75rem;
  color: var(--sb-navy);
  height: 100%;
  border: 1px solid rgba(0, 173, 239, 0.16);
  box-shadow: 0 8px 25px rgba(0, 73, 140, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sb-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ai-outcome-card:hover {
  transform: translateY(-6px);
  border-color: var(--sb-blue);
  box-shadow: 0 16px 36px rgba(0, 173, 239, 0.16);
}

.ai-outcome-card:hover::before {
  opacity: 1;
}

.ai-outcome-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--sb-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.35rem;
  transition: all 0.3s ease;
}

.ai-outcome-card:hover .ai-outcome-icon {
  background: var(--sb-gradient);
  color: var(--sb-white);
  transform: scale(1.06);
  box-shadow: 0 6px 16px rgba(0, 173, 239, 0.35);
}

.ai-outcome-body {
  display: flex;
  flex-direction: column;
}

.ai-outcome-num {
  font-family: var(--sb-font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  color: var(--sb-navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.ai-outcome-card:hover .ai-outcome-num {
  color: var(--sb-blue-dark);
}

.ai-outcome-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.45;
  margin: 0;
  transition: color 0.25s ease;
}

.ai-outcome-card:hover .ai-outcome-label {
  color: var(--sb-navy);
}

/* Outcome Metric Cards Responsive Adjustments (for 6 cards in one line on desktop) */
@media (min-width: 992px) {
  .ai-outcomes-section .ai-outcome-card {
    padding: 1.85rem 1.15rem;
  }

  .ai-outcomes-section .ai-outcome-icon {
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
    margin-bottom: 1.15rem;
  }

  .ai-outcomes-section .ai-outcome-num {
    font-size: 2.15rem;
    margin-bottom: 0.55rem;
  }

  .ai-outcomes-section .ai-outcome-label {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .ai-outcomes-section .ai-outcome-card {
    padding: 1.4rem 0.75rem;
  }

  .ai-outcomes-section .ai-outcome-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
  }

  .ai-outcomes-section .ai-outcome-num {
    font-size: 1.75rem;
  }

  .ai-outcomes-section .ai-outcome-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 767.98px) {
  .ai-outcomes-section .ai-outcome-card {
    padding: 1.5rem 1rem;
  }

  .ai-outcomes-section .ai-outcome-num {
    font-size: 1.95rem;
  }

  .ai-outcomes-section .ai-outcome-label {
    font-size: 0.875rem;
  }
}

/* 5. Scale Smarter AI Services Suite Navigator */
.ai-suite-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, rgb(1 155 225 / 55%) 0%, transparent 45%), radial-gradient(circle at 10% 85%, rgb(0 0 0 / 51%) 0%, transparent 45%), #000000;
  overflow: hidden;
}

.ai-suite-main-box {
  background: rgba(13, 25, 40, 0.72);
  border: 1px solid rgba(0, 173, 239, 0.22);
  border-radius: 1.75rem;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ai-suite-nav-header {
  margin-bottom: 1.25rem;
}

.ai-suite-nav-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-blue);
  background: rgba(0, 173, 239, 0.1);
  border: 1px solid rgba(0, 173, 239, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.ai-suite-tab-item {
  padding: 1.05rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--sb-font-display);
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  user-select: none;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-suite-tab-item:hover {
  color: #ffffff;
  background: rgba(0, 173, 239, 0.08);
  border-color: rgba(0, 173, 239, 0.4);
  transform: translateX(4px);
}

.ai-suite-tab-item.active {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.2) 0%, rgba(0, 115, 187, 0.3) 100%);
  border-color: var(--sb-blue);
  box-shadow: 0 8px 24px rgba(0, 173, 239, 0.18), inset 3px 0 0 var(--sb-blue);
  transform: translateX(6px);
}

.ai-suite-tab-item .ai-tab-title {
  flex: 1;
  line-height: 1.35;
}

.ai-suite-tab-item .tab-bullet {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  transition: all 0.25s ease;
  flex: 0 0 28px;
}

.ai-suite-tab-item:hover .tab-bullet {
  background: rgba(0, 173, 239, 0.2);
  color: var(--sb-blue);
}

.ai-suite-tab-item.active .tab-bullet {
  background: var(--sb-blue);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(0, 173, 239, 0.6);
}

.ai-suite-dynamic-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ai-suite-category-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--sb-blue);
  background: rgba(0, 173, 239, 0.12);
  border: 1px solid rgba(0, 173, 239, 0.25);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

.ai-app-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 1.25rem;
  padding: 1.85rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 195px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}

.ai-app-card:hover {
  background: rgba(0, 173, 239, 0.09);
  border-color: rgba(0, 173, 239, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 173, 239, 0.16);
}

.ai-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.25) 0%, rgba(0, 115, 187, 0.35) 100%);
  border: 1px solid rgba(0, 173, 239, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--sb-blue);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.ai-app-card:hover .ai-app-icon {
  background: var(--sb-blue);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 173, 239, 0.6);
  transform: scale(1.06);
}

.ai-app-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.45;
  margin: 0;
}

.ai-offerings-box {
  margin-top: 2rem;
  padding: 1.6rem 2rem;
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.08) 0%, rgba(0, 115, 187, 0.04) 100%);
  border: 1px solid rgba(0, 173, 239, 0.25);
  border-left: 4px solid var(--sb-blue);
  border-radius: 1rem;
}

.ai-offerings-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sb-blue);
  margin-bottom: 0.6rem;
}

.ai-offerings-text {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

@media (max-width: 991.98px) {
  .ai-suite-main-box {
    padding: 2rem 1.5rem;
  }

  .ai-suite-tab-item.active {
    transform: none;
  }
}

/* 6. Turn AI Investment Into Results Banner & Stats Row */

.ai-results-card {
  background: var(--sb-white);
  border-radius: 1.5rem;
  padding: 3.5rem 3rem;
  color: var(--sb-navy);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  margin-bottom: 5rem;
  border: 1px solid var(--sb-border);
}

.ai-results-title {
  font-family: var(--sb-font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--sb-navy);
}

.ai-results-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #000000;
  max-width: 540px;
  margin-bottom: 2rem;
}

.ai-robot-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ai-robot-img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 1rem;
  filter: drop-shadow(0 15px 30px var(--sb-glow-blue));
}

.ai-stat-col-title {
  font-family: var(--sb-font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--sb-blue);
  line-height: 1;
  margin-bottom: 0.65rem;
}

.ai-stat-col-head {
  font-family: var(--sb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sb-white);
  margin-bottom: 0.75rem;
}

.ai-stat-col-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.ai-partner-card {
  background: #0e1f33;
  border: 1px solid rgba(0, 173, 239, 0.2);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* 7. Industries 3x4 Grid */
.ai-industries-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgb(1 155 225 / 59%) 0%, transparent 60%), radial-gradient(circle at 85% 85%, rgba(0, 115, 187, 0.12) 0%, transparent 45%), #000000;
  border-top: 1px solid rgba(0, 173, 239, 0.12);
  border-bottom: 1px solid rgba(0, 173, 239, 0.12);
  overflow: hidden;
}

.ai-industry-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sb-blue);
  background: rgba(0, 173, 239, 0.1);
  border: 1px solid rgba(0, 173, 239, 0.28);
  padding: 0.4rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.ai-industries-section .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.ai-industry-card {
  background: rgb(0 0 0 / 0%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 173, 239, 0.14);
  border-radius: 1.25rem;
  padding: 2.25rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sb-gradient);
  opacity: 0;
  transform: scaleX(0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-industry-card.active,
.ai-industry-card:hover {
  background: rgb(0 118 189 / 28%);
  border-color: rgba(0, 173, 239, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 173, 239, 0.2);
  z-index: 2;
}

.ai-industry-card.active::before,
.ai-industry-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.ai-industry-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 173, 239, 0.12) 0%, rgba(0, 115, 187, 0.08) 100%);
  border: 1px solid rgba(0, 173, 239, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #ffb800;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-industry-card.active .ai-industry-icon,
.ai-industry-card:hover .ai-industry-icon {
  background: var(--sb-gradient);
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 173, 239, 0.5);
}

.ai-industry-name {
  font-family: var(--sb-font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}

.ai-industry-card.active .ai-industry-name,
.ai-industry-card:hover .ai-industry-name {
  color: #ffffff;
}

.ai-industry-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0.15rem;
}

.ai-industry-card.active .ai-industry-arrow,
.ai-industry-card:hover .ai-industry-arrow {
  background: rgba(0, 173, 239, 0.18);
  border-color: rgba(0, 173, 239, 0.45);
  color: var(--sb-blue);
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .ai-industry-card {
    padding: 1.85rem 1rem 1.65rem;
  }

  .ai-industry-icon {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .ai-industry-name {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
	.logos-grid {
		grid-template-columns: 1fr;
	}
	.values-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .ai-industries-section {
    padding: 3.75rem 0;
  }

  .ai-industry-card {
    padding: 1.4rem 0.85rem 1.25rem;
    gap: 0.75rem;
    border-radius: 1rem;
  }

  .ai-industry-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    font-size: 1.25rem;
  }

  .ai-industry-name {
    font-size: 0.92rem;
  }

  .ai-industry-arrow {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }
}

/* 8. Cloud Providers Section */
.ai-cloud-section {
  background: #06111c;
  padding: 6rem 0 7rem;
  color: var(--sb-white);
}

.ai-cloud-left-card {
  background: var(--sb-gradient-dark);
  border: 1px solid rgba(0, 173, 239, 0.3);
  border-radius: 1.5rem;
  padding: 3.5rem 2.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ai-cloud-provider-card {
  background: #0e1f33;
  border: 1px solid rgba(0, 173, 239, 0.15);
  border-radius: 1.25rem;
  padding: 2rem 2.25rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.25rem;
  transition: all 0.25s ease;
}

.ai-cloud-provider-card:last-child {
  margin-bottom: 0;
}

.ai-cloud-provider-card:hover {
  background: #142b45;
  border-color: var(--sb-blue);
  transform: translateX(4px);
}

.ai-cloud-logo-box {
  min-width: 90px;
  font-size: 2.25rem;
  color: var(--sb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-cloud-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}







/* ==========================================================================
   AI Discover Section (Chatbot & Voice Bot Discovery + AI Readiness)
   ========================================================================== */
.ai-discover-section {
  position: relative;
  background: #ffffff;
  padding: 6rem 0;
}

.ai-discover-card {
  position: relative;
  background: var(--sb-surface);
  border: 1px solid var(--sb-border);
  border-radius: 1.5rem;
  padding: 2.75rem 2.25rem;
  box-shadow: var(--sb-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-discover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 73, 140, 0.12);
  border-color: var(--sb-blue);
}

.ai-discover-card.featured-card {
  border-color: rgba(0, 173, 239, 0.4);
  background: linear-gradient(180deg, rgba(0, 173, 239, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.ai-discover-card-badge {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--sb-blue-dark);
  border: 1px solid rgba(0, 173, 239, 0.25);
}

.ai-discover-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--sb-gradient);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 22px rgba(0, 115, 187, 0.25);
}

.ai-discover-card-title {
  font-family: var(--sb-font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--sb-navy);
  margin-bottom: 0.85rem;
}

.ai-discover-card-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 1.5rem;
}

.ai-discover-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.ai-discover-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sb-navy);
}

.ai-discover-list li i {
  color: var(--sb-blue);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.ai-discover-btn-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: auto;
}

/* AI Readiness Banner Section Wrap */
.ai-readiness-banner-wrap {
  margin-top: 3.5rem;
}

.ai-readiness-banner-link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 73, 140, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.ai-readiness-banner-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 115, 187, 0.28);
}

.ai-readiness-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.ai-readiness-mobile-card {
  background: linear-gradient(135deg, #0057b7 0%, #0080f0 60%, #0099ff 100%);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 73, 140, 0.2);
}

.ai-readiness-mobile-stat {
  font-family: var(--sb-font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ai-readiness-mobile-title {
  font-family: var(--sb-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.ai-readiness-mobile-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.25rem;
}

.ai-readiness-mobile-robot {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
}

.btn-ai-readiness-cta {
  display: inline-block;
  background: #ffffff;
  color: #111827;
  font-family: var(--sb-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
  border: none;
}

.btn-ai-readiness-cta:hover {
  background: #f1f5f9;
  color: var(--sb-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .ai-discover-section {
    padding: 4.5rem 0;
  }

  .ai-discover-card {
    padding: 2.25rem 1.75rem;
  }
}

/* =====================================================
   PORTFOLIO HERO BANNER
===================================================== */

.portfolio-hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.portfolio-hero-banner .portfolio-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}


/* Eyebrow */
.portfolio-hero-banner .portfolio-hero-eyebrow {
  display: inline-block;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}


/* Main Heading */
.portfolio-hero-banner .portfolio-hero-title {
  margin: 0;
  color: #000000;
  font-size: clamp(62px, 6.3vw, 102px);
  font-weight: 700;
  line-height: 1.3;
}

.portfolio-hero-title {
  color: #fff;
}

.portfolio-hero-title {
  color: #fff;
}

.portfolio-gradient-text {
  background: linear-gradient(to right, #0081be, #019be1 50%, #000000 50%);
  position: relative;
  background-size: 200% 100%;
  background-position: 100%;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: .5s ease-in;
}

.portfolio-gradient-text.active {
  background-position: 0;
}




/* Description */
.portfolio-hero-banner .portfolio-hero-description {
  max-width: 980px;
  margin: 34px auto 0;
  color: #000000;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}





/* =========================================================
   PORTFOLIO CASE STUDY
========================================================= */

.portfolio-case-study-section {
  background: #000;
}


/* Card
--------------------------------------------------------- */

.portfolio-case-card {
  position: relative;

  min-height: 490px;

  overflow: hidden;

  border-radius: 14px;

  background-color: #111;
}


/* Background Image
--------------------------------------------------------- */

.portfolio-case-card__bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.portfolio-case-card:hover .portfolio-case-card__bg {
  transform: scale(1.035);
}


/* Dark Overlay
--------------------------------------------------------- */

.portfolio-case-card__overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.34) 43%,
      rgba(0, 0, 0, 0.12) 66%,
      rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(0deg,
      rgba(0, 0, 0, 0.76) 0%,
      rgba(0, 0, 0, 0.03) 65%);

  pointer-events: none;
}


/* Content
--------------------------------------------------------- */
.portfolio-case-card__content {
  position: relative;
  z-index: 2;
  min-height: 490px;
  padding: 55px 60px 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}


/* Left Information
--------------------------------------------------------- */

.portfolio-case-card__info {
  max-width: 390px;
}


.portfolio-case-card__logo {
  margin-bottom: 20px;
}


.portfolio-case-card__logo img {
  width: auto;
  max-width: 170px;
  max-height: max-content;
  object-fit: contain;
}


.portfolio-case-card__description {
  margin: 0;

  color: #fff;

  font-size: 18px;
  font-weight: 500;
  line-height: 1.48;
}


/* Metrics
--------------------------------------------------------- */

.portfolio-case-card__metrics {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  align-items: stretch;

  margin-left: auto;

  max-width: 520px;
}


.portfolio-case-metric {
  position: relative;

  padding: 5px 28px;

  color: #fff;
}


.portfolio-case-metric:first-child {
  padding-left: 0;
}


.portfolio-case-metric:last-child {
  padding-right: 0;
}


.portfolio-case-metric:not(:last-child)::after {
  position: absolute;

  top: 0;
  right: 0;

  width: 1px;
  height: 100%;

  background: rgba(255, 255, 255, 0.75);

  content: "";
}


/* Number */

.portfolio-case-metric strong {
  display: block;

  margin-bottom: 8px;

  color: #fff;

  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}


/* Label */

.portfolio-case-metric span {
  display: block;

  color: rgba(255, 255, 255, 0.95);

  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}




/* Main Card
--------------------------------------------------------- */

.portfolio-project-card {
  margin: 0 auto;
  padding: 15px;
  border-radius: 20px;
  transition: all 0.5s;
  margin-bottom: 0;
}

.portfolio-project-card:hover {
  background: #ffffff;
  box-shadow: 2px 2px 12px 6px #c0c0c03d;
}

/* Image
--------------------------------------------------------- */

.portfolio-project-card__image {
  position: relative;

  height: 450px;

  overflow: hidden;

  border-radius: 12px;
}


.portfolio-project-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}


.portfolio-project-card:hover .portfolio-project-card__image img {
  transform: scale(1.04);
}


/* Content
--------------------------------------------------------- */

.portfolio-project-card__content {
  max-width: 490px;
  margin-left: auto;
  padding-left: 50px;
}

.portfolio-project-card__content.portfolio-project-card_left_content {
  max-width: 490px;
  margin-right: auto;
  padding-right: 65px;
  margin-left: 0;
  padding-left: 0;
}


/* Logo
--------------------------------------------------------- */

.portfolio-project-card__logo {
  margin-bottom: 28px;
}


.portfolio-project-card__logo img {
  width: auto;
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
}


/* Description
--------------------------------------------------------- */

.portfolio-project-card__description {
  max-width: 430px;

  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.42;
}


/* Metrics
--------------------------------------------------------- */

.portfolio-project-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
  margin-bottom: 40px;
}


.portfolio-project-metric {
  position: relative;
  min-height: 72px;
  padding-right: 28px;
}

.portfolio-project-metric:first-child {
  border-right: 1px solid rgb(0 0 0 / 14%);
}


.portfolio-project-metric+.portfolio-project-metric {
  padding-left: 30px;
  padding-right: 0;
}


.portfolio-project-metric+.portfolio-project-metric::before {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 1px;

  background-color: rgba(255, 255, 255, 0.75);

  content: "";
}


/* Metric Number */

.portfolio-project-metric strong {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}


/* Metric Text */

.portfolio-project-metric span {
  display: block;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

  .portfolio-project-card__image {
    height: 420px;
  }

  .portfolio-project-card__content {
    padding-left: 45px;
  }

  .portfolio-project-card__description {
    font-size: 16px;
  }

  .portfolio-project-card__button {
    margin-top: 50px;
  }

}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {

  .portfolio-project-card__image {
    height: 460px;
  }

  .portfolio-project-card__content {
    max-width: 100%;

    margin: 0;

    padding:
      45px 10px 0;
  }

  .portfolio-project-card__description {
    max-width: 650px;
  }

  .portfolio-project-card__metrics {
    max-width: 600px;
  }

  .portfolio-project-card__button {
    margin-top: 40px;
  }

}




/* =========================================================
   PORTFOLIO CTA
========================================================= */

.portfolio-cta-section {
  background: #000;
}


.portfolio-cta-box {
  position: relative;
  max-width: 1500px;
  min-height: 340px;
  margin: 0 auto;
  padding: 48px 40px 38px;
  border: 4px solid transparent;
  border-radius: 28px;
  background: linear-gradient(#000000, #000000) padding-box, linear-gradient(180deg, #0081be 0%, #019be1 45%, #0081be 100%) border-box;
}

/* Heading
--------------------------------------------------------- */

.portfolio-cta-title {
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(27px, 2.15vw, 34px);
  max-width: 70rem;
}

/* Logos
--------------------------------------------------------- */

.portfolio-cta-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 55px;
  margin: 35px 0;
}

.portfolio-cta-logos img {
  width: auto;
  height: 50px;
  max-width: max-content;
  object-fit: contain;
}

.bg-light-blue {
  background: #00acee17;
}

/* Different logo sizing if needed */

/* .portfolio-cta-logos img:nth-child(2) {
    height: 34px;
}

.portfolio-cta-logos img:nth-child(3) {
    height: 42px;
}

.portfolio-cta-logos img:nth-child(4) {
    height: 45px;
}

.portfolio-cta-logos img:nth-child(5) {
    height: 32px;
}
 */


/* Arrow */

.portfolio-cta-button__arrow {
  display: inline-block;

  font-size: 20px;
  line-height: 1;

  transition: transform 0.3s ease;
}


.portfolio-cta-button:hover .portfolio-cta-button__arrow {
  transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .portfolio-cta-section {
    padding: 60px 0 80px;
  }

  .portfolio-cta-box {
    min-height: auto;

    padding: 45px 30px;

    border-radius: 24px;
  }

  .portfolio-cta-logos {
    gap: 35px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .portfolio-cta-section {
    padding: 50px 0 65px;
  }

  .portfolio-cta-box {
    padding: 40px 20px 35px;

    border-width: 3px;
    border-radius: 20px;
  }

  .portfolio-cta-title {
    font-size: 25px;
  }

  .portfolio-cta-logos {
    gap: 25px 30px;

    margin-top: 30px;
  }

  .portfolio-cta-logos img {
    max-width: 95px;
    height: 30px;
  }

  .portfolio-cta-button {
    margin-top: 35px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .portfolio-cta-title {
    font-size: 22px;
    line-height: 1.4;
  }

  .portfolio-cta-logos {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    justify-items: center;

    gap: 25px;
  }

  .portfolio-cta-logos img:last-child {
    grid-column: 1 / -1;
  }

  .portfolio-cta-button {
    min-width: 180px;
  }

}





.about-page-hero__content .section-title {
  color: #fff;
}

.about-page-hero__content p {
  max-width: 100% !important;
  color: #fff;
}

.about-page-hero {
  position: relative;
  width: 100%;
  display: flex;
  overflow: hidden;
  background-image: url("https://www.stackblue.com/wp-content/uploads/2026/09/ab-banner-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

/* Hero Overlay */

.about-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(9, 15, 22, 0.67);
}


/* Hero Content */

.about-page-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  padding: 35px 20px;
  text-align: center;
  top: -82px;
}


/* Hero Title */

.about-page-hero__title {
  margin-bottom: 12px;

  color: #ffffff;

  font-size: 27px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.4px;
}


/* Highlighted Title Text */

.about-page-hero__highlight {
  color: #ff7417;
}


/* Hero Description */
.about-page-hero__description {
  max-width: 723px;
  margin: 0 auto 20px;
  color: #e4e4e4;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.65;
}

/* Hero CTA Button */

.about-page-hero__button {
  min-width: 92px;
  height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 17px;

  border-radius: 7px;

  background: #ff7417;

  color: #ffffff;

  font-size: 8px;
  font-weight: 600;
  text-decoration: none;

  box-shadow: 0 3px 10px rgba(255, 116, 23, 0.25);

  transition:
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about-page-hero__button:hover {
  background: #e9650f;

  transform: translateY(-2px);

  box-shadow: 0 5px 15px rgba(255, 116, 23, 0.35);
}


/* Floating Chat Button */

.about-page-hero__chat-button {
  position: absolute;
  right: 10px;
  bottom: 7px;
  z-index: 3;

  width: 27px;
  height: 27px;

  display: none;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: #ff7417;

  color: #ffffff;

  font-size: 14px;

  cursor: pointer;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

  transition: background-color 0.3s ease;
}

.about-page-hero__chat-button:hover {
  background: #e9650f;
}




/* Card
--------------------------------------------------------- */

.portfolio-showcase-card {
  height: 100%;
  padding: 15px;
  border-radius: 20px;
  transition: all 0.5s;
}

.portfolio-showcase-card:hover {
  background: #ffffff;
  box-shadow: 2px 2px 12px 6px #c0c0c03d;
}


/* Top Content
--------------------------------------------------------- */

.portfolio-showcase-card__top {
  min-height: 265px;
  padding: 0 5px 28px;
}


/* Logo */

.portfolio-showcase-card__logo {
  display: flex;
  align-items: center;

  min-height: 58px;
  margin-bottom: 26px;
}


.portfolio-showcase-card__logo img {
  width: auto;
  height: auto;

  max-width: 110px;
  max-height: 55px;

  object-fit: contain;
}


/* Description */

.portfolio-showcase-card__description {
  max-width: 520px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}


/* Metrics
--------------------------------------------------------- */

.portfolio-showcase-card__metrics {
  display: flex;
  align-items: stretch;

  margin-top: 38px;
}


.portfolio-showcase-metric {
  position: relative;

  flex: 1;

  min-width: 0;

  padding: 0 24px;
}


.portfolio-showcase-metric:first-child {
  padding-left: 0;
}


.portfolio-showcase-metric:not(:last-child)::after {
  position: absolute;

  top: 0;
  right: 0;

  width: 1px;
  height: 100%;

  background: rgba(0, 0, 0, 0.65);

  content: "";
}


/* Metric Number */

.portfolio-showcase-metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
}


/* Metric Label */

.portfolio-showcase-metric span {
  display: block;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
}


/* Image
--------------------------------------------------------- */

.portfolio-showcase-card__image {
  position: relative;

  display: block;

  height: 240px;

  overflow: hidden;

  border-radius: 9px;

  background: #111;
}


.portfolio-showcase-card__image::after {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.06) 0%,
      rgba(0, 0, 0, 0.15) 100%);

  content: "";

  pointer-events: none;
}


.portfolio-showcase-card__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.35s ease;
}


.portfolio-showcase-card:hover .portfolio-showcase-card__image img {
  transform: scale(1.045);
}


/* Arrow
--------------------------------------------------------- */

.portfolio-showcase-card__arrow {
  position: absolute;

  right: 20px;
  bottom: 20px;

  z-index: 3;

  display: flex;

  width: 46px;
  height: 46px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--sb-gradient);

  color: #fff;

  font-size: 20px;

  opacity: 0;

  transform: translateY(8px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}


.portfolio-showcase-card:hover .portfolio-showcase-card__arrow {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

  .portfolio-showcase-section .container {
    max-width: 1220px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .portfolio-showcase-section {
    padding: 65px 0 80px;
  }

  .portfolio-showcase-card__top {
    min-height: auto;

    padding-bottom: 30px;
  }

  .portfolio-showcase-card__image {
    height: 320px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .portfolio-showcase-section {
    padding: 55px 0 70px;
  }

  .portfolio-showcase-card__logo {
    margin-bottom: 20px;
  }

  .portfolio-showcase-card__description {
    font-size: 14px;
  }

  .portfolio-showcase-card__metrics {
    margin-top: 28px;
  }

  .portfolio-showcase-card__image {
    height: 260px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .portfolio-showcase-card__metrics {
    display: grid;

    grid-template-columns: 1fr;
  }

  .portfolio-showcase-metric,
  .portfolio-showcase-metric:first-child {
    padding: 15px 0;
  }

  .portfolio-showcase-metric:not(:last-child)::after {
    top: auto;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.28);
  }

  .portfolio-showcase-card__image {
    height: 220px;
  }

  .portfolio-showcase-card__arrow {
    opacity: 1;
    transform: none;
  }

}












/* Responsive Styles for Services & AI Pages */
@media (max-width: 991.98px) {
  .services-hero-section {
    padding: 4rem 0;
  }

  .stats-vertical-list {
    padding-left: 0;
    margin-top: 2.5rem;
  }

  .showcase-split-row {
    flex-direction: column;
  }

  .architects-banner-card {
    padding: 3rem 2rem;
  }

  .casestudy-left-pane {
    padding: 2.5rem 2rem;
  }

  .casestudy-right-pane {
    padding: 2.5rem 2rem;
  }

  .industry-accordion-body {
    padding-left: 0;
  }

  .ai-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-cloud-provider-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .stat-metric-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .stat-number-big {
    min-width: auto;
  }

  .exp-hero-card {
    padding: 2rem 1.25rem;
  }

  .scale-card {
    padding: 2rem 1.5rem;
  }

  .architects-title {
    font-size: 1.65rem;
  }

  .ai-cap-grid {
    grid-template-columns: 1fr;
  }

  .ai-hero-badges-row {
    gap: 1.5rem;
  }

  .ai-results-card {
    padding: 2rem 1.5rem;
  }
}

/* =========================================================
   GLOBAL LEADERS PORTFOLIO SECTION
========================================================= */

.portfolio-leaders-section {
  background: #000;
}


/* Heading
--------------------------------------------------------- */

.portfolio-leaders-heading {
  margin-bottom: 42px;
}

.portfolio-leaders-heading h2 {
  margin: 0;

  color: #fff;

  font-size: clamp(38px, 3vw, 54px);
  font-weight: 700;
  line-height: 1.08;

  letter-spacing: -0.04em;
}


/* Card
--------------------------------------------------------- */

.portfolio-leader-card {
  position: relative;
  display: flex;
  min-height: 265px;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px 32px 34px;
  overflow: hidden;
  border-radius: 9px;
  background: #44444444;
  transition: transform 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.portfolio-leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}


/* Logo
--------------------------------------------------------- */

.portfolio-leader-logo {
  display: flex;

  align-items: center;

  min-height: 45px;
}


.portfolio-leader-logo img {
  width: auto;
  height: auto;

  max-width: 120px;
  max-height: 48px;

  object-fit: contain;
}


.portfolio-leader-logo--text {
  color: #ffffff;
  font-size: 27px;
  font-weight: 700;
}


/* Stats
--------------------------------------------------------- */

.portfolio-leader-stats {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  margin-top: 55px;
}


.portfolio-leader-stat {
  position: relative;

  min-width: 0;

  padding-right: 28px;
}


.portfolio-leader-stat+.portfolio-leader-stat {
  padding-right: 0;
  padding-left: 28px;
}


.portfolio-leader-stat+.portfolio-leader-stat::before {
  position: absolute;

  top: 0;
  bottom: 0;
  left: 0;

  width: 1px;

  background: rgba(255, 255, 255, 0.65);

  content: "";
}


/* Number */

.portfolio-leader-stat strong {
  display: block;

  margin-bottom: 7px;

  color: var(--sb-blue);

  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}


/* Description */

.portfolio-leader-stat span {
  display: block;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

  .portfolio-leaders-section .container {
    max-width: 1340px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .portfolio-leaders-section {
    padding: 70px 0 85px;
  }

  .portfolio-leaders-heading {
    margin-bottom: 35px;
  }

  .portfolio-leader-card {
    min-height: 250px;

    padding: 32px 28px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .portfolio-leaders-section {
    padding: 55px 0 70px;
  }

  .portfolio-leaders-heading h2 {
    font-size: 36px;
  }

  .portfolio-leader-card {
    min-height: 230px;
  }

  .portfolio-leader-stats {
    margin-top: 45px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .portfolio-leaders-heading h2 {
    font-size: 31px;
  }

  .portfolio-leader-card {
    min-height: auto;

    padding: 28px 24px;
  }

  .portfolio-leader-stats {
    grid-template-columns: 1fr;

    margin-top: 38px;
  }

  .portfolio-leader-stat {
    padding: 15px 0;
  }

  .portfolio-leader-stat+.portfolio-leader-stat {
    padding: 15px 0;

    border-top:
      1px solid rgba(255, 255, 255, 0.25);
  }

  .portfolio-leader-stat+.portfolio-leader-stat::before {
    display: none;
  }

}

/* =========================================
   GET QUOTE MODAL STYLING
========================================= */
.quote-modal .modal-dialog {
  max-width: 860px;
  margin: 1.75rem auto;
}

@media (max-width: 991.98px) {
  .quote-modal .modal-dialog {
    max-width: 540px;
    margin: 1rem auto;
  }
}

@media (max-width: 575.98px) {
  .quote-modal .modal-dialog {
    margin: 0.5rem;
  }
}

.quote-modal .modal-content {
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 102, 255, 0.2);
  position: relative;
}

.quote-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 25;
  transition: transform 0.2s ease, background 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0;
}

.quote-modal-close:hover {
  background: #e2e8f0;
  transform: scale(1.08);
}

.quote-modal-col-left {
  background: #0c3b88;
  position: relative;
  overflow: hidden;
  display: flex;
}

.quote-modal-banner-wrap {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.quote-modal-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}



.quote-modal-col-right {
  background: #000000;
  padding: 30px 34px 0 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}


.quote-modal-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 18px;
  padding-right: 28px;
  letter-spacing: -0.01em;
}

.quote-form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #44474f !important;
  border-radius: 0 !important;
  color: #ffffff !important;
  font-size: 13.5px;
  padding: 6px 2px !important;
  width: 100%;
  transition: border-color 0.2s ease;
  box-shadow: none !important;
}

.quote-form-control:focus {
  border-bottom-color: #0066ff !important;
  outline: none !important;
  box-shadow: none !important;
}

.quote-form-control::placeholder {
  color: #8e95a5;
  font-size: 13px;
}

.quote-textarea {
  resize: vertical;
  min-height: 48px;
}

.quote-phone-group {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #44474f;
  transition: border-color 0.2s ease;
}

.quote-phone-group:focus-within {
  border-bottom-color: #0066ff;
}

.quote-country-code {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 13px;
  padding: 6px 14px 6px 2px;
  width: 58px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  outline: none;
}

.quote-country-code option {
  background: #11141d;
  color: #ffffff;
}

.quote-phone-input {
  border-bottom: none !important;
  flex: 1;
}

.quote-nda-badge {
    color: #ffffff;
    font-size: 12.5px;
    margin: 12px 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.3;
    flex-wrap: wrap;
}

.quote-nda-badge .quote-nda-bullet {
  font-size: 16px;
  line-height: 1;
}

.quote-nda-badge strong {
  font-weight: 700;
}

.quote-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
}

.quote-checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.quote-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #4a4a4a;
  border-radius: 3px;
  background: #06070a;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.quote-check-input:checked {
  background-color: #0066ff;
  border-color: #0066ff;
}

.quote-check-input:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.quote-check-label {
  color: #cfd4dc;
  font-size: 11px;
  line-height: 1.35;
  cursor: pointer;
  margin: 0;
}

.quote-check-label strong {
  color: #ffffff;
}

.quote-submit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.quote-captcha-box {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
}

.quote-captcha-input {
  width: 44px;
  height: 38px;
  background: #06070a;
  border: 1px solid #3d414a;
  border-radius: 6px;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: none;
  outline: none;
  transition: border-color 0.2s ease;
}

.quote-captcha-input:focus {
  border-color: #0066ff;
}

.quote-btn-submit {
  flex: 1;
  background: #0066ff;
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  height: 40px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  box-shadow: 0 4px 14px rgba(0, 102, 255, 0.4);
}

.quote-btn-submit:hover {
  background: #0052cc;
}

.quote-btn-submit:active {
  transform: scale(0.98);
}

.quote-trusted-strip {
  margin-top: 14px;
  margin-left: -34px;
  margin-right: -34px;
  margin-bottom: 0;
  overflow: hidden;
  line-height: 0;
}

.quote-trusted-img {
  width: 100%;
  max-height: 85px;
  object-fit: cover;
  display: block;
}




.portfolio-head-title h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 0;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #ffb80069;
  display: inline-block;
  min-width: 5.5rem;
  width: 100%;
}

/* ==========================================================================
   CASE STUDY DETAILS PAGE (Appinventiv-inspired Design)
   ========================================================================== */

.cs-page {
  background-color: #f8fafc;
  color: var(--sb-navy);
  overflow-x: hidden;
}

/* -----------------------------------------
   Project Switcher Bar
----------------------------------------- */
.cs-switcher-bar {
  background: #0a121e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
  position: relative;
  z-index: 20;
}

.cs-switcher-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cs-switcher-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.cs-switcher-label i {
  color: var(--sb-blue);
  font-size: 1rem;
}

.cs-switcher-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cs-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-family: var(--sb-font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.cs-tab-btn:hover {
  background: rgba(0, 173, 239, 0.15);
  border-color: rgba(0, 173, 239, 0.4);
  color: #ffffff;
  transform: translateY(-1px);
}

.cs-tab-btn.active {
  background: linear-gradient(135deg, #00adef 0%, #0077b6 100%);
  border-color: #00adef;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 173, 239, 0.35);
}

.cs-tab-btn .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

/* -----------------------------------------
   Hero Section
----------------------------------------- */
.cs-hero {
  background: #070e17 radial-gradient(circle at 15% 20%, rgba(0, 173, 239, 0.14) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(0, 210, 180, 0.1) 0%, transparent 50%);
  color: #ffffff;
  padding: 50px 0 70px;
  position: relative;
  overflow: hidden;
}

.cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 24px;
}

.cs-breadcrumb a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cs-breadcrumb a:hover {
  color: #00adef;
}

.cs-breadcrumb .sep {
  opacity: 0.4;
}

.cs-breadcrumb .current {
  color: #38bdf8;
  font-weight: 600;
}

.cs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 173, 239, 0.12);
  border: 1px solid rgba(0, 173, 239, 0.35);
  color: #38bdf8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.cs-hero-badge i {
  font-size: 0.95rem;
}

.cs-hero-header {
  text-align: center;
}

.cs-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.cs-hero-logo img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.cs-hero-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.portfolio-head-action {
  text-align: center;
}

.cs-hero-desc {
  line-height: 1.7;
  max-width: 960px;
  margin-bottom: 0;
  color: #000;
  margin-inline: auto;
}

/* Metadata Fact Bar */
.cs-meta-bar {
  background: #000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.cs-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cs-hero-2 {
  padding: 0;
}

.cs-hero-3 {
  padding: 0;
}

.cs-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb800;
  font-weight: 600;
}

.cs-meta-val {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
}

.cs-meta-val a {
  color: #38bdf8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.2s ease;
}

.cs-meta-val a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

/* Hero Visual Showcase */
.cs-showcase-wrap {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #000000;
}

.cs-showcase-img {
  width: 100%;
  height: clamp(340px, 46vw, 540px);
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  object-position: center;
}

.cs-showcase-wrap:hover .cs-showcase-img {
  transform: scale(1.02);
}

.cs-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 14, 23, 0.1) 0%, rgba(7, 14, 23, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  pointer-events: none;
  width: 100%;
  justify-content: center;
}

.cs-showcase-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cs-glass-pill {
  background: rgb(0 0 0 / 85%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 18px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cs-glass-pill i {
  color: #00adef;
  font-size: 1rem;
}

/* -----------------------------------------
   Section Shared Headers
----------------------------------------- */
.cs-section {
  padding: 80px 0;
  position: relative;
}

.cs-section-header {
  margin-bottom: 48px;
}

.cs-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sb-blue);
  margin-bottom: 10px;
}

.cs-section-title {
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  color: var(--sb-navy);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: center;
}

.cs-section-subtitle {
  font-size: 1.08rem;
  color: #64748b;
  max-width: 760px;
  line-height: 1.65;
}

/* -----------------------------------------
   About Section
----------------------------------------- */
.cs-about-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.cs-about-text {
  font-size: 1.12rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 30px;
}

.cs-about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
}

.cs-stat-box {
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.25s ease;
}

.cs-stat-box:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.cs-stat-num {
  font-family: var(--sb-font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--sb-blue);
  line-height: 1;
  margin-bottom: 6px;
}

.cs-stat-desc {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748b;
  margin: 0;
}

/* -----------------------------------------
   The Challenge Section
----------------------------------------- */
.cs-challenge-section {
  background: var(--sb-gradient);
}

.cs-challenge-section .cs-section-title {
  color: #ffffff;
}

.cs-challenge-section .cs-section-subtitle {
  color: #94a3b8;
}

.cs-challenge-lead-card {
  background: rgb(12 13 14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 34px;
  height: 100%;
}

.cs-challenge-lead-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-challenge-lead-card p {
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
}

.cs-pain-card {
  background: rgba(16, 30, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.25s ease;
}

.cs-pain-card:last-child {
  margin-bottom: 0;
}

.cs-pain-card:hover {
  background: rgba(16, 30, 48, 0.85);
  border-color: rgba(0, 173, 239, 0.35);
  transform: translateX(4px);
}

.cs-pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.cs-pain-content h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.cs-pain-content p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

/* -----------------------------------------
   Solution / How We Helped Section
----------------------------------------- */
.cs-solution-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cs-solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #00adef, #00d2b4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cs-solution-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
}

.cs-solution-card:hover::before {
  opacity: 1;
}

.cs-sol-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 173, 239, 0.1);
  color: var(--sb-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.cs-solution-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 8px;
}

.cs-solution-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Chat Simulator UI */
.cs-chat-simulator {
  background: #0f1a2a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cs-sim-header {
  background: #152438;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cs-sim-bot-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cs-sim-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00adef, #0077b6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.cs-sim-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.cs-sim-status {
  font-size: 0.78rem;
  color: #34d399;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.cs-sim-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  display: inline-block;
}

.cs-sim-body {
  padding: 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #0c1626;
  overflow-y: auto;
}

.cs-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cs-bubble-bot {
  background: #1a2c44;
  color: #e2e8f0;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-bubble-user {
  background: #00adef;
  color: #ffffff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.cs-sim-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.cs-sim-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #93c5fd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
}

.cs-sim-footer {
  background: #152438;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-sim-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 8px 16px;
  color: #94a3b8;
  font-size: 0.88rem;
  flex: 1;
}

.cs-sim-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #00adef;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 0.95rem;
}

/* -----------------------------------------
   Development Process Section (Appinventiv-style)
----------------------------------------- */
.cs-process-section {
  background: #f1f5f9;
}

.cs-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.cs-process-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.cs-process-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.cs-process-num {
  font-family: var(--sb-font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.cs-process-card:hover .cs-process-num {
  color: var(--sb-blue);
}

.cs-process-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sb-navy);
  margin-bottom: 10px;
}

.cs-process-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* -----------------------------------------
   Impact / Results Section (Elevated Design)
----------------------------------------- */
.cs-impact-section {
  background: radial-gradient(circle at 50% 0%, rgba(0, 173, 239, 0.06) 0%, transparent 65%), #f8fafc;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.cs-impact-section .cs-section-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.cs-impact-section .cs-section-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: var(--sb-navy);
  letter-spacing: -0.025em;
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.cs-impact-section .cs-section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--sb-gradient);
  margin: 14px auto 0;
  border-radius: 99px;
}

.cs-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 22px;
  align-items: stretch;
  counter-reset: impact-counter;
}

.cs-impact-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 30px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  counter-increment: impact-counter;
}

.cs-impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sb-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cs-impact-card::after {
  content: "0" counter(impact-counter);
  position: absolute;
  top: 24px;
  right: 22px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #94a3b8;
  opacity: 0.4;
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

.cs-impact-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(0, 173, 239, 0.45);
  box-shadow: 0 20px 40px rgba(0, 173, 239, 0.12), 0 8px 18px rgba(15, 23, 42, 0.05);
}

.cs-impact-card:hover::before {
  opacity: 1;
}

.cs-impact-card:hover::after {
  color: #019be1;
  opacity: 0.95;
  transform: scale(1.08);
}

.cs-impact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(1, 155, 225, 0.1) 0%, rgba(0, 210, 180, 0.1) 100%);
  border: 1px solid rgba(1, 155, 225, 0.22);
  color: #019be1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cs-impact-card:hover .cs-impact-icon {
  background: var(--sb-gradient);
  border-color: transparent;
  color: #ffffff;
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0, 173, 239, 0.3);
}

.cs-impact-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--sb-navy);
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin: 0;
}

.cs-impact-card p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: #64748b;
  margin-top: 8px;
  margin-bottom: 0;
}

.cs-impact-cta,
.cs-challenge-cta {
  margin-top: 52px;
  text-align: center;
}




.cs-impact-grid-3col {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px;
}



/* -----------------------------------------
   Related Case Studies Section
----------------------------------------- */
.cs-related-section {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.cs-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.cs-related-card {
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.cs-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.cs-related-card.tone-mint {
  background: #a8ede4;
  color: var(--sb-navy);
}

.cs-related-card.tone-sand {
  background: #f5ebd7;
  color: var(--sb-navy);
}

.cs-related-card.tone-sky {
  background: #8fd4f2;
  color: var(--sb-navy);
}

.cs-related-card.tone-blush {
  background: #c5e8f8;
  color: var(--sb-navy);
}

.cs-related-brand {
  font-family: var(--sb-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.cs-related-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cs-related-media {
  margin-top: auto;
  border-radius: 12px;
  overflow: hidden;
  height: 150px;
  margin-bottom: 18px;
}

.cs-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-related-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sb-white);
  color: var(--sb-navy);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  width: fit-content;
  transition: all 0.2s ease;
}

.cs-related-btn:hover {
  background: var(--sb-navy);
  color: #ffffff;
}

/* -----------------------------------------
   Dark Tech CTA Section
----------------------------------------- */
.cs-cta-section {
  background: #070e17 radial-gradient(circle at 50% 50%, rgba(0, 173, 239, 0.16) 0%, transparent 70%);
  padding: 90px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cs-cta-box {
  max-width: 820px;
  margin: 0 auto;
}

.cs-cta-title {
  font-family: var(--sb-font-display);
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cs-cta-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 36px;
}

.cs-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Overrides */


.ai-readiness-inner {
  max-width: 1440px;
  min-height: 365px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 28px;

  display: flex;
  align-items: stretch;

  background:
    linear-gradient(90deg,
      #0875c2 0%,
      #008bd6 45%,
      #00a4ef 70%,
      #199ee8 100%);
}

/* ==============================
   LEFT CONTENT
================================ */

.ai-readiness-content {
  width: 52%;
  position: relative;
  z-index: 5;
  padding: 44px 30px 40px 42px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.ai-heading-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.ai-percentage {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.ai-heading {
  margin: 3px 0 0;
  color: #fff;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 700;
}

.ai-description {
  margin: 35px 0 35px;
  color: #fff;
  font-weight: 400;
}

.ai-readiness-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 245px;
  min-height: 52px;
  margin-top: auto;
  padding: 13px 25px;

  background: #fff;
  color: #090909;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;

  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.3s ease;
}

.ai-readiness-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}


/* ==============================
   RIGHT IMAGE AREA
================================ */
.ai-readiness-visual {
  width: 49%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%,
      rgba(255, 255, 255, 0.18),
      transparent 58%);
}


/* light diagonal background */

.ai-readiness-visual::before {
  content: "";
  position: absolute;
  width: 130%;
  height: 70%;
  left: -5%;
  bottom: -24%;

  background: rgba(143, 211, 255, 0.6);
  transform: rotate(-7deg);

  z-index: 0;
}



/* ==============================
   ROBOT
================================ */

.ai-robot-image {
  position: relative;
  z-index: 3;
  width: auto;
  height: 100%;
  max-height: 550px;
  object-fit: contain;
  object-position: bottom center;
}


/* ==============================
   RESPONSIVE
================================ */


/* =========================================================================
   AI CASE STUDIES SECTION (Interactive Carousel & Client Tabs)
   ========================================================================= */
.ai-case-studies-section {
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.ai-case-studies-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(circle, rgb(0 170 236 / 32%) 0%, rgb(0 167 233 / 15%) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ai-case-studies-section .container {
  position: relative;
  z-index: 1;
}

.ai-cs-badge {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00adef;
  background: rgba(0, 173, 239, 0.1);
  border: 1px solid rgba(0, 173, 239, 0.25);
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.ai-cs-header-title {
  font-size: clamp(1.6rem, 3.4vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 0.85rem;
}

.ai-cs-header-lead {
  color: #ffffff;
  max-width: 770px;
  line-height: 1.65;
}

.ai-cs-showcase-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
}

.ai-cs-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0f172a;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-cs-nav-btn:hover {
  background-color: #00adef;
  color: #ffffff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 173, 239, 0.45);
}

.ai-cs-nav-btn.prev-btn {
  left: -24px;
}

.ai-cs-nav-btn.next-btn {
  right: -24px;
}

.ai-cs-card {
  width: 100%;
  background-color: #14161a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 173, 239, 0.05);
  position: relative;
}

.ai-cs-slide {
  display: none;
  opacity: 0;
}

.ai-cs-slide.active {
  display: block;
  opacity: 1;
  animation: aiCsFadeIn 0.4s ease forwards;
}

@keyframes aiCsFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ai-cs-content-col {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ai-cs-title {
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.ai-cs-block {
  margin-bottom: 1.4rem;
}

.ai-cs-label-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.ai-cs-sparkle-svg {
  width: 18px;
  height: 18px;
  fill: #00adef;
  flex-shrink: 0;
}

.ai-cs-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00adef;
  letter-spacing: -0.01em;
}

.ai-cs-desc {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.62;
  margin: 0 0 0 1.85rem;
}

.ai-cs-impact-list {
  list-style: none;
  padding: 0;
  margin: 0.35rem 0 0 1.85rem;
}

.ai-cs-impact-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.ai-cs-impact-list li:last-child {
  margin-bottom: 0;
}

.ai-cs-impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0d131d;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.ai-cs-impact-icon i {
  line-height: 1;
  display: block;
}

.ai-cs-btn-wrap {
  padding-left: 1.85rem;
}

/* Standalone outline button */
.ai-cs-btn-wrap .btn-sb-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: transparent;
  border-radius: 8px;
  padding: 0.65rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease;
  text-decoration: none;
}

.ai-cs-btn-wrap .btn-sb-outline:hover {
  border-color: #00adef;
  background-color: #00adef;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 173, 239, 0.35);
}

.ai-cs-visual-col {
  background: linear-gradient(135deg, #edf1f5 0%, #dbe2ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.ai-cs-visual-box {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ai-cs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ai-cs-card:hover .ai-cs-img {
  transform: scale(1.02);
}

.ai-cs-tabs-container {
  margin-top: 2.75rem;
  display: flex;
  justify-content: center;
}

.ai-cs-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 0.5rem;
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ai-cs-tabs::-webkit-scrollbar {
  display: none;
}

.ai-cs-tab-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.5rem 0.85rem;
  color: #8892b0;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.ai-cs-tab-btn:hover {
  color: #cbd5e1;
}

.ai-cs-tab-btn.active {
  color: #ffffff;
  font-weight: 700;
}

.ai-cs-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: transparent;
  transition: background-color 0.25s ease;
}

.ai-cs-tab-btn.active::after {
  background-color: #ffffff;
}

@media (max-width: 1200px) {
  .ai-cs-nav-btn.prev-btn {
    left: 12px;
  }

  .ai-cs-nav-btn.next-btn {
    right: 12px;
  }
}

@media (max-width: 991px) {
  .ai-cs-content-col {
    padding: 2.5rem 2rem;
  }

  .ai-cs-desc,
  .ai-cs-impact-list,
  .ai-cs-btn-wrap {
    margin-left: 0;
    padding-left: 0;
  }

  .ai-cs-visual-col {
    min-height: 380px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .ai-cs-tabs {
    gap: 1.5rem;
    justify-content: flex-start;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ai-cs-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {

  .ai-cs-card {
    border-radius: 20px;
  }

  .ai-cs-content-col {
    padding: 1.75rem 1.25rem;
  }

  .ai-cs-title {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
  }

  .ai-cs-visual-col {
    min-height: 280px;
  }

  .ai-cs-nav-btn.prev-btn {
    left: 6px;
  }

  .ai-cs-nav-btn.next-btn {
    right: 6px;
  }

  .ai-cs-tab-btn {
    font-size: 0.95rem;
    padding-bottom: 0.65rem;
  }
}


/* ==========================================================================
   CLIENT TESTIMONIALS INNER PAGE STYLES (.tm-*)
   ========================================================================== */

.tm-hero-section {
  position: relative;
  background: linear-gradient(165deg, #003a66 0%, #00558f 55%, #0073bb 100%);
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tm-hero-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 150, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.tm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.tm-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(39, 139, 188, 0.14);
  border: 1px solid rgba(39, 139, 188, 0.4);
  color: #38bdf8;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.tm-hero-eyebrow i {
  color: #38bdf8;
  font-size: 1rem;
}

.tm-hero-title {
  font-family: var(--sb-font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  text-transform: capitalize;
}

.tm-hero-title .tm-highlight {
  background: linear-gradient(135deg, #38bdf8 0%, #278bbc 50%, #f37021 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tm-hero-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 780px;
  margin: 0 auto 3rem;
}

/* Hero Stat Grid */
.tm-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}

.tm-stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.tm-stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateY(-4px);
}

.tm-stat-num {
  font-size: clamp(1.85rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  font-family: var(--sb-font-display);
  line-height: 1.1;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.tm-stat-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tm-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

/* Category Filter Bar */
.tm-filter-wrapper {
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 76px;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.tm-filter-wrapper .container {
  max-width: 1440px;
}

.tm-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
  align-items: center;
}

.tm-filter-btn {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  border-radius: 50px;
  padding: 0.42rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.tm-filter-btn:hover {
  background: #edf2f7;
  color: #0f172a;
  border-color: #cbd5e1;
}

.tm-filter-btn.active {
  background: var(--sb-navy, #060b13);
  color: #ffffff;
  border-color: var(--sb-navy, #060b13);
  box-shadow: 0 4px 14px rgba(6, 11, 19, 0.2);
}

.tm-filter-btn .badge-count {
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  font-size: 0.72rem;
  padding: 0.15rem 0.45rem;
  border-radius: 20px;
  font-weight: 700;
}

.tm-filter-btn.active .badge-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Video Testimonials Section */
.tm-video-section {
  padding: 80px 0;
  background: #f8fafc;
}

.tm-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.tm-section-header .section-label {
  color: #278bbc;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.5rem;
}

.tm-section-header .section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.22;
  margin-bottom: 0.85rem;
}

.tm-section-header .section-lead {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.6;
}

.tm-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.tm-video-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.tm-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.tm-video-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  background: #0f172a;
  overflow: hidden;
  display: block;
  cursor: pointer;
}

.tm-video-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tm-video-card:hover .tm-video-media img {
  transform: scale(1.05);
}

.tm-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.tm-video-card:hover .tm-video-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
}

.tm-play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--sb-orange, #f37021);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 0 0 10px rgba(243, 112, 33, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.tm-play-btn i {
  margin-left: 4px;
}

.tm-video-card:hover .tm-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 16px rgba(243, 112, 33, 0.45);
}

.tm-video-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tm-video-badge i {
  color: #38bdf8;
}

.tm-video-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tm-video-quote {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.tm-video-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.tm-video-author-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.tm-video-author-info h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.15rem;
}

.tm-video-author-info p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* Written Testimonials Grid */
.tm-reviews-section {
  padding: 90px 0;
  background: #ffffff;
}

.tm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.75rem;
}

.tm-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tm-review-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(39, 139, 188, 0.09);
}

.tm-review-card.is-hidden {
  display: none !important;
}

.tm-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.tm-stars {
  color: #f59e0b;
  font-size: 2rem;
  letter-spacing: 2px;
}

.tm-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.tm-card-body {
  flex: 1;
}

.tm-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 0.85rem;
}

.tm-card-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #000000;
  margin-bottom: 1.25rem;
}

/* Impact Badge inside Card */
.tm-impact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.tm-impact-pill i {
  color: #16a34a;
}

.tm-card-footer {
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.tm-author-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tm-author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e2e8f0;
}

.tm-avatar-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid #e2e8f0;
}

.tm-author-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.1rem;
}

.tm-author-role {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
}

.tm-case-study-btn {
  font-size: 0.82rem;
  font-weight: 700;
  color: #278bbc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.tm-case-study-btn:hover {
  background: #278bbc;
  color: #ffffff;
  border-color: #278bbc;
}

/* Client Logos Bar */
.tm-logos-section {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.tm-logos-title {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 2rem;
}

.tm-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.tm-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.tm-logo-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.tm-logo-item img {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

/* Testimonials CTA Banner */
.tm-cta-section {
  padding: 90px 0;
  background: radial-gradient(circle at 50% 50%, #0d1b2e 0%, #050a12 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tm-cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(243, 112, 33, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(60px);
  pointer-events: none;
}

.tm-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.tm-cta-title {
  font-family: var(--sb-font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.tm-cta-lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 2.25rem;
}

.tm-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.tm-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 1.65rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tm-phone-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Homepage Testimonials Button */
.btn-testimonial-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1.5px solid #278bbc;
  color: #278bbc;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-testimonial-all:hover {
  background: #278bbc;
  color: #ffffff;
}




















.career-apply-section {
  position: relative;
  background-image: url("https://www.stackblue.com/wp-content/uploads/2026/09/176.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

.career-apply-form-wrap .tm-hero-inner p {
  color: #fff;
}

.career-apply-form-wrap .tm-hero-inner {
  margin-bottom: 35px;
}

.career-apply-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
}

.career-apply-section .container {
  position: relative;
  z-index: 2;
}

.career-apply-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(165deg, #003a66c7 0%, #00558fc7 55%, #0073bb9e 100%);
  padding: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  border-radius: 0px;
}

.career-form-group {
  margin-bottom: 20px;
}

.career-form-control {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d6d6d6;
  border-radius: 0px;
  background: #fff;
  color: #111;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.career-form-control:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.12);
}

.career-select {
  cursor: pointer;
}

.career-file-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d6d6d6;
  border-radius: 0px;
  background: #fff;
  font-size: 15px;
}
.grecaptcha-badge {
    z-index: 999;
    bottom: 150px !important;
}
.career-file-input::file-selector-button {
  min-height: 50px;
  padding: 0 18px;
  margin-right: 12px;
  border: 0;
  border-right: 1px solid #ddd;
  background: #f2f2f2;
  cursor: pointer;
}

.career-file-group small {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-size: 13px;
}

.career-form-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}



@media (max-width: 767px) {
  .career-apply-section {
    padding: 50px 0;
  }

  .career-apply-form-wrap {
    padding: 25px 18px;
    border-radius: 12px;
  }

  .career-form-bottom {
    justify-content: stretch;
  }

}





/* Thank You Section */
.thank-you-page-content {
    min-height: 500px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f8fc;
}

/* Container */
.thank-you-page-content .container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* Card */
.thank-you-content {
    background: #ffffff;
    padding: 55px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(20, 45, 80, 0.10);
    border: 1px solid #edf1f6;
    max-width: 650px;
    margin-inline: auto;
}

/* Icon */
.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e9f8f0;
    border: 2px solid #2dbb72;
}

.thank-you-icon span {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #2dbb72;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

/* Heading */
.thank-you-content h2 {
    margin: 0 0 18px;
    color: #172b4d;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

/* Description */
.thank-you-content p {
    max-width: 650px;
    margin: 0 auto 30px;
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}

/* Button */
.thank-you-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    background: #1769e0;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thank-you-btn:hover {
    background: #0d55bd;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 105, 224, 0.25);
}

/* Responsive */
@media (max-width: 767px) {
    .thank-you-page-content {
        min-height: 450px;
        padding: 50px 15px;
    }

    .thank-you-content {
        padding: 40px 22px;
        border-radius: 15px;
    }

    .thank-you-content h2 {
        font-size: 28px;
    }

    .thank-you-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .thank-you-icon {
        width: 70px;
        height: 70px;
    }

    .thank-you-icon span {
        width: 48px;
        height: 48px;
        font-size: 25px;
    }
}





/* =========================
   STACK BLUE MOBILE SIDEBAR
========================= */

.sb-mobile-menu-toggle,
.sb-mobile-menu-sidebar,
.sb-mobile-menu-overlay {
    display: none;
}


/* Mobile + Tablet */
@media (max-width: 1200px) {
	.sb-logo {
		padding: 0;
	}
    /* Menu Trigger */
    .sb-mobile-menu-toggle {
        width: 46px;
        height: 46px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: #111;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
        position: relative;
        z-index: 9997;
    }

    .sb-mobile-menu-toggle span {
        width: 20px;
        height: 2px;
        display: block;
        background: #fff;
        border-radius: 5px;
        transition: 0.3s ease;
    }


    /* Overlay */
    .sb-mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
    }


    /* Sidebar */
    .sb-mobile-menu-sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        z-index: 9999;
        top: 0;
        right: 0;
        width: min(90%, 400px);
        height: 100dvh;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.22, 1, .36, 1);
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }


    /* Header */
    .sb-mobile-menu-header {
        min-height: 80px;
        padding: 17px 22px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #e8e8e8;
        flex-shrink: 0;
    }
	.sb-mobile-menu-header img {
		max-width: 156px;
	}
    .sb-mobile-menu-logo {
        color: #101010;
        text-decoration: none;
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 1px;
    }

    .sb-mobile-menu-logo strong {
        font-weight: 800;
    }


    /* Close */
    .sb-mobile-menu-close {
        width: 42px;
        height: 42px;
        padding: 0;
        border: 0;
        background: #f3f3f3;
        color: #111;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .sb-mobile-menu-close:hover {
        background: #111;
        color: #fff;
        transform: rotate(90deg);
    }


    /* Navigation */
    .sb-mobile-menu-nav {
        flex: 1;
        overflow-y: auto;
        padding: 10px 22px 25px;
    }

    .sb-mobile-menu-nav::-webkit-scrollbar {
        width: 4px;
    }

    .sb-mobile-menu-nav::-webkit-scrollbar-thumb {
        background: #d5d5d5;
        border-radius: 10px;
    }

    .sb-mobile-menu-item {
        border-bottom: 1px solid #ededed;
    }


    /* Normal Links */
    .sb-mobile-menu-link,
    .sb-mobile-menu-parent {
        width: 100%;
        min-height: 58px;
        padding: 0;
        margin: 0;
        border: 0;
        background: transparent;
        color: #111;
        font-size: 16px;
        line-height: 1.4;
        font-weight: 600;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        cursor: pointer;
    }

    .sb-mobile-menu-link:hover,
    .sb-mobile-menu-parent:hover {
        color: #f0a500;
    }


    /* Arrow */
    .sb-mobile-menu-parent svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.3s ease;
    }

    .sb-has-submenu.sb-active
    .sb-mobile-menu-parent svg {
        transform: rotate(180deg);
    }


    /* Sub Menu */
    .sb-mobile-submenu {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            padding 0.3s ease;
    }

    .sb-has-submenu.sb-active
    .sb-mobile-submenu {
        max-height: 650px;
        opacity: 1;
        padding: 0 0 14px;
    }

    .sb-mobile-submenu a {
        position: relative;
        display: block;
        padding: 9px 12px 9px 19px;
        color: #000000;
        text-decoration: none;
        font-size: 14px;
        line-height: 1.45;
        font-weight: 500;
        transition: 0.25s ease;
    }

    .sb-mobile-submenu a::before {
        content: "";
        position: absolute;
        left: 2px;
        top: 17px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #f0a500;
    }

    .sb-mobile-submenu a:hover {
        color: #111;
        padding-left: 24px;
    }


    /* Footer */
    .sb-mobile-menu-footer {
        padding: 20px 22px 24px;
        border-top: 1px solid #e8e8e8;
        background: #fff;
        flex-shrink: 0;
    }

    .sb-mobile-menu-cta {
        min-height: 52px;
        width: 100%;
        padding: 0 20px;
        border-radius: 50px;
        background: #111;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 15px;
        font-weight: 600;
        transition: 0.3s ease;
    }

    .sb-mobile-menu-cta span {
        width: 31px;
        height: 31px;
        border-radius: 50%;
        background: #fff;
        color: #111;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
    }

    .sb-mobile-menu-cta:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .sb-mobile-menu-cta:hover span {
        transform: translateX(3px);
    }

    .sb-mobile-menu-phone {
        margin-top: 14px;
        display: block;
        text-align: center;
        color: #707070;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
    }


    /* Open State */
    body.sb-mobile-menu-open {
        overflow: hidden;
    }

    body.sb-mobile-menu-open
    .sb-mobile-menu-sidebar {
        transform: translateX(0);
    }

    body.sb-mobile-menu-open
    .sb-mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

}




.stackblue-topbar {
    background: var(--sb-gradient);
    padding: 0;
    display: none;
}
.stackblue-topbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.stackblue-topbar-actions a {
    text-align: center;
    color: #fff;
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 600;
}
.stackblue-topbar-actions a:first-child {
    background: #ffb800;
    color: #000;
}
@media (max-width: 1200px) {
	.stackblue-topbar {
		display: block;
	}
}




/* Responsive Media Queries */
@media (max-width: 1199.98px) {
  .tm-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .tm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tm-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {

  .tm-filter-wrapper {
    top: 60px;
  }

  .tm-reviews-grid {
    grid-template-columns: 1fr;
  }

  .tm-stats-grid {
    grid-template-columns: 1fr;
  }

  .tm-filter-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0.25rem 1rem;
  }

  .tm-filter-btn {
    white-space: nowrap;
  }
}


@media (max-width: 991.98px) {
  .contact-form {
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

	.portfolio-project-card__metrics {
		margin-top: 15px;
		margin-bottom: 15px;
	}

  .tm-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tm-video-grid {
    grid-template-columns: 1fr;
  }

  #ai-chat-carousel-section .slide {
    height: auto;
    grid-template-columns: 1fr;
    padding: 0;
    background: #000;
    gap: 0;
  }

  .banner-image {
    position: relative;
    z-index: 1;
  }

  #ai-chat-carousel-section .chat {
    display: none;
  }

  #ai-chat-carousel-section .copy {
    max-width: 100%;
    transition: all 0.5s;
    padding: 25px;
  }

  #ai-chat-carousel-section .lede br {
    display: none;
  }

  #ai-chat-carousel-section .title span {
    font-size: 25px;
  }

  #ai-chat-carousel-section .controls {
    display: none;
  }

  #ai-chat-carousel-section .stage {
    display: none;
  }

  #ai-chat-carousel-section .carousel {
    height: auto;
  }

  article.service-card {
    text-align: center;
  }

  .service-icon {
    align-items: center;
    justify-content: center;
  }

  .case-tabs {
    display: none;
  }

  .case-tabs-wrap {
    gap: 0.4rem;
    justify-content: center;
  }

  .case-stat strong {
    font-size: 1rem;
  }

  .case-stat span {
    line-height: 1;
    display: block;
  }

  .case-card {
    padding: 1rem;
  }

  .case-swiper {
    padding: 0.5rem 0 1rem;
  }

  .case-swiper .swiper-wrapper {
    min-height: auto;
  }

  .about-page-hero__content {
    top: 0;
  }

  .about-page-hero {
    height: auto;
  }

	.stats-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

	.logos-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* =====================================================
   RESPONSIVE
===================================================== */


@media (max-width: 991.98px) {
  .cs-meta-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .cs-showcase-img {
    height: 320px;
  }

  .cs-section {
    padding: 60px 0;
  }

  .quote-modal-banner-wrap {
    height: 260px;
    min-height: 260px;
  }
}

@media (max-width: 991.98px) {
  .cs-impact-section {
    padding: 70px 0 75px;
  }

  .cs-impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .cs-impact-grid.cs-impact-grid-3col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px;
  }
}

@media (max-width: 991px) {

  .ai-readiness-inner {
    min-height: 340px;
  }

  .ai-readiness-content {
    width: 55%;
    padding: 35px 25px;
  }

  .ai-readiness-visual {
    width: 45%;
    min-height: 340px;
  }

  .ai-heading {
    font-size: 16px;
  }


  .ai-robot-image {
    max-height: 340px;
  }
}

@media (max-width: 767.98px) {
  .quote-trusted-strip {
    margin-left: -20px;
    margin-right: -20px;
  }

  .quote-modal-col-right {
    padding: 24px 20px 20px 20px;
  }
}


@media (max-width: 767px) {
	.stats-inner {
		grid-template-columns: repeat(1, 1fr);
		gap: 25px;
	}
  .ai-readiness-inner {
    flex-direction: column;
    border-radius: 22px;
  }

  .ai-readiness-content {
    width: 100%;
    padding: 32px 24px 25px;
  }

  .ai-heading-row {
    gap: 12px;
  }

  .ai-heading {
    font-size: 15px;
    line-height: 1.4;
  }

  .ai-description {
    max-width: 100%;
    margin-top: 22px;
  }

  .ai-readiness-btn {
    margin-top: 28px;
    min-width: 220px;
    min-height: 48px;
  }

  .ai-readiness-visual {
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

  .ai-grid-bg {
    width: 65%;
    height: 90%;
    left: 20%;
  }

  .ai-robot-image {
    height: 290px;
    max-height: 290px;
  }
}

@media (max-width: 991px) {
  .portfolio-hero-banner .portfolio-hero-eyebrow {
    margin-bottom: 22px;
    font-size: 19px;
  }


  .portfolio-hero-banner .portfolio-hero-description {
    margin-top: 28px;
    font-size: 17px;
  }

  .portfolio-hero-banner .portfolio-hero-content {
    padding: 0 5px;
  }

  .portfolio-hero-banner .portfolio-hero-eyebrow {
    margin-bottom: 18px;
    font-size: 17px;
  }

  .portfolio-hero-banner .portfolio-hero-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .portfolio-hero-banner .portfolio-gradient-text {
    margin-top: 4px;
  }

  .portfolio-hero-banner .portfolio-hero-description {
    max-width: 540px;

    margin-top: 25px;

    font-size: 15px;
    line-height: 1.6;
  }

  .portfolio-case-card__content {
    min-height: auto;
    padding: 15px;
  }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .portfolio-case-card__metrics {
    max-width: 470px;
  }

  .portfolio-case-metric {
    padding-inline: 20px;
  }

}


@media (max-width: 1200px) {
  div#mainNav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  nav.footer-legal {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  .footer-nav-row {
    display: none;
  }

  .section-label {
    font-size: 1rem;
  }

  .portfolio-project-card__content.portfolio-project-card_left_content {
    max-width: 100%;
    margin-right: auto;
    padding-right: 0;
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .portfolio-project-card__content {
    padding: 0;
    margin-top: 30px;
  }

  .portfolio-project-metric:first-child {
    border-right: 0px solid rgb(0 0 0 / 14%);
  }

  .portfolio-case-card__overlay {
    background: #000000c7;
  }

  .portfolio-case-card__info {
    max-width: 500px;
  }

  .portfolio-case-card__logo {
    margin-bottom: 22px;
  }

  .portfolio-case-card__metrics {
    margin-top: 25px;
    margin-left: 0;

    max-width: 600px;
  }

  section,
  .section-pad,
  .metrics,
  .case-studies,
  .ai-section,
  .testimonials,
  .contact-faq {
    padding: 50px 0;
  }

  .portfolio-project-metric:first-child {
    border-right: 0px solid rgb(0 0 0 / 14%);
  }
	.portfolio-project-metric {
		border-right: 0px solid rgb(0 0 0 / 14%);
		border-block: 1px solid rgb(0 0 0 / 14%);
		padding: 15px 0;
	}
}


@media (max-width: 767px) {
	.portfolio-project-metric span br {
		display: none;
	}
	.portfolio-project-metric {
		border-right: 0px solid rgb(0 0 0 / 14%);
		border-block: 1px solid rgb(0 0 0 / 14%);
		padding: 15px 0;
	}
  .portfolio-case-card__bg {
    object-position: 62% center;
  }

  .portfolio-case-card__description {
    font-size: 16px;
  }

  .portfolio-case-card__metrics {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .portfolio-case-metric,
  .portfolio-case-metric:first-child,
  .portfolio-case-metric:last-child {
    padding: 16px 0;
  }

  .portfolio-case-metric:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 1px;

    background: rgba(255, 255, 255, 0.35);
  }

  .cs-showcase-overlay {
    display: none;
  }

}




/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .portfolio-project-card__image {
    height: 340px;
    border-radius: 10px;
  }

  .portfolio-project-card__content {
    padding: 0;
  }

  .portfolio-project-card__logo {
    margin-bottom: 22px;
  }

  .portfolio-project-card__logo img {
    max-width: 130px;
  }

  .portfolio-project-card__description {
    font-size: 15px;
    line-height: 1.55;
  }


}


/* =========================================================
   SMALL MOBILE
========================================================= */
@media (max-width: 575.98px) {

  .cs-impact-grid,
  .cs-impact-grid.cs-impact-grid-3col {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .cs-impact-card {
    padding: 24px 20px;
  }

  .cs-meta-bar {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cs-about-card {
    padding: 24px;
  }

  .cs-showcase-img {
    height: 240px;
  }

  .cs-switcher-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-project-card__image {
    height: 280px;
  }

  .portfolio-project-card__metrics {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .portfolio-project-metric {
    min-height: auto;

    padding:
      18px 0;
  }

  .portfolio-project-metric+.portfolio-project-metric {
    padding:
      18px 0;

    border-top:
      1px solid rgba(255, 255, 255, 0.3);
  }

  .portfolio-project-metric+.portfolio-project-metric::before {
    display: none;
  }

  .portfolio-project-card__button {
    width: 100%;

    margin-top: 32px;

    justify-content: space-between;
  }

  .portfolio-hero-banner .portfolio-hero-title {
    font-size: clamp(38px, 11vw, 48px);
    letter-spacing: -1.3px;
  }

  .portfolio-hero-banner .portfolio-hero-description {
    font-size: 14px;
  }

}


@media (max-width: 480px) {

  .ai-heading-row {
    align-items: center;
  }


  .ai-readiness-visual {
    height: 250px;
    min-height: 250px;
  }

  .ai-robot-image {
    height: 245px;
  }
}
