@import url(https://fonts.googleapis.com/css2?family=Saira:wght@100;200;300;400;500;600;700;800;900&display=swap);
/* === Basic Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Navbar === */
.navbar {
  position: fixed; /* Changed from relative to fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 85px;
  z-index: 110;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
}

/* === Underline === */
.navbar-underline {
  width: 100%;
  height: 2px;
  background-color: #08178a;

}

.logo-button {
  height: 100%;
  background-color: white;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #004094;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.logo-button:hover {
  background-color: #dee6ff;;
  box-shadow: inset 0 2px 4px #08178a;
}


/* === Navbar Container === */
.nav-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: padding 0.3s ease;
  border-bottom: solid 2px #08178a;
}

.nav-right-container {
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  transition: padding 0.3s ease;
}

/* === Shrink + White Scroll Style === */
.navbar.scrolled {
  background-color: white;
  height: 70px;
}


.navbar.scrolled .all-links a {
  color: #08178a;
}

.navbar.scrolled .icon-stroke {
  stroke: #08178a;
}

.navbar.scrolled .search-form input {
  color: #08178a;
  border-color: #08178a;
}

.navbar.scrolled .search-toggle:hover .search-icon-bg {
  fill: #cbd4ed;
}

/* === Logo === */
.nav-logo {
  height: 35px;
  width: auto;
  overflow: visible;
  transition: filter 0.5s ease, transform 0.3s ease !important;
}

.nav-logo:hover {
  transition: filter 0.4s ease, transform 0.3s ease !important;
}

/* === Nav Links === */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  padding: 0px 40px;
}

.all-links {
  display: flex;
  list-style: none;
  gap: 3rem;
  padding-top: 3px;
}

.all-links a {
  text-decoration: none;
  color: #000233; 
  font-weight: 400;
  font-size: 18px;
  font-family: 'Saira', arial, sans-serif;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

/* === Hover Effect === */
.all-links a:hover {
  color: #004094; /* keep your hover color */
}

.all-links a::after {
  content: '';
  position: absolute;
  left: 50%;                /* center under the text */
  bottom: -26px;             /* start below the link, at bottom of nav bar */
  width: 2px;                /* thickness of vertical line */
  height: 0;                 /* start hidden */
  background-color: #08178a; /* line color */
  transform: translateX(-50%); /* center horizontally */
  transition: height 0.3s ease-in-out; /* animate line growing */
}

.all-links a:hover::after {
  height: 20px; /* grow from bottom to top of link */
}

.nav-divider {
  border: solid 1px;
  height: 100%;
  color: #163e9b;
}

/* === hamburger === */

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none; /* hidden by default, shows at mobile breakpoint */
}

.hamburger-icon rect {
  fill: white;
}

.mobile-menu {
  display: none;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.translate-wrapper {
  padding: 0px 40px 0px 40px;
}

.translate-button {
  background-color: transparent;
  padding: 5px;
  border: solid 2px #004094;
  cursor: pointer;
  height: 42px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.translate-button:hover {
  background-color: #dee6ff;
}

.translate-button-text {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  color: #004094;
  font-size: 20px;
  line-height: 26px;
}


/* Hide nav links & show hamburger on mobile */

/* === Shared Nav Icon Toggle Button === */
.nav-icon-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #08178a;
}

.nav-icon-svg {
  width: 100%;
  height: auto;
}

.icon-stroke {
  fill: none;
  stroke: #08178a;
  stroke-width: 30px;
  stroke-miterlimit: 2;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.icon-bg {
  fill: transparent;
  transition: fill 0.3s ease;
}

/* Hover state (same as your search hover) */
.nav-icon-toggle:hover .icon-bg {
  fill: #dee6ff;
}

/* Show only magnifying glass on desktop */
.icon-magnify,
.icon-hamburger {
  display: none;
}

@media (min-width: 1081px) {
  .icon-magnify {
    display: block;
  }
}

@media (max-width: 1080px) {
  .icon-hamburger {
    display: block;
  }
}



@media (max-width: 1080px) {
  .nav-links,
  .search-form {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: fixed;
    top: 90px; /* cover the screen from very top */
    left: 0;
    right: 0;
    bottom: 0; /* stretch all the way down */
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 100;
    overflow-y: auto;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-spacer {
    height: 15%;
    background-color: #f0f0f0;
  }

  .mobile-menu-top {
    display: flex;
    flex-direction: row;
    flex: 1;
    overflow: hidden;
    border-bottom: solid 2px #004094;
    border-top: solid 2px #004094;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 200;
  }

  .mobile-menu .menu-number {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #004094;
    font-weight: 400;
    letter-spacing: 1px;
    vertical-align: 9px;
    padding-right: 10px;
  }

  .mobile-nav-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2;
  }

  .mobile-nav-links a {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 55px;
    border-bottom: solid 2px #08178a;
    color: #000233;
    font-size: clamp(20px, 60px, 60px);
    text-decoration: none;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 200;
  }

  .mobile-nav-links a:last-child {
    border-bottom: none;
  }

  .vertical-marquee-container {
    width: 30%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: solid 2px #08178a;
  }

  .vertical-marquee-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    animation: scroll-vertical 500s linear infinite;
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 200px;
    color: transparent;
    -webkit-text-stroke: 2px #004094;
    white-space: nowrap;
    transform: translateY(100%);
    top: 100%;
  }

  @keyframes scroll-vertical {
    0% {
      transform: translateY(0%);
    }
    100% {
      transform: translateY(-50%);
    }
  }

}


.mobile-menu-image {
  width: 100%;
  height: auto;
  max-height: 20vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-top: solid 2px #08178a;
}

/* The mask holds the stacked slideshow images */
.mobile-menu-image-mask {
  width: 100%;
  height: 300px;
  position: relative;
}

.mobile-menu-image-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0); /* start hidden (masked from left) */
}

/* Stack order */
.mobile-menu-image-mask img:nth-child(1) {
  z-index: 1;
}
.mobile-menu-image-mask img:nth-child(2) {
  z-index: 2;
}
.mobile-menu-image-mask img:nth-child(3) {
  z-index: 3;
}


.mobile-menu-footer {
  background-color: white;
  height: 9%;
  width: 100%;
  border-top: solid 2px #08178a;
  display: flex;
  align-items: center;
  flex-direction: row;
  
}

.mobile-menu-footer a {
  color: #8eaaff;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 25px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  padding: 20px 0px 20px 50px;
}


/* === Search === */
.search-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0px 40px 0px 20px;
}

.search-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-icon {
  width: 100%;
  height: auto;
}

.icon-stroke {
  fill: none;
  stroke: #08178a;
  stroke-width: 30px;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.search-icon-bg {
  fill: transparent;
  transition: fill 0.3s ease;
}

.search-toggle:hover .search-icon-bg {
  fill: #7E98CB;
}

.icon-close {
  display: none;
}

.search-wrapper.active .icon-magnify {
  display: none;
}

.search-wrapper.active .icon-close {
  display: block;
}

.search-form {
  opacity: 0;
  width: 0;
  height: 42px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid #08178a;
  background: transparent;
}

.search-form.dark-border {
  border-color: #08178a;
}

.search-form input {
  background: transparent;
  border: none;
  color: white;
  padding: 8px 12px;
  width: 180px;
  font-size: 16px;
  outline: none;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
}

.search-wrapper.active .search-form {
  opacity: 1;
  width: auto;
  margin-left: 20px;
}

@media (max-width: 1080px) {
  .search-wrapper {
    padding: 0px 40px 0px 40px;
  }
}

@media (max-width: 768px) {

  .nav-container {
    height: 100%;
    flex-wrap: nowrap;
  }

  .logo-button {
    padding: 0px 50px 0px 50px;
    flex-shrink: 0;
  }

  .vertical-marquee-text {
    font-size: 130px;
  }

  .mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: fixed;
    top: 90px; /* cover the screen from very top */
    left: 0;
    right: 0;
    bottom: 0; /* stretch all the way down */
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 100;
    overflow: hidden;
  }

  .mobile-menu.active {
    display: flex;
  }
  .mobile-menu-footer a {
    font-size: 20px;
  }
}


@media (max-width: 760px) {
  .navbar {
    height: 70px;
  }
  .mobile-nav-links a {
    font-size: 25px;
    padding-left: 30px;
  }
  .vertical-marquee-text {
    font-size: 100px;
  }
  .logo-button {
    padding: 0px 30px;
  }
  .nav-logo {
    height: 28px;
  }
  .mobile-menu-footer .mobile-footer-link {
    font-size: 17px;
    padding: 12px 0px 12px 30px;
    color: #000233;
  }
  .mobile-menu {
    top: 70px;
    height: calc(100dvh - 70px);
  }
  .search-wrapper {
    padding: 0px 30px 0px 30px;
  }
  .translate-wrapper {
    display: none !important;
  }

  .nav-divider {
    display: none ;
  }
  .mobile-menu-footer .mobile-footer-link {
    padding: 15px 0px 15px 40px;
  }

}

body {
    background-color: rgb(255, 255, 255);
}



::selection {
  background-color: #004094;
  color: white;            
}

/* For Firefox (requires vendor prefix) */
::-moz-selection {
  background-color: #004094;
  color: white;
}



/* CURSOR DOT STYLING */

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #a3baff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}






/* =========================
   Barba Transition Overlay
   ========================= */
#barba-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff; /* fallback background color */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999; /* above everything */
  pointer-events: none; /* allow clicks to pass when hidden */
  opacity: 0;
  transition: opacity 0.5s ease;
  border-bottom: solid 2px #004094;
}

/* Visible state */
#barba-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.transition-logo-container {
  background-color: #181C41;
  border: solid 2px #004094;
  border-left: none;
  margin-bottom: 90px;
}

/* Logo in the center */
#barba-transition-overlay .barba-logo {
  padding: 40px;
  height: auto;
  width: 380px;
  margin-left: 70px;
}

.loading-row-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
  width: 100%;
}

.loading-copy-container {
  margin-top: 40px 0px;
   overflow: hidden;
}

.loading-copy {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 50px;
  font-weight: 200;
  color: #181C41;
  padding: 40px 100px 40px 90px;
}

.loading-copy .line {
  display: block;
  overflow: hidden;
}

.loading-copy .line span {
  display: inline-block; /* allow GSAP y animations */
}

/* Thin loading bar */
#barba-transition-overlay .loading-bar {
  width: 0%; /* animate width with JS/GSAP */
  height: 2px;
  background: #004094;/* or your brand color */
  border-radius: 2px;
  margin-bottom: 1rem;
  transition: width 0.3s ease;
  margin-top: 100px;  
}

.loading-counter-wrapper {
  width: 200px;
  height: 100%;
  border-left: solid 2px #004094;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Loading counter */
#barba-transition-overlay .loading-counter {
  color: #829cea;
  font-size: 45px;
  font-weight: 200;
  letter-spacing: 1px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  padding: 40px 90px 40px 90px;
}

/* Optional canvas for gradient behind overlay */
#gradient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100; /* below overlay */
  pointer-events: none;
}

/* Optional: fade-out animation using class */
.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}


#barba-shutter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 9999;
}

.shutter-row {
  flex: 1;
  background-color: #004094; /* your blue shade */
  transform: scaleY(0);       /* start collapsed */
  transform-origin: bottom center; /* grow from bottom */
}

.site-info, .powered-by-wordpress, .footer-credit {
    display: none !important;
}







@media (max-width: 420px) {
  #barba-transition-overlay .barba-logo {
    width: 250px;
    margin-left: 0px;
    padding: 20px !important;
  }
  .transition-logo-container {
    margin-bottom: 40px;
  }

  .loading-copy {
    font-size: 24px;
    font-weight: 300;
    padding: 15px 20px 15px 30px;
  }
  .loading-counter-wrapper {
    width: 100px;
  }
  #barba-transition-overlay .loading-counter {
    font-size: 25px;
    padding: 15px 90px 15px 90px;
  }
  #barba-transition-overlay .loading-bar {
    margin-top: 50px;  
  }

}

@media (max-width: 760px) {
    .contact-marquee-wrapper {
        margin-top: 70px !important;
        padding: 10px 0px !important;
    }
    .contact-marquee-text {
        font-size: 70px !important;
    }
    .contact-form-outer {
        flex-direction: column;
    }
    .contact-form-left {
        padding: 40px 0px 55px 20px !important;
        border-right: 0px !important;
        background-color: white !important;
    }
    .contact-header-text {
        margin-bottom: 5px !important;
    }
    .contact-form-right {
        border-top: solid 2px #004094;
    }
    .contact-form-right input,
    .contact-form-right textarea {
        border-bottom: 2px solid #004094;
        padding: 15px 20px !important;
        font-family: 'Saira',Arial, Helvetica, sans-serif;
        font-size: 25px !important;
        color: #010511;
        font-weight: 200;
    }
    .submit-button-wrapper {
        justify-content: flex-start !important;
    }
    .contact-button-text {
        font-size: 15px !important;
        margin: 7px 12px !important;
        font-weight: 400 !important;
    }
    .contact-button-arrow-container {
        padding: 10px !important;
    }
    .contact-button-divider {
        height: 42px !important;
    }
    .office-preview-section {
        flex-direction: column !important;
    }
    .office-preview-divider {
        width: 2px !important;
        height: 90px !important;
    }
    .office-card-wrapper {
        margin: 0px !important;
        width: 90% !important;
    }
    .office-header-copy {
        font-size: 30px !important;
    }
    .office-bottom-wrapper {
        flex-direction: column-reverse !important;
    }
    .office-bottom-left {
        border-right: 0px !important;
        border-top: 2px solid #004094;
    }
    .office-bottom-right {
        display: block !important;
    }
    .join-team-section {
        flex-direction: column !important;
    }
    .join-team-intro-wrapper {
        border-right: none !important;
        border-bottom: solid 2px #004094;
    }
    .join-team-intro-inner {
        padding: 40px 20px !important;
    }
    .join-team-header {
        font-size: 30px !important;
    }
    .job-options-wrapper {
        border-bottom: solid 2px #004094;
    }
    .job-options-wrapper,
    .benefit-options-wrapper {
        align-items: flex-start !important; 
        border-right: none !important;
        padding: 40px 20px !important;
    }
    .faq-header-wrapper {
        padding: 40px 20px !important;
    }
    .faq-header-copy {
        padding-left: 0px !important;
        font-size: 30px !important;
    }
    .question-number-wrapper {
        display: none !important;
    }
    .faq-view-more-button {
        display: none !important;
    }
    .question-text {
        font-size: 20px !important;
    }
    .office-photo-header-container {
        height: 90px !important;
    }
    .office-photo-header {
        padding: 20px !important;
        font-size: 30px !important;
    }
    .contact-photo-arrow-svg {
        stroke-width: 20 !important;
    }
    .contact-photo-section-arrow-button-container {
        padding-right: 0px !important;
    }
    .contact-photo-section-arrow-button-container .right-arrow {
        border-right: 0px !important;
    }
    .contact-photo-section-arrow-button {
        width: 80px !important;
    }
   

    .office-photo-wrapper {
        height: 400px !important;
        max-height: 400px !important;
    }
    .qc-bottom-wrapper {
        flex-direction: column !important;
    }
    .qc-main-header {
        padding: 40px 20px !important;
        font-size: 30px !important;
    }
    .qc-cell-container {
        border-right: none !important;
    }
    .qc-cell-inner {
        padding: 20px !important;
    }
    .qc-cell-container:not(:last-child) {
        border-bottom: solid 2px #004094;
    }
}



@media (max-width: 1080px) {
    .office-bottom-right {
        display: none;
    }
    .office-bottom-left {
        border-right: 0px !important;
    }
}






#gradient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; 
  pointer-events: none; 
  width:100%;
  height:100%;
  --gradient-color-1: #004094; 
  --gradient-color-2: #000233; 
  --gradient-color-3: #000319;  
  --gradient-color-4: #000000;
}

.contact-marquee-wrapper {
  width: 100%;
  overflow: hidden; /* Clip overflow */
  position: relative;  /* Adjust as needed */
  white-space: nowrap;
  padding: 110px 0px 30px;
  border-bottom: 2px solid #004094;
  background-color: white;
}

.contact-form-wrapper { 
    background-color: white;
}

.contact-marquee-text {
  display: inline-block;
  font-size: 100px; 
  font-weight: 900;
  font-family: 'Gotham', Arial, sans-serif;
  text-transform: uppercase;
  -webkit-text-stroke: 2px #004094;
  animation: scroll-left 200s linear infinite;
  color: transparent;
  will-change: transform;
}

.contact-form-outer {
    display: flex;
    justify-content: space-between;
    border-bottom: solid 2px #004094;
    background-color: #f0f0f0;
}

.contact-form-left {
    border-right: solid 2px #004094;
    flex: 1;
    padding: 20px 0px 0px 50px;
}

.contact-header-text {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 40px;
    color: #181C41;
    font-weight: 200;
    margin-bottom: 30px;
}

.contact-email {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #010511;
    font-weight: 200;
}

.contact-form-right {
    width: 100%;
    flex: 2;
}

/* Reset all form-related elements */
.contact-form-right input,
.contact-form-right textarea,
.contact-form-right select {
    all: unset; /* remove all inherited and default styles */
    box-sizing: border-box; /* keep padding/border sizing predictable */
}


.contact-form-right input,
.contact-form-right textarea {
    width: 100%;
}

/* Optional: add a minimal border and padding for usability */
.contact-form-right input,
.contact-form-right textarea {
    border-bottom: 2px solid #004094;
    padding: 20px;
    font-family: 'Saira',Arial, Helvetica, sans-serif;
    font-size: 30px;
    color: #010511;
    font-weight: 200;
}

.contact-form-right input::placeholder,
.contact-form-right textarea::placeholder {
  color: #010511;
}

/* Minimal styling for button */

.submit-button-wrapper {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 50px 20px 20px;
}

.contact-slider-button {
  display: inline-flex;   /* changed to inline-flex to mimic button layout */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;         
  border: solid 2px #004094;
  background-color: white;
  overflow: hidden;
  z-index: 0;   /* establish stacking context */
  text-decoration: none;  /* remove underline for links */
  cursor: pointer;        /* show pointer */
  color: #000233;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation; /* Improve mobile touch response */
  -webkit-tap-highlight-color: transparent; /* Remove tap highlight on iOS */
}

.contact-slider-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #dee6ff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 0;   /* NOT negative */
}

.contact-slider-button:hover::before {
  transform: translateX(0);
}

.contact-button-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;   /* sits above the animation layer */
  pointer-events: none;
}

.contact-button-text {
  margin: 10px 15px;
  font-size: 18px;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
  pointer-events: none; /* Allow clicks to pass through to button */
}

.contact-button-divider {
  width: 2px;
  color: #163e9b;
  background-color: #163e9b;
  height: 48px;
}

.contact-button-arrow-container {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* Allow clicks to pass through to button */
}

.contact-arrow-svg {
  width: 18px;
  height: 18px;
}

.contact-arrow-line {
  fill: none;
  stroke: #004094;
  stroke-miterlimit: 10;
  stroke-width: 40px;
}


.office-preview-section {
    display: flex;
    align-items: center;
    background-color: white;
}

.office-preview-divider {
    width: 10%;
    height: 2px;
    background-color: #004094;
}

.office-card-wrapper {
    height: 70%;
    width: 35%;
    border: solid 2px #004094;
    margin-top: 100px;
    margin-bottom: 100px;
}

.office-img-container img {
  width: 100%;         
  height: 100%;
  max-height: 300px;    
  object-fit: cover; 
  object-position: center;
  display: block;
  border-bottom: solid 2px #004094;
}

.office-copy-upper-wrapper {
    padding: 30px;
}

.office-header-copy {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: clamp(20px, 3vw, 40px);
    font-weight: 200;
    color: #181C41;
    margin-bottom: 15px;
}

.office-description-copy {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #004094;
    font-weight: 200;
    line-height: 25px;
}

.office-bottom-wrapper {
    display: flex;
    border-top: solid 2px #004094;
}

.office-bottom-left {
    flex: 1;
    justify-content: space-evenly;
    border-right: solid 2px #004094;
}

.phone-box-wrapper {
    border-bottom: solid 2px #004094;
}

.phone-box-wrapper {
    height: 45%;
}

.location-box-wrapper {
    height: 55%;    
}

.office-phone-copy,
.office-location-copy {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #004094;
}

.phone-box-inner, 
.office-location-copy {
    padding: 30px;
}

.office-location-address {
  text-decoration: none; 
  color: inherit;        
  cursor: pointer;
}

.office-location-address:hover {
  text-decoration: none; 
  color: #000000;
}

.office-location-address div {
    margin-bottom: 5px;
}

.office-phone-title,
.location-header-text {
    font-family: 'Gotham',Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #181C41;
    margin-bottom: 10px;
}

.office-bottom-right {
    flex: 1;
}

.office-bottom-right img {
  width: 100%;         
  height: 100%;    
  object-fit: cover; 
  object-position: center;
  display: block;
}






/* IMAGE DIVIDER SECTION */

.contact-image-section {
  width: 100%;
  height: 500px; /* or whatever height you want */
  overflow: hidden; /* ensures image doesn't overflow */
  position: relative;
  border-top: solid 2px #004094;
}

.contact-image-section .parallax-image {
  width: 100%;
  height: 130%; /* slightly taller than the section for parallax */
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}


/* APPLY FOR JOB SECTION */

.join-team-section {
    background-color: white;
    display: flex;
    border-top: solid 2px #004094;
}

.join-team-intro-wrapper {
    border-right: solid 2px #004094;
    flex: 2;
}
.join-team-intro-inner {
   padding: 50px 20px 20px 50px;
}

.join-team-header {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 40px;
    color: #181C41;
    font-weight: 200;
    padding-bottom: 20px;
}

.join-team-subcopy {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #004094;
    padding-bottom: 40px;
    line-height: 25px;
    max-width: 450px;
}

.job-options-wrapper {
    border-right: solid 2px #004094;
}

.job-options-wrapper, 
.benefit-options-wrapper { 
    flex: 1.2;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.job-options-header,
.benefit-options-header {
    font-family: 'Saira',Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 200;
    padding-bottom: 20px;
}

.job-options-list,
.benefit-options-list {
    list-style: none;
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    color: #004094;
    font-weight: 200;
    font-size: 15px;
}

.job-options-list li,
.benefit-options-list li {
    margin-bottom: 7px;
}





/* FAQ SECTION STYLINGS */

.faq-section {
    border-top: solid 2px #004094;
    background-color: white;
}

.faq-header-wrapper {
  padding: 40px 50px;
}

.faq-header-copy {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 200;
}

.question-cell-wrapper {
  display: flex;
  cursor: pointer;
  transition: background-color 0.3s ease;
  overflow: hidden;
  border-bottom: solid 2px #004094;
}

.question-cell-wrapper:first-child {
    border-top: solid 2px #004094;
}

.question-cell-wrapper:hover {
  background-color: #f7f7f7;
}

.question-number-wrapper {
  width: 8%;
  min-width: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-right: 2px solid #004094;
}

.question-number-text {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 200;
    padding: 15px 20px 15px 50px;
    color: #004094;
}

.question-text {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 200;
}

.answer-text {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #004094;
    font-weight: 200;
    padding: 0px 0px 36px 0px;
}

.question-answer-wrapper {
  flex: 1;
  padding: 0px 20px;
  justify-content: space-evenly;
}

.questions-cell-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.answer-cell-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}

.question-cell-wrapper:hover .answer-cell-wrapper {
  max-height: 200px; 
  opacity: 1;
  margin-top: 0.5rem;
}

.faq-view-more-button {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: #677BB8;
  padding: 0.3rem 0.8rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.faq-section-bottom-spacer {
    height: 120px;
    background-color: #f0f0f0;
    width: 100%;
    border-bottom: solid 2px #004094;
}








/* OFFICE PHOTO SECTION */

.office-photo-section {
    background-color: white;
}

.office-photo-wrapper {
  position: relative;
  width: 100%;         /* container full width */
  height: 700px;        /* let height be flexible */
  max-height: 700px;
  overflow: hidden; 
}

.office-photo-image {
  position: absolute;
  display: block;      /* remove inline spacing */
  max-width: 100%;     /* scale down if too large */
  height: auto;        /* maintain aspect ratio */
}

.office-photo-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0); /* start hidden */

  transform: scale(1.2);
}

.office-photo-image.active {
  clip-path: inset(0 0 0 0); /* fully shown */
}

.office-photo-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  border-bottom: solid 2px #004094;
}

.office-photo-header {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 200;
    padding: 20px 50px;
}

.contact-photo-section-arrow-button-container {
  display: flex;
  align-items: stretch;
  height: 100%;
  padding-right: 50px;
}

.contact-photo-section-arrow-button {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  width: 120px;
}

.contact-photo-arrow-svg {
  width: auto;
  height: 50%;
  fill: none;
  stroke: #002b6c;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-photo-arrow-svg.contact-photo-arrow-line {
    height: 50px;
}

.contact-photo-section-arrow-button.left-arrow {
  border-left: 2px solid #002b6c;
  border-right: 1px solid #002b6c;
}

.contact-photo-section-arrow-button.right-arrow {
  border-left: 1px solid #002b6c;
  border-right: 2px solid #002b6c;
}

.contact-photo-section-arrow-button:hover {
  background-color: #dee6ff;
}

/* Keep your existing rotate class */
.rotate-180 {
  transform: rotate(180deg);
}






/* QUICK CONTACTS SECTION */

.quick-contact-section {
    background-color: white;
    border-top: solid 2px #004094;
    border-bottom: solid 2px #004094;
}

.qc-main-header {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    color: #181C41;
    font-size: 40px;
    font-weight: 200;
    padding: 40px 50px;
}
.qc-header-wrapper {
    border-bottom: solid 2px #004094;
}

.qc-bottom-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

.qc-cell-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #f7f7f7;
}

.qc-cell-inner {
    padding: 50px;
}

.qc-cell-container:not(:last-child) {
    border-right: solid 2px #004094;
}

.qc-number-header {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 40px;
    color: #004094;
}

.qc-header-text {
    font-family: 'Saira',Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 200;
    padding-bottom: 15px;
}

.qc-person-name,
.qc-number-copy,
.qc-email-copy {
    font-family: 'Gotham',Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: #004094;
    padding-bottom: 10px;
}

.qc-bottom-spacer-bar {
    height: 120px;
    border-top: solid 2px #004094;
    background-color: white;
}

@font-face {
  font-family: 'Gotham';
  src: url(/fc0f5f9c394d414d0d86.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url(/8a69a1bf8532262d8fbf.woff) format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url(/56196ae8628021ba3f33.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url(/2e257daa1b86bc284d28.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url(/04d4751d10fb4c0f1f26.woff2) format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


#gradient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100; 
  width:100%;
  height:100%;
  --gradient-color-1: #004094; 
  --gradient-color-2: #000233; 
  --gradient-color-3: #000319;  
  --gradient-color-4: #000000;
}

* Footer element positioning */
.site-footer {
 position: relative;
 z-index: 1;
 pointer-events: none;
 transition: pointer-events 0s ease 0s;
}
/* Make footer interactive when active */
.site-footer.footer-active {
 pointer-events: auto;
 z-index: 10;
}

.footer-top {
    display: flex;
    border-bottom: solid 2px #163e9b;
}

.footer-logo-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-right: solid 2px #163e9b;
    width: 550px;
    padding-left: 90px;
    padding-right: 250px;
    flex: 1;
}

.footer-logo {
    width: 200px;
    height: auto;
}

.footer-middle {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    display: flex;
    flex-direction: row;
    width: 100vw;
}

.contact-header,
.location-header,
.certifications-header,
.getintouch-header {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    color: white;
    font-size: clamp(25px, 1.5vw, 40px);
    font-weight: 300;
    border-bottom: solid 2px #163e9b;
}

.contact-column,
.location-column,
.certifications-column {
    border-right: solid 2px #163e9b;
    width: 25%;
}

.getintouch-column {
    width: 25%;
}

.contact-header {
    padding-left: 90px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.location-header-copy,
.certifications-header-copy,
.getintouch-header-copy {
    padding: 30px;
}

.contact-header-copy {
    padding: 30px 30px 30px 0px;
}

.contact-column {
   display: flex;
   flex-direction: column;
}

.contact-bullets {
    color: #8eaaff;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    padding: 30px 30px 30px 90px;
}

.contact-item {
    padding-bottom: 10px;
}

.contact-item a {
  text-decoration: none;
  color: #8eaaff;
}

.contact-item a:hover {
  color: white;
}

/* Ensure all footer links are clickable */
.footer a,
.footer-apply-link,
.linkedin-link,
.map-link {
 pointer-events: auto;
 position: relative;
 z-index: 10;
} 

.linkedin-link {
  color: #8eaaff;
  text-decoration: none;
}


.location-one {
    display: flex;
    padding: 30px 30px 30px 30px;
}

.location-two {
    display: flex;
    padding: 0px 30px 30px 30px;
}

.location-number {
    color: #8eaaff;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 400;
    padding-right: 20px;
}

.location-one-address,
.location-two-address {
    color: #8eaaff;
    font-family: 'Saira',Arial, Helvetica, sans-serif;
    font-weight: 200;
}

.map-link {
  text-decoration: none; 
  color: inherit;        
  cursor: pointer;       
}

.map-link:hover {
  text-decoration: none; 
  color: white;
}

.footer-bottom {
    border-top: solid 2px #163e9b;
    pointer-events: auto;
    position: relative;
    z-index: 5;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 90px;
}

.rights-reserved {
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #8eaaff;
}

.footer-bottom-right {
    color: #8eaaff;
    font-family: 'Gotham', Arial, Helvetica, sans-serif;
    font-weight: 200;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.privacy-policy {
    padding-right: 40px;
}

.certifications-bullets {
    color: #8eaaff;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.certifications-item {
    padding-bottom: 10px;
}

.getintouch-bottom {
    padding: 30px;
}

.line-one {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #8eaaff;
}

.getintouch-message {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 200;
    color: #8eaaff;
    margin-top: 10px;
}

/* Ensure footer form elements are clickable */
.footer-form,
.footer-input,
.footer-submit,
.footer-form-container {
  pointer-events: auto;
  position: relative;
  z-index: 10; 
}

.footer-form-container {
  margin-top: 10px;
  max-width: 200px;
}

.footer-form {
  display: flex;
  align-items: center;
  border: 2px solid #163e9b;
  background-color: transparent;
  height: 42px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
}

.footer-input {
  background: transparent;
  border: none;
  color: #8eaaff;
  padding: 8px 12px;
  width: 100%;
  font-size: 16px;
  outline: none;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
}

/* Button reset & styling */
.footer-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-left: 2px solid #163e9b;
  height: 100%;
  width: 60px; /* adjust as needed for spacing */
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

/* Optional hover background or lighten border */
.footer-submit:hover {
  background-color: #8eaaff;
}

/* Arrow SVG */
.arrow-svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 25px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.footer-submit:hover .arrow-svg {
  stroke: #7E98CB;
}

.footer-link {
  color: #8eaaff;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 15px;
  text-decoration: none;
  margin-right: 40px;
  position: relative;
  transition: all 0.3s ease;
  pointer-events: auto;
  z-index: 10;
}

.footer-link:last-child {
  margin-right: 0;
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #8eaaff;
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

/* looping text Marquee */



.footer-marquee-container {
  width: 100%;
  overflow: hidden; /* Clip overflow */
  position: relative;  /* Adjust as needed */
  white-space: nowrap;
  padding: 30px 0px;
}

.footer-marquee {
  display: inline-block;
  font-size: 100px; 
  font-weight: 900;
  font-family: 'Gotham', Arial, sans-serif;
  font-style: uppercase;
  -webkit-text-stroke: 2px white;
  animation: scroll-left 200s linear infinite !important;
  color: transparent;
}

.footer-marquee .highlight { 
  color: transparent;
  -webkit-text-stroke: 2px #677BB8; 
}

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


@media (max-width: 768px) {
    .footer-logo-container {
        padding-right: 90px;
    }
   .footer-middle {
        flex-direction: column;
   }
  .contact-column,
  .location-column,
  .certifications-column,
  .getintouch-column {
    width: 100%;
    border-right: none;
  }
  .location-header,
  .certifications-header,
  .getintouch-header {
    padding-left: 90px;
    border-top: solid 2px #163e9b;
  }
  .location-header-copy,
  .certifications-header-copy,
  .getintouch-header-copy,
  .contact-header-copy {
     padding: 20px 20px 20px 0px;
   }
   .location-one {
    padding: 30px 90px 30px 90px;
   }
   .location-two {
    padding: 0px 90px 30px 90px
   }
   .certifications-bullets {
    padding: 30px 90px;
   }
   .getintouch-bottom {
    padding: 30px 90px;
   }
   .footer-bottom-right {
    display: none;
   }
}

@media (max-width: 760px) {
    .footer-logo-container {
        padding-left: 30px;
        padding-right: 30px !important;
    }
    .footer-logo {
        width: 160px;
    }
    .footer-marquee-container {
        padding: 10px 0px;
    }
    .footer-marquee {
        font-size: 80px;
    }
    .location-header-copy,
    .certifications-header-copy,
    .getintouch-header-copy,
    .contact-header-copy {
        padding: 15px 15px 15px 0px;
    }
    .contact-header,
    .location-header,
    .certifications-header,
    .getintouch-header {
    padding-left: 30px;
    }
    .contact-bullets {
        padding: 30px 30px 30px 30px;
    }
    .contact-item {
        padding-bottom: 5px;
    }
    .certifications-column {
        display: none;
    }
    .location-number {
      display: block !important;
    }
    .location-one {
    padding: 30px 30px 15px 30px;
   }
   .location-two {
    padding: 0px 30px 30px 30px
   }
   .getintouch-bottom {
    padding: 30px;
   }
   .footer-bottom-wrapper {
    padding: 30px;
   }
}




@media (max-width: 1080px) {
  .footer-logo-container {
    padding-right: 100px;
  }
  .location-number {
    display: none ;
  }
}
