:root {
    /* Colors from Figma */
    --color-primary: #09AAE1;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gray: #EAEAEA;
    --color-dark-gray: #575260;
    --color-overlay: rgba(6, 46, 55, 0.6);
    
    /* Layout */
    --container-width: 1440px;
    --container-padding: 20px;
    --header-height: 80px;
}


.input-error {
    border: 2px solid red !important;
}

.input-error::placeholder {
    color: red !important;
    opacity: 1 !important;
}

.newsletter--blue .newsletter__form input.input-error::placeholder {
    color: red;
    opacity: 1;
}

.error-message {
    color: red;
    font-size: 0.9em;
    margin: 5px 0 10px 0;
    display: none;
}

.map-container {
  position: relative;
  width: 100%;
  /* padding-bottom: 56.25%; */
  height: 500px;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
      filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

/* body {
  overflow-x: hidden;
}
* {
  outline: 1px solid red;
}

@media (max-width: 968px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
} */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hide mobile-specific elements by default */
.nav__mobile-logo,
.nav__toggle {
    display: none;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Forma DJR Micro", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    color: var(--color-black);
    background-color: var(--color-white);
}

img {
    /* max-width: 100%;
    height: auto; */
    display: block;
}

.container {
    max-width: var(--container-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
    width: 100%;
}

/* Header & Navigation */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-color, box-shadow, position;
    padding: 0px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #FFF;
}

.header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #575260;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.nav__logo {
    /* height: 32px;
    flex-shrink: 0;
    margin-right: 80px; */
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 100px;
    padding-left: 25px;
}

.nav__logo-img {
    height: 35px;
    width: 180px;
    /* filter: brightness(0) invert(1);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: filter; */
}

/* Default state: show default logo, hide sticky */
.default-logo {
  display: block;
}
.sticky-logo {
  display: none;
}

/* When header is scrolled */
.header.scrolled .default-logo {
  display: none;
}
.header.scrolled .sticky-logo {
  display: block;
}

.header.scrolled .nav__logo-img {
    filter: none;
}

.nav__menu-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav__link {
    color: var(--color-white);
    text-decoration: none;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 8px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav__link:hover::after {
    transform: scaleX(1);
}

.header.scrolled .nav__link {
    color: var(--color-black);
}

.nav__link:hover {
    color: var(--color-primary);
}
.header.scrolled .nav__auth {
border-left: 1px solid #575260;
}
.nav__auth {
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 40px;
    border-left: 1px solid #FFF;
    padding: 0 50px;

    /* Force it to fill full height */
    align-self: stretch;
}
.nav__auth_mobile {
  display: none;
}
.nav__logo_mobile {
  display: none;
}

/* On screens 968px and smaller, switch visibility */
@media (max-width: 968px) {
  .nav__auth {
    display: none;
  }
  .nav__logo {
    display: none;
  }

  .nav__auth_mobile {
    display: flex;
    justify-content: center;
    /* align-items: center; */
        width: 100%;
        margin: 0;
  }
  .nav__logo_mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.btn-login {
    /* padding: 12px 24px; */
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    border: none;
    /* background: rgba(255, 255, 255, 0.1);
    will-change: background-color, color; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header.scrolled .btn-login {
    color: var(--color-black);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .btn-login:hover {
    background: #e0e0e0;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: background-color;
}

.header.scrolled .nav__toggle span {
    background-color: var(--color-black)!important;
}
.header.scrolled .nav__toggle.active span {
    background-color: var(--color-white) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    width: 100%;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 3;
    padding-top: 312px;
    padding-left: 86px;
}

.hero__title {
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--color-white);
    max-width: 744px;
    margin: 0 0 24px 0;
}

.hero__text {
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.05em;
    color: #EAEAEA;
    width: 600px;
    height: 66px;
    margin: 0;
    margin-top: 13px;
}

/* Ocean Freight Hero (smaller variant) */
.hero--small {
    height: 395px;
    min-height: 395px;
    max-height: 395px;
}
.hero--small video {
  display: block;
  margin: 0;
  padding: 0;
}
.hero--small .hero__bg,
.hero--small .hero__overlay {
    height: 100%;
}
.hero--small .hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero--small .hero__content {
    display: block;
    position: absolute;
    top: 162px;
    left: 108px;
    padding: 0;
    height: auto;
    width: auto;
}
.hero--small .hero__title {
    font-size: 3rem;
    line-height: 1.1;
    /* width: 744px; */
    margin: 0 0 24px 0;
    /* max-width: 744px; */
    color: var(--color-white);
    /* padding-left: 27px; */
    z-index: 2;
}

/* Service Overview Section */
.service-overview {
    padding: 60px 0;
    background: #fff;
}
.service-overview__grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.service-overview__image {
    flex: 1 1 400px;
    min-width: 320px;
    max-width: 520px;
}
.service-overview__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.service-overview__info {
    flex: 1 1 340px;
    min-width: 300px;
}
.service-overview__title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.2;
}
.service-overview__desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #222;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #D9D9D9
}
.section-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 40px 0;
}

@media (max-width: 968px) {
    .service-overview__grid {
        flex-direction: column;
        gap: 32px;
    }
    .service-overview__image,
    .service-overview__info {
        max-width: 100%;
        min-width: 0;
        flex: 1 1 100%;
        padding: 0px 20px;
    }
    .hero--small {
        height: 240px;
        min-height: 240px;
        /* max-height: 240px; */
    }
    .hero--small .hero__content {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        padding: 0 20px;
    }
    .hero--small .hero__title {
        /* width: 100%; */
        max-width: 100%;
        font-size: 2rem;
        height: auto;
        margin-left: 14px;
    }
    .service-overview .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #0789b8;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--color-white);
}

.services__header {
    margin-bottom: 64px;
    padding-left: 86px;
}

.services__label {
    display: block;
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 10px;
    font-weight: 400;
    color: #575260;
    margin-bottom: 16px;
    line-height: normal;
    letter-spacing: 0.5px;
}

.services__title {
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    color: var(--color-black);
    width: 744px;
    height: 129px;
    margin: 0;
}

.services__tabs {
    display: flex;
    gap: 91px;
    margin-bottom: 64px;
    margin-left: 86px;
    margin-right: 86px;
    border-bottom: 1px solid #E8E8E8;
}

.services__content {
    padding-left: 86px;
}

.service-panel__grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 64px;
    align-items: flex-start;
}

.service-panel__image {
    width: 600px;
    height: 400px;
    overflow: hidden;
}

.service-panel__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-panel__info {
    padding-top: 32px;
    max-width: 510px;
}

.service-panel__info h3 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.service-panel__info p {
color: #7B7585;
/* font-family: "Neue Haas Grotesk Display Pro"; */
font-size: 14px;
font-style: normal;
font-weight: 450;
line-height: 22px; /* 157.143% */
letter-spacing: 0.7px;
padding-bottom: 2rem;
margin-bottom: 2rem;
border-bottom: 1px solid #D9D9D9;
}

.btn-outline {
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    background: transparent;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.arrow {
    transition: transform 0.3s ease;
}

.btn-outline:hover .arrow {
    transform: translateX(5px);
}

/* Industries Section */
.industries {
    background-color: var(--color-primary);
    padding: 80px 0;
    color: var(--color-white);
    height: 525px;
    display: flex;
    align-items: center;
}

.industries__header {
    padding-left: 86px;
    margin-bottom: 48px;
}

.industries__label {
    display: block;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.industries__title {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 36px;
    line-height: normal;
    font-weight: 500;
    margin: 0;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    padding-left: 86px;
    padding-right: 86px;
}

.industry-card {
    text-align: left;
}

.industry-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

.industry-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.industry-card h3 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--color-white);
    line-height: normal;
    letter-spacing: 0.8px;
}

.industry-card p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Partner Section */
.partner {
    position: relative;
    padding: 120px 0;
    color: var(--color-white);
    overflow: hidden;
    min-height: 800px;
}

.partner .container {
    max-width: var(--container-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

.partner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
}

.partner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.partner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: -1;
}

.partner__header {
    padding-left: 86px;
    margin-bottom: 248px;
}

.partner__title {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 64px;
    line-height: normal;
    font-weight: 500;
    max-width: 700px;
    margin: 0;
}

.partner__title .highlight {
    color: var(--color-primary);
}

.partner__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-left: 86px;
    margin-right: 86px;
    /* width: 1052px; */
    height: 355px;
}

.partner-card {
    padding: 40px 0;
    /* width: 280px; */
}

.partner-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.partner-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

.partner-card h3 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--color-white);
    line-height: normal;
    letter-spacing: 2.4px;
}

.partner-card p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
}

.partner__dots {
    display: none;
}

.partner__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.partner__dot.active {
    background: var(--color-white);
}

/* Global Reach Section */
.global-reach {
    width: 100%;
    height: 1125px;
    position: relative;
    padding: 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.global-reach__content {
    position: relative;
    text-align: center;
    padding-top: 100px;
    margin-bottom: 22px;
    height: 100%;
    z-index: 2;
}

.global-reach__map-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.global-reach__map {
    width: 100%;
    height: 100%;
}

.global-reach__map img {
    /* width: 100%;
    height: 100%; */
    object-fit: cover;
}
@media (max-width: 768px) {
  .global-reach__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.global-reach__title {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 16px;
    color: var(--color-black);
    position: relative;
}

.global-reach__subtitle {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    color: #7B7585;
    max-width: 715px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    margin: 0 auto;
    position: relative;
}

.global-reach__locations {
    position: absolute;
    top: 415px;
    left: 650px;
    display: flex;
    gap: 36px;
    z-index: 2;
}

.location-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-group--west {
    width: 158px;
}

.location-group--center {
    width: 181px;
}

.location-group--east {
    width: 272px;
}

.location {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.location h3 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--color-black);
    margin: 0;
}

.location p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    color: #7B7585;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    margin: 0;
}

/* About Section */
.about {
    background-color: #EAEAEA;
    padding: 80px 0;
    min-height: 525px;
    display: flex;
    align-items: center;
}

.about__label {
    display: block;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.5px;
    color: #7B7585;
    margin-bottom: 16px;
    padding-left: 86px;
}

.about__title {
    font-family: "Forma DJR Micro", sans-serif;
    color: #575260;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 64px;
    padding-left: 86px;
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-left: 86px;
    padding-right: 86px;
}

.about-card {
    padding: 20px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: 1px solid black;
}

.about-card:hover {
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    /* border: none; */

}
.about-card__icon img {
  transition: filter 0.3s ease;
}

.about-card:hover .about-card__icon img {
  filter: brightness(0) invert(1); /* turns black to white */
}

.about-card h3 {
    font-family: "Forma DJR Micro", sans-serif;
    color: #575260;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    transition: color 0.3s ease;
    padding-bottom: 10px;
}

.about-card p {
    font-family: "Forma DJR Micro", sans-serif;
    transition: color 0.3s ease;
    color: #575260;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;

}

.about-card:hover h3,
.about-card:hover p {
    color: var(--color-white);
}

.about-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.about-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card {
  background: transparent;
  color: white;
  transition: background 0.3s ease, color 0.3s ease;
}

.feature-card__icon img {
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.feature-card:hover {
  background: white;
  color: #575260;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #575260;
}

.feature-card:hover .feature-card__icon img {
  filter: none;
}


/* Video Section */
.video {
    width: 100%;
    height: 900px;
    overflow: hidden;
}

.video__placeholder {
    position: relative;
    width: 100%;
    height: 100%;
}

.video__placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.video__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent var(--color-white);
    margin-left: 4px;
}

/* Client Portal Section */
.client-portal {
    background-color: var(--color-primary);
    padding: 80px 0;
    color: var(--color-white);
    min-height: 603px;
}

.client-portal__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    padding-left: 86px;
    padding-right: 86px;
}

.client-portal__content {
    max-width: 620px;
}

.client-portal__content h2 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 400;
}

.client-portal__content p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.9;
}

.client-portal__cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 2px solid var(--color-white);
    border-radius: 4px;
    color: var(--color-white);
    text-decoration: none;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    gap: 8px;
}

.client-portal__cta:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.client-portal__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    padding-left: 86px;
    padding-right: 86px;
}

.feature-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card h3 {
    font-family: "Forma DJR Micro", sans-serif;
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.4px;
    margin-bottom: 16px;
    height: 55px;
}
@media (max-width: 768px) {
    .feature-card h3 {
        height: unset;
    }
}

.feature-card p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* News Section */
.news {
    padding: 120px 0;
    background-color: var(--color-white);
    position: relative;
}

.news__header {
    text-align: center;
    margin-bottom: 64px;
    padding-left: 106px;
    padding-right: 106px;
}

.news__header h2 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-weight: 400;
    color: var(--color-black);
}

.latest-news-title {
    color: #000;
text-align: center;
font-size: 36px;
font-style: normal;
font-weight: 500;
line-height: normal;
text-decoration: none;

}

.news__header p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    color: var(--color-dark-gray);
    max-width: 620px;
    margin: 0 auto;
}

.news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-left: 86px;
    padding-right: 86px;
}

/* Slideshow Navigation */
.news__nav {
    display: none;
}

.news__dots {
    display: none;
}

.news-card {
    background: var(--color-white);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    /* border: 1px solid #E8E8E8; */
}

.news-card:hover {
    transform: translateY(-8px);
}

.news-card__image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-primary);
}

.news-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 99.99%;
    height: 99.99%;
    background: rgba(9, 170, 225, 0.40);
    z-index: 1;
}

.news-card__image img {
    position: contain;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: white;
}

.news-card:hover .news-card__image img {
    transform: scale(1.05);
}

.news-card__date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* background: var(--color-white); */
    color: var(--color-white);
    /* padding: 8px 16px;
    border-radius: 4px; */
    /* text-align: center; */
    font-family: "Forma DJR Micro", sans-serif;
    /* font-size: 28px; */
    line-height: 1;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    z-index: 2;
}

.date-number {
  font-size: 20px; /* or whatever size you prefer */
  font-weight: bold;
}

.date-month {
  font-size: 14px; /* standard size for the month */
}

@media (max-width: 768px) {
  .news-card__date {
    font-size: 20px;
  }
}

.news-card__content {
    padding: 32px 0;
}

.news-card__content h3 {
    font-family: "Forma DJR Micro", sans-serif;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    margin-bottom: 20px;
    /* height: 50px; */
}

.news-card__content p {
    font-family: "Forma DJR Micro", sans-serif;
    color: #7B7585;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    margin-bottom: 24px;
    /* height: 100px; */
}

.news-card__link {
    color: #000;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 183.333% */
    letter-spacing: 0.6px;
}
.news-card__link {
  position: relative;
  display: inline-block;
  text-decoration: none; /* removes default underline */
}

.news-card__link::after {
  content: '';
  position: absolute;
  left: -4px;                /* moves underline a bit to the left */
  bottom: -10px;              /* adds space below the text */
  width: calc(100% + 10px);   /* stretches underline wider than text */
  height: 2px;
  background-color: currentColor;
}

.news-card__link:hover {
    color: #0789b8;
}

.news-card__link::after {

    transition: transform 0.3s ease;
}

.news-card__link:hover::after {
    transform: translateX(4px);
}


/* Newsletter Section */
.newsletter {
    padding: 120px 0;
    /* background: #09AAE1; */
}

.newsletter__grid {
    display: grid;
    grid-template-columns: 1fr 645px;
    gap: 45px;
    align-items: center;
    padding-left: 86px;
    padding-right: 86px;
    justify-content: end;
}

.newsletter__content {
    justify-self: end;
}

.newsletter__content h2 {
    color: #000;
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 3.6px;
    margin-bottom: 10px;
}

.newsletter__content p {
    color: #7B7585;
    font-size: 14px;
    font-style: normal;
    font-weight: 450;
    line-height: 22px; /* 157.143% */
    letter-spacing: 0.7px;
    width: 536px;
    height: 44px;
}

.newsletter__form {
    width: 645px;
    height: 80px;
    border: 1px solid #000000;
    padding: 1px;
    border-radius: 4px;
    justify-self: end;
}

.form-group {
    display: flex;
    /* gap: 16px; */
    width: 100%;
    height: 100%;
}

.form-group input {
    flex: 1;
    height: 100%;
    padding: 0 24px;
    border: none;
    border-radius: 4px;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    color: #000000;
    background: transparent;
}

.form-group input::placeholder {
    color: #000000;
    opacity: 1;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-group button {
    height: 100%;
    padding: 0 32px;
    background: transparent;
    color: #000000;
    border: none;
    border-radius: 0;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-left: 1px solid #fff;
}

.form-group button:hover {
    background: #fff;
    color: #09AAE1;
}

/* Footer */
.footer {
    background-color: #575260;
    color: var(--color-white);
    padding: 80px 0 0;
    border-bottom: 6px solid #09AAE1;
}

.footer__main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 80px;
    border-bottom: 1px solid #D9D9D9;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 86px;
}
@media (max-width: 768px) {
  .footer__brand {
    margin-left: 0;
  }
  .footer__links {
    margin-left: 0!important;
  }
}

.footer__logo {
    width: 240px;
    height: auto;
}

.footer__tagline {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

.highlight-blue {
    color: #09AAE1;
}

.highlight-white {
    color: var(--color-white);
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    padding: 16px 30px;
    border: 1px solid var(--color-white);
    border-radius: 4px;
    color: var(--color-white);
    text-decoration: none;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    gap: 8px;
    width: fit-content;
    transition: all 0.3s ease;
}

.footer__cta:hover {
    background-color: var(--color-white);
    color: #575260;
}

.footer__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-left: 120px;
}

.footer__column h3 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-white);
    /* text-align: right; */
}

.footer__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* text-align: right; */
}
@media (max-width: 768px) {
  .footer__column h3,
  .footer__column ul {
    text-align: left;
  }
}

.footer__column ul li {
    margin-bottom: 16px;
}

.footer__column ul li:last-child {
    margin-bottom: 0;
}

.footer__column ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer__column ul a:hover {
    color: var(--color-white);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 86px;
}

.footer__bottom p {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__legal {
    display: flex;
    gap: 32px;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__legal a:hover {
    color: var(--color-white);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .nav__menu-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #09AAE1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 90;
        padding: 20px 0;
    }

    .nav__menu-wrapper.active {
        left: 0;
    }

    .nav__mobile-logo {
        display: block;
        width: 100%;
        height: auto;
        /* padding: 0 33px; */
        margin-bottom: 15px;
    }

    .nav__mobile-logo img {
        width: auto;
        height: auto;
        margin-left: 20px;
        /* margin-top: 10px; */
        /* filter: brightness(0) invert(1); */
    }
/* Mobile Menu Border After Logo */
    .nav__menu-wrapper::after {
        content: '';
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        height: 1px;
        background: white;
    }

    .nav__menu {
        flex-direction: column;
        align-items: flex-end;
        gap: 46px;
        padding: 50px 33px 46px;
        width: 100%;
        margin: 0;
    }

    .nav__menu-wrapper .nav__menu .nav__link,
    .header .nav__menu-wrapper .nav__menu .nav__link,
    .header.scrolled .nav__menu-wrapper .nav__menu .nav__link {
        color: var(--color-white) !important;
        font-family: "Forma DJR Micro", sans-serif;
        font-weight: 700;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0;
        padding: 0;
        text-align: right;
        width: 100%;
        justify-content: flex-end;
    }

    .nav__menu-wrapper .nav__menu .nav__link:hover {
        color: var(--color-white) !important;
    }

    /* Remove hover effect for mobile */
    .nav__menu-wrapper .nav__menu .nav__link::after,
    .nav__menu-wrapper .nav__menu .nav__link:hover::after {
        display: none;
    }

    .nav__menu-wrapper .nav__auth {
        width: 100%;
        padding: 0 33px;
        margin: 0;
        margin-top: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav__menu-wrapper .btn-login,
    .header.scrolled .nav__menu-wrapper .btn-login,
    .nav__menu-wrapper .btn-login:hover {
        color: var(--color-white) !important;
        background: transparent !important;
        background-color: transparent !important;
        border: 1px solid var(--color-white);
        width: 267px;
        height: 80px;
        padding: 10px;
        font-size: 16px;
        /* width: 50%; */
        max-width: 343px;
        font-family: "Forma DJR Micro", sans-serif;
        font-weight: 400;
        text-align: center;
        border-radius: 4px;
    }

    .nav__menu-wrapper .btn-login:hover {
        opacity: 0.8;
    }

    .nav__toggle {
        display: block;
        width: 30px;
        /* height: 30px; */
        position: relative;
        z-index: 100;
        border: none;
        background: none;
        padding: 0;
        cursor: pointer;
        top: -4px;
    }

    .nav__toggle span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: var(--color-white);
        margin: 7px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, opacity;
        color: white;
    }

    .header.scrolled .nav__toggle span {
        background-color: var(--color-white);
    }

    .nav__toggle.active {
        position: fixed;
        top: 19px;
        right: 40px;
        z-index: 91;
    }

    .nav__toggle.active span {
        background-color: var(--color-white);
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        height: 100vh;
        min-height: auto;
    }

    .hero__content {
        padding: 0;
        max-width: 100%;
        position: relative;
    }

    .hero__title {
        position: absolute;
        top: 245px;
        left: 13px;
        width: 300px;
        height: 192px;
        font-size: 48px;
        line-height: 1.1;
        margin: 0;
    }

    .hero__text {
        position: absolute;
        left: 13px;
        top: 485px;
        font-size: 14px;
        line-height: 22px;
        width: 286px;
        margin: 0;
        opacity: 0.8;
        color: var(--color-white);
    }

    .services {
        padding: 4rem 0;
    }

    .services__title {
        font-size: 2rem;
    }

    .services__header {
        padding-left: 0;
        margin-bottom: 40px;
    }

    .services__label {
        /* padding-left: 13px; */
        padding-right: 13px;
        margin-bottom: 16px;
    }

    .services__title {
        width: auto;
        height: auto;
        font-size: 28px;
        padding-left: 13px;
        padding-right: 13px;
    }

    .services__tabs {
        padding-left: 13px;
        padding-right: 13px;
        gap: 32px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        white-space: nowrap;
        padding-bottom: 1px; /* Ensure the bottom border is visible */
    }

    .services__tabs::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .services__content {
        padding-left: 13px;
        padding-right: 13px;
    }

    .service-panel__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-panel__image {
        width: 100%;
        height: auto;
        aspect-ratio: 3/2;
    }

    .service-panel__info {
        padding-top: 0;
        max-width: 100%;
    }

    .tab-btn {
        padding: 12px 0;
        font-size: 14px;
    }

    .industries {
        height: auto;
        padding: 64px 0;
    }

    .industries__header {
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }

    .industries__title {
        font-size: 36px;
    }
    
    .industries__grid {
        grid-template-columns: 1fr;
        gap: 64px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .industry-card {
        text-align: left;
    }

    .industry-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 24px;
    }

    .industry-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .industry-card p {
        font-size: 16px;
        line-height: 1.5;
        max-width: 335px;
    }
    .partner__overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .partner {
        padding: 64px 0;
    }

    .partner__header {
        padding-left: 20px;
    }

    .partner__title {
        font-size: 36px;
        line-height: 1.2;
    }

    .partner__grid {
        margin-left: 20px;
        margin-right: 20px;
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 16px;
        width: auto;
        height: auto;
    }

    .partner__grid::-webkit-scrollbar {
        display: none;
    }

    .partner-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100%;
        padding: 0;
    }

    .partner__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        padding: 0 20px;
    }

    .global-reach {
        padding: 80px 0;
    }

    .global-reach__title {
        padding: 0 50px;
    }

    .global-reach__subtitle {
        font-size: 14px;
        padding: 0 20px;
    }

    .global-reach__content {
        margin-bottom: 40px;
    }

    .global-reach__locations {
        position: static;
        margin-top: 40px;
    }

    .location-group {
        position: static;
        transform: none;
        margin-bottom: 32px;
    }

    .location-group:last-child {
        margin-bottom: 0;
    }

    /* .location {
        text-align: center;
    } */

    .about {
        padding: 60px 0;
    }

    .about__label {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about__title {
        font-size: 36px;
        margin-bottom: 40px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-card {
        padding: 32px;
        text-align: left;
    }

    .about-card__icon {
        margin: 0 0 24px 0;
    }

    .about-card h3 {
        text-align: left;
        margin-bottom: 16px;
    }

    .about-card p {
        text-align: left;
    }

    .video {
        height: 56.25vw; /* 16:9 aspect ratio */
    }

    .video__play {
        width: 60px;
        height: 60px;
    }

    .play-icon {
        border-width: 10px 0 10px 16px;
    }

    .client-portal {
        padding: 60px 0;
    }

    .client-portal__header {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 48px;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .client-portal__content {
        max-width: 100%;
    }

    .client-portal__content h2 {
        font-size: 36px;
        text-align: left;
    }

    .client-portal__content p {
        font-size: 18px;
        text-align: left;
    }

    .client-portal__cta {
        align-self: flex-start;
    }

    .client-portal__features {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .feature-card {
        text-align: left;
        padding: 32px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature-card__icon {
        margin: 0 0 24px 0;
    }

    .feature-card h3 {
        text-align: left;
    }

    .feature-card p {
        text-align: left;
    }

    .news {
        padding: 60px 0;
        overflow: hidden;
    }

    .news__header {
        /* text-align: left; */
        padding-left: 20px;
        padding-right: 20px;
        margin-bottom: 40px;
    }
    @media (max-width: 768px) {
  .news__header h2 {
    font-size: 36px;
  }
  .news__header p {
    font-size: 16px;
  }
}

    .news__grid {
        display: flex;
        padding-left: 0px;
        padding-right: 0px;
        margin-left: 13px;
        margin-right: 13px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        gap: 16px;
    }

    .news__grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

    .news-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        width: 100%;
        margin-right: 0;
    }

    .news__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
        padding: 0 20px;
    }

    .news__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #E0E0E0;
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .news__dot.active {
        background: var(--color-primary);
    }

    .newsletter {
        padding: 60px 0;
    }

    .newsletter__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .newsletter__content {
        justify-self: start;
        text-align: left;
    }

    .newsletter__content h2 {
        font-size: 36px;
        margin-bottom: 16px;
        text-align: left;
    }

    .newsletter__content p {
        width: 100%;
        max-width: 536px;
        margin: 0;
        text-align: left;
    }

    .newsletter__form {
        width: 100%;
        max-width: 645px;
        margin: 0;
        height: auto;
        margin-top: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: row;
        gap: 16px;
        width: 100%;
    }

    .form-group input {
        flex: 1;
        min-width: 0; /* Prevents flex item from overflowing */
    }

    .form-group button {
        width: auto;
        white-space: nowrap;
        padding: 0 32px;
    }

    .footer {
        padding: 60px 0 0;
    }

    .footer__main {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer__brand {
        align-items: flex-start;
        text-align: left;
    }

    .footer__logo {
        width: 240px;
    }

    .footer__tagline {
        text-align: left;
        font-size: 16px;
    }

    .footer__cta {
        text-align: left;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }

    .footer__column {
        text-align: left;
        margin-bottom: 50px;

    }

    .footer__column h3 {
        margin-bottom: 50px;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        text-align: left;
        padding: 32px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__legal {
        flex-direction: row;
        gap: 70px;
    }
}

@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .footer__bottom p {
    display: flex;
    flex-wrap: wrap;
    gap: 46px; /* space between the two spans */
    font-size: 10px;
}
}


@media screen and (max-width: 480px) {
    .services__tabs {
        gap: 24px;
    }

    .services__title {
        font-size: 24px;
    }

    .industries {
        padding: 48px 0;
    }

    .industries__header {
        margin-bottom: 32px;
    }

    .industries__title {
        font-size: 28px;
    }

    .industries__grid {
        gap: 48px;
    }

    .newsletter {
        padding: 40px 0;
    }

    .newsletter__grid {
        gap: 24px;
        padding-left: 16px;
        padding-right: 5px;
    }

    .form-group {
        gap: 8px;
    }

    .form-group button {
        padding: 0 24px;
    }
}

.tab-btn {
    padding: 16px 0;
    border: none;
    background: none;
    color: #000;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-btn.active {
    color: var(--color-primary);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.service-panel {
    display: none;
}

.service-panel.active {
    display: block;
}

.service-panel__header {
    display: none;
}

.service-panel__info h3 {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 36px;
    margin-bottom: 24px;
    font-style: normal;
    font-weight: 500;
    color: var(--color-black);
}

.key-benefits .client-portal__content-title {
    font-size: 36px;
}

@media screen and (max-width: 968px) {
    .services__tabs {
        display: none;
    }

    /* .services__content {
        padding-left: 33px;
        padding-right: 33px;
    } */

    .service-panel {
        display: block;
        border-bottom: none;
    }

    .service-panel + .service-panel {
        border-top: 1px solid #E8E8E8;
    }
    .service-panel:last-child {
    border-bottom: 1px solid #E8E8E8;
}

    .service-panel__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 24px 0;
        cursor: pointer;
    }

    .service-panel__title {
        font-family: 'Forma DJR Micro', sans-serif;
        font-size: 16px;
        color: #575260;
        margin: 0;
        position: relative;
        padding: 8px 0;
    }

    .service-panel__title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-panel__toggle {
        width: 24px;
        height: 24px;
        position: relative;
        transition: transform 0.3s ease;
    }

    .service-panel.active .service-panel__toggle i {
  display: none;
}

    /* .service-panel__toggle::before,
    .service-panel__toggle::after {
        content: '';
        position: absolute;
        background-color: #575260;
        transition: transform 0.3s ease;
    } */

    .service-panel__toggle::before {
        width: 2px;
        height: 12px;
        top: 6px;
        left: 11px;
    }

    .service-panel__toggle::after {
        width: 12px;
        height: 2px;
        top: 11px;
        left: 6px;
    }

    .service-panel__header:hover .service-panel__title {
        color: var(--color-primary);
    }

    .service-panel__header:hover .service-panel__title::after {
        transform: scaleX(1);
    }

    .service-panel.active .service-panel__title {
        color: var(--color-primary);
    }

    .service-panel.active .service-panel__title::after {
        transform: scaleX(1);
    }

    .service-panel.active .service-panel__toggle::before {
        transform: scaleY(0);
    }

    .service-panel__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .service-panel.active .service-panel__content {
        max-height: 1000px;
    }

    .service-panel__grid {
        padding: 0 0 24px 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .service-panel__image {
        width: 100%;
        aspect-ratio: 3/2;
        overflow: hidden;
    }

    .service-panel__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .service-panel__info {
        padding: 0;
    }

    .service-panel__info h3 {
        display: none;
    }

    .service-panel__info p {
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 22px;
        color: #575260;
    }
}

.industries--white-bg {
  background: #fff;
  color: var(--color-black);
}
.industries--white-bg .industries__title,
.industries--white-bg .industries__label,
.industries--white-bg .industry-card h3 {
  color: var(--color-black);
}
.industries--white-bg .industry-card p {
  color: #575260;
}
.industries--white-bg .industry-card__icon img {
  filter: none;
}

.hero__title-italic {
    font-style: italic;
}

.about-highlights {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 100px 0;
}
.about-highlights__label {
    display: block;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: 16px;
    text-align: left;
}
.about-highlights__title {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 64px;
    text-align: left;
}
.about-highlights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.about-highlight-card {
    border: 2px solid var(--color-white);
    border-radius: 8px;
    padding: 48px 32px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.about-highlight-card__icon {
    margin-bottom: 32px;
}
.about-highlight-card__icon img {
    width: 56px;
    height: 56px;
}
.about-highlight-card__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
    color: var(--color-white);
    text-align: left;
}
.about-highlight-card__desc {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.9;
    text-align: left;
}
@media (max-width: 968px) {
    .about-highlights__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-highlights__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .about-highlight-card {
        padding: 32px 16px;
    }
}

/* Align Service Overview with Industries section */
.service-overview .container {
    padding-left: 106px;
    padding-right: 106px;
}

.key-benefits-section {
    background: #09AAE1;
    color: #fff;
    padding: 80px 0 100px 0;
}
.client-portal__header--spaced {
    margin-bottom: 48px;
}
.services__label--white {
    color: #fff;
    opacity: 0.7;
}

/* Contact Section */
.contact-section {
    background: var(--color-white);
    color: var(--color-black);
    padding: 80px 0 60px 0;
    margin-bottom: 100px;
}
.contact-section__container {
    display: flex;
    gap: 48px;
    padding-left: 106px;
    padding-right: 106px;
    margin: 0 auto;
    align-items: flex-start;
}
.contact-section__info {
    flex: 1 1 40%;
    min-width: 320px;
    max-width: 480px;
    padding-right: 32px;
}
.contact-section__title {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--color-black);
    font-family: 'Forma DJR Micro', sans-serif;
}
.contact-section__desc {
    color: #7B7585;
    font-size: 14px;
    margin-bottom: 32px;
    line-height: 1.5;
}
.contact-section__phone-row {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 24px;
}
.contact-section__icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    /* filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(749%) hue-rotate(162deg) brightness(99%) contrast(101%); */
}
.contact-section__phone-main {
    font-size: 32px;
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 2px;
    font-family: 'Forma DJR Micro', sans-serif;
    text-decoration: none;
}
.contact-section__row {
    display: flex;
    gap: 48px;
    margin-bottom: 0;
    margin-top: 16px;
}
.contact-section__label {
    color: #7B7585;
    font-size: 1rem;
    font-weight: 400;
    min-width: 60px;
}

.contact-email-title{
    color: #7B7585;
font-family: "Forma DJR Micro", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 22px; /* 157.143% */
letter-spacing: 0.7px;
}

.contact-section__value {
    color: #575260;
    font-size: 1.1rem;
    font-weight: 500;
    /* font-family: 'Forma DJR Micro', sans-serif; */
    margin-top: 4px;
    line-height: 1.5;
    letter-spacing: 0.8px;
}
.contact-section__row--address {
    margin-top: 32px;
}
.contact-section__address {
    color: #575260;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.5;
    letter-spacing: 0.8px;
}

/* Contact Form */
.contact-section__form {
    flex: 1 1 60%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-section__form-row {
    display: flex;
    gap: 24px;
}
.contact-section__form-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    margin-bottom: 0;
}
.contact-section__form-group label {
    color: #7B7585;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.8px;
    font-family: 'Forma DJR Micro', sans-serif;
}
.contact-section__form-group input,
.contact-section__form-group textarea {
    background: transparent;
    border: 1px solid #D9D9D9;
    color: var(--color-white);
    font-size: 1.25rem;
    font-family: 'Forma DJR Micro', sans-serif;
    padding: 18px 20px;
    border-radius: 0;
    outline: none;
    margin-bottom: 0;
    transition: border-color 0.2s;
}
.contact-section__form-group input:focus,
.contact-section__form-group textarea:focus {
    border-color: var(--color-primary);
}
.contact-section__form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.contact-section__submit {
    align-self: flex-end;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-size: 1.25rem;
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 400;
    padding: 22px 32px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-section__submit::after {
    content: '→';
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-left: 12px;
    transition: margin-left 0.2s;
}
.contact-section__submit:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.contact-section__submit:hover::after {
    color: var(--color-white);
    margin-left: 18px;
}

@media (max-width: 968px) {
    .contact-section__container {
        flex-direction: column;
        gap: 40px;
        padding-left: 34px;
        padding-right: 34px;
    }
    .contact-section__info, .contact-section__form {
        max-width: 100%;
        padding-right: 0;
    }
    .contact-section__form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Floating Label Styles for Contact Form */
.contact-section__form-group.floating-label {
    position: relative;
    margin-bottom: 0;
}
.contact-section__form-group.floating-label input,
.contact-section__form-group.floating-label textarea {
    padding: 30px 20px 30px 20px;
    font-size: 16px;
    background: transparent;
    border: 1px solid #D9D9D9;
    color: var(--color-black);
}
.contact-section__form-group.floating-label label {
    position: absolute;
    left: 20px;
    top: 30px;
    color: #7B7585;
    font-size: 16px;
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 500;
    pointer-events: none;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.8px;
}
.contact-section__form-group.floating-label input:focus + label,
.contact-section__form-group.floating-label input:not(:placeholder-shown) + label,
.contact-section__form-group.floating-label textarea:focus + label,
.contact-section__form-group.floating-label textarea:not(:placeholder-shown) + label {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}
.contact-section__form-group.floating-label input,
.contact-section__form-group.floating-label textarea {
    /* Hide default placeholder */
    caret-color: var(--color-primary);
}
.contact-section__form-group.floating-label input:placeholder-shown + label,
.contact-section__form-group.floating-label textarea:placeholder-shown + label {
    color: #7B7585;
}
.contact-section__form-group.floating-label input:focus,
.contact-section__form-group.floating-label textarea:focus {
    border-color: var(--color-primary);
}

/* Contact FAQ Section */
.contact-faq {
    background: var(--color-white);
    color: var(--color-black);
    padding: 0;
    margin-bottom: 100px;
}
.contact-faq__container {
    display: flex;
    align-items: stretch;
    min-height: 400px;
    /* max-width: 1200px; */
    width: 100%;
    margin: 0 auto;
    padding-left: 86px;
    padding-right: 6px;
}
.contact-faq__image {
    flex: 0 0 600px;
    width: 600px;
    height: 400px;
    max-width: 600px;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}
.contact-faq__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-faq__content {
    flex: 1 1 0;
    min-width: 0;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 80px 80px 60px;
    background: var(--color-white);
    color: var(--color-black);
}
.faq-item {
    border-bottom: 1px solid #E0E0E0;
    padding: 32px 0 0 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    background: none;
    border: none;
    color: #575260;
    /* font-family: 'Forma DJR Micro', sans-serif; */
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
    margin-bottom: 16px;
}
.faq-item.active .faq-question,
.faq-question[aria-expanded="true"] {
    color: var(--color-primary);
}
.faq-answer {
    color: #7B7585;
    font-size: 14px;
    /* font-family: 'Forma DJR Micro', sans-serif; */
    margin-bottom: 16px;
    max-height: 500px;
    opacity: 1;
    transition: max-height 0.3s, opacity 0.3s;
}
.faq-item:not(.active) .faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
}
.faq-question::after {
    content: '\2303';
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-left: 16px;
    transition: transform 0.3s;
    transform: rotate(180deg);
}
.faq-item.active .faq-question::after,
.faq-question[aria-expanded="true"]::after {
    display: none;
}
@media (max-width: 968px) {
    .contact-faq__container {
        flex-direction: column;
        min-height: unset;
        padding-left: 14px;
        padding-right: 14px;
    }
    .contact-faq__image, .contact-faq__content {
        max-width: 100vw;
        width: 100%;
        height: auto;
        min-width: 0;
    }
    .contact-faq__content {
        padding: 20px 0px;
        height: auto;
    }
}

.contact-map {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #f5f5f5;
}
.contact-map__image {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    display: block;
    object-fit: cover;
}

.form-group.floating-label {
    position: relative;
    margin-bottom: 0;
}
.form-group.floating-label input {
    padding: 28px 20px 10px 20px;
    font-size: 1.25rem;
    background: transparent;
    border: none;
    color: #fff;
}
.form-group.floating-label label {
    position: absolute;
    left: 20px;
    top: 22px;
    color: #fff;
    font-size: 1.25rem;
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 500;
    pointer-events: none;
    background: transparent;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    letter-spacing: 0.8px;
}
.form-group.floating-label input:focus + label,
.form-group.floating-label input:not(:placeholder-shown) + label {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

@media (max-width: 768px) {
  .form-group {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 60px;
    gap: 0;
  }
  .form-group.floating-label input {
    font-size: 1rem;
    padding: 0 16px;
    height: 100%;
    border: none;
    flex: 1 1 60%;
    min-width: 0;
    background: transparent;
    color: #fff;
    display: block;
  }
  .form-group.floating-label label {
    font-size: 1rem;
    left: 16px;
    top: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .form-group button {
    width: 40%;
    min-width: 100px;
    font-size: 1rem;
    padding: 0;
    height: 100%;
    border-left: 1px solid #fff;
    border-radius: 0;
    display: block;
    background: transparent;
    color: #fff;
    transition: background 0.2s, color 0.2s;
  }
  .form-group button:hover {
    background: #fff;
    color: #09AAE1;
  }
}

.form-group.floating-label input {
    font-size: 1rem;
    padding: 0 16px;
    height: 100%;
    border: none;
    flex: 1 1 60%;
    min-width: 0;
    background: transparent;
    color: #000000;
    display: flex;
    align-items: center;
}
.form-group button {
    width: 25%;
    min-width: 100px;
    font-size: 1rem;
    padding: 0;
    height: 100%;
    border-left: 1px solid #000000;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #000000;
    transition: background 0.2s, color 0.2s;
}
.form-group button:hover {
    background: #09AAE1;
    color: white;
}

@media (max-width: 768px) {
  .contact-map {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    overflow: hidden;
  }
  .contact-map__image {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
    width: 100vw;
    display: block;
  }
}

@media (max-width: 480px) {
  .contact-section__form {
    width: 323px;
    margin: 0 auto;
    gap: 12px;
  }
  .contact-section__form-row,
  .contact-section__form {
    gap: 12px;
  }
  .contact-section__form-group {
    margin-bottom: 0;
  }
}

/* Join the Team Section (Careers) - identical to Service Overview */
.join-team-section {
    padding: 60px 0;
    background: #fff;
}
.join-team__grid {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.join-team__image {
    flex: 1 1 400px;
    min-width: 320px;
    max-width: 520px;
}
.join-team__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.join-team__info {
    flex: 1 1 340px;
    min-width: 300px;
}
.join-team__desc {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #222;
}
.join-team__divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 0 0 40px 0;
}
.join-team__cta {
    margin-top: 16px;
}

@media (max-width: 968px) {
    .join-team__grid {
        flex-direction: column;
        gap: 32px;
    }
    .join-team__image,
    .join-team__info {
        max-width: 100%;
        min-width: 0;
        flex: 1 1 100%;
    }
}

/* Open Positions Section (Careers) */
.open-positions-section {
    padding: 80px 0;
    margin: 0 20px;
    background: #fff;
}
.open-positions__title {
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--color-black);
}
.open-positions__header-row {
    display: flex;
    align-items: center;
    padding: 0 0 16px 0;
    color: #7B7585;
    font-size: 1rem;
    font-family: 'Forma DJR Micro', sans-serif;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 0;
}
.open-positions__col {
    flex: 1 1 0;
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
}
.open-positions__col--position {
    flex: 2 1 0;
    font-size: 1.1rem;
}
.open-positions__col--type {
    flex: 1 1 0;
    justify-content: center;
    color: #575260;
    font-size: 1.1rem;
}
.open-positions__col--action {
    flex: 0 0 160px;
    justify-content: flex-end;
}
.open-positions__list {
    display: flex;
    flex-direction: column;
}
.open-positions__row {
    display: flex;
    align-items: center;
    min-height: 88px;
    border-bottom: 1px solid #D9D9D9;
    background: #fff;
    transition: background 0.2s;
}
.open-positions__row:last-child {
    border-bottom: none;
}
.open-positions__col--position strong {
    font-weight: 700;
    color: var(--color-black);
    font-size: 1.15rem;
    font-family: 'Forma DJR Micro', sans-serif;
}
.open-positions__apply {
    min-width: 100px;
    justify-content: center;
    font-size: 1rem;
    padding: 16px 30px;
}
@media (max-width: 968px) {
    .open-positions-section {
        padding: 0 0 0 0;
    }
    .open-positions__title {
        font-size: 2rem;
        margin-bottom: 24px;
    }
    .open-positions__header-row, .open-positions__row {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }
    .open-positions__col, .open-positions__col--position, .open-positions__col--type, .open-positions__col--action {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 8px;
    }
    .open-positions__col--action {
        margin-bottom: 0;
    }
    .open-positions__apply {
        width: 40%;
        min-width: 0;
        justify-content: flex-center;
    }
    .open-positions__header-row {
        display: none;
    }
}

/* Careers Benefits Section (About Us - Careers) */
.careers-benefits-section {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 100px 0;
}
.careers-benefits__header {
    margin-bottom: 64px;
    text-align: left;
}
.careers-benefits__label {
    display: block;
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 16px;
    color: var(--color-white);
    opacity: 0.8;
    margin-bottom: 16px;
}
.careers-benefits__title {
    font-family: "Forma DJR Micro", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 64px;
    text-align: left;
}
.careers-benefits__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.careers-benefit-card {
    border: 2px solid var(--color-white);
    border-radius: 8px;
    padding: 48px 32px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.careers-benefit-card__icon {
    margin-bottom: 32px;
}
.careers-benefit-card__icon img {
    width: 56px;
    height: 56px;
}
.careers-benefit-card__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
    color: var(--color-white);
    text-align: left;
}
.careers-benefit-card__desc {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.9;
    text-align: left;
}
@media (max-width: 968px) {
    .careers-benefits-section {
        padding: 60px 0;
    }
    .careers-benefits__features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .careers-benefits__title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .careers-benefit-card {
        padding: 32px 16px;
    }
}

/* Position Information Section (Individual Position Page) */
.position-info-section {
    padding: 80px 0 0 0;
    background: #fff;
}
.position-info__section-title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-black);
}
.position-info__intro {
    margin-bottom: 48px;
}
.position-info__intro p {
    font-size: 14px;
    color: #575260;
    margin-bottom: 16px;
}
.position-info__responsibilities,
.position-info__qualifications {
    margin-bottom: 48px;
}
.position-info__responsibilities h2,
.position-info__qualifications h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-black);
}
@media (max-width: 768px) {
  .position-info__responsibilities h2,
  .position-info__qualifications h2 {
      font-size: 1.3rem;
  }
}
.position-info__responsibilities ul,
.position-info__qualifications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.position-info__responsibilities li,
.position-info__qualifications li {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    color: #7B7585;
    margin-bottom: 18px;
    line-height: 1.6;
}
.position-info__icon {
    color: #09AAE1;
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 968px) {
    .position-info-section {
        padding: 48px 0 0 0;
    }
    .position-info__section-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .position-info__intro {
        margin-bottom: 32px;
    }
    .position-info__responsibilities,
    .position-info__qualifications {
        margin-bottom: 32px;
    }
}

/* Section-specific container padding for Position Info */
.position-info-section .container {
    padding-left: 106px;
    padding-right: 106px;
}
@media (max-width: 968px) {
    .position-info-section .container {
        padding-left: 34px;
        padding-right: 34px;
    }
}

/* Position Application Section (Individual Position Page) */
.position-application-section {
    /* padding: 80px 0 0 0; */
    background: #fff;
}
.position-application__title {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--color-black);
}
.position-application__instructions {
    font-size: 14px;
    color: #575260;
    margin-bottom: 32px;
}
.position-application__email {
    color: #09AAE1;
    text-decoration: underline;
}
.position-application__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.position-application__row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping on narrow widths */
  width: 100%;
}
.position-application__row input {
    flex: 1 1 0;
    min-width: 0; /* Prevent overflow */
}
.position-application__form input[type="text"],
.position-application__form input[type="email"],
.position-application__form input[type="tel"],
.position-application__form textarea {
    width: 100%;
    padding: 30px 20px;
    border: 1px solid #BDBDBD;
    border-radius: 0;
    font-size: 16px;
    /* font-family: 'Forma DJR Micro', sans-serif; */
    color: #7B7585;
    background: #fff;
    font-weight: 500;
    margin-bottom: 0;
    transition: border-color 0.2s;
}
.position-application__form input[type="text"]::placeholder,
.position-application__form input[type="email"]::placeholder,
.position-application__form input[type="tel"]::placeholder,
.position-application__form textarea::placeholder {
    color: #7B7585;
    opacity: 1;
    font-weight: 600;
}
.position-application__form input[type="text"]:focus,
.position-application__form input[type="email"]:focus,
.position-application__form input[type="tel"]:focus,
.position-application__form textarea:focus {
    border-color: #09AAE1;
    outline: none;
}
.position-application__form textarea {
    min-height: 120px;
    resize: vertical;
}
.position-application__file {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    color: #575260;
    margin-bottom: 0;
}
.position-application__file label {
    /* font-family: 'Forma DJR Micro', sans-serif; */
    font-size: 16px;
    font-weight: 500;
    color: #575260;
    margin-right: 12px;
}
.position-application__file input[type="file"] {
    font-size: 1rem;
    color: #575260;
    border: none;
    background: none;
    padding: 0;
}
.position-application__submit {
    margin-left: auto;
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 600;
    padding: 30px 32px;
}
@media (max-width: 968px) {
    .position-application-section {
        padding: 48px 14px;
    }
    .position-application__title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }
    .position-application__form {
        gap: 12px;
    }
    .position-application__row {
        flex-direction: column;
        gap: 12px;
    }
    .position-application__submit {
        width: 80%;
        margin-left: 0;
    }
}

.position-application-section .container {
    padding-left: 106px;
    padding-right: 106px;
}
@media (max-width: 968px) {
    .position-application-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.position-application-section {
    padding-bottom: 100px;
}

/* News Blog Section (News Page) */
.news-blog-section {
    padding: 80px 0 0 0;
    background: #fff;
}
.news-blog__subtitle {
    display: block;
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 16px;
    color: #575260;
    opacity: 0.8;
    margin-bottom: 16px;
    margin-left: 2px;
}
.news-blog__title {
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 48px;
    text-align: left;
}
.news-blog__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
    margin-bottom: 48px;
}
.news-blog__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.news-blog__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #EAEAEA;
    overflow: hidden;
}
.news-blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-blog__date {
    position: absolute;
    bottom: 16px;
    left: 24px;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 4px;
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.news-blog__content {
    padding: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.news-blog__card-title {
    font-family: 'Forma DJR Micro', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 12px;
}
.news-blog__excerpt {
    font-size: 14px;
    color: #7B7585;
    margin-bottom: 16px;
    line-height: 1.6;
}
.news-blog__readmore {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.news-blog__readmore:hover {
    color: #0789b8;
}
.news-blog__loadmore-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 80px;
}
.news-blog__loadmore {
    min-width: 140px;
    justify-content: center;
    font-size: 1rem;
    padding: 20px 32px;
}
@media (max-width: 968px) {
    .news-blog-section {
        padding: 48px 0 0 0;
    }
    .news-blog__title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }
    .news-blog__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
    .news-blog__content {
        padding: 20px 0 0 0;
    }
    .news-blog__loadmore-wrapper {
        margin-bottom: 48px;
    }
}

.news-blog-section .container {
    padding-left: 106px;
    padding-right: 106px;
}
@media (max-width: 968px) {
    .news-blog-section .container {
        padding-left: 34px;
        padding-right: 34px;
    }
}

.news-entry__image {
  position: relative;
}

.news-entry__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #09AAE166; /* semi-transparent blue overlay */
  pointer-events: none;
  z-index: 1;
}

.entry-link {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

/* .entry-link:hover {
  
} */


.news-blog__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #09AAE166;
    pointer-events: none;
    z-index: 1;
}
.news-blog__image img {
    position: relative;
    z-index: 0;
}

.news-entry-section .container {
    margin-top: 30px;
    padding-left: 106px;
    padding-right: 106px;
}
@media (max-width: 968px) {
    .news-entry-section .container {
        padding-left: 34px;
        padding-right: 34px;
    }
}

.news-entry__image {
    margin-bottom: 40px;
}

.news-entry__content p {
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.05em;
}

.news-entry__content:last-of-type {
    margin-bottom: 100px;
}
.news-entry__divider {
    margin-bottom: 40px;
}
.news-entry__back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 90px;
}

.news-blog-section.news-entry-latest-news {
    padding-top: 0;
}

.news-entry-latest-news .news-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
    margin-bottom: 48px;
}
@media (max-width: 968px) {
    .news-entry-latest-news .news-blog__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
  .join-team__cta {
    display: none;
  }
}

/* Match desktop paddings for careers sections */
.join-team-section .container,
.open-positions-section .container,
.careers-benefits-section .container {
    padding-left: 86px;
    padding-right: 86px;
}

@media (max-width: 968px) {
  .join-team-section .container,
  .open-positions-section .container,
  .careers-benefits-section .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

* {
  border-radius: 0 !important;
}

#backToTop {
  background-color: white;
  position: fixed;
  bottom: 100px;
  right: 40px;
  border: none;
  border-radius: 50%;
  padding: 12px;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease;
}

#backToTop:hover {
  opacity: 0.8;
}

#backToTop svg {
  display: block;
}

@media (max-width: 768px) {
  .global-reach {
    position: static;
    height: auto;
    /* padding: 60px 0; */
  }

  .global-reach__map-container {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .global-reach__content {
    position: static;
    padding-top: 0;
    margin-bottom: 2rem;
    z-index: 1;
  }

  .global-reach__map {
    width: 100%;
    order: 2;
  }

  .global-reach__locations {
    order: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
  }

  .location-group {
    display: contents;
  }

  .location {
    /* background: #f9f9f9; */
    padding: 1rem;
  }
  .location h3 {
    font-size: 16px;

  }
}

.video__wrapper {
  position: relative;
  width: 100%;
  height: 900px;
  overflow: hidden;
}

.video__element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video__play,
.video__pause {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--color-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.video__play:hover,
.video__pause:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
  margin-left: 4px;
}

.pause-icon {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: space-between;
}

.pause-icon::before,
.pause-icon::after {
  content: '';
  background-color: white;
  width: 4px;
  height: 100%;
  display: inline-block;
}

.video__pause {
  display: none; /* hidden by default */
}

.video__pause {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video__wrapper.playing:hover .video__pause {
  opacity: 1;
  pointer-events: auto;
}

.video__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.video__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* .partner__video-wrapper {
  position: relative;
  display: inline-block;
}

.partner__video {
  display: block;
  width: 100%;
  height: auto;
}

.partner__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  pointer-events: none; 
} */

.video__thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

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

.play-icon {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent white;
}

.newsletter--blue {
  background-color: #09AAE1;
  color: #fff;
    border: 1px solid #09AAE1;
}

.newsletter--blue h2,
.newsletter--blue p {
  color: #fff;
}

.newsletter--blue .newsletter__form input[type="email"] {
  background-color: transparent;
  color: #fff;
}

.newsletter--blue .newsletter__form input::placeholder {
  color: #ffffffcc; /* Slight transparency for placeholder */
}

.newsletter--blue .newsletter__form button {
  color: #fff;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.newsletter--blue .newsletter__form button:hover {
  background-color: #e6e6e6;
  color: #09AAE1;
}
.newsletter--blue .newsletter__form {
    width: 645px;
    height: 80px;
    border: 1px solid #ffffff;
    padding: 1px;
    border-radius: 4px;
    justify-self: end;
}

.newsletter--blue .form-group button {
    width: 25%;
    min-width: 100px;
    font-size: 1rem;
    padding: 0;
    height: 100%;
    border-left: 1px solid #ffffff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #09AAE1;
    transition: background 0.2s, color 0.2s;
}

.newsletter--blue .form-group button:hover {
    background: white;
    color: #09AAE1;
}

.newsletter--blue .newsletter__form {
  width: 100%;
  max-width: 645px;
  height: 80px;
  border: 1px solid #ffffff;
  padding: 1px;
  border-radius: 4px;
  justify-self: end;
  display: flex;
}

.newsletter--blue .form-group {
  display: flex;
  width: 100%;
  height: 100%;
}

.newsletter--blue .form-group input[type="email"] {
  width: 75%;
  border: none;
  padding: 0 1em;
  font-size: 1rem;
  background-color: transparent;
  color: #fff;
}

.newsletter--blue .form-group input::placeholder {
  color: #ffffffcc;
}

.newsletter--blue .form-group button {
  width: 25%;
  min-width: 100px;
  font-size: 1rem;
  padding: 0;
  height: 100%;
  border-left: 1px solid #ffffff;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  transition: background 0.2s, color 0.2s;
}

.newsletter--blue .form-group button:hover {
  background: #ffffff;
  color: #09AAE1;
}

.news-entry__image img {
  width: 100%;
  height: auto;
  display: block;
}
.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 1.5rem; /* optional spacing */
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
ul {
    font-family: 'Forma DJR Micro', sans-serif;
}
.akolouthi-kimeno {
    padding: 10px 0;
    color: #7B7585;
    font-family: 'Forma DJR Micro', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.05em;
}