:root {
  --color-yellow: #f6c400;
  --color-blue: #0e2f44;
  --color-text: #0f415a;

  /* =========================
     THEME TOKENS (LIGHT)
     - keep brand colors above
     - use tokens below for surfaces/text so dark mode can swap cleanly
  ========================= */
  --dark-theme-bg: #121212;
  --dark-theme-bg2: #1e1e1e;
  --dark-theme-txt: #fafafa;
}

* {
  box-sizing: border-box;
}

/* =========================
   POPPINS – LOCAL FONT
========================= */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2"),
       url("../fonts/Poppins-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"),
       url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"),
       url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"),
       url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"),
       url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"),
       url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* =========================
   DARK MODE START
========================= */

/* sensible defaults for plain text elements */
body.theme--dark h2,
body.theme--dark h3,
body.theme--dark h4,
body.theme--dark h5,
body.theme--dark h6 {
  color: var(--dark-theme-txt);
}

body.theme--dark h1 {
  color: var(--color-yellow);
}

body.theme--dark p,
body.theme--dark li,
body.theme--dark span {
  color: inherit;
}
body.theme--dark .mainNavbar {
  background: var(--dark-theme-bg);
}

/* Missin page start */

body.theme--dark .missionHero {
  background-image: url(../images/home/hero-section-bg-dark.jpg);
}
body.theme--dark .missionHero__text_div {
  color: #fff;
}
body.theme--dark .missionPlay {
  background-color: var(--dark-theme-bg);
}
body.theme--dark .missionSlider {
  background-color: var(--dark-theme-bg2);
  color: var(--dark-theme-txt);
}
body.theme--dark .missionAwardWinImg {
  background-color: var(--dark-theme-bg);
}
body.theme--dark .missionForceBg {
  background-image: url(../images/home/earth_desktop_1440-dark.jpg);
  color: var(--dark-theme-txt);
  background-color: var(--dark-theme-bg);
}
body.theme--dark .missionForceBg__link {
  color: var(--dark-theme-txt);
}
body.theme--dark .mainFooter {
  background: var(--dark-theme-bg);
}
body.theme--dark .mainFooter__in {
  color: var(--dark-theme-bg);
}

.missionHero__btn {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
}

/* Privacy policy page dark mode */
body.theme--dark.page--policy {
  background: var(--dark-theme-bg2);
  color: var(--dark-theme-txt);
}
body.theme--dark.page--policy .footerPagesText .container {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
body.theme--dark.page--policy .footerPagesText__title {
  color: var(--color-yellow);
}
body.theme--dark.page--policy .footerPagesText__subTitle {
  color: #ffffff;
}
body.theme--dark.page--policy .footerPagesText p,
body.theme--dark.page--policy .footerPagesText li {
  color: rgba(250, 250, 250, 0.9);
  line-height: 1.75;
}
body.theme--dark.page--policy .footerPagesText ul {
  padding-left: 22px;
}
body.theme--dark.page--policy .footerPagesText li::marker {
  color: var(--color-yellow);
}
body.theme--dark.page--policy .footerPagesText__link {
  color: var(--color-yellow);
  text-underline-offset: 4px;
}
/* Missin page end */
/* appraoch page start */
body.theme--dark .approachHero {
  background-image: url(../images/approach/hero-dark-bg.png);
}
body.theme--dark .approachHero__title {
  color: var(--color-yellow);
}
body.theme--dark .approachHero__text {
  color: var(--dark-theme-txt);
}
body.theme--dark .approachTreatment {
  background: var(--dark-theme-bg);
}
body.theme--dark .approachPromise,
body.theme--dark .approachFilter {
  background: var(--dark-theme-bg2);
}
body.theme--dark .approachPromise__iconCircle {
  background: var(--dark-theme-bg);
}
body.theme--dark .approachPromise__text,
body.theme--dark .approachTechText__li,
body.theme--dark .approachFilter__text {
  color: var(--dark-theme-txt);
}
body.theme--dark .approachTech {
  background-image: url(../images/approach/approachTechnologies-dark-bg.png);
}
/* approach page end */
/* people page start */
body.theme--dark .peopleCulture,
body.theme--dark .peopleCurve,
body.theme--dark .peopleCards {
  background: var(--dark-theme-bg2);
}
body.theme--dark .peopleCards__desc {
  color: var(--dark-theme-txt);
}
/* people page end */
/* careers page start */
body.theme--dark .careerHero,
body.theme--dark .careerText,
body.theme--dark .careersCards {
  background: var(--dark-theme-bg2);
}
body.theme--dark .careerText__desc,
body.theme--dark .careersCards__email,
body.theme--dark .careersCards__contact {
  color: var(--dark-theme-txt);
}
body.theme--dark .careersCards__title{
  color: #fff
}
/* careen page end */
/* contact page start */
body.theme--dark .contactSection {
  background: var(--dark-theme-bg2);
}
body.theme--dark .contactSection_decs {
  color: var(--dark-theme-txt);
}
body.theme--dark .contactSection__btn {
  color: var(--dark-theme-bg);
}
/* contact page end */
/* project page start */
body.theme--dark .projectsHero,
body.theme--dark .projectsPage,
body.theme--dark .projectsGallery {
  background: var(--dark-theme-bg2);
}
body.theme--dark .projectsHero__featuredTitle,
body.theme--dark .projectsGallery__btn {
  color: var(--dark-theme-bg);
}
body.theme--dark .projectsGallery__overlayText {
  color: var(--dark-theme-txt);
}
body.theme--dark .projectsGallery__label {
  color: var(--color-yellow);
  background-color: #2a2a2a;
}
body.theme--dark .projectsGallery__overlay {
  background: rgba(18, 18, 18, 0.8);
}
body.theme--dark .projectsGallery__arrow__img,
body.theme--dark .projectsGallery__btnLink__arrowImg,
body.theme--dark .projectsQuote__icon img {
  filter: brightness(0);
}
body.theme--dark .projectsQuote__title {
  color: var(--dark-theme-bg);
}
body.theme--dark.projectDetailPage {
  background: var(--dark-theme-bg);
}
body.theme--dark.projectDetailPage .projectDetailHero {
  background: var(--dark-theme-bg2);
}
body.theme--dark.projectDetailPage .projectDetailHero__desc {
  color: rgba(250, 250, 250, 0.88);
}
body.theme--dark.projectDetailPage .projectDetailHero__imgDiv {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
body.theme--dark.projectDetailPage .projectDetailHero__circle {
  border-color: var(--color-yellow);
  background-color: rgba(18, 18, 18, 0.7);
  color: var(--color-yellow);
}

/* =========================
   DARK MODE END
========================= */
/* =========================
   COMMON NAVBAR
========================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
  box-sizing: border-box;
}
.mainNavbar {
  background: var(--color-blue);
  height: 84px;
  display: flex;
  align-items: center;
}

.mainNavbar__container {
  width: 100%;
  max-width: 1250px;
  padding: 0 24px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.mainNavbar__brand {
  width: 120px;
  cursor: pointer;
}

/* Navigation */
.mainNavbar__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 25px;
  border-right: 1px solid #ffffff;
}

.mainNavbar__link {
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  line-height: 24px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

/* Active state (Mission) */
.mainNavbar__link--active {
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  font-weight: 550;
  /* width: 84px; */
  padding: 13px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mainNavbar__body {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 28px;
}
/* Hover */
.mainNavbar__link:hover {
  color: var(--color-yellow);
}

/* Toggle */
.themeToggle {
  position: relative;
  width: 46px;
  height: 25px;
  display: inline-block;
}

.themeToggle__input {
  opacity: 0;
  width: 0;
  height: 0;
}

.themeToggle__slider {
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

/* knob */
.themeToggle__slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
}

/* ACTIVE STATE */
.themeToggle__input:checked + .themeToggle__slider {
  background-color: var(--color-yellow);
}

.themeToggle__input:checked + .themeToggle__slider::before {
  transform: translateX(20px);
}
.mainNavbar__menuBtn {
  display: none; /* desktop hidden */

  cursor: pointer;
  padding-right: 19px;
  margin-right: 5px;
  border-right: 1px solid #ffffff;
}

.mainNavbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}
.mainNavbar__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #0e2f44; /* same as navbar */
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mainNavbar__drawer.isOpen {
  transform: translateX(0);
}
.mainNavbar__drawerHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mainNavbar__drawerLogo img {
  width: 120px;
}

.mainNavbar__closeBtn {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mainNavbar__drawerNav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mainNavbar__drawerLink {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 12px;
  border-radius: 12px;
}

.mainNavbar__drawerLink--active {
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  font-weight: 600;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0px 24px;
  box-sizing: border-box;
}
/* footer  */
.mainFooter {
  background: #0e2f44;
  color: rgba(255, 255, 255, 0.88);
  padding: 46px 0 28px;
}

.mainFooter__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 44px;
}

/* --- TOP GRID --- */
.mainFooter__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  /* column-gap: 60px; */
  align-items: start;
}
.carbonbadge {
  display: flex;
  justify-content: start;
}

/* LEFT */
.mainFooter__hint {
  margin: 0 0 14px 0;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 200, 0, 0.9);
}
body.theme--dark .mainFooter__hint {
  color: var(--color-yellow);
}

.mainFooter__badgeRow {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 12px;
}

.mainFooter__badge {
  display: block;
  height: auto;
}

.mainFooter__badge--bcorp {
  width: 83px;
}

.mainFooter__badge--eco {
  width: 135px;
}

.mainFooter__carbonRow {
  margin: 21px 0 6px;
}

.mainFooter__carbonImg {
  display: block;
  width: 250px;
  height: auto;
}

.mainFooter__leftNote {
  font-size: 10px;
  font-weight: 400;
  /* padding-right: 130px; */
}

.mainFooter__logoImg {
  width: 195px;
  height: auto;
}
/* RIGHT */
.mainFooter__right {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}

.mainFooter__ctaRow {
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.mainFooter__btn {
  height: 58px;
  padding: 17px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.mainFooter__btn--primary {
  background: #ffc400;
  color: var(--color-blue);
}

.mainFooter__btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
}

/* LinkedIn follow */
.mainFooter__follow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  justify-content: start;
  margin-right: 50px;
  margin-bottom: 5px;
}

.mainFooter__in {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #0e2f44;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.mainFooter__followText {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.mainFooter__followTitle {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.mainFooter__followSub {
  font-size: 12px;
  font-weight: 400;
}
.mainFooter__logoRow {
  display: grid;
  grid-template-columns: 200px 1fr;
  width: 90%;
}
/* --- BOTTOM --- */


.mainFooter__links,
.mainFooter__mobileLinks {
  display: flex;
  justify-content: right;
  gap: 22px;
  flex-wrap: wrap;
}
.mainFooter__mobileLinks {
  display: none;
}
.mainFooter__link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.mainFooter__meta {
  text-align: right;
}

.mainFooter__copyright {
  margin: 0 0 6px 0;
  font-size: 12px;
}

.mainFooter__metaLine {
  margin: 0;
  font-size: 12px;
}

/* =========================
    MISSION PAGE  START
========================= */
.missionHero {
  height: 100vh;
  background-image: url(../images/home/hero-section-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.missionHero__text_div {
  max-width: 710px;
}

.missionHero__kicker {
  margin: 0 0 18px 0;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.2px;
  color: rgba(255, 255, 255, 0.9);
}

.missionHero__dot {
  display: inline-block;
  margin: 0 10px;
  color: var(--color-yellow) !important;
}

/* Big headline */
.missionHero__title {
  margin: 0 0 26px 0;
  font-size: 43px;
  line-height: 61px;
  font-weight: 500;
  color: var(--dark-theme-txt);
}
body.theme--dark .missionHero__title {
  color: var(--dark-theme-txt);
}

/* Paragraph */
.missionHero__desc {
  margin: 0;

  font-size: 21px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}
/* play section */
/* .missionPlay {
  background-color: var(--color-blue);
  margin: auto;
  text-align: center;
}
.missionPlay__img {
  width: 750px;
  margin-top: -6.5rem;
} */

/* mission Slider */
.missionSlider {
  text-align: center;
  /* padding: 90px 0; */
  background-color: #f4f5f6;
}
.missionSlider__top {
  position: relative;
  background-image: url(../images/mission/slider-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.missionSlider__topBgViewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.missionSlider__topBgTrack {
  display: flex;
  flex-direction: column;
  transition: transform 0.8s ease;
}
.missionSlider__topBgSlide {
  flex: 0 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.missionSlider__top__title,
.missionSlider__top__btn {
  position: relative;
  z-index: 1;
}
.missionSlider__top__title {
  color: #fff;
  font-weight: 600;
}
.missionSlider__top__btn {
  background-color: var(--color-yellow);
  padding: 15px 20px;
  border-radius: 30px;
  border: none;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
}
.missionSlider__img {
  width: 226px;
}
.missionSlider__text {
  font-size: 30px;
  color: var(--color-blue);
  b {
    font-weight: 800;
  }
}

.missionSlider__viewport {
  overflow: hidden;
  height: 240px;
}

.missionSlider__track {
  display: flex;
  flex-direction: column; /* 🔥 THIS IS THE KEY */
  transition: transform 0.8s ease;
}
.missionSlider__content {
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  justify-content: center;
}

.mission__awardImg {
  width: 100%;
  display: block;
}
.mission__MobileAwardImg {
  width: 100%;
  display: none;
}
/* slider end */
/* missionForce section */

.missionForceBg {
  position: relative;
  background-image: url(../images/home/earth_desktop_1440.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 120vh;
}

.missionForceBg__container {
  position: relative;
  max-width: 1250px;
  margin: auto;
  min-height: 120vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
}
.missionForce__mobileImg {
  display: none;
  width: 100%;
}
/* Right content block */
.missionForceBg__content {
  max-width: 560px;
  margin-top: 13rem;
}

/* Title */
.missionForceBg__title {
  margin: 0 0 16px 0;
  font-size: 38px;
  line-height: 24px;
  font-weight: 500;
  color: #0b2e45;
  margin-bottom: 26px;
}

body.theme--dark .missionForceBg__title {
  color: var(--color-yellow);
}

/* Paragraphs */
.missionForceBg__para {
  margin: 0 0 16px 0;
  font-size: 20px;
  line-height: 1.55;
  color: rgba(11, 46, 69, 0.85);
  font-weight: 300;
}

/* Links */
.missionForceBg__link {
  font-weight: 700;
  color: #0b2e45;
  text-decoration: underline;
  text-underline-offset: 4px;
}
/* =========================
    MISSION PAGE END 
========================= */
/* =========================
    APPROACH PAGE  START
========================= */
.approachHero {
  background-image: url(../images/approach/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center; /* vertical center */
  justify-content: center;
}
.approachHero__content {
  max-width: 800px;
  margin: auto;
  text-align: center;
}
.approachHero__title {
  color: var(--color-yellow);
  font-size: 38px;
  line-height: 24px;
  font-weight: 500;
}
.approachHero__text {
  color: #ffffff;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  margin: 1.5rem 0;
}
/* approach Treatment section */
.approachTreatment {
  margin: 0;
}
.approachTreatment__img {
  display: block;
  width: 100%;
}
.approachTreatment__mobileImg {
  display: none;
  width: 100%;
}
/* approach Promise section*/

.approachPromise {
  background: #f0f0f0;
  padding: 94px 0 100px;
}

.approachPromise__title {
  text-align: center;
  color: #0f3248;
  font-size: 38px;
  line-height: 100%;
  font-weight: 500;
  margin: 0 0 78px;
}
body.theme--dark .approachPromise__title {
  color: var(--color-yellow);
}

.approachPromise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.approachPromise__item {
  text-align: center;
}

.approachPromise__iconCircle {
  width: 140px;
  height: 140px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: #0f3248;
  display: grid;
  place-items: center;
}

.approachPromise__iconImg {
  width: 94px;
  /* height: 105px; */
  object-fit: contain;
  display: block;
}

.approachPromise__itemTitle {
  margin: 0 0 16px;
  color: var(--color-blue);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 600;
  font-style: italic;
}

.approachPromise__text {
  margin: 0 auto;
  color: var(--color-blue);
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}
/* approachFilter */
.approachFilter {
  padding: 52px 0;
}
.approachFilter__text {
  font-size: 20px;
  line-height: 30px;
  width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-blue);
}
.approachFilter__videoWrap {
  line-height: 0;
}
.approachFilter__img {
  margin: auto;
  display: block;
  width: 100%;
}
.approachFilter__video {
  width: 1000px;
  max-width: 100%;
  object-fit: cover;
  clip-path: inset(0 0 2px 0);
}
.approachFilter__video--dark {
  display: none;
}
body.theme--dark .approachFilter__video--light {
  display: none;
}
body.theme--dark .approachFilter__video--dark {
  display: block;
}
/* approachTechnologies  */
.approachTech {
  background-image: url(../images/approach/approachTechnologies-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.approachTech__content {
  width: 600px;
}
.approachTechText__title {
  color: var(--color-blue);
  font-size: 38px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}
body.theme--dark .approachTechText__title {
  color: var(--color-yellow);
}
.approachTechText__para {
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.approachTech ul {
  padding-left: 1.2em;
  list-style-position: outside;
  margin-left: 3px;
}
.approachTechText__li {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-blue);
}
.approachTechText__li::marker {
  color: var(--color-yellow);
}
/* =========================
    APPROACH PAGE  END
========================= */
/* =========================
    PEOPLE PAGE  START
========================= */
.peopleCulture {
  padding: 60px 0;
}
.peopleCulture__title {
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  color: var(--color-blue);
}
.peopleCulture__desc {
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  width: 800px;
  margin: auto;
  color: var(--color-blue);
}
/* CARDS SECTION*/

.peopleCards {
  background: #ffffff;
  padding-bottom: 90px;
}

.peopleCards__container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 28px;
}

.peopleCards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  align-items: start;
}

/* Card */
.peopleCards__card {
  text-align: center;
}

.peopleCards__iconWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 26px;
}

.peopleCards__icon {
  width: 410px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Title */
.peopleCards__title {
  margin: 0 0 22px 0;
  line-height: 1.05;
  color: #0b2e45;
}

.peopleCards__titleLight {
  font-weight: 500;
  font-size: 32px;
}

.peopleCards__titleBold {
  font-weight: 700;
  font-size: 36px;
}
.peopleCards__titleExtraBold {
  font-size: 45px;
}
/* Description */
.peopleCards__desc {
  margin: 0 auto;
  max-width: 520px;
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(11, 46, 69, 0.85);
}
/* peopleCurve section */
.peopleCurve__img {
  width: 100%;
  display: block;
}
.peopleCurve__mobileImg {
  width: 100%;
  display: none;
}
/* =========================
    PEOPLE PAGE  END
========================= */
/* =========================
    CAREER PAGE  START
========================= */
.careerHero__img {
  width: 100%;
  display: block;
}
.careerHero__MobileImg {
  display: none;
  width: 100%;
}
/* careerText section  */
.careerText {
  background-color: #f7f8f9;
  color: var(--color-blue);
  padding: 37px 0;
}
.careerText__content {
  text-align: center;
  margin: auto;
  width: 800px;
}
.careerText__title {
  font-size: 38px;
  line-height: 40px;
  margin-bottom: 20px;
  font-weight: 500;
}
.careerText__desc {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 16px;
  font-weight: 300;
}

/* career CARDS SECTION*/

.careersCards {
  background: #f7f7f7;
  padding: 70px 0;
}

.careersCards__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

/* Card */
.careersCards__card {
  background: #ffffff;
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
}

body.theme--dark .careersCards__card {
  background: var(--dark-theme-bg);
  border: 1px solid #fff;
}

body.theme--dark .careersCards__desc,
body.theme--dark .careersCards__label,
body.theme--dark .careersCards__value,
body.theme--dark .careersCards__icon {
  color: #fff;
}
/* Footer row: meta on left, button on right */
.careersCards__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Button */
.careersCards__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  margin: 0;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.careersCards__btnArrow {
  flex-shrink: 0;
}

/* Title */
.careersCards__title {
  margin: 0 0 14px;
  text-align: left;
  font-size: 25px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.2px;
}

/* Description */
.careersCards__desc {
  font-size: 18px;
  line-height: 25px;
  color: rgba(11, 46, 69, 0.85);
  margin: 0;
}

/* Meta rows */
.careersCards__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 28px;
}

.careersCards__row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.careersCards__icon {
  color: var(--color-text);
  flex-shrink: 0;
}

.careersCards__label {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

.careersCards__value {
  font-size: 17px;
  font-weight: 400;
  color: rgba(11, 46, 69, 0.9);
}

.careersCards__btn_a {
  text-decoration: none;
  margin: 0;
  flex-shrink: 0;
}
/* Contact line */
.careersCards__contact {
  margin: 70px 0 0;
  text-align: center;
  font-size: 18px;
  color: rgba(11, 46, 69, 0.9);
}

.careersCards__email {
  color: #0b2e45;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.no-jobs-available .careersCards__card {
  align-items: center;
  justify-content: center;
}

.no-jobs-available .careersCards__desc {
  overflow: visible;
  -webkit-line-clamp: none;
}

.no-jobs-available .careersCards__card > div {
  max-width: 700px;
  text-align: center;
  padding: 90px 0;
}

.no-jobs-available .careersCards__btn_a {
  margin-top: 30px;
  display: inline-block;
}
/* =========================
    CAREER PAGE  END
========================= */
/* =========================
    CONTACT PAGE  START
========================= */
.contactSection__content {
  width: 900px;
  margin: auto;
  text-align: center;
}
.contactSection_title {
  font-size: 38px;
  color: var(--color-blue);
  font-weight: 500;
}
.contactSection_decs {
  font-size: 23px;
  color: var(--color-blue);
}
.contactSection_icon {
  width: 190px;
}
.contactSection__link {
  color: var(--color-text);
  text-decoration: none;
}
.contactSection__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 28px auto 0;
  padding: 16px 51px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* Keep contact content centered while footer stays at viewport bottom on short pages */
.contactPage {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contactPage .contactSection {
  flex: 1;
  display: flex;
  align-items: center;
}

.contactPage .contactSection .container {
  width: 100%;
}
/* =========================
   PROJECTS PAGE
========================= */

.projectsPage {
  background: #0e2f44;
}

/* =========================
   HERO
========================= */

.projectsHero {
  background: #0e2f44;
  padding: 38px 0 82px 0;
}

.projectsHero__title {
  margin: 50px 0 67px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* featured white card */
.projectsHero__featured {
  background: #ffffff;
  border-radius: 2px;
  padding: 57px 18px;
  text-align: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.projectsHero__featuredTitle {
  margin: 0 0 8px 0;
  font-size: 31px;
  font-weight: 500;
  font-style: italic;
  color: #0b2e45;
  font-family: "Poppins", sans-serif !important;
}

.projectsHero__featuredText {
  margin: 0 auto 14px auto;
  max-width: 800px;
  font-size: 23px;
  color: var(--color-text);
}

.projectsHero__featuredBtn {
  display: inline-block;
  padding: 17px 51px;
  border-radius: 999px;
  background: #ffc400;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 21px;
}

/* =========================
   QUOTE SECTION (light)
========================= */

.projectsQuote {
  background: #f3f3f3;
  padding: 65px 0 112px 0;
}

.projectsQuote__container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 22px;
  text-align: center;
}

.projectsQuote__icon {
  font-size: 28px;
  color: rgba(11, 46, 69, 0.35);
  margin-bottom: 8px;
}

.projectsQuote__title {
  margin: 0 0 20px 0;
  color: #0b2e45;
  font-size: 32px;
  font-weight: 700;
}

.projectsQuote__text {
  margin: 0 auto;
  max-width: 820px;
  color: rgba(11, 46, 69, 0.75);
  font-size: 23px;
  line-height: 1.55;
}

/* viewport */
.projectsQuote__viewport {
  overflow: hidden;
  width: 100%;
}

/* track */
.projectsQuote__track {
  display: flex;
  align-items: center;
  transition: transform 0.8s ease;
}

/* slide */
.projectsQuote__content {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* dots */
.projectsQuote__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.projectsQuote__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(11, 46, 69, 0.25);
}

.projectsQuote__dot.isActive {
  background: rgba(11, 46, 69, 0.75);
}

/* =========================
   PROJECTS GALLERY (MIXED)
========================= */

.projectsGallery {
  background: #0e2f44;
}

/* main grid */

.projectsGallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* each column behaves like a stack */
.projectsGallery__grid > div {
  display: flex;
  flex-direction: column;
}

/* tiles equal share height inside each column */
.projectsGallery__tile {
  display: flex;
  flex-direction: column;
  min-height: 0;
  position: relative;
  overflow: hidden;
}

/* IMAGE: fill without distortion */
.projectsGallery__imgFill {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
}
/* label row */
.projectsGallery__label {
  background: #2d5166;
  color: var(--color-yellow);
  font-size: 34px;
  font-weight: 500;
  height: 140px;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 28px;
  padding-left: 21px;
}

/* tile base */
.projectsGallery__tile {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  margin-bottom: 28px;
}
.projectsGallery__btnLink {
  text-decoration: none;
}
.projectsGallery__btnLink__arrowImg {
  width: 22px;
}
.projectsGallery__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin: 155px auto 223px auto;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-text);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
/* full image */

.projectsGallery__collage img {
  width: 100%;

  /* height: 100%; */
  object-fit: cover;

  display: block;
  border-radius: 1px;
}

.projectsGallery__collage--three {
  grid-template-columns: repeat(3, 1fr);
}

/* bottom-right arrow (always visible like screenshot) */
.projectsGallery__arrow {
  position: absolute;
  right: 15px;
  bottom: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffc400;
  color: #0b2e45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
  transition: transform 0.22s ease;
  cursor: pointer;
}
.projectsGallery__arrow__img {
  width: 24px;
}
/* hover overlay (hidden by default) */
.projectsGallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 50, 72, 0.8);
  opacity: 0;
  transition: opacity 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 4;
}

.projectsGallery__overlayText {
  margin: 0;
  max-width: 450px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 26px;
  font-weight: 4 00;
}

.projectsGallery__tile.isOpen .projectsGallery__overlay {
  opacity: 1;
}

.projectsGallery__tile.isOpen .projectsGallery__arrow {
  transform: rotate(180deg);
}

/* within text */
.projectsGallery__bigWord {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 72px;
  font-weight: 800;
  line-height: 0.88;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -1.2px;
  z-index: 3;
}

/* we’re still here block */
.projectsGallery__stillHere {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
}

.projectsGallery__stillTitle {
  font-size: 56px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 10px;
}

.projectsGallery__stillDesc {
  max-width: 260px;
  font-size: 10px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

/* headache text */
.projectsGallery__headache {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
}

.projectsGallery__headSmall {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

.projectsGallery__headBig {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.2px;
  margin: 4px 0 4px;
}

.projectsGallery__headSub {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  opacity: 0.9;
}

/* keyboard focus */
.projectsGallery__tile:focus-visible {
  outline: 2px solid #ffc400;
  outline-offset: 3px;
}

.projectDetailHero {
  padding: 98px 0;
}
.projectDetailHero__content {
  width: 800px;
  margin: auto;
  text-align: center;
}
.projectDetailHero__title {
  font-size: 38px;
  font-weight: 500;
  font-style: italic;
  color: var(--color-blue);
}

.projectDetailHero__desc {
  font-size: 18px;
  font-weight: 400;
}
.projectDetailHero__img {
  width: 100%;
}
.projectDetailHero__imgDiv {
  position: relative;
  margin-top: 50px;
}
.projectDetailHero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.projectDetailHero__imgWrap {
  position: relative;
  z-index: 1;
  display: block;
}
.projectDetailHero__circle {
  width: 116px;
  height: 116px;
  border: 1px solid var(--color-blue);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff70;
}
.projectDetailHero__circle {
  cursor: pointer;
  z-index: 2;
}
.projectDetailHero__circleText {
  font-size: 27px;
}
/* =========================
PROJECTS GALLERY (MIXED)
========================= */
/* =========================
   FOOTER PAGES START
========================= */
.footerPagesText__title {
  font-size: 30px;
  color: var(--color-blue);
  font-weight: 500;
  margin-bottom: 0;
}
.footerPages {
  color: var(--color-blue);
}
.footerPagesText {
  margin-bottom: 164px;
  margin-top: 100px;
}

.footerPagesText__subTitle {
  margin-top: 35px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}
.footerPagesText__link {
  color: var(--color-blue);
}
/* =========================
   FOOTER PAGES END
========================= */
#wcb #wcb_2 {
  color: #fff;
}

#wcb.carbonbadge {
  flex-direction: column;
  align-items: flex-start;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 620px) {
  .mobile-only {
    display: block;
  }
  .desktop-only {
    display: none;
  }
}

.hidden {
  display: none;
}
.show {
  display: block;
}

.mainFooter__bottom.desktop-only {
  margin-top: -10px;
}

.mainFooter__bottom.mobile-only {
  margin: 20px auto 0;
}

body.theme--dark .missionSlider__top__btn,
body.theme--dark .careersCards__btn,
body.theme--dark .mainFooter__btn--primary {
  color: #000;
}