/******************************************
 * 1. RESET / NORMALIZE
 ******************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background: linear-gradient(to bottom left, #f8fbfd, #b4b7c3);
  background-attachment: fixed;
  background-size: cover;
  color: var(--color-text);
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}


/******************************************
 * 2. ROOT VARIABLES & GLOBAL TOKENS
 ******************************************/
:root {
  --color-background: #f8fbfd;
  --color-surface: #f8fbfd;
  --color-text: #020e38;
  --color-text-muted: #66697c;
  --color-hero-text: #020e38;
  --color-navbar-text: #020e38;
  --color-navbar-border: rgba(2, 14, 56, 0.3);
  --color-mobile-menu-bg: rgba(2, 14, 56, 0.95);
  --color-grid-line: rgba(23, 41, 84, 0.18);
  --color-cta-bg: #172954;
  --color-cta-text: #f8fbfd;
  --feature-progress-duration: 6s;
  --header-height: 90px;
}

/******************************************
 * 3. BASE TYPOGRAPHY + BODY BACKGROUND
 ******************************************/
body {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background: linear-gradient(to bottom left, #f8fbfd, #b4b7c3);
  color: var(--color-text);
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  transition: background-color .3s ease, color .3s ease;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/******************************************
 * 4. GLOBAL LAYOUT
 ******************************************/
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar-area .container {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

main.scroll-stack {
  height: 100%;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  padding-top: var(--header-height);
  scroll-padding-top: var(--header-height);
}

.page-screen {
  min-height: calc(100vh - var(--header-height));
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: transparent;
  padding: 40px 0;
}

.page-screen--hero {
  padding-top: 20px;
}

.page-screen--partners {
  gap: 32px;
}

.page-screen--partners {
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: 10px;
}

.page-screen--contact {
  gap: 32px;
  justify-content: flex-start;
  padding-top: 10px;
  padding-bottom: 0;
  min-height: calc(100vh - var(--header-height)); /* no +60px */
  overflow: hidden; /* clips the shadow so nothing “spills” up the screen */
}


.page-screen--partners > *,
.page-screen--contact > * {
  flex: 0 0 auto;
}

.page-screen--contact .find-us {
  flex: 1 0 auto;
}

.page-screen--contact .site-footer {
  margin-top: auto;
  width: 100%;
}

.page-screen--partners .logo-marquee,
.page-screen--partners .approach,
.page-screen--contact .find-us {
  padding: 20px 0;
  margin-top: 0;
}

/******************************************
 * 5. EYEBROWS, TITLES, SUBTITLES
 ******************************************/
.page-eyebrow,
.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 12px;
  color: var(--color-navbar-text);
  margin-bottom: 18px;
}

/* Shared page hero shell for inner pages */
.page-hero {
  padding: 60px 0 40px;
  text-align: left;
  color: var(--color-hero-text);
}

.page-hero h1 {
  margin: 10px 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.page-hero__subtitle,
.page-hero p {
  max-width: 680px;
  margin: 0;
  margin-top: 8px;
  color: var(--color-text-muted);
  font-size: 16px;
}

/* Align section headers like Approach / Testimonials / Find us */
.approach__header,
.logo-marquee__header,
.find-us__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.approach__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.approach h2,
.logo-marquee__title,
.find-us__header h2 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.approach__header .section-eyebrow,
.logo-marquee__header .section-eyebrow,
.find-us__header .section-eyebrow {
  margin: 0;
}

.logo-marquee__subtitle,
.approach__subtitle,
.find-us__subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/******************************************
 * 6. HEADER + NAVBAR (SITE-WIDE)
 ******************************************/
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--color-hero-text);
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header-area.header--scrolled {
  background: transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-area {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  padding-top: 5px;
  padding-bottom: 5px;
}

.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
}

a.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  max-height: 60px;
  height: auto;
  width: auto;
  padding-top: 10px;
}

/* Nav links */
.site-navbar ul {
  margin: 0;
  margin-left: auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.site-navbar ul li a {
  color: var(--color-navbar-text);
  padding: 20px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: color .3s ease, background-color .3s ease;
}

.site-navbar ul li a:hover {
  background: transparent;
  color: #8db9ed;
}

/******************************************
 * 7. POSITION-AWARE CTA BUTTON
 *    (reuse class="feature-slide__cta")
 ******************************************/
/* Position-aware CTA button (global) */
.feature-slide__cta {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  color: #172954;
  padding: 12px 32px;
  border-radius: 0;
  border: 1px solid rgba(23, 41, 84, 0.65);
  position: relative;
  overflow: hidden; /* keeps the circle inside the box */
  z-index: 1;
  transition: color .3s ease, transform .2s ease;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.feature-slide__cta span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(23, 41, 84, 0.95), rgba(2, 14, 56, 0.95));
  transform: translate(-50%, -50%);
  transition: width .4s ease-in-out, height .4s ease-in-out;
  z-index: -1;
  pointer-events: none;
}

.feature-slide__cta:hover {
  color: #f8fbfd;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(23, 41, 84, 0.35);
}

.feature-slide__cta:hover span {
  width: 170%;
  height: 170%;
}

/* Remove underline and focus ring in all states */
.feature-slide__cta,
.feature-slide__cta:hover,
.feature-slide__cta:focus,
.feature-slide__cta:active {
  text-decoration: none !important;
  outline: none;
}

.feature-slide__cta:active {
  color: #f8fbfd;
}


/******************************************
 * GLOBAL BOX STYLE (white border + gradient inlay)
 * Apply class="avh-box" to ANY card on any page
 ******************************************/

.avh-box {
  border: 6px solid rgba(255, 255, 255, 0.8);       /* white outer frame */
  border-radius: 18px;
  padding: 6px;                                      /* spacing before the inlay */
  background: transparent;
  box-shadow: 
    0 15px 35px rgba(2, 14, 56, 0.18),
    0 5px 15px rgba(2, 14, 56, 0.12);                /* same as Find Us + Approach */
}

/* inner gradient inlay */
.avh-box__inner {
  border-radius: 12px;
  background: radial-gradient(
    circle at 0% 0%,
    #ffffff 0,
    #e1e5f0 28%,
    #b4b7c3 70%,
    #172954 110%
  );
  padding: 22px 20px;                                /* identical to find-card */
}

/******************************************
 * 8. GLOBAL BOX / CARD STYLE
 *    (Find us, step cards, gallery cards etc.)
 ******************************************/
.approach__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.approach__card {
  padding: 28px;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.approach__card h3 {
  font-size: 16px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-navbar-text);
}

/* Flip / step cards reuse gradient inlay pattern */
.steps-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  flex-wrap: wrap;
}

.step-card {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3 / 4;
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 6px;
  background: transparent;
  box-shadow: 0 15px 35px rgba(2, 14, 56, 0.2), 0 5px 15px rgba(2, 14, 56, 0.12);
  overflow: hidden;
}

.step-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, #ffffff 0, #e1e5f0 30%, #b4b7c3 70%, #172954 110%);
  display: flex;
  flex-direction: column;
  padding: 22px 18px;
}

/******************************************
 * 9. FIND US / CONTACT BOXES (WHITE BORDER + GRADIENT INLAY)
 ******************************************/
.find-us {
  padding: 40px 0;
  background: transparent;
}

.find-us__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.4fr);
  gap: 28px;
  margin-top: 32px;
}

/* Text card */
.find-card {
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 6px;
  background: transparent;
  box-shadow: 0 15px 35px rgba(2, 14, 56, 0.18), 0 5px 15px rgba(2, 14, 56, 0.12);
}

.find-card__inner {
  padding: 22px 20px 20px;
  border-radius: 12px;
  background: radial-gradient(circle at 0% 0%, #ffffff 0, #e1e5f0 28%, #b4b7c3 70%, #172954 110%);
}

.find-card h3 {
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--color-navbar-text);
}

.find-card__address {
  margin-bottom: 12px;
  color: var(--color-text);
}

.find-card__contact span {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
}

.find-card__contact a {
  color: var(--color-navbar-text);
}

/* Map frame uses same white border + gradient inlay */
.find-us__map {
  border: 6px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 6px;
  background: transparent;
  box-shadow: 0 15px 35px rgba(2, 14, 56, 0.18), 0 5px 15px rgba(2, 14, 56, 0.12);
}

.find-us__map-inner {
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #ffffff 0, #e1e5f0 28%, #b4b7c3 70%, #172954 110%);
}

.find-us__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: none;
}

/******************************************
 * 10. LOGO MARQUEE (GLOBAL SECTION)
 ******************************************/
.logo-marquee {
  padding: 20px 0;
  overflow: hidden;
  background: transparent;
}

.logo-marquee__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-bottom: 16px;
}

.logo-marquee__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--color-hero-text);
  margin: 0;
  text-align: center;
  line-height: 1.25;
}

.logo-marquee__subtitle {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
}

.logo-marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 24s linear infinite;
  width: max-content;
}

.logo-marquee__group {
  display: flex;
  gap: 60px;
}

.logo-marquee__track img {
  opacity: 0.8;
  height: 120px;
  width: auto;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/******************************************
 * 11. FOOTER (GLASS EFFECT)
 ******************************************/
.footer-refresh {
  padding: 16px 32px 12px;
  position: relative;
  background: rgba(15, 23, 42, 0.45);
  color: #f9fafb;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.35);

  /* remove the dark “halo” band, keep glass effect */
  box-shadow: none;
}


footer.footer-refresh {
  z-index: 10;
  position: relative;
}

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

.footer-refresh a:hover {
  color: #8DB9ED;
}

/* Top bar: logo + page links */
.footer-top-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-logo-img {
  max-height: 85px;
  width: auto;
}

.footer-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  margin-left: auto;
}

.footer-page-links a {
  opacity: 0.9;
}

.footer-page-links a:hover {
  opacity: 1;
}

/* Social section */
.footer-social-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-social-line {
  flex: 1 1 auto;
  height: 1px;
  background: #ccc;
  opacity: 0.8;
}

.footer-social-overlap {
  padding: 0 20px;
  z-index: 2;
}

.footer-social-connect {
  display: flex;
  align-items: center;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #f9fafb;
}

.footer-social-small {
  font-size: 0.6em;
  padding: 0 16px;
}

.footer-social-overlap > a {
  font-size: 25px;
  color: #172954;
}

.footer-social-overlap > a:not(:first-child) {
  margin-left: 0.38em;
}

/* Custom X icon */
.icon-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ---------- BOTTOM STRIP: copyrights + policy links ---------- */

.footer-bottom-section {
  width: 100%;
  padding: 6px 10px 2px;
  border-top: 1px solid #ccc;
  margin-top: 2px;
  gap: 10px;
}

/* flex behaviour comes from the "flex-rw" helper class on the element */
.flex-rw {
  display: flex;
  flex-flow: row wrap;
}

.footer-bottom-wrapper {
  font-size: 13px;
  color: #172954;
  flex: 1 1 33%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-refresh .footer-page-links,
.footer-refresh .footer-bottom-wrapper {
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.footer-bottom-wrapper span[data-footer-year] {
  margin: 0 0.25em;
}

.footer-bottom-wrapper--left {
  text-align: left;
  justify-content: flex-start;
}

.footer-bottom-wrapper--center {
  justify-content: center;
}

.footer-bottom-wrapper--right {
  text-align: right;
  justify-content: flex-end;
}

/* left side (on darker gradient) must be white */
.footer-bottom-wrapper--left,
.footer-bottom-wrapper--left * {
  color: #f8fbfd !important;
}

/* right side (on lighter gradient) stays dark navy */
.footer-bottom-wrapper--right,
.footer-bottom-wrapper--right * {
  color: #172954 !important;
}

.footer-bottom-highlight {
  color: #f8fbfd;
}

.footer-bottom-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: inherit;
}

.footer-bottom-links a::after {
  content: "|";
  margin-left: 12px;
  color: currentColor;
}

.footer-bottom-links a:last-child::after {
  content: "";
  margin: 0;
}

.footer-address {
  display: inline;
  font-style: normal;
}

/******************************************
 * 12. NAV TOGGLER (MOBILE)
 ******************************************/
.nav-toggler {
  border: 3px solid var(--color-navbar-text);
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: var(--color-navbar-text);
  display: block;
  transition: .3s;
}

.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}

/******************************************
 * 13. GLOBAL MEDIA QUERIES
 ******************************************/
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }

  .nav-toggler {
    display: block;
    margin-right: 15px;
  }

  .site-navbar {
    min-height: 60px;
  }

  .site-navbar ul {
    position: absolute;
    width: 100%;
    left: 0;
    top: 80px;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-mobile-menu-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
    border-top: none;
  }

  .site-navbar ul li {
    width: 100%;
    text-align: center;
  }

  .site-navbar ul li a {
    padding: 20px;
    color: #fff;
  }

  .site-navbar ul li a:hover {
    background-color: rgba(248, 251, 253, .1);
  }

  .site-navbar ul.open {
    max-height: 100vh;
    overflow: visible;
  }

  .feature-swiper-shell {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .feature-slide {
    flex-direction: column;
  }

  .feature-slide__content {
    padding: 24px;
    order: 2;
    text-align: center;
    align-items: center;
  }

  .feature-slide__image {
    order: 1;
  }

  .feature-swiper__controls {
    flex-direction: row;
    justify-content: center;
  }

  .feature-progress-column {
    flex-direction: row;
  }

  .steps-cards {
    flex-direction: column;
    align-items: center;
  }

  .find-us__layout {
    flex-direction: column;
  }

  .find-us__map {
    margin-top: 20px;
  }

  .logo-marquee__track {
    animation-duration: 15s;
  }
}

@media screen and (max-width: 767px) {
  .page-screen--partners,
  .page-screen--contact {
    padding: 20px 0;
  }

  .steps-cards {
    margin: 20px auto;
  }

  .find-us__layout {
    display: flex;
    flex-direction: column;
  }

  .find-card.find-us__single {
    margin-bottom: 20px;
  }
}

/* Footer responsive */
@media only screen and (max-width: 768px) {
  .footer-list-header {
    font-size: 2em;
  }

  .footer-list-anchor {
    font-size: 1.1em;
  }

  .footer-social-connect {
    font-size: 2.5em;
  }

  .footer-social-overlap > a {
    font-size: 2.24em;
  }

  .footer-bottom-wrapper {
    font-size: 1.3em;
  }
}

@media only screen and (max-width: 568px) {
  .footer-list-top {
    width: 100%;
  }

  .footer-list-header {
    font-size: 3em;
  }

  .footer-list-anchor {
    font-size: 1.5em;
  }

  .footer-social-section {
    justify-content: center;
    flex-direction: column;
  }

  .footer-social-connect {
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .footer-social-overlap {
    display: flex;
    justify-content: center;
  }

  .footer-social-line {
    width: 100%;
    max-width: none;
  }

  .footer-social-icons-wrapper {
    width: 100%;
    padding: 0;
  }

  .footer-social-overlap > a:not(:first-child) {
    margin-left: 20px;
  }

  .footer-bottom-section {
    padding: 0 5px 10px 5px;
  }

  .footer-bottom-wrapper {
    text-align: center;
    width: 100%;
    flex: 1 1 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-social-overlap > a {
    margin: auto;
  }

  .footer-social-overlap > a:not(:first-child) {
    margin-left: 0;
  }

  .footer-bottom-rights {
    display: block;
  }
}

@media only screen and (max-width: 320px) {
  .footer-list-header {
    font-size: 2.2em;
  }

  .footer-list-anchor {
    font-size: 1.2em;
  }

  .footer-social-connect {
    font-size: 2.4em;
  }

  .footer-social-overlap > a {
    font-size: 2.24em;
  }

  .footer-bottom-wrapper {
    font-size: 1.3em;
  }
}

body {
  background: linear-gradient(to bottom left, #f8fbfd, #b4b7c3) !important;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
/* Force all wrappers to inherit the gradient and remove any dark backgrounds */
.header-area,
.navbar-area,
.page-about,
.page-screen,
main,
main.scroll-stack {
  background: transparent !important;
}

/* Prevent any component from creating a pseudo-element overlay */
.header-area::before,
.page-about::before,
.page-screen::before,
main::before {
  background: none !important;
}
/* Remove all unwanted background boxes on the Services page */
.page-services main,
.page-services section,
.page-services .container,
.page-services .services-pricing,
.page-services .services-modals,
.page-services .services-faq {
  background: transparent !important;
}

/* Also remove inherited grey backgrounds */
.page-services .services-pricing__header,
.page-services .services-modals__header,
.page-services .services-faq__header {
  background: transparent !important;
}

/* Make sure the main wrapper does not create its own block */
.page-services #main-content {
  background: transparent !important;
}
