/* ============================================
   SYNEXIIN HEADER — component styles
   Prefix: synx-header
   ============================================ */

:root {
    --crimson:   #8b1a2e;
    --crimson-d: #6b1223;
    --navy:      #162740;
    --gold:      #c9a84c;
    --gold-l:    #e8cc7a; 
    --y: #001d55;
    --ink: #0e1014; 
    --sxn-teal: #02a0a7;
    --sxn-navy: #001d55;
    --sxn-teal-soft: rgba(2,160,167,0.10);
    --sxn-navy-soft: rgba(0,29,85,0.06);
    --sxn-ink-muted: #5b6478;
    --ease: cubic-bezier(0.4,0,0.2,1);
    --sx-card-border:#e7ecf5; 
    --sp-font-display: 'Poppins', sans-serif;
    --sp-font-body: 'Inter', sans-serif;
}


html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ================================
   LENIS SMOOTH SCROLL
================================ */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
  margin: 0;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

/* ---------- Header shell ---------- */
.synx-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 29, 85, 0.08);
  transition:
    box-shadow 0.3s ease,
    padding 0.3s ease;
}

.synx-header.synx-header--scrolled {
  box-shadow: 0 6px 24px rgba(0, 29, 85, 0.12);
}

.synx-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  transition: padding 0.3s ease;
}

.synx-header--scrolled .synx-header__inner {
  padding: 16px 0;
}

/* ---------- Logo ---------- */
.synx-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.synx-header__logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

.synx-header--scrolled .synx-header__logo-img {
  height: 46px;
}

/* ---------- Desktop nav ---------- */
.synx-header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.synx-header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.synx-header__item {
  margin: 0;
}

.synx-header__link {
  color: #001d55;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s ease;
}

.synx-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #02a0a7;
  transition: width 0.25s ease;
}

.synx-header__link:hover,
.synx-header__link:focus {
  color: #02a0a7;
}

.synx-header__link:hover::after,
.synx-header__link:focus::after {
  width: 100%;
}

/* ---------- CTA button ---------- */
.synx-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-header__cta i {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.synx-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 160, 167, 0.35);
  color: #ffffff;
}

.synx-header__cta:hover i {
  transform: translateX(3px);
}

/* ---------- Mobile toggle (hamburger) ---------- */
.synx-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.synx-header__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #001d55;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
  margin: 0 auto;
}

.synx-header__toggle--active .synx-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.synx-header__toggle--active .synx-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.synx-header__toggle--active .synx-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Overlay (mobile) ---------- */
.synx-header__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 29, 85, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1040;
}

.synx-header__overlay--visible {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   RESPONSIVE — mobile slide-in menu
   ============================================ */
@media (max-width: 991.98px) {
  .synx-header__toggle {
    display: flex;
  }

  .synx-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 340px);
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 90px 30px 40px;
    box-shadow: -8px 0 30px rgba(0, 29, 85, 0.18);
    transition: right 0.35s ease;
    z-index: 1050;
    overflow-y: auto;
  }

  .synx-header__nav--open {
    right: 0;
  }

  .synx-header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .synx-header__item {
    width: 100%;
    border-bottom: 1px solid rgba(0, 29, 85, 0.08);
  }

  .synx-header__link {
    display: block;
    width: 100%;
    padding: 16px 2px;
    font-size: 16px;
  }

  .synx-header__link::after {
    display: none;
  }

  .synx-header__cta {
    margin-top: 26px;
    justify-content: center;
    width: 100%;
  }

  .synx-header__overlay {
    display: block;
  }
}

@media (max-width: 575.98px) {
  .synx-header__logo-img {
    height: 38px;
  }

  .synx-header__nav {
    width: 84vw;
  }
}

/* ---------- Demo content (not part of header component) ---------- */
.synx-demo-spacer {
  min-height: 180vh;
  background: #f5f7fa;
  padding-top: 80px;
}

.synx-demo-title {
  color: #001d55;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* ============================================
   SYNEXIIN HERO — component styles
   Prefix: synx-hero
   ============================================ */

.synx-hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
  background: #000d27;
  display: flex;
  align-items: center;
}

/* particles.js mounts full-bleed behind content */
.synx-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

/* soft radial overlay so text stays legible over the particle field */
.synx-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
    circle at center,
    rgba(0, 29, 85, 0.15) 0%,
    rgba(0, 29, 85, 0.65) 100%
  );
  pointer-events: none;
}

.synx-hero .container {
  position: relative;
  z-index: 3;
}

/* ---------- bottom wavy shape divider ---------- */
.synx-hero__shape {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 4;
  pointer-events: none;
}

.synx-hero__shape svg {
  display: block;
  width: 100%;
  height: 90px;
}

@media (max-width: 575.98px) {
  .synx-hero__shape svg {
    height: 50px;
  }
}

.synx-hero__content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}

.synx-hero__title {
  margin: 0px;
  color: #ffffff;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: synxFadeUp 0.9s ease forwards;
  animation-delay: 0.2s;
}

.synx-hero__desc {
  margin: 0 auto;
  padding: 25px 0;
  max-width: 850px;
  color: rgba(255, 255, 255, 0.82);
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0;
  font-style: italic;
  animation: synxFadeUp 0.9s ease forwards;
  animation-delay: 0.45s;
}

.synx-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 160, 167, 0.35);
  color: #ffffff;
}

.synx-hero__cta2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 30px;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-hero__cta2:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 160, 167, 0.35);
  color: #ffffff;
}

/* ---------- entrance animation ---------- */
@keyframes synxFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* particle canvas fades in behind the text so the section doesn't pop in fully-formed */
.synx-hero__particles {
  opacity: 0;
  animation: synxFadeIn 1.4s ease forwards;
}

@keyframes synxFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .synx-hero__title,
  .synx-hero__desc,
  .synx-hero__particles {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-hero__title {
    font-size: 40px;
  }

  .synx-hero__desc {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .synx-hero {
    min-height: 100svh;
  }

  .synx-hero__content {
    padding: 30px 0;
  }

  .synx-hero__title {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .synx-hero__desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ============================================
   SYNEXIIN ABOUT — component styles
   Prefix: synx-about
   ============================================ */

.synx-about {
  background: #ffffff;
  padding: 50px 0;
}

.synx-about__row {
  gap: 50px 0;
}

/* ---------- left column: copy ---------- */
.synx-about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-about__eyebrow i {
  font-size: 12px;
}

.synx-about__title {
  margin: 0 0 22px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.synx-about__para {
  margin: 0 0 18px;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-align:justify;
}

.synx-about__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.synx-about__cta i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.synx-about__cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(2, 160, 167, 0.3);
}

.synx-about__cta:hover i {
  transform: translateX(3px);
}

/* ---------- right column: image + pillars ---------- */
.synx-about__image-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    background: #010832;
}

.synx-about__image {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}
.synx-about__pillars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  text-align: center;
}

.synx-about__pillar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.synx-about__pillar i {
  font-size: 18px;
}

.synx-about__pillar:nth-child(2) i,
.synx-about__pillar:nth-child(2) {
  color: #02a0a7;
}

.synx-about__dot {
  color: #b8c2d9;
  font-size: 18px;
  line-height: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-about {
    padding: 70px 0;
  }

  .synx-about__title {
    font-size: 30px;
  }

  .synx-about__pillar {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .synx-about__title {
    font-size: 26px;
  }

  .synx-about__para {
    font-size: 15px;
  }

  .synx-about__pillars {
    flex-direction: column;
    gap: 12px;
  }

  .synx-about__dot {
    display: none;
  }
}

.mqw-outer {
  overflow: hidden; /* clips the rotated bleed */
  width: 100%;
  padding: 50px 0;
}

.mqw-section {
  position: relative;
  overflow: hidden;
  /* diagonal slant */
  transform: rotate(-2.2deg) scaleX(1.04);
  margin: 1.5rem 0;
  /* compensate for rotation bleed */
  padding: 0;
}

/* two strips â€” one below the other */
.mqw-strip {
  background: linear-gradient(135deg, #02a0a7, #001d55);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  line-height: 1;
}

/* gap between strips */
.mqw-strip + .mqw-strip {
  margin-top: 3px;
}

/* inner track â€” duplicated for seamless loop */
.mqw-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  /* strip 1 goes left, strip 2 goes right */
}

.mqw-strip:nth-child(1) .mqw-track {
  animation: mqw-left 40s linear infinite;
}
.mqw-strip:nth-child(2) .mqw-track {
  animation: mqw-right 40s linear infinite;
}

@keyframes mqw-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes mqw-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* â”€â”€ ITEM â”€â”€ */
.mqw-item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0 1.4rem;
}

.mqw-text {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

.mqw-sep {
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  opacity: 0.85;
}

/* pause on hover */
.mqw-section:hover .mqw-strip:nth-child(1) .mqw-track {
  animation-play-state: paused;
}
.mqw-section:hover .mqw-strip:nth-child(2) .mqw-track {
  animation-play-state: paused;
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 576px) {
  .mqw-section {
    transform: rotate(-2.2deg) scaleX(1.06);
  }
  .mqw-strip {
    padding: 0.4rem 0;
  }
}

/* ============================================
   SYNEXIIN IMPACT — component styles
   Prefix: synx-impact
   Requires: Google Font "Playfair Display" (700)
   ============================================ */

.synx-impact {
  background: #ffffff;
  padding: 90px 0;
  overflow-x:hidden;
}

.synx-impact__title {
  margin: 0 0 40px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.synx-impact__box {
  background: #f7f7f7;
  padding: 55px 40px;
}

.synx-impact__row {
  align-items: stretch;
}

.synx-impact__item {
  position: relative;
  padding: 10px 30px;
}

.synx-impact__item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(0, 29, 85, 0.15);
}

.synx-impact__item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #001d55;
  border-radius: 50%;
  background: #f7f7f7;
  transform: translateY(-50%);
  z-index: 2;
}

.synx-impact__item:last-child::after,
.synx-impact__item:last-child::before {
  display: none;
}

.synx-impact__number {
  margin: 0 0 8px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.synx-impact__label {
  margin: 0;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-impact {
    padding: 60px 0;
  }

  .synx-impact__title {
    font-size: 30px;
    margin-bottom: 30px;
  }

  .synx-impact__box {
    padding: 40px 20px;
  }

  .synx-impact__number {
    font-size: 30px;
  }

  /* on 2-col mobile grid, only every-other item and each row's last item lose the divider */
  .synx-impact__item:nth-child(2n)::after,
  .synx-impact__item:nth-child(2n)::before {
    display: none;
  }

  .synx-impact__item {
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .synx-impact__item {
    padding: 6px 12px;
  }

  .synx-impact__number {
    font-size: 26px;
  }

  .synx-impact__label {
    font-size: 13px;
  }
  
  
}

/* ============================================
   SYNEXIIN SERVICES — component styles
   Prefix: synx-services
   ============================================ */

.synx-services {
  background: #f7f7f7;
  padding: 100px 0;
  overflow-x:hidden;
}

/* ---------- head block ---------- */
.synx-services__head {
  max-width: 1100px;
  margin: 0 auto 60px;
  text-align: center;
}

.synx-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #02a0a7;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-services__eyebrow i {
  font-size: 12px;
}

.synx-services__title {
  margin: 0 0 20px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.4px;
}

.synx-services__intro {
  margin: 0;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-style: italic;
}

/* ---------- cards ---------- */
.synx-services__row {
  row-gap: 30px;
}

.synx-services__card {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 29, 85, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.synx-services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 29, 85, 0.12);
}

.synx-services__number {
  margin: 0 0 18px;
  color: rgb(1 147 159 / 17%);
  font-family: "Poppins", sans-serif;
  font-size: 61px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 25px;
}

.synx-services__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 20px;
}

.synx-services__card-title a {
  margin: 0 0 12px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.synx-services__card-desc {
  margin: 0;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-services {
    padding: 70px 0;
  }

  .synx-services__title {
    font-size: 28px;
  }

  .synx-services__head {
    margin-bottom: 44px;
  }
}

@media (max-width: 575.98px) {
  .synx-services__title {
    font-size: 24px;
  }

  .synx-services__intro {
    font-size: 15px;
  }

  .synx-services__card {
    padding: 32px 24px;
  }
}

/* ============================================
   SYNEXIIN WHY PARTNER — component styles
   Prefix: synx-why
   ============================================ */

.synx-why {
  position: relative;
  background: #ffffff;
  padding: 90px 0;
}

/* ---------- head ---------- */
.synx-why__head {
  text-align: center;
  margin-bottom: 50px;
}

.synx-why__title {
  margin: 0 0 14px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-why__underline {
  display: inline-block;
  width: 46px;
  height: 3px;
  background: #001d55;
}

/* decorative ringed dot, top right of section (purely visual) */
.synx-why__deco {
  position: absolute;
  top: 26px;
  right: 40px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 29, 85, 0.35);
  border-radius: 50%;
}

.synx-why__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #001d55;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- columns (no card chrome) ---------- */
.synx-why__row {
  align-items: stretch;
}

.synx-why__item {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.synx-why__item::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: rgba(0, 29, 85, 0.12);
}

.synx-why__item:last-child::after {
  display: none;
}

.synx-why__icon {
  margin-bottom: 18px;
  color: #001d55;
  font-size: 26px;
}

.synx-why__item-title {
  margin: 0 0 10px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.synx-why__item-desc {
  margin: 0;
  color: #6b7590;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-why__deco {
    display: none;
  }

  .synx-why__item {
    margin-bottom: 34px;
  }

  /* 2-col mobile grid: drop dividers that no longer sit between two items */
  .synx-why__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .synx-why__title {
    font-size: 20px;
  }
}

/* ============================================
   SYNEXIIN CLIENT IMPACT — component styles
   Prefix: synx-ci
   ============================================ */

.synx-ci {
  background: #ffffff;
  padding: 100px 0;
  overflow-x:hidden;
}

/* ---------- head ---------- */
.synx-ci__head {
  max-width: 1100px;
  margin: 0 auto 50px;
  text-align: center;
}

.synx-ci__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    color: #02a0a7;
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.synx-ci__eyebrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #02939f;
  transform: translateX(-50%);
}

.synx-ci__title {
  margin: 0 0 16px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.synx-ci__title--accent {
  color: #02939f;
}

.synx-ci__desc {
  margin: 0;
  color: #4a5568;
  font-size: 15.5px;
  line-height: 1.75;
}

/* ---------- cards ---------- */
.synx-ci__row {
  row-gap: 24px;
}

.synx-ci-card {
  height: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 14px;
  padding: 28px 26px;
}

.synx-ci-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.synx-ci-card__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 29, 85, 0.06);
  color: #001d55;
  font-size: 16px;
}

.synx-ci-card__num {
  margin: 0;
  color: #02939f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
}

.synx-ci-card__label {
  position: relative;
  margin: 0;
  padding-bottom: 6px;
  color: #001d55;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-ci-card__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: #02939f;
}

.synx-ci-card__quote {
  margin: 0 0 14px;
  color: #001d55;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
  text-align:justify;
}

.synx-ci-card__quote i {
  color: #02939f;
  font-size: 12px;
}

.synx-ci-card__body {
  margin: 0 0 22px;
  color: #6b7590;
  font-size: 13px;
  line-height: 1.75;
  text-align:justify;
}

.synx-ci-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 29, 85, 0.08);
}

.synx-ci-card__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #001d55;
  font-size: 14px;
}

.synx-ci-card__avatar--teal { background: rgba(2, 160, 167, 0.15); }
.synx-ci-card__avatar--purple { background: rgba(122, 63, 240, 0.15); }
.synx-ci-card__avatar--blue { background: rgba(43, 75, 242, 0.15); }

.synx-ci-card__name {
  margin: 0;
  color: #001d55;
  font-size: 13.5px;
  font-weight: 700;
}

.synx-ci-card__org {
  margin: 0;
  color: #8792a6;
  font-size: 12px;
}

/* ---------- confidentiality note ---------- */
.synx-ci__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 26px;
  color: #6b7590;
  font-size: 13px;
  font-style: italic;
}

.synx-ci__note i {
  color: #02939f;
  font-style: normal;
}

/* ---------- "why it matters" bar ---------- */
.synx-ci-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 22px 30px;
  background: #fbf3e6;
  border-radius: 12px;
}

.synx-ci-bar__lead {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #001d55;
  font-size: 14.5px;
  font-weight: 700;
}

.synx-ci-bar__lead i {
  color: #02939f;
  font-size: 16px;
}

.synx-ci-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4a5568;
  font-size: 13.5px;
  font-weight: 500;
}

.synx-ci-bar__item i {
  color: #02939f;
  font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-ci { padding: 70px 0; }
  .synx-ci__title { font-size: 26px; }
  .synx-ci-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 575.98px) {
  .synx-ci__title { font-size: 21px; }
  .synx-ci-card { padding: 24px 20px; }
}


/* ============================================
   SYNEXIIN FAQ — component styles
   Prefix: synx-faq
   Requires: Google Font "Playfair Display" (700)
   ============================================ */

.synx-faq {
  background: #ffffff;
  padding: 100px 0;
  overflow-x: hidden;
}

.synx-faq__row {
  align-items: flex-start;
}

/* ---------- left column ---------- */
.synx-faq__badge {
  display: inline-block;
  margin-bottom: 5px;
  padding: 6px 16px;
  background: rgba(0, 29, 85, 0.08);
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.synx-faq__title {
  margin: 0 0 6px;
  color: #001d55;
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
}

/* ---------- accordion ---------- */
.synx-faq__item {
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 8px;
  margin-bottom: 14px;
  background: #ffffff;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}

.synx-faq__item--active {
  background: #eef1f6;
  border-color: transparent;
}

.synx-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 15px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.synx-faq__num {
  color: #02a0a7;
  margin-right: 4px;
}

.synx-faq__icon {
  flex-shrink: 0;
  color: #001d55;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.synx-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 24px;
}

.synx-faq__answer p {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 29, 85, 0.12);
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

.synx-faq__item--active .synx-faq__answer {
  padding: 0 24px 15px;
}

/* ---------- right column: image ---------- */
.synx-faq__image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 29, 85, 0.15);
}

.synx-faq__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-faq {
    padding: 70px 0;
  }

  .synx-faq__title {
    font-size: 28px;
  }

  .synx-faq__image-wrap {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .synx-faq__question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .synx-faq__answer {
    padding: 0 18px;
  }

  .synx-faq__item--active .synx-faq__answer {
    padding: 0 18px 18px;
  }
}

/* ============================================
   SYNEXIIN CTA — component styles
   Prefix: synx-cta
   Requires: assets/cta-bg.png (shared wave background)
   ============================================ */

.synx-cta {
  background: linear-gradient(
    120deg,
    var(--sx-navy) 0%,
    var(--sx-teal-deep) 130%
  );
  /*background-image: url("../image/img/ctt.png");*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
  overflow-x:hidden;
}

.synx-cta__inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.synx-cta__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
}

.synx-cta__accent--blue {
  background: linear-gradient(90deg, #00ecff, #00c5ff, #0075ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.synx-cta__accent--orange {
  background: linear-gradient(90deg, #00ecff, #00c5ff, #0075ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.synx-cta__desc {
  margin: 0 auto 34px;
  max-width: 620px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

/* ---------- action buttons ---------- */
.synx-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.synx-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.synx-cta__btn i {
  font-size: 13px;
  transition: transform 0.25s ease;
}

.synx-cta__btn--primary {
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  box-shadow: 0 10px 26px rgba(63, 205, 240, 0.28);
}

.synx-cta__btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(63, 228, 240, 0.38);
}

.synx-cta__btn--outline {
  background: #ffffff;
  color: #02a0a7;
  border: 1px solid rgba(63, 190, 240, 0.35);
}

.synx-cta__btn--outline:hover {
  color: #02a0a7;
  /*background: rgba(63, 213, 240, 0.06);*/
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(63, 228, 240, 0.38);
}

.synx-cta__btn:hover i {
  transform: translateX(3px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-cta {
    padding: 70px 0;
  }

  .synx-cta__title {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .synx-cta__title {
    font-size: 24px;
  }

  .synx-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .synx-cta__btn {
    justify-content: center;
  }
}

/* ============================================
   SYNEXIIN FOOTER — component styles (light theme)
   Prefix: synx-footer
   ============================================ */

.synx-footer {
  position: relative;
  background: #fefefe;
  padding-top: 70px;
  overflow-x:hidden;
}

/* ---------- top wave divider ---------- */
.synx-footer__shape {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  transform: translateY(-99%);
}

.synx-footer__shape svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* ---------- top area ---------- */
.synx-footer__top {
  padding-bottom: 40px;
}

.synx-footer__row {
  row-gap: 34px;
}

.synx-footer__logo-img {
  height: 47px;
  width: auto;
}

.synx-footer__address {
  margin: 0 0 10px;
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  line-height: 1.7;
}

.synx-footer__email {
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: underline;
}

.synx-footer__email:hover {
  color: #02a0a7;
}

.synx-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display:flex;
  text-align: right;
    justify-content: end
}

.synx-footer__links li {
  margin-bottom: 12px;
  padding: 10px 20px;
}

.synx-footer__links li:last-child {
  margin-bottom: 0;
}

.synx-footer__links a {
  color: #4a5568;
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.synx-footer__links a:hover {
  color: #02a0a7;
}

.synx-footer__social-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .synx-footer__social-col {
    justify-content: flex-end;
  }
}

.synx-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.synx-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.12);
  color: #001d55;
  font-size: 15px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.synx-footer__social a:hover {
  background: #02a0a7;
  border-color: #02a0a7;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ---------- divider ---------- */
.synx-footer__divider {
  height: 1px;
  background: rgba(0, 29, 85, 0.1);
}

/* ---------- bottom bar ---------- */
.synx-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 15px;
}

.synx-footer__copyright,
.synx-footer__credit {
  margin: 0;
  color: #6b7590;
  font-family: "Poppins", sans-serif;
  font-size: 13.5px;
}

/* ---------- back to top ---------- */
.synx-footer__totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #001d55;
  color: #ffffff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease,
    background 0.25s ease;
  box-shadow: 0 10px 24px rgba(0, 29, 85, 0.25);
}

.synx-footer__totop--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.synx-footer__totop:hover {
  background: #02a0a7;
}

.synx-footer__totop i {
  font-size: 14px;
}

.synx-footer__totop span {
  font-family: "Poppins", sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-footer {
    padding-top: 50px;
  }

  .synx-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .synx-footer__shape svg {
    height: 50px;
  }

  .synx-footer__totop {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
  }
}

/* ============================================
   INTRO — video background & left-aligned layout
   ============================================ */
.synx-svc-intro {
  position: relative;
  padding: 75px 0;
  overflow-x: hidden;
}

/* Background Video Styling */
.synx-svc-intro__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.synx-svc-intro::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(2, 160, 167, 0.12),
    rgba(2, 160, 167, 0) 70%
  );
  z-index: 1;
}

.synx-svc-intro::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -160px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 29, 85, 0.08),
    rgba(0, 29, 85, 0) 70%
  );
  z-index: 1;
}

.synx-svc-intro__watermark {
  position: absolute;
  top: 50%;
  left: 30%; /* Shifted left to accommodate video art on the right */
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: left;
  color: #02939f14;
  font-family: "Playfair Display", serif;
  font-size: 200px;
  font-weight: 700;
  letter-spacing: 4px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Container Adjustments for Left Alignment */
.synx-svc-intro .container {
  position: relative;
  z-index: 2;
}

.synx-svc-intro__inner {
  position: relative;
  z-index: 2;
  max-width: 560px; /* Limits width to keep text on the left clear of right-side graphics */
  margin: 0 0 50px 0;
  text-align: left;
}

.synx-svc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0px;
  padding: 6px 0px;
  /*background: rgba(0, 29, 85, 0.07);*/
  color: #02a0a7;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 30px;
}

.synx-svc-eyebrow i {
  font-size: 10px;
  color: #02a0a7;
}

.synx-svc-intro__title {
  margin: 0 0 18px;
  color: #001d55;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.5px;
      text-transform: uppercase;
}

.synx-svc-intro__desc {
  margin: 0;
  max-width: 100%;
  color: #000;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

/* ---------- Left-Aligned Strip ---------- */
.synx-svc-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 485px;
  margin: 0;
}

.synx-svc-strip__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  width: 120px;
  text-decoration: none;
  padding-top: 4px;
}

.synx-svc-strip__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  border: 1px solid rgba(0, 29, 85, 0.18);
  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 29, 85, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.synx-svc-strip__node:hover .synx-svc-strip__dot {
  background: #02a0a7;
  border-color: #02a0a7;
  color: #ffffff;
  transform: translateY(-3px);
}

.synx-svc-strip__label {
  margin: 0;
  width: 100%;
  color: #4a5568;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}

.synx-svc-strip__line {
  flex: 1 1 auto;
  height: 1px;
  margin-top: 29px;
  background: rgba(0, 29, 85, 0.14);
}

/* ============================================
     PAGE SHELL — sticky rail + spotlight bands
     ============================================ */
.synx-svc-shell {
  display: flex;
  align-items: flex-start;
  overflow-x: hidden;
}

.synx-svc-rail {
  display: none;
}

@media (min-width: 992px) {
  .synx-svc-rail {
    display: flex;
    flex-direction: column;
    gap: 34px;
    flex: 0 0 220px;
    position: sticky;
    top: 90px;
    padding: 90px 30px;
  }

  .synx-svc-rail__item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }

  .synx-svc-rail__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 29, 85, 0.2);
    color: #001d55;
    font-size: 12px;
    font-weight: 700;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      border-color 0.25s ease;
  }

  .synx-svc-rail__item:hover .synx-svc-rail__num {
    background: #02a0a7;
    border-color: #02a0a7;
    color: #ffffff;
  }

  .synx-svc-rail__text {
    margin: 0;
    color: #4a5568;
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.4;
  }

  .synx-svc-rail__item:hover .synx-svc-rail__text {
    color: #001d55;
  }

  .synx-svc-rail__connector {
    width: 1px;
    height: 26px;
    margin-left: 17px;
    background: rgba(0, 29, 85, 0.14);
  }
}

.synx-svc-main {
  flex: 1 1 auto;
  min-width: 0;
}

/* ============================================
     SPOTLIGHT SECTION (light theme throughout)
     ============================================ */
.synx-svc-spot {
  position: relative;
  padding: 85px 0;
}

.synx-svc-spot--tint {
  background: #f7f9fc;
}

/* ---------- header row: text + photo collage ---------- */
.synx-svc-spot__head {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.synx-svc-spot__headtext {
  flex: 1 1 380px;
  min-width: 0;
}

.synx-svc-spot__num {
  display: block;
  margin-bottom: 8px;
  color: rgba(0, 29, 85, 0.14);
  font-family: "Playfair Display", serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.synx-svc-spot__eyebrow {
  display: block;
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #02a0a7;
}

.synx-svc-spot__tagline {
  margin: 0;
  color: #001d55;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
}

/* ---------- single photo per section ---------- */
.synx-svc-media {
  flex: 0 0 625px;
  width: 625px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 29, 85, 0.16);
}

.synx-svc-media img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

/* mirror the image side for reversed sections so it doesn't collide with the rail */
.synx-svc-spot--reverse .synx-svc-spot__head {
  flex-direction: row-reverse;
}

/* ---------- glass core-service cards (light) ---------- */
.synx-svc-glassrow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}

.synx-svc-glasscard {
  flex: 1 1 260px;
  padding: 24px 22px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.08);
  box-shadow: 0 10px 26px rgba(0, 29, 85, 0.06);
}

.synx-svc-glasscard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: rgba(2, 160, 167, 0.1);
  color: #02a0a7;
  font-size: 15px;
}

.synx-svc-glasscard__title {
  margin: 0 0 8px;
  color: #001d55;
  font-size: 15.5px;
  font-weight: 700;
}

.synx-svc-glasscard__desc {
  margin: 0;
  color: #6b7590;
  font-size: 13.5px;
  line-height: 1.7;
}

/* ---------- methods tag cloud ---------- */
.synx-svc-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.synx-svc-label i {
  color: #02a0a7;
}

.synx-svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
}

.synx-svc-tag {
  padding: 7px 15px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 500;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.14);
  color: #001d55;
}

/* ---------- closing elements ---------- */
.synx-svc-concepts {
  margin: 0;
  padding: 18px 22px;
  background: rgba(2, 160, 167, 0.06);
  border-radius: 12px;
  color: #4a5568;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.9;
}

.synx-svc-concepts span {
  color: #02a0a7;
  font-weight: 700;
}

.synx-svc-journey {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.synx-svc-journey__step {
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  background: #001d55;
  color: #ffffff;
  margin: 10px 0;
}

.synx-svc-journey__arrow {
  margin: 0 10px;
  font-size: 13px;
  color: #02a0a7;
}

.synx-svc-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
}

.synx-svc-badge i {
  font-size: 17px;
}

.synx-svc-badge span {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .synx-svc-intro {
    padding: 80px 0 50px;
  }
  .synx-svc-intro__watermark {
    font-size: 110px;
  }
  .synx-svc-intro__title {
    font-size: 28px;
  }
  .synx-svc-strip__line {
    width: 40px;
  }
  .synx-svc-spot {
    padding: 60px 0;
  }
  .synx-svc-spot__tagline {
    font-size: 19px;
  }
  .synx-svc-spot__head,
  .synx-svc-spot--reverse .synx-svc-spot__head {
    flex-direction: column;
  }
  .synx-svc-media {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .synx-svc-spot__headtext {
    flex: 1 1;
    min-width: 0;
  }
  .synx-svc-media {
    flex: 1 1;
    width: 625px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 29, 85, 0.16);
  }
}

@media (max-width: 575.98px) {
  .synx-svc-intro__title {
    font-size: 24px;
  }
  .synx-svc-strip__label {
    display: none;
  }
  .synx-svc-strip__line {
    width: 22px;
  }
  .synx-svc-spot__num {
    font-size: 38px;
  }
  .synx-svc-media img {
    height: 200px;
  }
}

/* ============================================
     HERO — breadcrumb-style, full-bleed background photo
     ============================================ */
.synx-ab-hero {
  position: relative;
  padding: 75px 0;
  /*height: 450px;*/
  background-color: #001028;
  background-image: url("../image/img/abgg (1).jpg");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;

  overflow-x: hidden;
}

.synx-ab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 16, 40, 0.94) 0%,
    rgba(0, 16, 40, 0.82) 40%,
    rgba(0, 29, 85, 0.55) 75%,
    rgba(0, 29, 85, 0.35) 100%
  );
}

.synx-ab-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.synx-ab-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6fe0e5;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.synx-ab-hero__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.synx-ab-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
  text-align:justify;
}

/* ---------- pillar strip under hero ---------- */
.synx-ab-pillars {
  background: #f7f9fc;
  padding: 8px 0;
  overflow-x: hidden;
}

.synx-ab-pillars__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.synx-ab-pillars__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #001d55;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.synx-ab-pillars__item i {
  color: #02a0a7;
  font-size: 12px;
}

.synx-ab-pillars__dot {
  color: rgba(0, 29, 85, 0.25);
  font-size: 12px;
}

/* ============================================
     SHARED SECTION SPACING
     ============================================ */
.synx-ab-section {
  padding: 80px 0;
  overflow-x: hidden;
}
.synx-ab-section--tint {
    overflow-x: hidden;
  background: #f7f9fc;
}

.synx-ab-eyebrow2 {
  display: block;
  margin: 0 0 14px;
  color: #02a0a7;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


 /* ===== syn-mission section ===== */
    .syn-mission-section{
        background-color:#001233;
        background-image:linear-gradient(135deg, #02a0a7, #001d55);
        position:relative;
        overflow:hidden;
        padding:46px 20px;
        overflow-x: hidden;
    }
 
    .syn-mission-glow{
        position:absolute;
        top:-80px;
        right:-60px;
        width:420px;
        height:420px;
        background:radial-gradient(circle, rgba(2,160,167,0.18) 0%, rgba(2,160,167,0) 70%);
        pointer-events:none;
    }
 
    .syn-mission-row{
        display:flex;
        align-items:flex-start;
        gap:26px;
        position:relative;
    }
 
    .syn-mission-quote-icon{
        color:#ff8a3d;
        font-size:42px;
        line-height:1;
        flex-shrink:0;
        opacity:0.9;
    }
 
    .syn-mission-tag{
        color:#ff8a3d;
        letter-spacing:2.5px;
        font-size:12px;
        font-weight:700;
        text-transform:uppercase;
        margin-bottom:10px;
    }
 
    .syn-mission-text{
        color:#f1f3f8;
        font-size:19px;
        font-weight:500;
        line-height:1.6;
        /*max-width:820px;*/
    }
 
    @media (max-width:767px){
        .syn-mission-row{
            gap:16px;
        }
        .syn-mission-quote-icon{
            font-size:32px;
        }
        .syn-mission-text{
            font-size:16px;
        }
    }
    
/* ============================================
     WHO WE ARE
     ============================================ */
.synx-ab-who__title {
  margin: 0 0 20px;
  color: #001d55;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.synx-ab-who__para {
  margin: 0 0 16px;
  color: #4a5568;
  font-size: 15.5px;
  text-align:justify;
  line-height: 1.85;
      padding-right: 25px;
}

.synx-ab-who__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 29, 85, 0.15);
}

.synx-ab-who__media img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
}

 
/* ============================================
     PHILOSOPHY
     ============================================ */
.synx-ab-phil__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.synx-ab-phil__title {
  margin: 0;
  color: #001d55;
  font-size: 28px;
  font-weight: 700;
}

.synx-ab-phil__row {
  row-gap: 24px;
}

.synx-ab-phil__card {
  height: 100%;
  padding: 30px 26px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 29, 85, 0.06);
  /*text-align: center;*/
  display: flex;
    gap: 16px;
    align-items: flex-start;
}

.synx-ab-phil__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 21px;
}

.synx-ab-phil__name {
  margin: 0 0 4px;
  color: #001d55;
  font-size: 18px;
  font-weight: 700;
}

.synx-ab-phil__tag {
  margin: 0 0 12px;
  color: #02a0a7;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-ab-phil__desc {
  margin: 0;
  color: #6b7590;
  font-size: 14px;
  line-height: 1.7;
}

/* ============================================
     WHY SYNEXIIN EXISTS — text + radial force diagram
     ============================================ */
.synx-ab-why__title {
  margin: 0 0 18px;
  color: #001d55;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
}

.synx-ab-why__para {
  margin: 0 0 16px;
  color: #4a5568;
  font-size: 15.5px;
  text-align:justify;
  line-height: 1.85;
}

.synx-ab-orbit {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.synx-ab-orbit__ring {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(0, 29, 85, 0.2);
  border-radius: 50%;
}

.synx-ab-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px;
  box-shadow: 0 14px 30px rgba(0, 29, 85, 0.25);
}

.synx-ab-orbit__node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.14);
  border-radius: 30px;
  box-shadow: 0 8px 18px rgba(0, 29, 85, 0.1);
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.synx-ab-orbit__node i {
  color: #02a0a7;
  font-size: 12px;
}

.synx-ab-orbit__node--top {
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.synx-ab-orbit__node--right {
  top: 50%;
  right: -70px;
  transform: translateY(-50%);
}
.synx-ab-orbit__node--bottom {
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.synx-ab-orbit__node--left {
  top: 50%;
  left: -70px;
  transform: translateY(-50%);
}

/* ============================================
     WHAT MAKES US DIFFERENT
     ============================================ */
.synx-ab-diff__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.synx-ab-diff__title {
  margin: 0;
  color: #001d55;
  font-size: 28px;
  font-weight: 700;
}

.synx-ab-diff__row {
  row-gap: 22px;
}

.synx-ab-diff__item {
  display: flex;
  gap: 16px;
  height: 100%;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.08);
  border-radius: 14px;
}

.synx-ab-diff__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(2, 160, 167, 0.1);
  color: #02a0a7;
  font-size: 16px;
}

.synx-ab-diff__title2 {
  margin: 0 0 6px;
  color: #001d55;
  font-size: 15.5px;
  font-weight: 700;
}

.synx-ab-diff__desc {
  margin: 0;
  color: #6b7590;
  font-size: 13.5px;
  line-height: 1.7;
}

/* ============================================
     TRUSTED BY
     ============================================ */
.synx-ab-trust__head {
  text-align: center;
  margin-bottom: 34px;
}

.synx-ab-trust__label {
  margin: 0;
  color: #001d55;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.synx-ab-trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.synx-ab-trust__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.12);
  border-radius: 30px;
  color: #001d55;
  font-size: 12px;
  font-weight: 600;
}

.synx-ab-trust__chip i {
  color: #02a0a7;
  font-size: 13px;
}

/* ============================================
   SYNEXIIN OUR APPROACH — component styles
   Prefix: synx-approach
   Colors: #02a0a7 (teal), #001d55 (navy)
   ============================================ */

.synx-approach {
      background: #ededed;
    padding: 30px 0;
    overflow-x: hidden;
}

/* ---------- head ---------- */
.synx-approach__head {
  text-align: center;
  margin-bottom: 18px;
}

.synx-approach__title {
  margin: 0 0 14px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-approach__underline {
  display: inline-block;
  width: 46px;
  height: 3px;
  background: #001d55;
}

.synx-approach__subtitle {
  margin: 0 0 50px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

/* ---------- columns (no card chrome) ---------- */
.synx-approach__row {
  align-items: stretch;
}

.synx-approach__item {
  position: relative;
  padding: 0 26px;
  text-align: center;
}

.synx-approach__item::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: rgba(0, 29, 85, 0.12);
}

.synx-approach__item:last-child::after {
  display: none;
}

.synx-approach__icon {
  margin-bottom: 18px;
  color: #02a0a7;
  font-size: 26px;
}

.synx-approach__item-title {
  margin: 0 0 10px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.synx-approach__item-desc {
  margin: 0;
  color: #6b7590;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-approach__item {
    margin-bottom: 34px;
  }

  /* 2-col mobile grid: drop dividers that no longer sit between two items */
  .synx-approach__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .synx-approach__title {
    font-size: 20px;
  }

  .synx-approach__subtitle {
    font-size: 14.5px;
  }
}

/* ============================================
   SYNEXIIN WHY PARTNER — component styles
   Prefix: synx-why
   ============================================ */

.synx-why {
  position: relative;
  background: #ffffff;
  padding: 50px 0;
  overflow-x:hidden;
}

/* ---------- head ---------- */
.synx-why__head {
  text-align: center;
  margin-bottom: 50px;
}

.synx-why__title {
  margin: 0 0 14px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.synx-why__underline {
  display: inline-block;
  width: 46px;
  height: 3px;
  background: #001d55;
}

/* decorative ringed dot, top right of section (purely visual) */
.synx-why__deco {
  position: absolute;
  top: 26px;
  right: 40px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 29, 85, 0.35);
  border-radius: 50%;
}

.synx-why__deco::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #001d55;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- columns (no card chrome) ---------- */
.synx-why__row {
  align-items: stretch;
}

.synx-why__item {
  position: relative;
  padding: 0 10px;
  text-align: center;
}

.synx-why__item::after {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  right: 0;
  width: 1px;
  background: rgba(0, 29, 85, 0.12);
}

.synx-why__item:last-child::after {
  display: none;
}

.synx-why__icon {
  margin-bottom: 18px;
  color: #02a0a7;
  font-size: 26px;
}

.synx-why__item-title {
  margin: 0 0 10px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.synx-why__item-desc {
  margin: 0;
  color: #6b7590;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-why__deco {
    display: none;
  }

  .synx-why__item {
    margin-bottom: 34px;
  }

  /* 2-col mobile grid: drop dividers that no longer sit between two items */
  .synx-why__item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .synx-why__title {
    font-size: 20px;
  }
}

/* ============================================
     FROM THE FOUNDER — split composition:
     script signature + layered orbit/bars portrait
     ============================================ */
.synx-ab-founder-sec {
  position: relative;
  overflow-x: hidden;
  padding: 110px 0;
  background:
    radial-gradient(
      ellipse 900px 500px at 85% 15%,
      rgba(2, 160, 167, 0.07),
      transparent 60%
    ),
    linear-gradient(150deg, #fbf8f2 0%, #f4eee2 100%);
}

.synx-ab-founder-sec__corner-ring {
  position: absolute;
  top: 26px;
  left: 46px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 29, 85, 0.18);
  border-radius: 50%;
}

.synx-ab-founder-sec__corner-dot {
  position: absolute;
  top: 12px;
  left: 70px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #02a0a7;
}

.synx-ab-founder-sec__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 56px;
}

/* ---- left: quote + script signature ---- */
.synx-ab-founder-sec__copy {
  flex: 1 1 460px;
  min-width: 300px;
}

.synx-ab-founder-sec__mark {
  display: block;
  margin: 4px 0 22px;
  color: #001d55;
  font-size: 30px;
  line-height: 1;
}

.synx-ab-founder-sec__quote {
  margin: 0 0 34px;
  /*max-width: 480px;*/
  color: #12234f;
  font-family: "Playfair Display", serif;
  /*font-weight: 600;*/
  font-style: italic;
  font-size: 22px;
  line-height: 1.3;
  text-align:justify;
}

.synx-ab-founder-sec__sign {
  margin: 0 0 2px;
  color: #001d55;
  /*font-family:auto;*/
  font-size: 34px;
  line-height: 1;
  font-family: "Great Vibes", cursive;
}

.synx-ab-founder-sec__role {
  margin: 8px 0 0;
  padding-left: 14px;
  border-left: 2px solid #02a0a7;
  color: #6b7590;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

/* ---- right: layered visual ---- */
.synx-ab-founder-sec__visual {
  position: relative;
  flex: 1 1 340px;
  min-width: 280px;
  max-width: 400px;
  height: 380px;
  margin: 0 auto;
}

.synx-ab-founder-sec__bars {
  position: absolute;
  right: 4%;
  bottom: 6%;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: 78%;
  height: 62%;
}

.synx-ab-founder-sec__bars span {
  flex: 1;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(
    180deg,
    rgba(0, 29, 85, 0.05),
    rgba(0, 29, 85, 0.13)
  );
}

.synx-ab-founder-sec__bars span:nth-child(1) {
  height: 38%;
}
.synx-ab-founder-sec__bars span:nth-child(2) {
  height: 58%;
}
.synx-ab-founder-sec__bars span:nth-child(3) {
  height: 46%;
}
.synx-ab-founder-sec__bars span:nth-child(4) {
  height: 78%;
}
.synx-ab-founder-sec__bars span:nth-child(5) {
  height: 65%;
}
.synx-ab-founder-sec__bars span:nth-child(6) {
  height: 95%;
}

.synx-ab-founder-sec__ring {
  position: absolute;
  border-radius: 50%;
}

.synx-ab-founder-sec__ring--a {
  top: 0;
  left: 6%;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(2, 160, 167, 0.4);
}

.synx-ab-founder-sec__ring--b {
  top: 12%;
  right: 0;
  width: 75%;
  height: 75%;
  border: 1px dashed rgba(0, 29, 85, 0.22);
}

.synx-ab-founder-sec__photo {
  position: absolute;
  top: 14%;
  right: 17%;
  width: 275px;
  height: 275px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 28px 55px rgba(0, 29, 85, 0.28);
}

.synx-ab-founder-sec__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.synx-ab-founder-sec__badge {
  position: absolute;
  left: 2%;
  bottom: 10%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #02a0a7, #001d55);
  color: #ffffff;
  font-size: 19px;
  box-shadow: 0 16px 30px rgba(0, 29, 85, 0.32);
}

.synx-ab-founder-sec__chip {
  position: absolute;
  top: 6%;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 15px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 30px;
  box-shadow: 0 10px 22px rgba(0, 29, 85, 0.12);
  color: #001d55;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.synx-ab-founder-sec__chip i {
  color: #02a0a7;
  font-size: 11px;
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .synx-ab-hero {
    padding: 100px 0 60px;
  }
  .synx-ab-hero__title {
    font-size: 28px;
  }
  .synx-ab-section {
    padding: 60px 0;
  }
  .synx-ab-who__media img {
    height: 260px;
    margin-top: 30px;
  }
  .synx-ab-orbit {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .synx-ab-hero__title {
    font-size: 24px;
  }
  .synx-ab-mission__quote {
    font-size: 21px;
  }
  .synx-ab-orbit {
    width: 280px;
    height: 280px;
  }
  .synx-ab-orbit__center {
    width: 110px;
    height: 110px;
    font-size: 12px;
  }
  .synx-ab-orbit__node {
    font-size: 11px;
    padding: 7px 11px;
  }
  .synx-ab-orbit__node--right {
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
  }
  .synx-ab-orbit__node--left {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
  }
}

@media (max-width: 991.98px) {
  .synx-ab-founder-sec {
    padding: 80px 0;
  }
  .synx-ab-founder-sec__row {
    flex-direction: column;
  }
  .synx-ab-founder-sec__copy {
    text-align: center;
  }
  .synx-ab-founder-sec__quote {
    margin-left: auto;
    margin-right: auto;
  }
  .synx-ab-founder-sec__role {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    text-align: left;
  }
  .synx-ab-founder-sec__visual {
    max-width: 320px;
    height: 320px;
  }
  .synx-ab-founder-sec__photo {
    width: 190px;
    height: 190px;
  }
}

@media (max-width: 575.98px) {
  .synx-ab-founder-sec__quote {
    font-size: 19px;
  }
  .synx-ab-founder-sec__sign {
    font-size: 28px;
  }
  .synx-ab-founder-sec__chip {
    display: none;
  }
}

:root {
  --sx-navy: #001d55;
  --sx-navy-deep: #00112f;
  --sx-teal: #02a0a7;
  --sx-teal-deep: #017a80;
  --sx-cream: #faf7f1;
  --sx-cream-2: #f2ebdd;
  --sx-tint: #f7f9fc;
  --sx-ink: #12234f;
  --sx-muted: #6b7590;
  --sx-body: #4a5568;
  --sx-border: rgba(0, 29, 85, 0.08);
}

.sp-eyebrow {
  display: block;
  margin: 0;
  color: var(--sx-teal);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
     HERO — full-bleed background image, navy overlay
     ============================================ */
.sp-hero {
  position: relative;
  padding: 105px 0;
  /*height: 500px;*/
  background-color: #001028;
  background-image: url("../image/img/sig-pro.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow-x: hidden;
}

.sp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgb(0 0 0 / 95%) 0%,
    rgb(0 0 0 / 86%) 42%,
    rgba(0, 29, 85, 0.58) 76%,
    rgb(121 136 165 / 0%) 100%
  );
}

.sp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6fe0e5;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sp-hero__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.3px;
}

.sp-hero__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.85;
  max-width: 620px;
  text-align:justify;
}

/* ---------- meta strip under hero ---------- */
.sp-hero-meta {
  background: #f7f9fc;
  padding: 8px 0;
}

.sp-hero-meta__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sp-hero-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #001d55;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.sp-hero-meta__item i {
  color: var(--sx-teal);
  font-size: 12px;
}

.sp-hero-meta__dot {
  color: rgba(0, 29, 85, 0.25);
  font-size: 12px;
}

/* ============================================
     SHARED SECTION SPACING
     ============================================ */
.sp-section {
  padding: 90px 0;
  overflow-x: hidden;
}
.sp-section--tint {
  background: var(--sx-tint);
  overflow-x: hidden;
}

/* ============================================
     INTRO
     ============================================ */
.sp-intro {
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.sp-intro__lead {
  margin: 0 0 18px;
  color: var(--sx-navy);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.5;
}

.sp-intro__desc {
  margin: 0;
  color: var(--sx-body);
  font-size: 15.5px;
  line-height: 1.85;
}

/* ============================================
     PROGRAM CARDS
     ============================================ */
.sp-programs__row {
  row-gap: 30px;
  align-items: flex-start;
}

.sp-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 18px;
  padding: 25px 20px 25px;
  box-shadow: 0 14px 34px rgba(0, 29, 85, 0.07);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  overflow: hidden;
  min-height: 500px;
}

.sp-card:hover {
  box-shadow: 0 22px 46px rgba(0, 29, 85, 0.14);
  transform: translateY(-4px);
}

.sp-card__ribbon {
  position: absolute;
  top: 20px;
  right: -36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 152px;
  padding: 6px 0;
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  transform: rotate(40deg);
  box-shadow: 0 8px 16px rgba(0, 29, 85, 0.25);
}

.sp-card__ribbon i {
  font-size: 10px;
}

.sp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin: 4px 0 20px;
  border-radius: 14px;
  background: rgba(2, 160, 167, 0.1);
  color: var(--sx-teal);
  font-size: 21px;
}

.sp-card__title {
  margin: 0 0 10px;
  padding-right: 30px;
  color: var(--sx-navy);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
}

.sp-card__tagline {
  margin: 0 0 12px;
  color: var(--sx-ink);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
}

.sp-card__preview {
  margin: 0 0 22px;
  color: var(--sx-body);
  font-size: 13.5px;
  line-height: 1.8;
}

/* ---- always-visible meta: duration + ideal for ---- */
.sp-card__meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0 0 20px;
  padding: 15px 16px;
  background: var(--sx-tint);
  border-radius: 12px;
}

.sp-card__meta-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sx-navy);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
}

.sp-card__meta-item i {
  color: var(--sx-teal);
  font-size: 12px;
  margin-top: 2px;
  width: 12px;
}

/* ---- collapsible content ---- */
.sp-card__check {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sp-card__collapse {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    margin 0.45s ease;
}

.sp-card__check:checked ~ .sp-card__collapse {
  max-height: 700px;
  opacity: 1;
  margin-bottom: 18px;
}

.sp-card__full {
  margin: 0 0 18px;
  color: var(--sx-body);
  font-size: 13.5px;
  line-height: 1.85;
}

.sp-card__outcomes-label {
  margin: 0 0 10px;
  color: var(--sx-navy);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.sp-card__outcomes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-card__outcomes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--sx-body);
  font-size: 13px;
  line-height: 1.6;
}

.sp-card__outcomes li i {
  color: var(--sx-teal);
  font-size: 13px;
  margin-top: 3px;
}

/* ---- toggle button ---- */
.sp-card__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--sx-teal-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  user-select: none;
}

.sp-card__toggle-btn i {
  font-size: 11px;
  transition: transform 0.35s ease;
}

.sp-card__toggle-text-less {
  display: none;
}

.sp-card__check:checked ~ .sp-card__toggle-btn .sp-card__toggle-text-more {
  display: none;
}
.sp-card__check:checked ~ .sp-card__toggle-btn .sp-card__toggle-text-less {
  display: inline;
}
.sp-card__check:checked ~ .sp-card__toggle-btn i {
  transform: rotate(180deg);
}

.sp-card__check:focus-visible ~ .sp-card__toggle-btn {
  outline: 2px solid var(--sx-teal);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ============================================
     WHY OUR PROGRAMS DELIVER IMPACT
     ============================================ */
.sp-why__head {
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.sp-why__title {
  margin: 0;
  color: var(--sx-navy);
  font-size: 28px;
  font-weight: 700;
}

.sp-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sp-why__item {
  flex: 1 1 210px;
  padding: 28px 10px;
  /*background: #ffffff;*/
  /*border: 1px solid var(--sx-border);*/
  border-radius: 14px;
  /*box-shadow: 0 10px 28px rgba(0, 29, 85, 0.06);*/
  text-align: center;
}

.sp-why__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  color: #ffffff;
  font-size: 19px;
}

.sp-why__name {
  margin: 0 0 8px;
  color: var(--sx-navy);
  font-size: 15px;
  font-weight: 700;
}

.sp-why__desc {
  margin: 0;
  color: var(--sx-muted);
  font-size: 12px;
  line-height: 1.7;
}

/* ============================================
     IMPACT STATS — dark band
     ============================================ */ 
.sp-impact {
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  margin: 0 56px 44px;
  border-radius: 14px;
  padding: 30px 30px 34px;
  overflow-x: hidden;
}

.sp-impact-title {
  font-family: var(--sp-font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 1.5px;
  color: #fff;
  text-align: center;
  margin: 0 0 26px;
}

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

.sp-impact-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.sp-impact-stat__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sx-teal), var(--sx-navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.sp-impact-stat__number {
  font-family: var(--sp-font-display);
  font-weight: 800;
  margin:20px 0 0 0;
  font-size: 24px;
  color: #fff;
  line-height: 1.1;
}

.sp-impact-stat__label {
  font-size: 11.5px;
  color: #c2cdec;
}

/* ============================================
     WHO IT'S FOR
     ============================================ */
.sp-who__title {
  margin: 0 0 22px;
  color: var(--sx-navy);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.sp-who__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-who__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--sx-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.sp-who__list i {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(2, 160, 167, 0.12);
  color: var(--sx-teal);
  font-size: 12px;
}

.sp-who__media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 29, 85, 0.15);
}

.sp-who__media img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ============================================
     CTA
     ============================================ */
.sp-cta {
  position: relative;
  overflow-x: hidden;
  padding: 80px 0;
  background: linear-gradient(
    120deg,
    var(--sx-navy) 0%,
    var(--sx-teal-deep) 130%
  );
  text-align: center;
}

.sp-cta__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  /*max-width: 620px;*/
  margin-left: auto;
  margin-right: auto;
}

.sp-cta__desc {
  margin: 0 0 30px;
  color: #fff;
  font-size: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.sp-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #ffffff;
  color: var(--sx-navy);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.sp-cta__btn:hover {
    /*color: #ffffff;*/
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(63, 228, 240, 0.38);
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .sp-hero {
    padding: 110px 0 60px;
  }
  .sp-hero__title {
    font-size: 28px;
  }
  .sp-section {
    padding: 64px 0;
  }
  .sp-stats__grid {
    row-gap: 34px;
  }
  .sp-who__media img {
    height: 280px;
    margin-top: 34px;
  }
}

@media (max-width: 575.98px) {
  .sp-hero__title {
    font-size: 24px;
  }
  .sp-intro__lead {
    font-size: 21px;
  }
  .sp-card {
    padding: 30px 22px 24px;
  }
  .sp-card__ribbon {
    width: 138px;
    top: 16px;
    right: -40px;
    font-size: 10px;
  }
}

.sx-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--sx-teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ============================================
   HERO
   ============================================ */
.sx-hero {
  position: relative;
  padding: 75px 0;
  background-color: #001028;
  background-image: url("../image/img/acadmy.jpeg");
  background-size: cover;
  background-position: center;
  overflow-x: hidden;
}

.sx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 16, 40, 0.96) 0%,
    rgba(0, 16, 40, 0.88) 40%,
    rgba(0, 29, 85, 0.6) 76%,
    rgba(0, 29, 85, 0.36) 100%
  );
}

.sx-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.sx-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #6fe0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sx-hero__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.3px;
}

.sx-hero__desc {
  margin: 0 0 35px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.4;
  max-width: 600px;
  text-align: justify;
}

/* ---- Feature Cards Grid ---- */
.sx-flow {
  position: relative;
  z-index: 1;
}

.sx-flow__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
}

.sx-flow__card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(111, 224, 229, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(5px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.sx-flow__card:hover {
  border-color: #6fe0e5;
  transform: translateY(-3px);
}

.sx-flow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(111, 224, 229, 0.2), rgba(0, 29, 85, 0.4));
  border: 1px solid rgba(111, 224, 229, 0.4);
  color: #6fe0e5;
  font-size: 16px;
}

.sx-flow__title {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.sx-flow__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

/* ============================================
     PILLARS (4 feature cards under hero)
     ============================================ */
.sx-pillars {
  background: var(--sx-tint);
  padding: 60px 0;
}

.sx-pillars__row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sx-pillar {
  flex: 1 1 230px;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid var(--sx-border);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 29, 85, 0.06);
}

.sx-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: rgba(2, 160, 167, 0.1);
  color: var(--sx-teal);
  font-size: 19px;
}

.sx-pillar__title {
  margin: 0 0 8px;
  color: var(--sx-navy);
  font-size: 15.5px;
  font-weight: 700;
}
.sx-pillar__desc {
  margin: 0;
  color: var(--sx-muted);
  font-size: 13px;
  line-height: 1.7;
}

 /* ============================================
   SYNEXIIN FOCUS AREAS — component styles
   Prefix: synx-focus
   Colors: #02a0a7 (teal), #001d55 (navy)
   ============================================ */

.synx-focus {
  background: #ffffff;
  padding: 90px 0;
  overflow-x:hidden;
}

.synx-focus__row {
  row-gap: 30px;
}

/* ---------- card ---------- */
.synx-focus-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 16px;
  padding: 30px 12px 0;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 29, 85, 0.05);
}

.synx-focus-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
}

.synx-focus-card__icon--teal { background: #02a0a7; }
.synx-focus-card__icon--navy { background: #001d55; }

.synx-focus-card__title {
  margin: 0 0 12px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.synx-focus-card__desc {
  margin: 0 0 20px;
  color: #6b7590;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  line-height: 1.7;
}

.synx-focus-card__label {
  margin: 0 0 10px;
  color: #02a0a7;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
}

.synx-focus-card__list {
  margin: 0 0 24px;
  padding-left: 18px;
  color: #001d55;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.8;
}

.synx-focus-card__list li {
  margin-bottom: 4px;
}

.synx-focus-card__list li::marker {
  color: #02a0a7;
}

/* ---------- bottom image, fading into the card ---------- */
.synx-focus-card__media {
  position: relative;
  margin-top: auto;
  height: 190px;
  margin-left: -26px;
  margin-right: -26px;
}

.synx-focus-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpw-media-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.55) 22%, rgba(255, 255, 255, 0) 55%);
    pointer-events: none;
}

/* AI card has a dark photo, so fade to the card's own dark strip instead of white */
.synx-focus-card__media--dark::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 55%, #ffffff 100%);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
  .synx-focus { padding: 60px 0; }
  .synx-focus-card__media { height: 220px; }
}

@media (max-width: 575.98px) {
  .synx-focus-card { padding: 26px 22px 0; }
  .synx-focus-card__media { margin-left: -22px; margin-right: -22px; height: 200px; }
}



/* ============================================
     CTA
     ============================================ */
.sx-cta {
  position: relative;
  overflow-x:hidden;
  padding: 80px 0;
  background: linear-gradient(
    120deg,
    var(--sx-navy) 0%,
    var(--sx-teal-deep) 130%
  );
  text-align: center;
}

.sx-cta__eyebrow {
  display: block;
  margin: 0 0 12px;
  color: #6fe0e5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sx-cta__title {
  margin: 0 auto 12px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  max-width: 620px;
}
.sx-cta__desc {
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  /*max-width: 460px;*/
}

.sx-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #ffffff;
  color: var(--sx-navy);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.sx-cta__btn:hover { 
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(63, 228, 240, 0.38);
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 991.98px) {
  .sx-hero {
    padding: 100px 0 56px;
  }
  .sx-hero__title {
    font-size: 28px;
  }
  .sx-flow__arrow {
    margin: 0 14px;
  }
  .sx-section {
    padding: 64px 0;
  }
  .sx-bespoke__card {
    margin: 20px auto 0;
    max-width: 100%;
  }
  .sx-bespoke__img img {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .sx-hero__title {
    font-size: 24px;
  }
  .sx-flow__row {
    gap: 14px 0;
  }
  .sx-flow__arrow {
    display: none;
  }
  .sx-flow__node {
    flex-basis: 100%;
  }
  .sx-path__title {
    padding-right: 0;
  }
  .sx-path__index {
    display: none;
  }
  .sx-testi {
    padding: 46px 26px 34px;
  }
}

.synx-ct {
  padding: 100px 0 110px;
  overflow-x:hidden;
}

/* ---------- head ---------- */
.synx-ct__head {
  max-width: 560px;
  margin: 0 auto 60px;
  text-align: center;
}

.synx-ct__title {
  margin: 0 0 16px;
  color: #001d55;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
}

.synx-ct__underline {
  display: block;
  width: 46px;
  height: 3px;
  margin: 0 auto 22px;
  background: #d9a441;
}

.synx-ct__desc {
  margin: 0;
  color: #6b7590;
  font-size: 15.5px;
  line-height: 1.8;
}

/* ---------- layout ---------- */
.synx-ct__row {
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ---------- form card ---------- */
.synx-ct-form {
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.1);
  border-radius: 14px;
  padding: 34px 32px;
  box-shadow: 0 16px 40px rgba(0, 29, 85, 0.06);
}

.synx-ct-field {
  margin-bottom: 20px;
}

.synx-ct-field:last-of-type {
  margin-bottom: 0;
}

.synx-ct-label {
  display: block;
  margin: 0 0 8px;
  color: #001d55;
  font-size: 13.5px;
  font-weight: 700;
}

.synx-ct-input,
.synx-ct-textarea {
  width: 100%;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 29, 85, 0.16);
  border-radius: 8px;
  color: #001d55;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.synx-ct-input::placeholder,
.synx-ct-textarea::placeholder {
  color: #9aa3b5;
}

.synx-ct-input:focus,
.synx-ct-textarea:focus {
  outline: none;
  border-color: #02a0a7;
  box-shadow: 0 0 0 3px rgba(2, 160, 167, 0.12);
}

.synx-ct-textarea {
  resize: vertical;
  min-height: 110px;
}

.synx-ct-submit {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 14px 24px;
  background: #001d55;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.synx-ct-submit:hover {
  background: #02a0a7;
  transform: translateY(-1px);
}

.synx-ct-note {
  margin: 14px 0 0;
  text-align: center;
  color: #9aa3b5;
  font-size: 12.5px;
}

/* ---------- info card ---------- */
.synx-ct-info {
  background: #faf6ec;
  border-radius: 14px;
  padding: 30px 28px;
}

.synx-ct-info__brand {
  margin: 0 0 6px;
  color: #001d55;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.synx-ct-info__underline {
  display: block;
  /*width: 34px;*/
  height: 2px;
  margin: 0 0 24px;
  background: #d9a441;
}

.synx-ct-info__label {
  margin: 0 0 6px;
  color: #001d55;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.synx-ct-info__value {
  margin: 0 0 20px;
  color: #4a5568;
  font-size: 14.5px;
}

.synx-ct-info__value a {
  color: #02a0a7;
  text-decoration: none;
  font-weight: 600;
}

.synx-ct-info__value a:hover {
  text-decoration: underline;
}

.synx-ct-info__divider {
  height: 1px;
  margin: 0 0 20px;
  background: rgba(0, 29, 85, 0.1);
}

.synx-ct-info__row:last-child .synx-ct-info__value {
  margin-bottom: 0;
}

/* ============================================
     RESPONSIVE
     ============================================ */
@media (max-width: 767.98px) {
  .synx-ct {
    padding: 70px 0 80px;
  }
  .synx-ct__title {
    font-size: 32px;
  }
  .synx-ct-info {
    margin-top: 24px;
  }
}


    /* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
    .wa-float {
      position: fixed;
      left: 24px;
      bottom: 28px;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
    }

    
    /* Main WA button */
    .wa-btn {
      position: relative;
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
      text-decoration: none;
    }

    /* Outer animated ring */
    .wa-ring {
      position: absolute;
      inset: -5px;
      border-radius: 50%;
      border: 2px solid rgba(37,211,102,.35);
      animation: wa-spin-ring 6s linear infinite;
      pointer-events: none;
    }
    .wa-ring::before {
      content: '';
      position: absolute;
      top: -1px; left: 50%;
      transform: translateX(-50%);
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #25d366;
      box-shadow: 0 0 6px #25d366;
    }
    @keyframes wa-spin-ring {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Second pulse ring */
    .wa-pulse-ring {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(37,211,102,.15);
      animation: wa-pulse 2.4s ease-out infinite;
      pointer-events: none;
    }
    @keyframes wa-pulse {
      0%   { transform: scale(1);   opacity: .8; }
      100% { transform: scale(1.9); opacity: 0;  }
    }

    /* Circle core */
    .wa-circle {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37,211,102,.5),
                  0 2px 8px rgba(0,0,0,.15);
      transition: transform .28s cubic-bezier(.22,1,.36,1),
                  box-shadow .28s;
      position: relative;
      z-index: 2;
    }
    .wa-btn:hover .wa-circle {
      transform: scale(1.1) rotate(-8deg);
      box-shadow: 0 10px 36px rgba(37,211,102,.65),
                  0 4px 12px rgba(0,0,0,.2);
    }
    .wa-circle i {
      font-size: 1.55rem;
      color: #fff;
      filter: drop-shadow(0 1px 3px rgba(0,0,0,.2));
    }

    /* "Chat" label pill that slides out on hover */
    .wa-label-pill {
      background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .06em;
      padding: 0 0 0 0;
      border-radius: 0 50px 50px 0;
      max-width: 0;
      overflow: hidden;
      white-space: nowrap;
      opacity: 0;
      margin-left: -10px;
      height: 40px;
      display: flex;
      align-items: center;
      transition: max-width .35s cubic-bezier(.22,1,.36,1),
                  opacity .28s,
                  padding .28s,
                  margin .28s;
      box-shadow: 0 4px 18px rgba(37,211,102,.35);
    }
    .wa-btn:hover .wa-label-pill {
      max-width: 130px;
      opacity: 1;
      padding: 0 16px 0 14px;
      margin-left: -8px;
    }

    /* Notification badge */
    .wa-badge {
      position: absolute;
      top: -3px; right: -3px;
      width: 18px; height: 18px;
      border-radius: 50%;
      background: var(--crimson);
      color: #fff;
      font-size: .55rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid #fff;
      z-index: 3;
      animation: badge-bounce .6s .5s ease both;
    }
    @keyframes badge-bounce {
      0%,100% { transform: scale(1);    }
      50%      { transform: scale(1.25); }
    }
    
    
    .premium-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
    background: #ffffff;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

/* Smooth fade on both edges */
.premium-marquee::before,
.premium-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

 
.premium-marquee__track {
    display: flex;
    width: max-content;
    animation: premiumMarquee 150s linear infinite;
    will-change: transform;
}

.premium-marquee__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.premium-marquee__group span {
    display: inline-block;
    color: #000;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    /*text-transform: uppercase;*/
    white-space: nowrap;
}

.premium-marquee__group i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    color: #d8a84e;
    font-size: 13px;
    font-style: normal;
}

/* Seamless movement */
@keyframes premiumMarquee {
    from {
        transform: translateX(0);
    }

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

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

/* Tablet */
@media (max-width: 991px) {

    .premium-marquee {
        padding: 18px 0;
    }

    .premium-marquee__group span {
        font-size: 12px;
        letter-spacing: 1.2px;
    }

    .premium-marquee__group i {
        margin: 0 22px;
    }
}

/* Mobile */
@media (max-width: 575px) {

    .premium-marquee::before,
    .premium-marquee::after {
        width: 60px;
    }

    .premium-marquee {
        padding: 16px 0;
    }

    .premium-marquee__group span {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .premium-marquee__group i {
        margin: 0 16px;
        font-size: 10px;
    }
}

.sxn-academy{
  font-family: 'Poppins', sans-serif;
  color: var(--sxn-navy);
  overflow-x:hidden;
}

/* ============ shared ============ */
.sxn-academy *{ box-sizing: border-box; }
.sxn-academy__eyebrow-rule{
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sxn-teal), var(--sxn-navy));
}

/* ============ intro block ============ */
.sxn-academy__intro{
  background: #ffffff;
  padding: 90px 0 70px;
  
}
.sxn-academy__title{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sxn-navy);
  margin: 18px 0 0;
}
.sxn-academy__lede{
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--sxn-ink-muted);
  margin: 0 0 24px;
}
.sxn-academy__note{
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.sxn-academy__note-icon{
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sxn-teal-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sxn-teal);
  font-size: 1rem;
}
.sxn-academy__note-text{
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--sxn-ink-muted);
  margin: 0;
}

/* ============ skills block ============ */
.sxn-academy__skills{
  background: #f4f6fa;
  padding: 70px 0 76px;
  text-align: center;
}
.sxn-academy__skills-heading{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sxn-navy);
  margin: 0 0 14px;
}
.sxn-academy__skills-rule{
  margin: 0 auto 48px;
}
.sxn-academy__skills-row{
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.sxn-academy__skills-row::-webkit-scrollbar{ display: none; }

.sxn-academy__skill{
  flex: 1 1 0;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 6px;
}
.sxn-academy__skill-icon{
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,29,85,0.08);
  box-shadow: 0 10px 24px rgba(0,29,85,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--sxn-teal);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.sxn-academy__skill:hover .sxn-academy__skill-icon{
  transform: translateY(-6px);
  background: var(--sxn-navy);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(0,29,85,0.22);
}
.sxn-academy__skill-label{
  font-size: 12px;
  font-weight: 600;
  color: var(--sxn-navy);
  line-height: 1.4;
  max-width: 150px;
}

@media (max-width: 991.98px){
  .sxn-academy__skill-icon{ width: 60px; height: 60px; font-size: 1.25rem; }
  .sxn-academy__skill-label{ font-size: 0.82rem; max-width: 120px; }
}
@media (max-width: 575.98px){
  .sxn-academy__skills-row{ justify-content: flex-start; }
  .sxn-academy__skill{ min-width: 100px; }
}

/* ============ impact block ============ */
.sxn-academy__impact{
  background:
    radial-gradient(1100px 420px at 12% -10%, rgba(2,160,167,0.22), transparent 60%),
    radial-gradient(900px 400px at 100% 110%, rgba(2,160,167,0.14), transparent 55%),
    var(--sxn-navy);
  padding: 76px 0 56px;
  color: #ffffff;
  text-align: center;
}
.sxn-academy__impact-heading{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin: 0 0 48px;
}
.sxn-academy__stat-icon{
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--sxn-teal);
}
.sxn-academy__stat-value{
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 12px;
}
.sxn-academy__stat-desc{
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 210px;
  margin: 0 auto 14px;
}
.sxn-academy__stat-source{
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.sxn-academy__impact-divider{
  border: none;
  border-top: 1px solid rgba(255,255,255,0.14);
  margin: 46px 0 34px;
}
.sxn-academy__impact-quote{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1.02rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}
.sxn-academy__impact-quote i{
  color: var(--sxn-teal);
  font-size: 1rem;
}
.sxn-academy__impact-quote-source{
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 767.98px){
  .sxn-academy__intro{ padding: 60px 0 44px; text-align: left; }
  .sxn-academy__skills{ padding: 54px 0 56px; }
  .sxn-academy__impact{ padding: 56px 0 44px; }
  .sxn-academy__impact .col-6{ margin-bottom: 40px; }
}


/* ============ outcomes block ============ */
.sxn-academy__outcomes{
  background: #eef1f8;
  padding: 76px 0;
  text-align: center;
  overflow-x:hidden;
}
.sxn-academy__outcomes-heading{
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--sxn-navy);
  margin: 0 0 14px;
}
.sxn-academy__outcomes-rule{
  margin: 0 auto 46px;
}

.sxn-academy__outcomes-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 32px;
  height: 100%;
  box-shadow: 0 16px 40px rgba(0,29,85,0.06);
  display: flex;
  align-items: center;
}
.sxn-academy__outcomes-row{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.sxn-academy__outcomes-row::-webkit-scrollbar{ display: none; }
.sxn-academy__outcome{
  flex: 1 1 0;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 6px;
}
.sxn-academy__outcome-icon{
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,29,85,0.10);
  box-shadow: 0 8px 18px rgba(0,29,85,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--sxn-teal);
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.sxn-academy__outcome:hover .sxn-academy__outcome-icon{
  transform: translateY(-5px);
  background: var(--sxn-navy);
  color: #ffffff;
}
.sxn-academy__outcome-label{
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sxn-navy);
  line-height: 1.4;
  max-width: 130px;
}

.sxn-academy__quote-card{
  background: var(--sxn-navy);
  border-radius: 18px;
  padding: 34px 32px;
  height: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sxn-academy__quote-mark{
  font-size: 1.9rem;
  color: var(--sxn-teal);
  line-height: 1;
  margin-bottom: 10px;
}
.sxn-academy__quote-text{
  font-size: 1rem;
  line-height: 1.65;
  color: #ffffff;
  margin: 0 0 18px;
}
.sxn-academy__quote-source{
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* ============ cta bar ============ */
.sxn-academy__cta{
  background: #eef1f8;
  padding: 0 0 90px;
}
.sxn-academy__cta-bar{
  background: var(--sxn-navy);
  border-radius: 18px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.sxn-academy__cta-left{
  display: flex;
  align-items: center;
  gap: 20px;
}
.sxn-academy__cta-icon{
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2,160,167,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sxn-teal);
  font-size: 1.15rem;
}
.sxn-academy__cta-title{
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}
.sxn-academy__cta-sub{
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.sxn-academy__cta-btn{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sxn-teal);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 999px;
  transition: background .2s ease, transform .2s ease;
}
.sxn-academy__cta-btn:hover{
  background: #028a90;
  color: #ffffff;
  transform: translateX(2px);
}
.sxn-academy__cta-btn i{ font-size: 0.85rem; }

@media (max-width: 991.98px){
  .sxn-academy__quote-card{ margin-top: 24px; }
}
@media (max-width: 767.98px){
  .sxn-academy__outcomes{ padding: 56px 0; }
  .sxn-academy__outcomes-card{ padding: 30px 20px; }
  .sxn-academy__cta{ padding-bottom: 60px; }
  .sxn-academy__cta-bar{ justify-content: center; text-align: center; }
  .sxn-academy__cta-left{ flex-direction: column; text-align: center; }
  .sxn-academy__cta-btn{ width: 100%; justify-content: center; }
}

 /* ---- Reveal base state ---- */
  .ros-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
  }

  /* Optional direction variants */
  .ros-reveal--left  { transform: translateX(-60px); }
  .ros-reveal--right { transform: translateX(60px); }
  .ros-reveal--zoom   { transform: scale(0.9); }

  /* ---- Revealed / visible state ---- */
  .ros-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  /* Stagger children of a group */
  .ros-group.is-visible .ros-reveal {
    transition-delay: var(--ros-delay, 0s);
  }


.synx-header__link.active {
    color: #02a0a7;
}

.synx-header__link.active::after {
    width: 100%;
}



.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0;
  /*background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=80');*/
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, #02a0a7, #001d55);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--phero-blue), #60a5fa, var(--phero-blue));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: var(--phero-blue);
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .sitemap-title {
            color: #2b2a28;
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        
        .sitemap-card {
            background-color: white;
            border: 2px solid #02929e;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: block;
            color: #2b2a28;
        }
        
        .sitemap-card:hover {
            background-color: #02929e;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
            text-decoration: none;
        }
        
        .card-label {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .card-description {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .sitemap-card:hover .card-description {
            opacity: 1;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-header {
            color: #02929e;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #02929e;
        }
        
        .main-links {
            margin-bottom: 50px;
        }
        
        @media (max-width: 768px) {
            .sitemap-title {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }
            
            .category-header {
                font-size: 1.2rem;
                margin-bottom: 15px;
            }
            
            .sitemap-card {
                padding: 15px;
            }
            
            .card-label {
                font-size: 1rem;
            }
            .synx-footer__links { 
                text-align: center;
                justify-content: center;
            }
            .synx-footer__links li {
                padding: 10px 10px;
            }
            .sp-impact-grid{
                display: grid;
                grid-template-columns: repeat(1, 1fr);
                gap: 18px;
            }
        }