@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;
  }

}

/* Page content scroll-over-hero behavior */
.portfolio-page-content {
  position: relative;
  z-index: 1; /* sits above hero */
  background: transparent;
  margin-top: 100vh;
}

@media (max-width: 760px) {
  .portfolio-hero {
    flex-direction: column;
    height: 100vh !important;
    align-items: flex-start !important;
  }
  .portfolio-hero-upper{
     flex-direction: column !important;
    justify-content: flex-start !important;
    height: 100% !important;
  }
  .portfolio-hero-left {
     flex: 0 0 auto !important;  /* stop growing or shrinking */
    height: auto !important;     /* just be as tall as its content */
  }
  .hero-left-upper {
    flex-grow: 0 !important;
    --hero-left-height: auto;
    height: auto !important; /* so we can calculate the remainder */
    padding-top: 80px !important;
    justify-content: flex-start !important;
  }  
  .hero-left-upper-container {
    padding-top: 0px !important;
  }
  .hero-left-upper-inner {
    padding-bottom: 40px !important;
    padding-top: 20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    width: 100% !important;
  }
  .portfolio-hero-headline {
    font-size: 35px !important;
    line-height: 40px !important;
  }
  .portfolio-subhead-copy {
    font-size: 13px !important;
    padding-bottom: 20px !important;
    line-height: 20px !important;
  }
  .portfolio-cta-button-text {
    font-size: 14px !important;
  }
  .portfolio-cta-button-divider {
    height: 38px !important;
  }
  .portfolio-phone-email-wrapper {
    display: block !important;
  }
  .portfolio-hero-upper-phone {
    display: none !important;
  }
  .portfolio-options-wrapper {
    display: none !important;
  }
  .option-box {
    min-width: 60px !important;
    padding: 10px !important;
    height: 100% !important;
  }
  .portfolio-option-title {
    font-size: 13px !important;
  }
  .portfolio-hero-stats-wrapper {
    padding-left: 0px !important;
    gap: 6px !important;
    justify-content: space-between !important;
  }
  .hero-bottom-stat-text {
    font-size: 30px !important;
  }
  .hero-bottom-stat-subhead {
    font-size: 13px !important;
    max-width: 110px !important;
  }
  .hero-left-bottom-wrapper {
    padding: 10px 20px 20px 20px !important;
    border-bottom: solid 2px #004094;
    height: 160px !important;
    display: none !important;
  }
  .portfolio-main-hero-right {
     flex: 1 1 auto !important;  /* flexible growth */
    height: calc(50vh - var(--hero-left-height, 0px)) !important; /* subtract top section */
    justify-content: flex-start !important;
    width: 100% !important;
    border-left: none !important;
    min-width: 0px !important;
  }
  .portfolio-hero-right-upper {
    flex-direction: column !important;
    padding-top: 0px !important;
    height: 80% !important;
    border-top: solid 2px #004094;
    border-bottom: solid 2px #004094;
  }
  .portfolio-hero-divider {
    width: 2px !important;
    height: 10% !important;
  }
  .portfolio-hero-image-slider-wrapper {
    width: 90% !important;
    height: 80% !important;
  }
  .hero-bottom-right-wrapper {
    align-items: flex-start !important;
    padding: 0px !important;
    display: none !important;
  }
  .hero-bottom-capabilities-inner {
    gap: 0px !important;
    flex-direction: column-reverse !important;
    height: 100%;
  }
  .hero-bottom-capabilities-wrapper {
    padding: 20px;
  }
  .capabilities-title-text {
    font-size: 25px !important;
    padding-bottom: 11px !important;
  }


  .capabilities-arrow-container {
    width: 100% !important;
    height: 100px !important;
    flex-direction: row !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
  }
  .arrow-button {
    padding: 0px !important;
  }
  .arrow-button.down {
    border-top: none !important;
    border-left: solid 2px #004094 !important;
  }
  .capabilities-body-copy-text {
    font-size: 13px !important;
  }


  .criteria-sidebar-top-container {
    padding: 30px 30px 40px 30px !important;
  }
  .criteria-sidebar {
    margin-bottom: 0px !important;
  }
  .criteria-grid-wrapper {
    padding: 30px !important;
    background-color: #f0f0f0;
  }
  .criteria-card {
    display: flex;
  }
  .criteria-number {
    margin-right: 30px;
    margin-top: -8px;
  }
  .criteria-text {
    line-height: 24px !important;
    color: #000233 !important;
  }
  .portfolio-sidebar {
    border-right: 0px !important;
    max-width: none !important;
  }
  .portfolio-sidebar-top-container {
    padding: 30px 30px 40px 30px !important;
    border-top: solid 2px #004094;
  }
  .portfolio-sidebar-heading {
    font-size: 30px !important;
  }
  .portfolio-sidebar-copy {
    font-size: 15px !important;
    line-height: 24px !important;
  }
  .search-bar-wrapper {
    border-bottom: 0px !important;
    height: 70px !important;
    background-color: white !important;
  }
  .portfolio-no-results-header-wrapper {
    border-right: 0px !important;
  }
  .portfolio-nav-container {
    height: 70px !important;
  }
  .portfolio-nav-buttons {
    width: 160px !important;
    height: 100% !important;
  
  }
  .portfolio-nav-button {
    padding: 20px !important;
  }
  .portfolio-arrow-svg {
    width: 15px !important;
  }
  .search-bar-wrapper {
    justify-content: flex-start !important;
  }
  .search-container {
    border-left: 0px !important;
  }
  .search-container input[type="text"] {
    padding-left: 30px !important;
  }
  .portfolio-no-results {
    display: flex !important;
    flex-direction: column !important;
  }


  .marquee-section {
    flex-direction: column-reverse !important;
  }
  .marquee-container {
    border-bottom: solid 2px #004094 !important;
  }
  .marquee-text {
    font-size: 70px !important;
    padding: 10px !important;
  }
  .marquee-headline-wrapper {
    border-right: none !important;
  }
  .marquee-headline-text {
    padding: 30px 20px !important;
  }




  .portfolio-grid-wrapper {
    padding: 40px !important;
  }
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .portfolio-card-wrapper {
    padding: 10px !important;
  }
  .card-title {
    font-size: 30px !important;
    line-height: 35px !important;
  }
  .card-description {
    font-size: 15px !important;
  }
  .portfolio-card {
    width: 100% !important;
  }


  .portfolio-marquee-1 {
    padding: 10px 0px !important;
  }
  .portfolio-marquee-text {
    font-size: 80px !important;
  }


  .portfolio-featured-card-section {
    height: auto !important;
  }
  .portfolio-featured-card-full-wrapper {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 30px !important;
    padding: 40px 0px !important;
    margin: 0px 30px !important;
  }
  .portfolio-featured-card-inside-wrapper {
    height: 300px !important;
    min-width: 0px !important;
  }
  .portfolio-featured-card-header-wrapper {
    height: 60px !important;
  }
  .portfolio-featured-card-arrow-button {
    width: 60px !important;
  }
  .portfolio-featured-card-arrow-svg {
    padding: 8px !important;
  }
  .portfolio-featured-card-img-container {
    height: calc(100% - 60px) !important;
  }
  .portfolio-featured-card-title {
    padding-left: 20px !important;
    line-height: 40px !important;
    font-size: 20px !important;
    font-weight: 300 !important;
  }
  .featured-photo-header {
    padding: 20px !important;
    line-height: 45px !important;
  }
  .featured-photo-arrow-wrapper {
    width: 50% !important;
  }
  .featured-photo-arrow {
    padding: 0px !important;
  }
  .featured-side-card-top {
    padding: 30px !important;
  }
  .portfolio-featured-side-card {
    max-width: none !important;
  }
  .featured-side-card-title {
    font-size: 30px !important;
  }
  .featured-side-card-location {
    margin-bottom: 14px !important;
  }
  .featured-side-card-copy {
    font-size: 15px !important;
    line-height: 23px !important;
  }



  .values-section {
    flex-direction: column !important;
    height: 600px !important;
  }
  .values-left {
    padding: 30px !important;
    border-bottom: solid 2px #004094;
    border-right: none !important;
    flex: 2 !important;
    width: 100% !important;
  }
  .values-left-inner {
    width: 80% !important;
  }
  .values-heading {
    margin-bottom: 30px !important;
    font-size: 30px !important;
    line-height: 40px !important;
  }
  .value-card {
    padding: 40px 30px !important;
    min-width: 300px !important;
  }



  .wcu-top-spacer {
    background-color: #f0f0f0;
  }
  .wcu-main-wrapper {
    flex-direction: column-reverse !important;
    height: auto !important;
  }
  .wcu-left {
    width: 100% !important;
    border-right: 0px !important;
    border-top: solid 2px #004094;
    min-width: 0px !important;
  }
  .wcu-left-inner-wrapper {
    padding: 50px 30px 55px 30px !important;

  }
  .wcu-headline {
    font-size: 30px !important;
  }
  .wcu-intro-copy {
    font-size: 15px !important;
  }

  .wcu-info-header {
    height: 50px !important;
  }
  .wcu-icon-box {
    width: 50px !important;
  }
  .wcu-icon-placeholder {
    width: 40px !important;
    height: 40px !important;
  }
  .wcu-info-btns button {
    width: 50px !important;
  }
  .wcu-info-body {
    padding: 20px !important;
    font-size: 15px !important;
  }

  .wcu-right {
    width: 100% !important;
    height: 400px !important;
  }
  .wcu-right-line {
    width: 5% !important;
  }
  .wcu-image-container {
    height: 70% !important;
    width: 90% !important;
  }

}







@media (max-width: 1080px) {
  .portfolio-hero-headline {
    line-height: 45px !important;
  }
  .portfolio-hero-left {
    max-width: 700px;
  }
  .portfolio-main-hero-right {
    min-width: 500px;
  }
  .portfolio-subhead-copy {
    padding-bottom: 20px !important;
  }
  .portfolio-phone-email-wrapper {
    display: none;
  }
  .option-box {
    padding: 10px !important;
  }
  .hero-bottom-stat-wrapper {
    min-width: 0px !important;
  }
  .portfolio-hero-stats-wrapper {
    gap: 5% !important ;
  }
  .capabilities-arrow-container {
    width: 70px !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;
}

.clipped-hero-wrapper {
  position: relative;
  overflow: hidden;
  height: calc(100vh - 140px);

}

.portfolio-hero {
    inset: 0;
    z-index: 0;
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    height: 100vh;
    overflow: hidden;
    box-sizing: border-box;
}

.portfolio-hero-upper {
  display: flex;
  width: 100%;
}

.hero-left-upper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 70%;
}



.hero-left-upper-container {
  padding-top: 90px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
} 

.hero-left-upper-inner {
  width: 100%;
  padding-left: 90px;
  padding-right: 90px;
}

.headline-text span {
  margin-right: 0.3em;
}

.portfolio-hero-headline {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.50vw, 70px);
  font-weight: 100;
  color: white;
  line-height: 65px;
  padding-bottom: 20px;
}

.line {
  display: block;
  overflow: hidden; /* hides the text until GSAP animates it in */
}

.line span {
  display: inline-block; /* allows y-translate animation */
}

.portfolio-subhead-copy {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: white;
  line-height: 25px;
  padding-bottom: 40px;
}

.portfolio-hero-button-email-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portfolio-cta-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border: solid 2px #004094;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  cursor: pointer;
  color: #000233;
  flex: 0 0 auto;
  max-width: 220px;
}

.portfolio-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.portfolio-cta-button:hover::before {
  opacity: 1;
}

.portfolio-cta-button-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.portfolio-cta-button-text {
  margin: 8px 15px;
  font-size: 15px;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-weight: 300;
  color: white;
}

.portfolio-cta-button-divider {
  width: 2px;
  color: #163e9b;
  background-color: #163e9b;
  height: 42px;
}

.portfolio-cta-button-arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.portfolio-cta-button-arrow-svg {
  width: 18px;
  height: 18px;
}

.portfolio-cta-button-arrow-line {
  stroke: white;
  stroke-width: 40px;
  fill: none;
}

.portfolio-hero-upper-email {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 200;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    margin-right: 20px;
}
.portfolio-hero-upper-phone {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    color: white;
    font-size: 16px;
    font-weight: 200;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    margin-right: 35px;
}

.portfolio-hero-upper-email:hover .portfolio-hero-email-text  {
    color: #8eaaff;
}
.portfolio-hero-upper-phone:hover .portfolio-hero-phone-text {
    color: #8eaaff;
}









.portfolio-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;      
  align-items: flex-start;      
  height: auto;
  box-sizing: border-box;
  flex: 2;
}

.portfolio-options-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: solid 2px #004094;
}

.option-box {
  flex: 1 1 20%; 
  min-width: 120px; 
  text-align: center;
  padding: 20px 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #004094; 
}

.option-box:first-child {
  border-left: none; 
}

.option-box:last-child {
  border-right: none; 
}

.portfolio-option-title {
  font-family: 'Saira',Arial, Helvetica, sans-serif;
  color: white;
  font-size: 17px;
  font-weight: 200;
}

.option-box.active .portfolio-option-title {
  color: #8eaaff;
}





.portfolio-main-hero-right .container {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0px 0px 0px;
}


/* HERO image slider */

.portfolio-hero-right-upper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 70%;
  padding-top: 80px;
}

.portfolio-main-hero-right{
  flex: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-left: 2px solid #004094;
}

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

.portfolio-hero-image-slider-wrapper {
  position: relative;
  width: 80%;
  height: 70%;
  border: solid 2px #004094;
  overflow: hidden;
}

.portfolio-image-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.image-upper {
  display: flex;
  flex: 1; /* take half or more of the space */
}

.image-bottom img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  z-index: 1;
}

/* Make ONLY the first image visible by default - but allow GSAP to override */
.image-bottom img:first-child {
  clip-path: inset(0 0% 0 0);
  z-index: 2;
  opacity: 1;
}

.image-bottom {
  flex: 2;
  position: relative;
  width: 100%;
  height: 100%;
}


/* PORTFOLIO HERO BOTTOM SECTION */

.hero-left-bottom-wrapper {
  display: flex;
  gap: 10%;
  width: 100%;
  height: 30%;
  flex-direction: column;
  justify-content: center;
  border-top: solid 2px #004094;
}

.portfolio-hero-stats-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  gap: 10%;
  padding: 0px 90px;
}

.hero-bottom-stat-wrapper {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 flex-shrink: 0; /* Prevent shrinking */
}

.hero-bottom-stat-text {
  color: white;
  font-family: 'Saira',Arial, Helvetica, sans-serif;
  font-weight: 100;
  font-size: clamp(30px, 2.75vw, 60px);
  display: inline-block;
  text-align: left;
  font-variant-numeric: tabular-nums; /* Use monospace numbers */
}

.hero-bottom-stat-subhead {
  color: #6f93ff;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: clamp(14px, .75vw, 20px);
  font-weight: 200;
  max-width: 130px;
  line-height: 19px;
}


.hero-bottom-right-wrapper {
  display: flex;
  gap: 40px;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: solid 2px #004094;
}

.hero-bottom-capabilities-inner {
  display: flex;
  gap: 30px;
  padding: 0 10%;
  align-items: center; /* Center align arrow container with text */
}

.capabilities-arrow-container {
  display: flex;
  flex-direction: column;
  width: 100px; 
  border: 2px solid #004094; 
  overflow: hidden; 
  width: 100px;
 height: 120px; /* Fixed height to prevent growing/shrinking */
 border: 2px solid #004094;
 overflow: hidden;
 flex-shrink: 0; /* Prevent shrinking */
}

.arrow-button {
  flex: 1;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;      /* required for overlay */
  overflow: hidden;        /* makes overlay fit inside */
  z-index: 1; 
}

.arrow-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  z-index: -1;             /* sits behind arrow icon/text */
  transition: opacity 0.4s ease;
}

.arrow-button:hover::before {
  opacity: 1;
}




.arrow-button + .arrow-button {
  border-top: 2px solid #004094;
}

.portfolio-arrow-svg {
  width: 40px;
  height: 40px;
}

.portfolio-arrow-line {
  color: white;
  fill: none;
  stroke: #ffffff;
  stroke-width: 15px;
}

/* Rotate the up button's SVG */
.arrow-button.up .portfolio-arrow-svg {
  transform: rotate(-90deg); /* left arrow → up */
}

/* Rotate the down button's SVG */
.arrow-button.down .portfolio-arrow-svg {
  transform: rotate(90deg); /* left arrow → down */
}

.capabilities-title-text {
  font-family: 'Saira',Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 200;
  color: white;
  padding-bottom: 10px;
  margin-top: -10px;
}

.capabilities-body-copy-text {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: white;
  line-height: 22px;
  max-width: 500px;
}








.criteria-section {
  background-color: white; /* full-width white */
  border-top: solid 2px #004094;
}

/* Sidebar uses portfolio sidebar styles for exact alignment */
.criteria-sidebar {
  flex: 0 0 25%;
  max-width: 500px;
  min-width: 400px;
  border-right: solid 2px #004094;
  background-color: white;
}

.criteria-sidebar-inner {
  background-color: white;
}

.criteria-sidebar-top-container {
  width: 100%;
  padding: 70px 90px;
}

.criteria-sidebar-heading,
.criteria-sidebar-copy {
  text-align: left;
}

.criteria-sidebar-copy {
  padding-bottom: 0px !important;
}



.criteria-grid-wrapper {
  padding: 70px 90px;
  width: 100%;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 45px;
}

/* Cards */
.criteria-card {
  text-align: left;
}

.criteria-number {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 32px;
  font-weight: 200;
  color: #000233;
  display: block;
  margin-bottom: 10px;
}

.criteria-text {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 24px;
  font-weight: 200;
  color: #004094;
  padding-bottom: 0px !important;
}

/* Responsive: same as portfolio section */
@media (max-width: 900px) {
  .portfolio-section-wrapper {
    flex-direction: column;
  }

  .criteria-sidebar {
    border-right: none;
    border-bottom: 2px solid #004094;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}














.portfolio-section {
    background-color: white;
}






/* SEARCH BAR WRAPPER */

.search-bar-wrapper {
  height: 90px;
  background-color: #f0f0f0;
  border-bottom: solid 2px #004094;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-top: solid 2px #004094;
}

.search-container {
  height: 100%;
  border-left: solid 2px #004094;
}

.search-container input::placeholder {
  font-family: 'Saira', Arial, sans-serif; /* match your custom font */
  font-size: 30px;
  font-weight: 200;
  color: #000233;
}
.search-container input[type="text"],
.search-container #name {
  all: unset; /* clears most browser default styles */
  box-sizing: border-box; /* keep padding/width predictable */
  width: 100%; /* or set a fixed width */
  height: 100%;
  padding: 0.75rem 1rem;
  font-family: 'Saira', Arial, sans-serif; /* your custom font */
  font-size: 30px;
  font-weight: 200;
  color: #000233; /* input text color */
  display: block;
}












/* portfolio card grid */

.portfolio-section {
  background: white;
}



.portfolio-section-wrapper {
  display: flex;
}

.portfolio-sidebar {
  flex: 0 0 25%;
  max-width: 500px;
  min-width: 400px;
  border-right: solid 2px #004094;
  background-color: #f0f0f0;
}

.portfolio-sidebar-inner {
  background-color: white;
}

.portfolio-sidebar-top-container {
  width: 100%;
  padding: 90px;
}

.portfolio-sidebar-heading {
  font-family: 'Saira',Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 200;
  color: #000233;
  padding-bottom: 10px;
}

.portfolio-sidebar-copy {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 200;
  color: #004094;
}

.portfolio-nav-container {
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100px;
}

.portfolio-nav-buttons {
  display: flex;
  justify-content: space-between;
  width: 60%;
  height: 100%;
  visibility: visible;
}

.portfolio-nav-button {
  flex: 1;
  padding: 25px 0;
  background-color: transparent;
  color: #004094;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 0px !important;
  border-left: solid 2px #004094 !important;
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-nav-button:last-child {
  margin-right: 0;
  border-right: 0px;
  border-left: 0px;
}

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

.portfolio-arrow-svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #004094 !important;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.portfolio-cards-arrow-line {
  stroke: #004094 !important;
  stroke-width: 26px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.rotate-180 {
  transform: rotate(180deg);
}









/* NO SEARCH RESULTS DISPLAY */

.portfolio-grid-wrapper.no-results-active {
  padding: 0 !important ;
  flex: 1 1 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}
.portfolio-grid.no-results-active {
  grid-template-rows: auto !important;
  height: auto !important;
  display: block !important;
  flex: 0 0 100% !important;
}

/* Hide placeholder cards when no results are shown */
.portfolio-grid.no-results-active .placeholder-card {
  display: none !important;
}
.portfolio-no-results {
  display: flex;
  width: 100%;
  height: auto;
  margin-top: 0;
}
.portfolio-no-results-header-wrapper {
  width: 100%;
  padding: 40px 30px;
  border-bottom: solid 2px #004094;
  border-right: solid 2px #004094;
  max-width: 430px;
}
.portfolio-no-results-header {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 27px;
  font-weight: 200;
  color: #000233;
  line-height: 37px;
  padding-bottom: 20px;
}
.portfolio-no-results-subhead {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 200;
  color: #004094;
}
.portfolio-no-results-suggestions-wrapper {
  width: 100%;
  height: auto;
}
.portfolio-no-results-row {
  width: 100%;
  border-bottom: solid 2px #004094;
}
.portfolio-no-results-option {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 200;
  padding: 20px 30px;
}





.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 400px);
  min-height: calc(2 * 400px + 30px);
  position: relative;
}

.portfolio-grid-wrapper {
  padding: 90px;
}

/* Wrapper for the card and the "+" signs */
.portfolio-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.portfolio-card-wrapper:hover .card-title {
  color: white;
}

.portfolio-card-wrapper:hover .card-description {
  color: rgb(187, 194, 255);
}

.portfolio-card-wrapper:hover .view-project-button {
  color: white;
}


/* Plus signs */
.plus-corner {
  position: absolute;
  font-size: 40px;
  color: #004094;
  font-weight: bold;
  user-select: none;
  pointer-events: none;
  z-index: 5;
  font-weight: 100;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
}
.top-left { top: 0; left: 0; transform: translate(-50%, -50%); }
.top-right { top: 0; right: 0; transform: translate(50%, -50%); }
.bottom-right { bottom: 0; right: 0; transform: translate(50%, 50%); }
.bottom-left { bottom: 0; left: 0; transform: translate(-50%, 50%); }

/* The card itself */
.portfolio-card {
  position: relative;
  margin: auto;
  width: 100%;
  height: 100%;
  min-width: 300px;
  max-height: 420px;
  min-height: 360px;
  background-color: #f0f0f0; /* light grey */
  transition: transform 0.3s ease, background 0.3s ease;
  overflow: visible;
  z-index: 1;
  transform: scale(0.95);
  will-change: transform;
  border: solid 2px #004094;
}

/* Gradient Overlay */
.gradient-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #6f93ff, #004094, #000233, #000000);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}

/* Card Content */
.card-content {
  position: relative;
  padding: 2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}


.card-date {
  background-color: white;
  color: #000233;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 200;
  font-size: 13px;
  padding: 10px;
  max-width: 140px;
  margin-bottom: 20px;
  border: solid 2px #004094;
}

.card-title {
  font-size: 1.5rem;
  color: #1336a9;
  margin-bottom: 1rem;
  font-family: 'Saira',Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 35px;
}

.card-description {
  padding-bottom: 0px !important;
}

.card-description {
  font-size: 16px;
  color: #000233;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  line-height: 23px;
  font-weight: 200;
}

.view-project-button {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  color: #000233;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-weight: 300;
  font-size: 18px;
}









/* PORTFOLIO MARQUEE SECTION */

.portfolio-marquee-1 {
  width: 100%;
  overflow: hidden; 
  position: relative;
  white-space: nowrap;
  padding: 30px 0;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
}

.portfolio-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;
}

.portfolio-marquee-text .highlight {
  color: transparent;
  -webkit-text-stroke: 2px #004094; 
}

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







/* FEATURED PROJECT SECTION */


.portfolio-featured-card-section {
    background-color: #f0f0f0;
    height: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.portfolio-featured-card-full-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    height: 100%;
    width: 100%;
    margin-left: 90px;
    margin-right: 90px;
}

.portfolio-featured-card-inside-wrapper {
    height: 700px;
    min-width: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    flex: 1;
}

.portfolio-featured-card-container {
    border: solid 2px #004094;
    height: 100%;
    width: 100%;
}

.portfolio-featured-card-header-wrapper {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 2px #004094;
    height: 90px;
}

.portfolio-featured-card-title {
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 200;
    color: #000233;
    padding-left: 50px;
}

.portfolio-featured-card-arrow-container {
    display: flex;
    height: 100%;
}

.portfolio-featured-card-arrow-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 90px;
    height: 100%;
    padding: 0;
    border-left: 2px solid #004094;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-featured-card-arrow-svg {
    width: 100%;
    height: 80%;
    stroke: #004094;
    stroke-width: 14px;
    fill: none;
    transition: stroke 0.3s ease;
    vector-effect: non-scaling-stroke;
    padding: 15px;
}

.portfolio-featured-card-arrow-line {
    stroke: #004094;
    stroke-width: 2;
    vector-effect: non-scaling-stroke;
}

.portfolio-featured-card-arrow-button.left .portfolio-featured-card-arrow-svg {
    transform: rotate(-180deg);
}

.portfolio-featured-card-arrow-button.right .portfolio-featured-card-arrow-svg {
    transform: rotate(0deg);
}

.portfolio-featured-card-arrow-button:hover {
    background-color: #dee6ff;
}

/* Outer container */
.portfolio-featured-card-img-container {
  flex: 1;
  background-color: #ffffff; /* keep white like your cards */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% - 90px); /* fill parent minus header */
  box-sizing: border-box;
  overflow: hidden; /* clips anything that goes outside */
  position: relative; 
}

/* Wrapper — no padding now */
.portfolio-featured-card-img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Image fills the entire container */
.portfolio-featured-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures it fills the space nicely */
  display: block;
}



.portfolio-featured-side-card {
  background-color: #ffffff;
  border: 2px solid #004094;
  display: flex;
  flex-direction: column;
  flex: 0 0 500px;
  justify-content: space-between;
  height: 700px;
  max-width: 500px;
}

/* === TOP CONTENT SECTION === */
.featured-side-card-top {
  padding: 50px;
}

.featured-side-card-title {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 36px;
  font-weight: 200;
  color: #000233;
  margin-bottom: 10px;
  line-height: 1.2;
}

.featured-side-card-location {
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #004094;
  margin-bottom: 30px;
}

.featured-side-card-copy {
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #000233;
  line-height: 1.6;
}

.featured-card-skills {
  display: flex;
  flex-direction: column;
}

.skill-row {
  border-top: 2px solid #004094;
  padding: 16px 30px;
}

.skill-row:first-child {
  background-color: #dee6ff;
}

.skill-title {
  font-family: 'Saira', Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #004094;
}

.skill-answer {
  font-family: 'Gotham', Arial, sans-serif;
  font-size: 16px;
  font-weight: 200;
  color: #6f6f6f;
  text-transform: none;
}




















/* VALUE SECTION */

.values-section {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  border-top: solid 2px #004094;
  border-bottom: solid 2px #004094;
  background-color: white;
  height: 400px;
}

.values-left {
  flex: 1 0 300px; /* fixed width for heading/arrow column */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 2px solid #004094;
  padding: 60px 90px;
  z-index: 2;
  background: white;
  height: 100%;
}

.values-heading {
  margin-bottom: 40px;
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 200;
  line-height: 50px;
}



/* VALUE ARROW STYLINGS */

.values-arrow-container {
  display: flex;
  flex-direction: row;
  width: 120px; 
  border: 2px solid #004094; 
  overflow: hidden; 
}

.values-arrow-button {
  flex: 1;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 1rem;
}

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

.values-arrow-button.down:hover {
  background-color: #dee6ff;
}


.values-arrow-button.down {
  border-left: solid 2px #004094;
}

.values-arrow-button + .values-arrow-button {
  background-color: transparent;
}

.values-arrow-svg {
  width: 20px;
  height: 40px;
  stroke: #004094;
  stroke-width: 10px;
}

.values-arrow-line {
  color: #004094;
  fill: none;
  stroke: #004094;
  stroke-width: 20px;
}

/* Rotate the up button's SVG */
.values-arrow-button.up .values-arrow-svg {
  transform: rotate(-180deg); /* left arrow → up */
}






.portfolio-arrow-svg {
  width: 20px;
  height: auto;
  stroke: #004094;
  fill: none;
  stroke-width: 20px;
}

.values-slider-wrapper {
  flex: 3;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.values-slider {
  display: flex;
  flex-direction: row;
  transition: transform 0.6s ease;
  height: 100%;
}

.value-card {
  background: white;
  border-right: 2px solid #004094;
  padding: 60px 40px;
  min-height: 200px;
  min-width: 350px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.value-card h3 {
  font-family: 'Saira', Arial, Helvetica, sans-serif;
  font-size: 30px;
  color: #000233;
  font-weight: 200;
  line-height: 30px;
  padding-bottom: 20px;
}

.value-card p {
  font-family: 'Gotham', Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 200;
  color: #004094;
}








/* WHY CHOOSE US SECTION */



.why-choose-us {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.wcu-top-spacer {
  height: 90px;
  width: 100%;
}

.wcu-bottom-spacer {
    height: 90px;
    width: 100%;
    border-top: 2px solid #004094;
}

.wcu-bottom-spacer {
    border-top: none;
    border-bottom: 2px solid #004094;
}

/* MAIN LAYOUT */
.wcu-main-wrapper {
    display: flex;
    width: 100%;
    border-top: solid 2px #004094;
    border-bottom: solid 2px #004094;
    height: 70vh;
    min-height: 650px;
}

/* LEFT SIDE */
.wcu-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    border-right: solid 2px #004094;
    background-color: #f0f0f0;
    min-width: 600px;
}

.wcu-left-inner-wrapper {
  padding: 90px;
}

.wcu-headline {
    font-family: "Saira", sans-serif;
    font-weight: 200;
    font-size: 40px;
    color: #000233;
    padding-bottom: 10px;
}

.wcu-intro-copy {
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Gotham',Arial, Helvetica, sans-serif;
    color: #383838;
    font-weight: 200;
    padding-bottom: 30px;
}

/* INFO BOX */
.wcu-info-box {
    border: 2px solid #004094;
    display: flex;
    flex-direction: column;
    background-color: white;
}

/* HEADER ROW */
.wcu-info-header {
    display: flex;
    align-items: stretch;
    width: 100%;
    height: 60px;
    border-bottom: 2px solid #004094;
}

/* ICON BOX */
.wcu-icon-box {
    width: 70px;
    background: #dee6ff; /* light blue */
    border-right: 2px solid #004094;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcu-icon-placeholder {
    width: 45px;
    height: 45px;
}

/* HEADER TITLE */
.wcu-info-title {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-size: 20px;
    font-family: 'Saira', Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: #000233;
}

/* BUTTONS */
.wcu-arrow-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.wcu-arrow-btn:hover {
  background-color: #dee6ff;
}

.wcu-arrow-svg {
  width: 24px;
  height: 24px;
}

.wcu-arrow-line {
  fill: none;
  stroke: #004094;
  stroke-width: 40px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Left arrow (default orientation) */
.wcu-arrow-left .wcu-arrow-svg {
  transform: rotate(180deg);
}

/* Right arrow */
.wcu-arrow-right .wcu-arrow-svg {
  transform: rotate(0deg);
}





.wcu-info-btns {
    display: flex;
}

.wcu-info-btns button {
    width: 70px;
    border: none;
    border-left: 2px solid #004094;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* BODY COPY INSIDE BOX */
.wcu-info-body {
    padding: 30px;
    font-size: 16px;
    line-height: 1.5;
    font-family: 'Gotham',Arial, Helvetica, sans-serif;
    font-weight: 200;
    color: #000233;
}

/* CTA BUTTON */
.wcu-cta {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #004094;
    text-decoration: none;
    background: white;
    position: relative;
    overflow: hidden;
    color: #004094;
    height: 50px;
    width: 170px;
}

.wcu-cta-text {
  font-family: 'Saira',Arial, Helvetica, sans-serif;
  color: #000233;
  font-weight: 300;
  padding: 12px 20px;
}

.wcu-cta-divider {
    width: 2px;
    height: 100%;
    background: #004094;
}

.wcu-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
}

.wcu-cta-arrow-svg {
  width: 18px;
  height: 18px;
  transform: rotate(0deg); /* adjust if needed */
}

.wcu-cta-arrow-line {
  fill: none;
  stroke: #004094;
  stroke-width: 40px;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.wcu-cta:hover {
    background: #dee6ff; /* animated right-to-left fill comes later */
}

/* RIGHT SIDE */
.wcu-right {
    width: 60%;
    display: flex;
    align-items: center;
    height: 100%;
}

.wcu-right-line {
    width: 10%;
    background: #004094;
    height: 2px;
}

.wcu-image-container {
  width: 80%;
  height: 80%;
  border: 2px solid #004094;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wcu-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* <-- fills both dims, crops if necessary */
  display: block;
}



@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 ;
  }
}
