:root {
  --primary: #0B5FFF;
  --primary-dark: #0845C7;
  --secondary: #101828;
  --accent: #00D4FF;
  --text: #000000;
  --white: #FFFFFF;
  --light: #F8FAFC;
  --line: #E7ECF3;
  --gradient: linear-gradient(135deg, #0B5FFF, #00D4FF);
  --shadow-sm: 0 12px 35px rgba(16, 24, 40, .08);
  --shadow-lg: 0 28px 80px rgba(11, 95, 255, .16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Cerebri Sans", "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  color: var(--secondary);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.18;
}

h1,
h2 {
  font-weight: 700;
  /* letter-spacing: -.035em; */
}

i.bi.bi-arrow-up-right {
  color: black;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: .25s ease;
}

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

.container {
  max-width: 1300px;
}

.section-padding {
  padding: 90px 0;
}

.light-section {
  background: var(--light);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 9999;
  padding: 10px 18px;
  color: #fff;
  background: var(--secondary);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

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

.section-heading.mx-auto {
  max-width: 760px;
}

.section-heading h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-kicker,
.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 25px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.light-kicker {
  color: #9BEAFF;
}

.btn {
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 600;
}

.btn-lg {
  padding: 15px 25px;
  font-size: .97rem;
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(11, 95, 255, .22);
}

.btn-primary:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 34px rgba(11, 95, 255, .3);
}

.btn i {
  margin-left: 7px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgb(185 185 185 / 74%);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Header */
.site-header {
  padding: 17px 0;
  transition: .3s ease;
}

.site-header.scrolled {
  padding: 9px 0;
  border-bottom: 1px solid rgba(231, 236, 243, .8);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 30px rgba(16, 24, 40, .06);
  backdrop-filter: blur(18px);
}

.navbar {
  padding: 0;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--secondary);
  font-size: 1.18rem;
}

.navbar-brand strong {
  color: var(--primary);
}

.logo-mark {
  position: relative;
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  width: 35px;
  height: 35px;
  padding: 8px;
  border-radius: 10px;
  background: var(--gradient);
  box-shadow: 0 8px 18px rgba(11, 95, 255, .24);
}

.logo-mark i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: white;
}

.logo-mark i:nth-child(1) {
  height: 9px;
}

.logo-mark i:nth-child(2) {
  height: 17px;
}

.logo-mark i:nth-child(3) {
  height: 13px;
}

.nav-link {
  position: relative;
  margin: 0 5px;
  padding: 10px 7px !important;
  color: #344054;
  font-size: .88rem;
  font-weight: 600;
}

.nav-link::after {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  content: "";
  transition: .25s ease;
  transform: translateX(-50%);
}

/* Make dropdown caret cleaner */
.nav-item.dropdown>.nav-link::after {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 22px;
}

.nav-cta {
  padding: 10px 17px;
  font-size: .86rem;
}

.dropdown-menu.service-menu {
  width: 320px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Show dropdown on hover for wider screens (desktop) */
@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .navbar .dropdown>.dropdown-menu {
    transition: transform .18s ease, opacity .18s ease;
    transform: translateY(6px);
    opacity: 0;
    visibility: hidden;
    display: block;
    /* keep it laid out for accessibility */
  }
}

.dropdown-item {
  padding: 10px 12px;
  border-radius: 10px;
  color: #344054;
  font-size: .82rem;
  font-weight: 600;
  white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: var(--primary);
  background: #EEF5FF;
}

.navbar-toggler {
  width: 44px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--light);
  box-shadow: none !important;
}

.navbar-toggler span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  background: var(--secondary);
  transition: .25s;
}

/* Inner pages */
.inner-page {
  background: #fff;
}

.inner-page .site-header {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(16, 24, 40, .06);
  backdrop-filter: blur(18px);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 220px 0 120px;
  background: radial-gradient(circle at 82% 30%, rgba(0, 212, 255, .16), transparent 30%), linear-gradient(145deg, #F7FAFF 0%, #FFFFFF 58%, #F1FBFF 100%);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  opacity: .25;
  background-image: linear-gradient(rgba(11, 95, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 95, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 980px;
  text-align: center;
}

.page-hero h1 {
  margin: 16px auto 18px;
  font-size: clamp(2.7rem, 4vw, 3rem);
}

.page-hero p {
  max-width: 820px;
  margin: 0 auto;
  color: #536276;
  font-size: 1.12rem;
}

.page-content {
  background: white;
}

.page-intro {
  max-width: 980px;
  margin: 0 auto 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--light);
}

.page-intro h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.page-intro p {
  margin-bottom: 12px;
}

.page-intro p:last-child {
  margin-bottom: 0;
}

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

/* Modern media-card layout for inner pages only (keeps home page intact) */
.inner-page .detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.inner-page .detail-card {
  display: flex;
  align-items: stretch;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(11, 95, 255, 0.06);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(243, 249, 255, 0.9), #ffffff);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
  position: relative;
  overflow: visible;
}

.inner-page .detail-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.18rem;
}

/* Thumbnail using pseudo-element so HTML need not change */
.inner-page .detail-card::before {
  content: "";
  width: 220px;
  height: 150px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 220px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  border: 6px solid rgba(255, 255, 255, 0.6);
}

/* Small decorative blue orb overlapping the thumbnail */
.inner-page .detail-card::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(11, 95, 255, 0.18);
  position: absolute;
  top: 22px;
  left: 200px;
}

/* Alternating placeholder thumbnails (replace with local images as needed) */
.inner-page .detail-grid .detail-card:nth-child(4n+1)::before {
  background-image: url('https://images.unsplash.com/photo-1518779578993-ec3579fee39f?auto=format&fit=crop&w=1200&q=80');
}

.inner-page .detail-grid .detail-card:nth-child(4n+2)::before {
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80');
}

.inner-page .detail-grid .detail-card:nth-child(4n+3)::before {
  background-image: url('https://images.unsplash.com/photo-1526378721205-1c1f4a6a4f1f?auto=format&fit=crop&w=1200&q=80');
}

.inner-page .detail-grid .detail-card:nth-child(4n+4)::before {
  background-image: url('https://images.unsplash.com/photo-1508830524289-0adcbe822b40?auto=format&fit=crop&w=1200&q=80');
}



/* On wide screens, alternate image side for even cards */
@media (min-width: 881px) {

  .inner-page .detail-grid .detail-card:nth-child(even)::after {
    left: auto;
    right: 200px;
  }
}

/* Services page: explicit grid with images in HTML markup */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.services-grid .detail-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
}

.services-grid .card-media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.services-grid .card-content {
  padding: 20px;
}

.services-grid .card-content h2 {
  margin: 0 0 8px 0;
  font-size: 1.05rem;
}

.services-grid .card-content p {
  margin-bottom: 14px;
  color: #475569;
}

.services-grid .btn {
  border-radius: 10px;
  padding: 9px 14px;
  font-size: .9rem;
}

/* Disable pseudo-thumbnail on services grid cards (we use real images in HTML) */
.services-grid .detail-card::before {
  display: none !important;
}

.services-grid .detail-card::after {
  display: none !important;
}

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

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

/* Responsive: stack thumbnail above content on small screens */
@media (max-width: 880px) {
  .inner-page .detail-card {
    flex-direction: column;
    padding: 20px;
  }

  .inner-page .detail-card::before {
    width: 100%;
    height: 200px;
    margin: 0 0 16px 0;
    order: -1;
  }

  .inner-page .detail-card::after {
    left: 26px;
    top: 180px;
  }

  .inner-page .detail-grid .detail-card:nth-child(even) {
    flex-direction: column;
  }
}

/* Style feature lists with blue dot bullets to match design */
.inner-page .feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.inner-page .feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #344054;
}

.inner-page .feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}


/* Inner-page media card style matching attached design */
.inner-page .detail-card {
  display: flex;
  align-items: stretch;
  gap: 26px;
  padding: 28px;
  border: 1px solid rgba(11, 95, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(243, 249, 255, 0.9), #ffffff);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.06);
  position: relative;
  overflow: visible;
}

.inner-page .detail-card .detail-icon {
  flex: 0 0 44px;
  margin-top: 6px;
}

.inner-page .detail-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

/* Decorative thumbnail as pseudo-element with framed look */
.inner-page .detail-card::before {
  content: "";
  width: 220px;
  height: 160px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 0 0 220px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.08);
  border: 6px solid rgba(255, 255, 255, 0.6);
  transform: translateZ(0);
}

/* small blue orb badge overlapping the image */
.inner-page .detail-card::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 8px 24px rgba(11, 95, 255, 0.2);
  position: absolute;
  top: 22px;
  left: 200px;
  display: block;
}

/* Alternate thumbnails for visual variety */
.inner-page .detail-grid .detail-card:nth-child(4n+1)::before {
  background-image: url('https://images.unsplash.com/photo-1518779578993-ec3579fee39f?auto=format&fit=crop&w=1200&q=80');
}

.inner-page .detail-grid .detail-card:nth-child(4n+2)::before {
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80');
}

.inner-page .detail-grid .detail-card:nth-child(4n+3)::before {
  background-image: url('https://images.unsplash.com/photo-1526378721205-1c1f4a6a4f1f?auto=format&fit=crop&w=1200&q=80');
}

.inner-page .detail-grid .detail-card:nth-child(4n+4)::before {
  background-image: url('https://images.unsplash.com/photo-1508830524289-0adcbe822b40?auto=format&fit=crop&w=1200&q=80');
}



/* Flip image to right for even items on wider screens */
@media (min-width: 881px) {
  

  .inner-page .detail-grid .detail-card:nth-child(even)::after {
    left: auto;
    right: 200px;
  }
}

/* Responsive: stack thumbnail above content on narrow viewports */
@media (max-width: 880px) {
  .inner-page .detail-card {
    flex-direction: column;
    padding: 20px;
  }

  .inner-page .detail-card::before {
    width: 100%;
    height: 200px;
    margin: 0 0 16px 0;
    order: -1;
  }

  .inner-page .detail-card::after {
    left: 26px;
    top: 180px;
  }

  .inner-page .detail-grid .detail-card:nth-child(even) {
    flex-direction: column;
  }
}

/* Feature list with blue dots matching design */
.inner-page .feature-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.inner-page .feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: #344054;
}

.inner-page .feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 18px;
  top: 0px;
}



.detail-card {
  position: relative;
  min-width: 0;
  height: 100%;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
  transition: .3s ease;
}

.detail-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(11, 95, 255, .055);
  content: "";
  transition: .3s;
}

.detail-card:hover {
  border-color: #B8D0FF;
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.detail-card:hover::after {
  transform: scale(1.35);
}

.detail-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--gradient);
  box-shadow: 0 12px 26px rgba(11, 95, 255, .2);
}

.detail-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  line-height: 25px;
  font-size: 1.18rem;
}

.detail-card p {
  position: relative;
  z-index: 1;
  font-size: 16px;
}

.feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 20px;
  color: #475467;
  font-size: 15px;
  line-height: 1.55;
}

.feature-list li::before {
  position: absolute;
  width: 7px;
  height: 7px;
  margin: 8px 0 0 -20px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.feature-list strong {
  display: block;
  color: var(--secondary);
  font-weight: 700;
}

.feature-list span {
  display: block;
  margin-top: 2px;
}

/* Service detail pages: reference-style content layout */
.service-detail-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(11, 95, 255, .035), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 22px;
}

.service-nav-card,
.service-contact-card {
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(16, 24, 40, .08);
}

.service-nav-card {
  padding: 24px;
}

.service-nav-card h2,
.service-contact-card h2 {
  margin: 0 0 18px;
  color: var(--secondary);
  font-size: 1.45rem;
  text-align: center;
}

.service-nav-card nav {
  display: grid;
  gap: 4px;
}

.service-nav-card a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 8px;
  border-radius: 6px;
  color: #253246;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-nav-card a i {
  color: var(--primary);
  font-size: .78rem;
  line-height: 1.8;
}

.service-nav-card a:hover,
.service-nav-card a.active {
  color: var(--primary);
  background: #eef5ff;
}

.service-contact-card {
  padding: 24px;
}

.service-contact-card p {
  margin-bottom: 18px;
  color: #536276;
  font-size: .95rem;
  line-height: 1.65;
}

.service-detail-main {
  min-width: 0;
}

.service-feature-media {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: 8px;
  background: #dbe6f5;
  box-shadow: 0 20px 52px rgba(16, 24, 40, .12);
}

.service-feature-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.service-detail-intro {
  margin-bottom: 24px;
}

.service-detail-intro span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: "Poppins", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-detail-intro h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.service-detail-intro p {
  max-width: 920px;
  color: #536276;
  font-size: 1rem;
}

.inner-page .service-content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.inner-page .service-content-grid .detail-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .055);
}

.inner-page .service-content-grid .detail-card::before,
.inner-page .service-content-grid .detail-card::after {
  display: none !important;
}

.inner-page .service-content-grid .detail-card:hover {
  border-color: rgba(11, 95, 255, .25);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .1);
}

.inner-page .service-content-grid .detail-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 8px;
  color: var(--primary);
  background: #eef5ff;
  box-shadow: none;
}

.inner-page .service-content-grid .detail-card h2 {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1.12rem;
  line-height: 1.3;
}

.inner-page .service-content-grid .detail-card p {
  min-height: 4.95em;
  margin-bottom: 0;
  color: #536276;
  font-size: .95rem;
  line-height: 1.65;
}

.inner-page .service-content-grid .detail-card:has(> h2):not(:has(p)):not(:has(ul)) {
  min-height: auto;
  padding: 18px 20px;
  background: var(--secondary);
}

.inner-page .service-content-grid .detail-card:has(> h2):not(:has(p)):not(:has(ul)) .detail-icon {
  display: none;
}

.inner-page .service-content-grid .detail-card:has(> h2):not(:has(p)):not(:has(ul)) h2 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
}

.inner-page .service-content-grid .feature-list {

  gap: 9px;
  margin-top: 16px;
}

.inner-page .service-content-grid .feature-list li {
  color: #536276;
  font-size: .92rem;
  line-height: 1.55;
}

.inner-page .service-content-grid .feature-list strong {
  color: var(--secondary);
}

.inner-page .service-content-grid .feature-list li:last-child {
  margin-bottom: 0;
}

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

.service-overview-card {
  position: relative;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, .055);
  transition: .3s ease;
}

.service-overview-card:hover {
  border-color: rgba(11, 95, 255, .25);
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(16, 24, 40, .1);
}

.service-overview-index {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(11, 95, 255, .14);
  font-family: "Poppins", sans-serif;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1;
}

.service-overview-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  color: var(--primary);
  background: #eef5ff;
  font-size: 1.25rem;
}

.service-overview-card h3 {
  position: relative;
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.service-overview-card p {
  position: relative;
  margin-bottom: 18px;
  color: #536276;
  font-size: .94rem;
  line-height: 1.62;
}

.service-overview-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: .9rem;
  font-weight: 700;
}

.service-overview-card a:hover {
  color: var(--primary-dark);
}

/* Non-service inner pages: distinct showcase layouts */
.showcase-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7faff 50%, #fff 100%);
}

.showcase-section .container {
  position: relative;
}

.showcase-section .container::before {
  display: block;
  width: 100%;
  min-height: 320px;
  margin-bottom: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(16, 24, 40, .78), rgba(16, 24, 40, .08)),
    var(--showcase-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(16, 24, 40, .14);
  content: "";
}

.showcase-section .detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.showcase-section .detail-card {
  display: block;
  min-height: 100%;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 40, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 24, 40, .06);
}

.showcase-section .detail-card::before,
.showcase-section .detail-card::after {
  display: none !important;
}

.showcase-section .detail-card:hover {
  border-color: rgba(11, 95, 255, .25);
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(16, 24, 40, .1);
}

.showcase-section .detail-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--primary);
  background: #eef5ff;
  box-shadow: none;
}

.showcase-section .detail-card h2 {
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 1.16rem;
  line-height: 1.32;
}

.showcase-section .detail-card p,
.showcase-section .feature-list li {
  color: #536276;
  font-size: .95rem;
  line-height: 1.62;
}

.showcase-section .feature-list {
  gap: 9px;
  margin-top: 16px;
}

.about-showcase {
  --showcase-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80");
}

.about-showcase .detail-grid {
  grid-template-columns: 1.35fr 1fr;
}

.about-showcase .detail-card:first-child {
  grid-row: span 2;
  padding: 34px;
  background: linear-gradient(145deg, #101828, #173b73);
}

.about-showcase .detail-card:first-child h2,
.about-showcase .detail-card:first-child p,
.about-showcase .detail-card:first-child li,
.about-showcase .detail-card:first-child strong,
.about-showcase .detail-card:first-child span {
  color: #fff;
}

.models-showcase {
  --showcase-image: url("https://images.unsplash.com/photo-1552664688-cf412ec27db2?auto=format&fit=crop&w=1600&q=80");
}

.models-showcase .detail-grid {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.models-showcase .detail-card {
  padding-left: 78px;
}

.models-showcase .detail-icon {
  position: absolute;
  top: 28px;
  left: 24px;
}

.models-showcase .detail-card:first-child {
  grid-column: 1 / -1;
  padding-left: 34px;
  background: #eef5ff;
}

.models-showcase .detail-card:first-child .detail-icon {
  position: static;
}

.projects-showcase {
  --showcase-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=80");
}

.products-showcase {
  --showcase-image: url("https://images.unsplash.com/photo-1551650975-87deedd944c3?auto=format&fit=crop&w=1600&q=80");
}

.careers-showcase {
  --showcase-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");
}

.clients-showcase {
  --showcase-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
}

.projects-showcase .detail-card,
.products-showcase .detail-card,
.clients-showcase .detail-card,
.careers-showcase .detail-card {
  border-top: 4px solid var(--primary);
}

.products-showcase .detail-card:nth-child(2n),
.clients-showcase .detail-card:nth-child(2n) {
  background: #f8fbff;
}

.careers-showcase+.light-section {
  background:
    linear-gradient(135deg, rgba(11, 95, 255, .08), rgba(0, 212, 255, .08)),
    #f8fbff;
}

.contact-page-section {
  padding-top: 110px;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: radial-gradient(circle at 75% 24%, #E8F7FF 0, transparent 31%), linear-gradient(145deg, #F7FAFF 0%, #FFFFFF 55%, #F1FBFF 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image: linear-gradient(rgba(11, 95, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 95, 255, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  top: 8%;
  right: 4%;
  width: 180px;
  height: 180px;
  background: rgba(0, 212, 255, .12);
}

.orb-two {
  bottom: 12%;
  left: -100px;
  width: 250px;
  height: 250px;
  background: rgba(11, 95, 255, .09);
}

.hero-copy {
  padding-top: 70px;
  margin-bottom: 10px;
}

.eyebrow {
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid #D7E5FF;
  border-radius: 50px;
  background: rgba(255, 255, 255, .75);
  letter-spacing: .07em;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(0, 212, 255, .14);
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2rem, 4.6vw, 4.2rem);
}

.gradient-text {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy>p {
  max-width: 650px;
  margin-bottom: 32px;
  color: #536276;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .82);
}

.hero-actions .btn-light i {
  margin: 0 7px 0 0;
  color: var(--primary);
}

.hero-trust {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.avatar-stack {
  display: flex;
  margin-right: 14px;
}

.avatar-stack span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  color: white;
  background: var(--secondary);
  font-size: .62rem;
  font-weight: 700;
}

.avatar-stack span:first-child {
  margin-left: 0;
  background: var(--primary);
}

.avatar-stack span:nth-child(2) {
  background: #3747A5;
}

.avatar-stack span:nth-child(3) {
  background: #00A7C7;
}

.hero-trust p {
  margin: 0;
  color: var(--text);
  font-size: .76rem;
  line-height: 1.45;
}

.hero-trust strong {
  color: var(--secondary);
  font-size: .84rem;
}

.hero-visual {
  position: relative;
  max-width: 590px;
  margin: 80px auto 0;
}

.visual-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: var(--gradient);
  opacity: .24;
  filter: blur(60px);
}

.tech-console {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, .8);
  border-radius: 28px;
  background: rgba(255, 255, 255, .66);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(213, 226, 245, .8);
  color: #718097;
}

.console-top>span {
  display: flex;
  gap: 5px;
}

.console-top>span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D5DEEB;
}

.console-top>span i:first-child {
  background: #00D4FF;
}

.console-top small {
  font-family: monospace;
  font-size: .7rem;
}

.chip-stage {
  position: relative;
  min-height: 430px;
}

.chip-stage svg {
  width: 100%;
  height: auto;
}

.circuit-lines path {
  stroke-dasharray: 8 8;
  animation: circuit 5s linear infinite;
}

@keyframes circuit {
  to {
    stroke-dashoffset: -32;
  }
}

.signal {
  position: absolute;
  border: 1px solid rgba(11, 95, 255, .12);
  border-radius: 50%;
  animation: signal 3s ease-out infinite;
}

.signal-one {
  inset: 26%;
}

.signal-two {
  inset: 18%;
  animation-delay: 1.4s;
}

@keyframes signal {
  0% {
    opacity: 0;
    transform: scale(.8);
  }

  35% {
    opacity: 1;
  }

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

.console-status {
  display: flex;
  justify-content: space-around;
  padding: 18px;
  border-top: 1px solid rgba(213, 226, 245, .8);
  color: #50627B;
  font-size: .74rem;
  font-weight: 600;
}

.console-status i {
  margin-right: 5px;
  color: var(--primary);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border-radius: 14px;
  animation: float 5s ease-in-out infinite;
}

.floating-card>i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 10px;
  color: white;
  background: var(--gradient);
}

.floating-card span {
  color: var(--secondary);
  font-size: .77rem;
  font-weight: 700;
  line-height: 1.35;
}

.floating-card small {
  display: block;
  color: var(--text);
  font-size: .62rem;
  font-weight: 500;
}

.float-a {
  top: 10%;
  left: -7%;
}

.float-b {
  right: -2%;
  bottom: 22%;
  animation-delay: 1s;
}

.float-c {
  bottom: -10%;
  left: 14%;
  animation-delay: 2s;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12B76A;
  box-shadow: 0 0 0 6px rgba(18, 183, 106, .12);
}

@keyframes float {

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

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

.hero-stats {
  position: absolute;
  right: 12px;
  bottom: auto;
  left: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  background: rgba(255, 255, 255, .8);
}

.hero-stats div {
  padding: 22px 30px;
  border-right: 1px solid var(--line);
}

.hero-stats div:last-child {
  border: 0;
}

.hero-stats strong {
  display: block;
  margin-bottom: 2px;
  color: var(--secondary);
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
}

.hero-stats span {
  font-size: .76rem;
}

/* Strip and About */
.brand-strip {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  background: white;
}

.brand-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.brand-strip p {
  flex: 0 0 auto;
  margin: 0;
  color: #98A2B3;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.focus-marquee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 26px;
  color: #344054;
  font-weight: 600;
}

.focus-marquee i {
  margin-right: 7px;
  color: #98A2B3;
  font-size: 1.1rem;
}

/* Marquee (right-to-left looping) */
.focus-marquee {
  position: relative;
  overflow: hidden;
}

.focus-marquee__track {
  display: inline-flex;
  gap: 26px;
  align-items: center;
  white-space: nowrap;
  /* duration is set dynamically via --marquee-duration */
  animation: marquee-linear var(--marquee-duration, 18s) linear infinite;
}

@keyframes marquee-linear {
  from {
    transform: translateX(0);
  }

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

/* Pause animation on hover/focus */
.focus-marquee:focus .focus-marquee__track,
.focus-marquee:hover .focus-marquee__track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .focus-marquee__track {
    animation: none !important;
  }
}

.about-visual {
  position: relative;
  max-width: 540px;
}

.about-image-shell {
  padding: 16px;
  border: 1px solid #DCE7F7;
  border-radius: 34px;
  background: #EDF5FF;
  transform: rotate(-2deg);
}

.about-art {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 24px;
  background: radial-gradient(circle at center, #1F65DF 0, #0D2D70 44%, #071A45 100%);
  transform: rotate(2deg);
}

.art-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed rgba(255, 255, 255, .25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 22s linear infinite;
}

.ring-one {
  width: 300px;
  height: 300px;
}

.ring-two {
  width: 430px;
  height: 430px;
  animation-direction: reverse;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.art-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 125px;
  height: 125px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 38px;
  color: white;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%) rotate(45deg);
  backdrop-filter: blur(10px);
}

.art-core .logo-mark {
  position: absolute;
  top: -12px;
  right: -12px;
  transform: rotate(-45deg);
}

.art-core strong {
  font-family: "Poppins";
  font-size: 2.7rem;
  transform: rotate(-45deg);
}

.art-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50px;
  color: white;
  background: rgba(255, 255, 255, .1);
  font-size: .75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.art-node i {
  color: var(--accent);
  font-size: 1rem;
}

.node-a {
  top: 14%;
  left: 12%;
}

.node-b {
  top: 19%;
  right: 9%;
}

.node-c {
  bottom: 20%;
  left: 8%;
}

.node-d {
  right: 13%;
  bottom: 20%;
}

.about-badge {
  position: absolute;
  right: -20px;
  bottom: 10px;
  padding: 12px 16px;
  border-radius: 16px;
}

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

.about-badge strong {
  color: var(--secondary);
  font-family: "Poppins";
}

.about-badge span {
  font-size: 13px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0;
}

/* Tighten heading spacing on about section */
.about-section .section-heading {
  margin-bottom: 12px;
}

.mission-grid article {
  display: flex;
  gap: 13px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.mission-grid article>span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 10px;
  color: var(--primary);
  background: #EAF2FF;
}

.mission-grid h3 {
  margin: 1px 0 7px;
  font-size: 1rem;
}

.mission-grid p {
  margin: 0;
  font-size: .78rem;
  line-height: 1.6;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.value-pills span {
  padding: 7px 12px;
  border-radius: 30px;
  color: #344054;
  background: var(--light);
  font-size: .72rem;
  font-weight: 600;
}

/* Services */
.service-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 31px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: .35s ease;
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(11, 95, 255, .05);
  content: "";
  transition: .35s;
}

.service-card:hover {
  border-color: #B8D0FF;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scale(1.5);
}

.service-icon {
  display: grid;
  width: 55px;
  height: 55px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  color: var(--primary);
  background: #EAF2FF;
  font-size: 1.45rem;
  transition: .3s;
}

.service-card:hover .service-icon,
.featured-card .service-icon {
  color: white;
  background: var(--gradient);
  transform: rotate(-5deg) scale(1.04);
}

.card-index {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #DCE5F2;
  font-family: "Poppins";
  font-size: 1.25rem;
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: .88rem;
}

.service-card ul {
  margin: 18px 0 23px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  margin: 7px 0;
  padding-left: 19px;
  color: #475467;
  font-size: .78rem;
}

.service-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.service-card>a:not(.btn) {
  position: relative;
  z-index: 1;
  color: var(--primary);
  font-size: .79rem;
  font-weight: 700;
}

.service-card>a i {
  margin-left: 5px;
  transition: .2s;
}

.service-card>a:hover i {
  margin-left: 9px;
}

.service-wide {
  display: grid;
  grid-template-columns: auto 1.5fr 1.4fr auto;
  align-items: center;
  gap: 24px;
}

.service-wide .service-icon {
  margin: 0;
}

.service-wide h3 {
  margin: 0 0 7px;
}

.service-wide p {
  margin: 0;
}

.service-wide .card-index {
  position: static;
  display: block;
  margin-bottom: 4px;
  font-size: .72rem;
}

.wide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.wide-tags span {
  padding: 6px 10px;
  border-radius: 20px;
  background: var(--light);
  font-size: .68rem;
  font-weight: 600;
}

/* Solutions and Tech */
.solutions-section {
  overflow: hidden;
}

.solution-layout {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 22px;
}

.solution-main {
  position: relative;
  display: flex;
  min-height: 510px;
  padding: 55px;
  overflow: hidden;
  border-radius: 30px;
  color: #C9D8F4;
  background: linear-gradient(135deg, #071A45, #0B3A91);
}

.solution-main::before {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(0, 212, 255, .16);
  content: "";
  filter: blur(20px);
}

.solution-copy {
  position: relative;
  z-index: 2;
  max-width: 55%;
}

.solution-copy .mini-label {
  color: #8FEAFF;
}

.solution-copy h3 {
  margin: 16px 0;
  color: white;
  font-size: 2.3rem;
}

.solution-copy p {
  font-size: .9rem;
}

.solution-list {
  display: grid;
  gap: 8px;
  margin: 24px 0 30px;
}

.solution-list span {
  font-size: .79rem;
}

.solution-list i {
  margin-right: 7px;
  color: var(--accent);
}

.dashboard-art {
  position: absolute;
  right: -70px;
  bottom: -30px;
  width: 360px;
  height: 360px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 35px;
  background: rgba(255, 255, 255, .1);
  transform: rotate(-8deg);
  backdrop-filter: blur(12px);
}

.dash-top {
  display: flex;
  gap: 9px;
}

.dash-top span {
  width: 60px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .22);
}

.dash-top span:last-child {
  width: 30px;
  background: var(--accent);
}

.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 190px;
  padding: 40px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.dash-chart i {
  flex: 1;
  height: 35%;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, var(--primary), var(--accent));
}

.dash-chart i:nth-child(2) {
  height: 60%;
}

.dash-chart i:nth-child(3) {
  height: 42%;
}

.dash-chart i:nth-child(4) {
  height: 80%;
}

.dash-chart i:nth-child(5) {
  height: 66%;
}

.dash-chart i:nth-child(6) {
  height: 92%;
}

.dash-row {
  display: flex;
  gap: 10px;
  padding-top: 25px;
}

.dash-row span {
  flex: 1;
  height: 45px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .1);
}

.solution-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.solution-side article {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition: .3s;
}

.solution-side article:hover {
  border-color: #B8D0FF;
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.solution-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: #EAF2FF;
  font-size: 1.15rem;
}

.solution-side h3 {
  font-size: 1rem;
}

.solution-side p {
  margin: 0;
  font-size: .76rem;
  line-height: 1.6;
}

.tech-tabs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.tech-tabs .nav {
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.tech-tabs .nav-link {
  margin: 0;
  padding: 10px 18px !important;
  border-radius: 10px;
  color: #667085;
}

.tech-tabs .nav-link::after {
  display: none;
}

.tech-tabs .nav-link.active {
  color: white;
  background: var(--primary);
}

.tab-content {
  padding: 40px;
}

.tech-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tech-cloud span {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: #344054;
  background: var(--light);
  font-size: .78rem;
  font-weight: 700;
  transition: .25s;
}

.tech-cloud span:hover {
  border-color: #B8D0FF;
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.tech-cloud i,
.tech-cloud strong {
  color: var(--primary);
  font-size: 1.3rem;
}

/* Industries, Why, Engagement */
.industries-section {
  color: #B8C8E5;
  background: #071A45;
}

.industries-section h2,
.industries-section h3 {
  color: white;
}

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

.industry-grid article {
  min-height: 145px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .055);
  transition: .3s;
}

.industry-grid article:hover {
  border-color: rgba(0, 212, 255, .5);
  background: rgba(11, 95, 255, .2);
  transform: translateY(-5px);
}

.industry-grid i {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 1.4rem;
}

.industry-grid h3 {
  margin: 0;
  font-size: .85rem;
  line-height: 1.45;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.why-grid article {
  position: relative;
  min-height: 260px;
  padding: 35px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: .3s;
}

.why-grid article:hover {
  z-index: 2;
  background: white;
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.why-grid article>span {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #D7E0EC;
  font-family: "Poppins";
  font-size: .8rem;
  font-weight: 700;
}

.why-grid i {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 25px;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: #EAF2FF;
  font-size: 1.25rem;
}

.why-grid h3 {
  font-size: 1.05rem;
}

.why-grid p {
  margin: 0;
  font-size: .8rem;
}

.engagement-section {
  background: linear-gradient(180deg, #fff, #F3F8FF);
}

.model-accordion {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.accordion-item {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.accordion-item:last-child {
  border: 0;
}

.accordion-button {
  padding: 19px 23px;
  color: var(--secondary);
  background: white;
  font-family: "Poppins";
  font-size: .9rem;
  font-weight: 600;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #F3F7FF;
}

.accordion-button::after {
  background-size: 14px;
}

.accordion-body {
  padding: 2px 23px 20px;
  color: var(--text);
  background: #F3F7FF;
  font-size: .82rem;
}

/* Portfolio and process */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  transition: .35s;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.portfolio-visual {
  position: relative;
  display: grid;
  height: 290px;
  place-items: center;
  overflow: hidden;
}

.portfolio-blue .portfolio-visual {
  background: linear-gradient(145deg, #DCE9FF, #F5F8FF);
}

.portfolio-dark .portfolio-visual {
  background: linear-gradient(145deg, #071A45, #1555BE);
}

.portfolio-cyan .portfolio-visual {
  background: linear-gradient(145deg, #DDFBFF, #EEF7FF);
}

.concept-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 20px;
  color: var(--secondary);
  background: rgba(255, 255, 255, .65);
  font-size: .61rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.portfolio-copy {
  padding: 27px;
}

.portfolio-copy>span {
  color: var(--primary);
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-copy h3 {
  margin: 8px 0 12px;
  font-size: 1.2rem;
}

.portfolio-copy p {
  font-size: .79rem;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.stack-tags b {
  padding: 5px 9px;
  border-radius: 20px;
  color: #475467;
  background: var(--light);
  font-size: .61rem;
}

.wafer {
  position: relative;
  width: 180px;
  height: 180px;
  overflow: hidden;
  border: 12px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: repeating-linear-gradient(0deg, transparent 0 28px, rgba(255, 255, 255, .45) 28px 30px), repeating-linear-gradient(90deg, #0B5FFF 0 28px, #00B8E6 28px 30px);
  box-shadow: 0 25px 50px rgba(11, 95, 255, .2);
  transform: rotate(-12deg);
}

.wafer::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 20px;
  background: white;
  content: "";
}

.iot-device {
  position: relative;
  width: 190px;
  height: 230px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 35px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
  transform: rotate(7deg);
}

.iot-device::before {
  position: absolute;
  top: 25px;
  right: 20px;
  bottom: 70px;
  left: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, #00D4FF, #0B5FFF);
  content: "";
}

.iot-device span {
  position: absolute;
  z-index: 2;
  top: 70px;
  left: 72px;
  width: 50px;
  height: 50px;
  border: 9px solid white;
  border-radius: 50%;
}

.iot-device i,
.iot-device b {
  position: absolute;
  bottom: 32px;
  height: 8px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .4);
}

.iot-device i {
  left: 28px;
  width: 65px;
}

.iot-device b {
  right: 28px;
  width: 45px;
}

.erp-ui {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 230px;
  padding: 18px;
  border: 1px solid white;
  border-radius: 22px;
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 25px 50px rgba(11, 95, 255, .15);
  transform: rotate(-5deg);
}

.erp-ui span {
  grid-column: 1/-1;
  height: 35px;
  border-radius: 9px;
  background: var(--primary);
}

.erp-ui i {
  height: 75px;
  border-radius: 10px;
  background: #E7F0FF;
}

.erp-ui i:last-child {
  grid-column: 1/-1;
  height: 45px;
  background: linear-gradient(90deg, #00D4FF, #0B5FFF);
}

.process-section {
  color: #B8C8E5;
  background: linear-gradient(135deg, #071A45, #0B327E);
}

.process-section h2,
.process-section h3 {
  color: white;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.process-track::before {
  position: absolute;
  top: 51px;
  right: 6%;
  left: 6%;
  height: 1px;
  background: rgba(255, 255, 255, .18);
  content: "";
}

.process-track article {
  position: relative;
  z-index: 2;
  text-align: center;
}

.process-track article>span {
  display: block;
  margin-bottom: 10px;
  color: #7F9DCC;
  font-size: .65rem;
  font-weight: 700;
}

.process-track i {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 18px;
  color: var(--accent);
  background: #0A2861;
  font-size: 1.2rem;
  transition: .3s;
}

.process-track article:hover i {
  color: white;
  background: var(--primary);
  transform: translateY(-6px);
}

.process-track h3 {
  font-size: .78rem;
}

/* Commitments, FAQ, contact */
.commitments-section {
  background: white;
}

.commitments-section h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.carousel-controls {
  display: flex;
  gap: 9px;
  margin-top: 25px;
}

.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--secondary);
  background: white;
  transition: .2s;
}

.carousel-controls button:hover {
  color: white;
  border-color: var(--primary);
  background: var(--primary);
}

.commitment-carousel article {
  min-height: 350px;
  padding: 55px;
  border-radius: 26px;
  color: #BCD0F1;
  background: linear-gradient(135deg, #0B5FFF, #073C9E);
}

.commitment-carousel article>i {
  color: var(--accent);
  font-size: 2.5rem;
}

.commitment-carousel article>p {
  margin: 20px 0 40px;
  color: white;
  font-family: "Poppins";
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  line-height: 1.45;
}

.commitment-carousel article>div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.quote-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  color: white;
  font-size: .7rem;
}

.commitment-carousel strong {
  color: white;
  font-size: .82rem;
}

.commitment-carousel small {
  display: block;
  color: #AFC7EC;
  font-weight: 400;
}

.faq-section {
  background: #F8FAFC;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 35px;
}

.faq-contact>i {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: #EAF2FF;
}

.faq-contact strong,
.faq-contact a {
  display: block;
}

.faq-contact strong {
  color: var(--secondary);
  font-size: .8rem;
}

.faq-contact a {
  color: var(--primary);
  font-size: .76rem;
}

.faq-accordion {
  border-top: 1px solid #DDE5EF;
}

.faq-accordion .accordion-item {
  background: transparent;
}

.faq-accordion .accordion-button,
.faq-accordion .accordion-body {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.faq-accordion .accordion-button {
  font-size: .96rem;
}

.faq-accordion .accordion-body {
  padding-top: 0;
}

.contact-section {
  color: #B8C8E5;
  background: #071A45;
}

.contact-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.contact-info h2 {
  margin: 14px 0 20px;
  color: white;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.contact-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin: 35px 0;
}

.contact-points>* {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
}

.contact-points i {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: var(--accent);
  background: rgba(255, 255, 255, .06);
}

.contact-points span,
.contact-points small {
  display: block;
}

.contact-points span {
  font-size: .74rem;
  font-weight: 600;
}

.contact-points small {
  color: #9FB5D8;
  font-size: .68rem;
  font-weight: 400;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a,
.social-links>span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  color: white;
}

.social-links a:hover {
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-2px);
}

.social-links>span {
  cursor: default;
  opacity: .72;
}

.contact-form-wrap {
  padding: 42px;
  border-radius: 27px;
  background: white;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
}

.form-heading {
  margin-bottom: 25px;
}

.form-heading span {
  color: var(--primary);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 5px 0 0;
  font-size: 1.65rem;
}

.form-label {
  color: #344054;
  font-size: .72rem;
  font-weight: 600;
}

.form-control,
.form-select {
  min-height: 50px;
  padding: 12px 14px;
  border-color: #DFE6EF;
  border-radius: 10px;
  color: var(--secondary);
  font-size: .8rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 95, 255, .1);
}

textarea.form-control {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: #98A2B3;
  font-size: .65rem;
}

.form-note i {
  margin-right: 4px;
  color: #12B76A;
}

.form-status {
  margin-top: 8px;
  color: #12B76A;
  font-size: .73rem;
  font-weight: 600;
}

.cta-section {
  padding: 90px 0;
  background: white;
}

.cta-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 55px 65px;
  overflow: hidden;
  border-radius: 30px;
  color: #D5E3FA;
  background: var(--gradient);
  box-shadow: 0 30px 70px rgba(11, 95, 255, .25);
}

.cta-shell>div:not(.cta-orb),
.cta-shell>a {
  position: relative;
  z-index: 2;
}

.cta-shell span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cta-shell h2 {
  margin: 8px 0 10px;
  color: white;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-shell p {
  margin: 0;
}

.cta-shell .btn {
  flex: 0 0 auto;
  color: var(--primary);
}

.cta-orb {
  position: absolute;
  right: 10%;
  width: 280px;
  height: 280px;
  border: 45px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

/* Footer */
.site-footer {
  color: #8FA5C8;
  background: #050F25;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr .8fr 1.25fr;
  gap: 45px;
  padding: 80px 0 60px;
}

.site-footer .navbar-brand {
  color: white;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0;
  font-size: .78rem;
}

.footer-main h3 {
  margin-bottom: 20px;
  color: white;
  font-size: .86rem;
}

.footer-main>div:not(.footer-brand)>a {
  display: block;
  margin: 9px 0;
  font-size: .74rem;
}

.footer-main>div>a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-news p {
  font-size: .74rem;
}

.newsletter-control {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .05);
}

.newsletter-control input {
  min-width: 0;
  padding: 11px 12px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: .72rem;
}

.newsletter-control button {
  width: 42px;
  border: 0;
  color: white;
  background: var(--primary);
}

.footer-news small {
  display: block;
  margin-top: 7px;
  color: #65D3A0;
  font-size: .65rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .68rem;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a:hover {
  color: white;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 0;
  border-radius: 13px;
  color: white;
  background: var(--primary);
  box-shadow: 0 10px 30px rgba(11, 95, 255, .3);
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  transform: translateY(15px);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}