:root {
  --bg: #fefefe;
  --surface: #ffffff;
  --line: #d7deea;
  --text: #171d29;
  --muted: #556074;
  --brand: #08a8e8;
  --brand-dark: #058dcd;
  --fs-h1: 75px;
  --fs-h2: 44px;
  --fs-h3: 24px;
  --fs-h4: 20px;
  --fs-body: 18px;
  --fs-span: 16px;
  --fs-eyebrow: 16px
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility
}

p {
  font-size: var(--fs-body)
}

span {
  font-size: var(--fs-span)
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto
}

.section {
  padding: clamp(72px, 8vw, 108px) 0
}

.section-soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(120, 140, 185, 0.32);
  background: #121d44;
  backdrop-filter: blur(8px)
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.logo {
  text-decoration: none;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
  font-size: 22px
}

.site-nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center
}

.site-nav a {
  text-decoration: none;
  color: #e8f0ff;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease
}

.site-nav a:hover {
  color: #7fd9ff
}

.site-nav .nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 0
}

.site-nav .has-children {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800
}

.site-nav .nav-caret {
  font-size: 12px;
  color: #8bd8ff;
  transition: transform 0.3s ease, color 0.3s ease
}

.site-nav .nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(680px, 84vw);
  min-width: 480px;
  border: 1px solid rgba(140, 173, 220, 0.42);
  border-radius: 16px;
  background: linear-gradient(170deg, rgba(17, 37, 76, 0.95), rgba(10, 22, 47, 0.95));
  box-shadow: 0 18px 40px rgba(8, 18, 41, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 12px;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
  z-index: 60;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease
}

.site-nav .nav-submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 212, 255, 0.88), rgba(36, 152, 255, 0.45))
}

/* Invisible bridge fills the gap between trigger and panel so hover never breaks */
.site-nav .nav-submenu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 18px
}

.site-nav .nav-dropdown:hover .nav-submenu,
.site-nav .nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto
}

.site-nav .nav-dropdown:hover .nav-caret,
.site-nav .nav-dropdown:focus-within .nav-caret {
  color: #b7ebff;
  transform: rotate(180deg)
}

.site-nav .nav-submenu a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(143, 175, 222, 0.18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(35, 60, 109, 0.28), rgba(20, 38, 74, 0.36));
  font-size: 15px;
  color: #e0eeff;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, color 0.22s ease
}

.site-nav .submenu-item-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #7fd9ff;
  font-size: 13px;
  background: radial-gradient(circle at 30% 30%, rgba(84, 213, 255, 0.24), rgba(9, 35, 72, 0.2));
  border: 1px solid rgba(127, 217, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 4px 12px rgba(5, 24, 58, 0.35);
  flex-shrink: 0
}

.site-nav .submenu-item-text {
  line-height: 1.35;
  font-weight: 700
}

.site-nav .nav-submenu a:hover,
.site-nav .nav-submenu a.current-menu-item {
  color: #92deff;
  border-color: rgba(127, 217, 255, 0.55);
  background: linear-gradient(145deg, rgba(39, 79, 142, 0.35), rgba(20, 51, 95, 0.38));
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(6, 23, 52, 0.36)
}

.site-nav .nav-submenu a::after {
  display: none !important
}

/* Active nav indicator — driven by current-menu-item set in PHP */
.site-nav > a.current-menu-item::after,
.site-nav .nav-dropdown > a.current-menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -24px;
  height: 3px;
  background: #2ec5ff
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 13px 24px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(120deg, #06acee, #139de0)
}

.btn:hover {
  background: var(--brand-dark)
}

.btn-small {
  padding: 9px 24px;
  border-radius: 2px
}

.btn-outline {
  background: transparent;
  border-color: #2ec5ff;
  color: #fff
}

.btn-outline:hover {
  background: #058dcd;
  border-color: #058dcd
}

.breadcrumbs {
  background: #0f1e3f;
  border-bottom: 1px solid rgba(120, 140, 185, 0.32);
  padding: 12px 0;
  font-size: 14px
}

.breadcrumbs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.breadcrumbs a {
  color: #66bbff;
  text-decoration: none;
  transition: color 0.2s ease
}

.breadcrumbs a:hover {
  color: #2ec5ff
}

.breadcrumbs span {
  color: #9db3d0;
  font-weight: 600
}

.breadcrumbs .current {
  color: #cfe3ff;
  font-weight: 600
}

.eyebrow {
  margin: 0;
  color: #0b4a83;
  text-transform: uppercase;
  font-size: var(--fs-eyebrow);
  font-weight: 800
}

.hero {
  padding: 120px 0 110px;
  min-height: 640px;
  background: linear-gradient(180deg, rgba(5, 14, 34, 0.64), rgba(4, 11, 29, 0.78)), radial-gradient(circle at 18% 18%, rgba(38, 150, 230, 0.3), transparent 42%), radial-gradient(circle at 82% 86%, rgba(7, 122, 192, 0.28), transparent 38%), url('../images/pages/home-about.jpg') center/cover no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(105deg, rgba(120, 194, 255, 0.05), rgba(120, 194, 255, 0.05) 2px, transparent 2px, transparent 34px), linear-gradient(180deg, rgba(2, 10, 26, 0.36), rgba(2, 10, 26, 0.62));
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 30%, rgba(46, 197, 255, 0.22), transparent 46%), radial-gradient(circle at 78% 12%, rgba(16, 87, 170, 0.22), transparent 42%);
  mix-blend-mode: screen;
  pointer-events: none
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1
}

h1,
h2,
h3,
h4 {
  font-family: "Nunito Sans", sans-serif
}

h1 {
  font-size: 52px
}

h2 {
  font-size: var(--fs-h2)
}

h3 {
  font-size: var(--fs-h3)
}

h4 {
  font-size: var(--fs-h4)
}

h1 {
  margin: 10px auto 22px;
  line-height: 1.08;
  color: #ffffff;
  font-weight: 800
}

.hero h1 {
  font-size: 75px
}

.section h2 {
  margin: 6px 0 34px;
  line-height: 1.12;
  font-weight: 800
}

.hero-grid-tags {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 24px
}

.hero-grid-tags span:nth-child(-n+2) {
  display: none
}

.hero-grid-tags span {
  background: rgba(10, 24, 54, 0.44);
  border: 1px solid rgba(102, 187, 255, 0.35);
  border-radius: 0;
  padding: 20px;
  line-height: 1.35;
  text-transform: uppercase;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #f2f8ff
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px
}

.hero-panel p {
  color: var(--muted);
  line-height: 1.7
}

.quick-stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.quick-stats article {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  text-align: center
}

.quick-stats strong {
  display: block;
  font-size: 19px;
  font-weight: 800
}

.quick-stats span {
  color: var(--muted)
}

.service-row {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  overflow: hidden
}

.service-row:nth-of-type(even)>:first-child {
  order: 2
}

.service-row:nth-of-type(even)>:last-child {
  order: 1
}

.service-row p {
  margin: 0;
  color: #1f2a3d
}

.service-row h3 {
  margin: 0 0 14px;
  color: #074278;
  text-transform: uppercase
}

.image-card {
  border-radius: 14px;
  min-height: 280px;
  border: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 700;
  color: #1f4f8d;
  font-size: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(235, 242, 252, 0.88)), repeating-linear-gradient(45deg, #fbfdff, #fbfdff 14px, #eef4fc 14px, #eef4fc 28px)
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 0
}

#services.section-soft {
  border-top: 0;
  border-bottom: 0
}

#services .eyebrow,
#services h2,
#portfolio .eyebrow,
.award-wrap .eyebrow,
.award-wrap h2 {
  text-align: center
}

#services .view-more,
#portfolio .view-more {
  display: flex;
  justify-content: center;
  margin-top: 34px;
  font-size: 13px;
  text-transform: uppercase
}

.view-more {
  margin-top: 22px;
  display: inline-flex;
  text-decoration: none;
  color: var(--brand);
  font-weight: 800;
  transition: color 0.2s ease
}

.view-more:hover {
  color: #066f9f
}

.portfolio-section {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb;
  border-top: 1px solid #e4eaf2;
  border-bottom: 1px solid #e4eaf2
}

.portfolio-section #portfolio.section,
.portfolio-section.section {
  color: var(--text)
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px
}

.portfolio-eyebrow {
  color: #0b4a83 !important
}

.portfolio-header h2 {
  color: var(--text);
  margin: 6px 0 0
}

.portfolio-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0
}

.portfolio-count {
  margin: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: #8fa3ba
}

.slider-controls {
  display: flex;
  gap: 8px
}

.slide-btn {
  border: 0;
  background: transparent;
  color: #0b2d4f;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease
}

.slide-btn:hover {
  color: #067ab1
}

.portfolio-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 20px) / 2);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0 20px
}

.portfolio-slider::-webkit-scrollbar {
  display: none
}

.portfolio-card {
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #dde6f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease
}

.portfolio-card:hover {
  transform: translateY(-5px);
  border-color: #b5cfe4
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.02)
}

.portfolio-num {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2
}

.portfolio-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(8, 72, 141, 0.72) 0%, rgba(8, 168, 232, 0.18) 60%, transparent 100%);
  z-index: 2
}

.portfolio-tag {
  display: inline-flex;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(10, 40, 90, 0.38);
  backdrop-filter: blur(4px)
}

.portfolio-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.portfolio-card h3 {
  margin: 0;
  font-weight: 800;
  color: #152a42;
  line-height: 1.28
}

.portfolio-card p {
  margin: 0;
  color: #5a6c7e;
  line-height: 1.62
}

.portfolio-service {
  margin-top: auto;
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: 6px;
  background: #e7f6fd;
  color: #0878b0;
  font-size: 13px;
  font-weight: 700
}

.portfolio-footer {
  margin-top: 36px;
  text-align: center
}

.long-copy {
  color: var(--muted);
  line-height: 1.78;
  max-width: 80ch;
  margin: 0
}

#about.section-soft {
  background: radial-gradient(circle at 75% 70%, rgba(52, 114, 246, 0.12), transparent 38%), repeating-linear-gradient(90deg, rgba(126, 168, 255, 0.11), rgba(126, 168, 255, 0.11) 1px, transparent 1px, transparent 86px), linear-gradient(120deg, #1c1a4c, #222165 48%, #1a1c54);
  border: 0
}

#about .eyebrow,
.hero .eyebrow {
  color: #fff
}

#about h2,
#about .long-copy {
  color: #ffffff
}

#about .long-copy {
  max-width: 92ch;
  line-height: 1.8
}

.marquee {
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent
}

section.section.clients-section {
  padding: 20px 0;
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: move-left 28s linear infinite
}

.marquee span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-weight: 800;
  color: #101927
}

.client-logo {
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(1.03)
}

.cta-section {
  background: linear-gradient(180deg, rgba(5, 18, 38, 0.72), rgba(5, 18, 38, 0.72)), radial-gradient(circle at 15% 24%, rgba(36, 186, 255, 0.28), transparent 42%), radial-gradient(circle at 84% 80%, rgba(8, 125, 196, 0.22), transparent 38%), url('../images/cta/cta-bg.jpg') center/cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(110deg, rgba(144, 214, 255, 0.07), rgba(144, 214, 255, 0.07) 2px, transparent 2px, transparent 42px);
  pointer-events: none
}

.cta-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  flex-direction: column;
  position: relative;
  z-index: 1
}

.light {
  color: #fff
}

.cta-box h2 {
  color: #fff;
  margin: 6px 0 0;
  max-width: 24ch;
  line-height: 1.08
}

/* All per-page active indicator overrides removed — handled by .current-menu-item above */

.portfolio-hero,
.contact-hero,
.careers-hero,
.services-hero,
.service-detail-hero {
  background: linear-gradient(180deg, rgba(9, 18, 48, 0.5), rgba(5, 14, 36, 0.65)), radial-gradient(circle at 15% 18%, rgba(35, 134, 220, 0.35), transparent 42%), radial-gradient(circle at 82% 82%, rgba(6, 117, 181, 0.36), transparent 44%), linear-gradient(125deg, #091d3f, #071531 62%, #081a39);
  color: #fff;
  text-align: center
}

.service-detail-hero {
  background: linear-gradient(180deg, rgba(5, 16, 42, 0.66), rgba(4, 12, 34, 0.76)), radial-gradient(circle at 15% 20%, rgba(44, 169, 234, 0.28), transparent 40%), radial-gradient(circle at 84% 80%, rgba(12, 118, 191, 0.26), transparent 38%), var(--service-hero-bg, linear-gradient(125deg, #091d3f, #071531 62%, #081a39));
  background-size: cover;
  background-position: center
}

.services-hero {
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.62), rgba(7, 20, 43, 0.74)), radial-gradient(circle at 16% 20%, rgba(45, 170, 236, 0.25), transparent 40%), radial-gradient(circle at 83% 82%, rgba(9, 123, 198, 0.22), transparent 38%), url('../images/pages/services-hero.jpg') center/cover no-repeat
}

.portfolio-hero {
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.62), rgba(7, 20, 43, 0.74)), radial-gradient(circle at 16% 20%, rgba(45, 170, 236, 0.25), transparent 40%), radial-gradient(circle at 83% 82%, rgba(9, 123, 198, 0.22), transparent 38%), url('../images/pages/portfolio-hero.jpg') center/cover no-repeat
}

.careers-hero {
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.62), rgba(7, 20, 43, 0.74)), radial-gradient(circle at 16% 20%, rgba(45, 170, 236, 0.25), transparent 40%), radial-gradient(circle at 83% 82%, rgba(9, 123, 198, 0.22), transparent 38%), url('../images/pages/careers-hero.jpg') center/cover no-repeat
}

.contact-hero {
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.62), rgba(7, 20, 43, 0.74)), radial-gradient(circle at 16% 20%, rgba(45, 170, 236, 0.25), transparent 40%), radial-gradient(circle at 83% 82%, rgba(9, 123, 198, 0.22), transparent 38%), url('../images/pages/contact-hero.jpg') center/cover no-repeat
}

.about-hero .eyebrow,
.portfolio-hero .eyebrow,
.contact-hero .eyebrow,
.careers-hero .eyebrow,
.services-hero .eyebrow,
.service-detail-hero .eyebrow {
  color: #fff
}

.portfolio-hero h1,
.contact-hero h1,
.careers-hero h1,
.services-hero h1,
.service-detail-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 20ch;
}

.portfolio-hero-copy,
.contact-hero-copy,
.careers-hero-copy,
.services-hero-copy,
.service-detail-copy {
  max-width: 70ch;
  margin: 0 auto;
  color: #d9e8ff;
  line-height: 1.74
}

.service-catalog-section,
.service-detail-main {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.service-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.service-catalog-card,
.service-detail-panel {
  border: 1px solid #dce7f3;
  border-radius: 14px;
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(20, 43, 70, 0.08)
}

.service-catalog-media {
  margin: 0 0 16px;
  border-radius: 10px;
  overflow: hidden
}

.service-catalog-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block
}

.service-catalog-card h2,
.service-detail-panel h2 {
  margin: 0 0 10px;
  color: #132b46;
  font-size: 32px;
  line-height: 1.2
}

.service-catalog-card p,
.service-detail-panel p {
  margin: 0;
  color: #4f657e;
  line-height: 1.68
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px
}

.service-detail-panel ul {
  margin: 0;
  padding-top: 20px;
  display: grid;
  gap: 8px;
  color: #2f4a68
}

.service-panel-intro {
  margin: 0 0 14px;
  color: #4f657e;
  line-height: 1.7
}

.deliver-list,
.impact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px
}

.deliver-list li,
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f4a68;
  line-height: 1.62
}

.deliver-list i {
  color: #08a8e8;
  margin-top: 4px;
  font-size: 15px
}

.deliver-list span {
  color: #2f4a68
}

.service-impact-panel {
  border-top: 3px solid #08a8e8
}

.impact-list li {
  padding: 10px 0 10px 12px;
  border-left: 2px solid #9fdcf4;
  background: transparent;
  border-radius: 0
}

.service-detail-panel .btn {
  margin-top: 25px
}

.service-back-link-wrap {
  padding-top: 12px
}

.service-portfolio-section,
.service-testimonials-section {
  background: #fff
}

.service-testimonials-section {
  border-top: 1px solid #e4eaf2;
  border-bottom: 1px solid #e4eaf2;
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.service-portfolio-grid,
.service-testimonials-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.service-project-card,
.service-quote-card {
  border: 1px solid #dce7f3;
  border-radius: 14px;
  background: #fff;
  padding: 24px 22px;
  box-shadow: 0 10px 28px rgba(20, 43, 70, 0.08)
}

.service-project-card h3,
.service-quote-card strong {
  margin: 0;
  color: #132b46
}

.service-project-card p,
.service-quote-card p {
  margin: 10px 0 0;
  color: #4f657e;
  line-height: 1.68
}

.service-project-card span {
  margin-top: 14px;
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: #e7f6fd;
  color: #0878b0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase
}

.service-quote-card strong {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 800
}

.portfolio-showcase {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.showcase-grid {
  display: grid;
  gap: 24px
}

.showcase-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  border: 1px solid #dce7f3;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(20, 43, 70, 0.08)
}

.showcase-art {
  min-height: 280px;
  background-size: cover;
  background-position: center
}

.showcase-art-enterprise {
  background: linear-gradient(135deg, #0a2f60 0%, #0d4e9a 55%, #1685dd 100%)
}

.showcase-art-health {
  background: linear-gradient(135deg, #084158 0%, #0f769a 55%, #15a9cb 100%)
}

.showcase-art-commerce {
  background: linear-gradient(135deg, #0c254b 0%, #274fa0 55%, #3f75d4 100%)
}

.showcase-art-mobile {
  background: linear-gradient(135deg, #1b2759 0%, #2d498f 55%, #406fd0 100%)
}

.showcase-body {
  padding: 28px 26px;
  display: grid;
  gap: 12px
}

.showcase-type {
  margin: 0;
  color: #0878b0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px
}

.showcase-body h2 {
  margin: 0;
  color: #132b46;
  font-size: 36px
}

.showcase-body p {
  margin: 0;
  color: #4f657e
}

.showcase-body ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #2f4a68
}

.results-section .eyebrow,
.results-section h2,
.perks-section .eyebrow,
.perks-section h2,
.openings-section .eyebrow,
.openings-section h2,
.careers-process .eyebrow,
.careers-process h2 {
  text-align: center
}

.result-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px
}

.result-metrics article {
  border: 1px solid #dce7f3;
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  text-align: center
}

.result-metrics strong {
  display: block;
  color: #132b46;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1
}

.result-metrics span {
  color: #546b84
}

.contact-main {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px
}

.contact-info-panel,
.contact-form-panel,
.job-card,
.perks-grid article {
  border: 1px solid #dce7f3;
  border-radius: 14px;
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 28px rgba(20, 43, 70, 0.08)
}

.contact-info-panel h2,
.contact-form-panel h2 {
  margin: 0 0 12px;
  color: #132b46;
  font-size: 36px
}

.contact-info-panel p {
  margin: 0;
  color: #4f657e
}

.contact-method-list {
  margin-top: 18px;
  display: grid;
  gap: 14px
}

.contact-method-list h3 {
  margin: 0 0 4px;
  color: #0a325c;
  font-size: 22px
}

.contact-method-list a,
.contact-method-list p {
  margin: 0;
  color: #3e566f;
  text-decoration: none
}

.contact-form {
  display: grid;
  gap: 12px
}

.contact-form label {
  font-weight: 700;
  color: #1f3957
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cddded;
  background: #fff;
  color: #1a2434;
  padding: 12px 14px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  border-radius: 4px
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(8, 168, 232, 0.25);
  border-color: #08a8e8
}

.contact-form .btn {
  appearance: none;
  -webkit-appearance: none;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  align-self: flex-start
}

.perks-grid h3 {
  margin: 0 0 8px;
  color: #132b46
}

.perks-grid p,
.job-card p {
  margin: 0;
  color: #4f657e;
  line-height: 1.68
}

.perks-section {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.perks-grid,
.openings-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.job-meta {
  margin: 0;
  color: #0878b0;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase
}

.job-card h3 {
  margin: 8px 0 10px;
  color: #132b46
}

.openings-section {
  background: #fff
}

.careers-process {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.about-hero {
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.62), rgba(7, 20, 43, 0.74)), radial-gradient(circle at 16% 20%, rgba(45, 170, 236, 0.25), transparent 40%), radial-gradient(circle at 83% 82%, rgba(9, 123, 198, 0.22), transparent 38%), url('../images/pages/about-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center
}

.about-hero h1 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto
}

.about-hero-copy {
  max-width: 66ch;
  margin: 0 auto;
  color: #d9e8ff;
  line-height: 1.74
}

.about-kpi-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px
}

.about-kpi-grid article {
  border: 1px solid rgba(144, 192, 255, 0.3);
  background: rgba(11, 32, 66, 0.38);
  padding: 18px;
  border-radius: 10px
}

.about-kpi-grid strong {
  display: block;
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1
}

.about-kpi-grid span {
  color: #cfe3ff;
  font-size: 15px
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px
}

.about-team-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(10, 26, 50, 0.13)
}

.about-team-photo img {
  width: 100%;
  aspect-ratio: 21 / 7;
  object-fit: cover;
  object-position: center 35%;
  display: block
}

.about-panel {
  background: #fff;
  border: 1px solid #dce7f3;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 10px 28px rgba(20, 43, 70, 0.08)
}

.about-panel p {
  margin: 0 0 12px;
  color: #425872;
  line-height: 1.7
}

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

.about-principles h3 {
  margin: 0 0 16px;
  color: #0a325c
}

.about-principles ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px
}

.about-principles li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #3e566f;
  line-height: 1.6
}

.about-principles i {
  color: #08a8e8;
  margin-top: 3px
}

.about-values {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.about-values .eyebrow,
.about-values h2,
.about-journey .eyebrow,
.about-journey h2 {
  text-align: center
}

.values-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px
}

.value-card {
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(26, 50, 83, 0.08)
}

.value-card i {
  color: #068ecb;
  font-size: 24px
}

.value-card h3 {
  margin: 14px 0 10px;
  color: #132b46
}

.value-card p {
  margin: 0;
  color: #50657d;
  line-height: 1.7
}

.journey-steps {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px
}

.journey-steps article {
  border-top: 3px solid #08a8e8;
  border-radius: 10px;
  background: #fff;
  border-left: 1px solid #dce7f3;
  border-right: 1px solid #dce7f3;
  border-bottom: 1px solid #dce7f3;
  padding: 18px
}

.journey-steps span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7f6fd;
  color: #0878b0;
  font-weight: 800;
  font-size: 14px
}

.journey-steps h3 {
  margin: 12px 0 8px;
  color: #132b46
}

.journey-steps p {
  margin: 0;
  color: #4f657e;
  line-height: 1.66
}

.testimonials-section {
  position: relative;
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb;
  font-family: "Nunito Sans", sans-serif;
  overflow: hidden
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 28px;
  background: radial-gradient(ellipse at 20% 40%, rgba(130, 142, 155, 0.08), transparent 52%), radial-gradient(ellipse at 48% 30%, rgba(130, 142, 155, 0.08), transparent 46%), radial-gradient(ellipse at 80% 56%, rgba(130, 142, 155, 0.08), transparent 48%);
  pointer-events: none
}

.testimonials-wrap {
  position: relative;
  z-index: 1
}

.testimonials-wrap .eyebrow,
.testimonials-wrap h2 {
  text-align: center
}

.testimonials-wrap h2 {
  margin-left: auto;
  margin-right: auto
}

.testimonials-slider-shell {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px
}

.testimonial-nav-btn {
  border: 0;
  background: transparent;
  color: #0b2d4f;
  font-size: 21px;
  line-height: 1;
  cursor: pointer
}

.testimonial-nav-btn:hover {
  color: #067ab1
}

.testimonials-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 16px;
  scroll-snap-type: x mandatory
}

.testimonials-grid::-webkit-scrollbar {
  display: none
}

.testimonial-card {
  scroll-snap-align: start;
  border: 1px solid #e7ebf0;
  border-radius: 0;
  padding: 34px 38px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 328px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease
}

.testimonial-card:hover {
  border-color: #d5dde6;
  transform: translateY(-2px)
}

.review-head {
  display: none
}

.review-stars {
  display: none
}

.review-label {
  display: none
}

.testimonial-copy {
  margin: 0;
  color: #5f6670;
  line-height: 1.84
}

.testimonial-author {
  order: -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 0;
  border-top: 0
}

.mini-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, #003a6b, #003a6b);
  color: #ffffff;
  font-weight: 600;
  font-size: 22px
}

.author-name,
.author-role {
  margin: 0
}

.author-name {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  color: #171e29
}

.author-role {
  color: #9398a0
}

.award-wrap {
  text-align: center
}

.award-wrap .long-copy {
  margin: 0 auto;
  text-align: center
}

.award-card {
  margin: 32px auto 0;
  width: min(340px, 100%);
  border: 0;
  border-radius: 0;
  padding: 40px 18px;
  background: linear-gradient(180deg, rgba(11, 33, 68, 0.66), rgba(11, 33, 68, 0.66)), url('../images/pages/home-award.jpg') center/cover no-repeat;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff
}

.site-footer {
  border-top: 0;
  background: radial-gradient(circle at 15% 20%, rgba(65, 120, 255, 0.24), transparent 34%), radial-gradient(circle at 80% 85%, rgba(21, 196, 225, 0.24), transparent 30%), linear-gradient(125deg, #08142f, #0d1e45 48%, #07122a)
}

.footer-shell {
  display: block;
  padding: 72px 0 44px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-content: start
}

.footer-logo {
  margin: 0 0 12px;
  color: #ffffff
}

.site-footer p,
.site-footer a {
  color: #e5f1ff;
  text-decoration: none;
  margin: 8px 0;
  display: block;
  line-height: 1.56
}

.site-footer a {
  transition: color 0.2s ease, transform 0.2s ease
}

.site-footer a:hover {
  color: #6dd8ff;
  transform: translateX(2px)
}

.site-footer h4 {
  margin: 0 0 10px;
  color: #7fd9ff
}

.social-title {
  margin-top: 20px !important
}

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

.social-links a {
  margin: 0;
  border: 1px solid rgba(149, 202, 255, 0.5);
  padding: 6px 12px;
  font-size: 14px;
  text-transform: uppercase
}

.social-links a:hover {
  transform: none;
  border-color: #67dcff;
  background: rgba(103, 220, 255, 0.14)
}

.copyright {
  border-top: 1px solid rgba(137, 185, 232, 0.38);
  text-align: center;
  color: #d9ecff;
  font-weight: 700;
  padding: 22px 14px;
  font-size: 15px
}

.blog-hero {
  background: linear-gradient(180deg, rgba(7, 20, 43, 0.62), rgba(7, 20, 43, 0.74)), radial-gradient(circle at 16% 20%, rgba(45, 170, 236, 0.25), transparent 40%), radial-gradient(circle at 83% 82%, rgba(9, 123, 198, 0.22), transparent 38%), url('../images/pages/blog-hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center
}

.blog-hero .eyebrow {
  color: #fff
}

.blog-hero h1 {
  margin: 10px auto 20px;
  max-width: 24ch
}

.blog-hero-copy {
  max-width: 76ch;
  margin: 0 auto;
  color: #d9e8ff;
  line-height: 1.74
}

.blog-meta-row {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(124, 187, 244, 0.4);
  background: rgba(7, 25, 60, 0.35);
  padding: 8px 12px;
  color: #e8f2ff;
  font-size: 14px;
  font-weight: 700
}

.blog-main-section {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start
}

.blog-article-card,
.sidebar-card,
.related-blog-card {
  border: 1px solid #dce7f3;
  background: #fff
}

.blog-article-card {
  padding: clamp(22px, 3vw, 36px)
}

.blog-feature-visual {
  width: 100%;
  min-height: 300px;
  background: linear-gradient(125deg, #081a39, #0d3d79 62%, #1188c6);
  margin-bottom: 24px
}

.blog-article-card h2,
.blog-article-card h3 {
  color: #132b46;
  margin: 28px 0 12px
}

.blog-article-card p {
  margin: 0 0 16px;
  color: #475f79;
  line-height: 1.8
}

.blog-article-card ul {
  margin: 0 0 18px;
  padding-left: 20px;
  display: grid;
  gap: 10px;
  color: #3f5873
}

.blog-article-card blockquote {
  margin: 26px 0;
  border-left: 4px solid #08a8e8;
  background: #eff8fd;
  padding: 18px 18px 18px 20px
}

.blog-article-card blockquote p {
  margin: 0;
  color: #133f67;
  font-weight: 700
}

.blog-tag-cloud {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.blog-tag-cloud a {
  border: 1px solid #c8dff0;
  color: #0c4b85;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 7px 12px
}

.blog-post-nav {
  margin-top: 28px;
  border-top: 1px solid #dce7f3;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px
}

.blog-post-nav a {
  color: #0b4a83;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.blog-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 105px
}

.sidebar-card {
  padding: 20px
}

.sidebar-eyebrow {
  margin: 0;
  text-transform: uppercase;
  color: #0878b0;
  font-size: 14px;
  font-weight: 800
}

.sidebar-card h3 {
  margin: 8px 0 10px;
  color: #132b46;
  font-size: 23px
}

.sidebar-card p {
  margin: 0;
  color: #4b627c;
  line-height: 1.7
}

.toc-list {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 9px
}

.toc-list a {
  text-decoration: none;
  color: #0b4a83;
  font-weight: 700
}

.subscribe-card .btn {
  margin-top: 16px;
  width: 100%
}

.related-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px
}

.related-blog-card {
  padding: 22px
}

.related-meta {
  margin: 0 0 8px;
  color: #0a7ab1;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800
}

.related-blog-card h3 {
  margin: 0 0 14px;
  color: #132b46;
  font-size: 26px;
  line-height: 1.3
}

@keyframes move-left {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-25%)
  }
}

@media (max-width:1024px) {

  .hero-layout,
  .service-row,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid
  }

  .hero-layout {
    text-align: center
  }

  .hero-actions {
    justify-content: center
  }

  .hero {
    background-position: center 28%
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero-grid-tags {
    grid-template-columns: repeat(2, 1fr)
  }

  h2 {
    font-size: 45px
  }

  .marquee span {
    min-width: 170px
  }

  .quick-stats {
    grid-template-columns: 1fr
  }

  .testimonials-slider-shell {
    grid-template-columns: 1fr;
    gap: 14px
  }

  .testimonial-nav-btn {
    display: none
  }

  .testimonials-grid {
    grid-auto-columns: minmax(82%, 1fr)
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
  }

  .portfolio-slider {
    grid-auto-columns: calc((100% - 20px) / 2)
  }

  .about-kpi-grid,
  .values-grid,
  .journey-steps,
  .result-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .about-story-grid {
    grid-template-columns: 1fr
  }

  .showcase-card,
  .contact-layout,
  .perks-grid,
  .openings-grid,
  .related-blogs-grid,
  .service-catalog-grid,
  .service-detail-grid,
  .blog-layout,
  .service-portfolio-grid,
  .service-testimonials-grid {
    grid-template-columns: 1fr
  }

  .service-row:nth-of-type(even)>:first-child,
  .service-row:nth-of-type(even)>:last-child {
    order: initial
  }

  .cta-box {
    gap: 14px
  }
}

@media (max-width:760px) {
  .section {
    padding: 68px 0
  }

  .site-nav .nav-submenu {
    left: 0;
    width: min(92vw, 520px);
    min-width: 260px;
    grid-template-columns: 1fr;
    row-gap: 8px;
    column-gap: 0;
    padding: 12px
  }

  .site-nav .nav-submenu a {
    min-height: 48px;
    padding: 10px 12px
  }

  .site-nav .submenu-item-icon {
    width: 30px;
    height: 30px
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 0
  }

  .hero-grid-tags {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 98px 0 84px
  }

  .service-row p {
    line-height: 1.62
  }

  .image-card {
    min-height: 240px
  }

  .testimonial-card {
    min-height: auto;
    padding: 24px
  }

  .testimonials-grid {
    grid-auto-columns: 100%
  }

  .portfolio-slider {
    grid-auto-columns: 100%
  }

  .blog-meta-row {
    justify-content: flex-start
  }

  .blog-post-nav {
    flex-direction: column
  }

  .blog-sidebar {
    position: static
  }

  .about-hero h1 {
    max-width: 12ch
  }

  .about-kpi-grid,
  .values-grid,
  .journey-steps,
  .result-metrics,
  .legal-contact-grid {
    grid-template-columns: 1fr
  }

  .showcase-body h2,
  .contact-info-panel h2,
  .contact-form-panel h2 {
    font-size: 30px
  }

  .portfolio-hero h1,
  .contact-hero h1,
  .careers-hero h1,
  .services-hero h1,
  .service-detail-hero h1 {
    max-width: 11ch
  }

  .service-catalog-card h2,
  .service-detail-panel h2 {
    font-size: 28px
  }

  .about-panel,
  .value-card,
  .journey-steps article {
    padding: 18px
  }

  .portfolio-body {
    padding: 18px
  }

  .testimonial-copy {
    line-height: 1.72
  }

  .mini-logo {
    width: 46px;
    height: 46px;
    font-size: 14px
  }

  .footer-shell {
    padding: 58px 0 34px
  }
}

/* Blog Featured Section */
.blog-featured-section {
  background: #fff;
  padding: 64px 0
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff
}

.featured-article-visual {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #081a39 0%, #0d3d79 50%, #1188c6 100%)
}

.featured-article-content {
  padding: 48px 44px;
  position: relative
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-block;
  background: linear-gradient(120deg, #06acee, #139de0);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.featured-category {
  margin: 0 0 12px;
  color: #068ecb;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.featured-article-content h2 {
  margin: 0 0 16px;
  color: #0a325c;
  font-size: 36px;
  line-height: 1.35;
  font-weight: 800
}

.featured-excerpt {
  margin: 0 0 20px;
  color: #425872;
  font-size: 16px;
  line-height: 1.8
}

.featured-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.featured-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7f8d9e;
  font-size: 14px;
  font-weight: 600
}

.featured-meta i {
  color: #08a8e8;
  font-size: 15px
}

/* Blog Listing Styles */
.blog-listing-section {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.blog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e7ebf0
}

.blog-section-header > div:first-child {
  flex: 1
}

/* Legal Pages (Privacy Policy, Terms & Conditions) */
.legal-main {
  padding-bottom: clamp(20px, 3vw, 36px)
}

.legal-contact-strip {
  background: transparent;
  border-top: 0;
  padding: clamp(8px, 1.5vw, 14px) 0 clamp(56px, 6vw, 84px)
}

.legal-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 85ch;
  gap: 16px
}

.legal-contact-grid .value-card i {
  font-size: 28px
}

.legal-contact-grid .value-card a {
  color: var(--brand);
  text-decoration: none;
  font-size: var(--fs-body)
}

.legal-contact-grid .value-card a:hover {
  color: var(--brand-dark);
  text-decoration: underline
}

.legal-contact-grid .value-card p {
  margin: 0;
  font-size: var(--fs-body);
  color: #50657d
}

.legal-page {
  max-width: 85ch
}

.legal-page h1 {
  color: var(--text);
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 0 0 28px;
  line-height: 1.1
}

.legal-page .long-copy {
  max-width: 100%;
  color: var(--text)
}

.legal-page h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 36px 0 12px;
  color: var(--text)
}

.legal-page h3 {
  font-size: 20px;
  margin: 24px 0 10px;
  color: var(--text)
}

.legal-page h4,
.legal-page h5,
.legal-page h6 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--text)
}

.legal-page ul,
.legal-page ol {
  margin: 16px 0;
  padding-left: 24px;
  color: var(--text)
}

.legal-page li {
  margin-bottom: 12px;
  line-height: 1.78
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--text)
}

.legal-page a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s ease
}

.legal-page a:hover {
  color: var(--brand-dark);
  text-decoration: underline
}

.blog-section-header p {
  margin: 0 0 8px;
  color: #0b4a83;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800
}

.blog-section-header h2 {
  margin: 0;
  color: #0a325c;
  font-size: 36px;
  font-weight: 800
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end
}

.filter-tag {
  border: 1px solid #dce7f3;
  background: #fff;
  padding: 10px 18px;
  border-radius: 24px;
  color: #425872;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease
}

.filter-tag:hover {
  border-color: #08a8e8;
  color: #08a8e8;
  background: rgba(8, 168, 232, 0.04)
}

.filter-tag.active {
  background: #08a8e8;
  border-color: #08a8e8;
  color: #fff
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 48px
}

.blog-card {
  border: 1px solid #dce7f3;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column
}

.blog-card:hover {
  border-color: #08a8e8;
  box-shadow: 0 12px 32px rgba(8, 168, 232, 0.15);
  transform: translateY(-4px)
}

.blog-card-visual {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #081a39 0%, #0d3d79 50%, #1188c6 100%);
  flex-shrink: 0
}

.blog-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1
}

.blog-category {
  margin: 0 0 12px;
  color: #068ecb;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px
}

.blog-card h3 {
  margin: 0 0 12px;
  color: #0a325c;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800
}

.blog-excerpt {
  margin: 0 0 auto;
  color: #425872;
  font-size: 15px;
  line-height: 1.7
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f3f7
}

.blog-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #7f8d9e;
  font-size: 13px;
  font-weight: 600
}

.blog-meta i {
  color: #08a8e8;
  font-size: 13px
}

.blog-link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(8, 168, 232, 0.1);
  color: #08a8e8;
  font-size: 14px;
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0
}

.blog-link-arrow:hover {
  background: #08a8e8;
  color: #fff;
  transform: translateX(3px)
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px
}

.pagination-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dce7f3;
  background: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  color: #425872;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease
}

.pagination-btn:hover:not(:disabled) {
  border-color: #08a8e8;
  color: #08a8e8;
  background: rgba(8, 168, 232, 0.04)
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: #9db3d0
}

.pagination-dots {
  display: flex;
  gap: 10px
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d7deea;
  cursor: pointer;
  transition: all 0.2s ease
}

.dot:hover {
  background: #08a8e8
}

.dot.active {
  background: #08a8e8;
  width: 28px;
  border-radius: 6px
}

/* Blog CTA Section */
.blog-cta-section {
  background: radial-gradient(ellipse at 8% 20%, rgba(8, 168, 232, 0.07), transparent 40%), radial-gradient(ellipse at 92% 78%, rgba(5, 141, 205, 0.06), transparent 38%), #f4f7fb
}

.blog-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: 14px;
  padding: 48px 44px
}

.blog-cta-wrap > div {
  flex: 1
}

.blog-cta-wrap p {
  margin: 0 0 8px;
  color: #0b4a83;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px
}

.blog-cta-wrap h2 {
  margin: 0 0 12px;
  color: #0a325c;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.35
}

.blog-cta-wrap > div > p:last-of-type {
  margin: 0;
  color: #425872;
  font-size: 16px;
  line-height: 1.7
}

/* Responsive Blog */
@media (max-width: 968px) {
  .featured-article {
    grid-template-columns: 1fr;
    gap: 0
  }

  .featured-article-visual {
    min-height: 300px
  }

  .featured-article-content {
    padding: 36px 32px
  }

  .featured-article-content h2 {
    font-size: 28px
  }

  .blog-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px
  }

  .blog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
  }

  .filter-tags {
    justify-content: flex-start;
    width: 100%
  }

  .blog-cta-wrap {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px
  }

  .blog-cta-wrap > div {
    width: 100%
  }

  .filter-tags {
    width: 100%
  }
}

@media (max-width: 640px) {
  .blog-section-header {
    padding-bottom: 24px;
    margin-bottom: 32px
  }

  .blog-section-header h2 {
    font-size: 28px
  }

  .blog-articles-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .blog-card-body {
    padding: 20px
  }

  .blog-card-visual {
    height: 180px
  }

  .featured-article-visual {
    min-height: 240px
  }

  .featured-article-content {
    padding: 28px 24px
  }

  .featured-article-content h2 {
    font-size: 22px
  }

  .featured-badge {
    top: 16px;
    right: 16px
  }

  .filter-tags {
    gap: 8px
  }

  .filter-tag {
    padding: 8px 14px;
    font-size: 12px
  }

  .blog-cta-wrap {
    padding: 28px 20px
  }

  .blog-cta-wrap h2 {
    font-size: 24px
  }

  .pagination-btn {
    padding: 10px 16px;
    font-size: 12px
  }

  .pagination-btn i {
    display: none
  }
}