/*
CTC Separate Stylesheet
Updated: 2024-09-10 05:08:55
*/



:root {

  /* =========================
     🎨 BRAND / HIGHLIGHT
  ========================== */
  --color-primary: #27a05f;

  /* =========================
     🖤 TEXT COLORS
  ========================== */
  --color-text-main: #2f3132;
  --color-text-dark: #1f3143;
  --color-text-body: #454749;
  --color-text-muted: #596774;
  --color-text-light: #6b7280;
  --color-text-soft: #5d5e60;
  --color-text-white: #ffffff;
  --color-text-light-white: #eaedf0;
  --color-text-dark-white: #949ca5;
  --color-dark: #0b1f33;

  /* =========================
     ⚪ BACKGROUND COLORS
  ========================== */
  --bg-main: #ffffff;
  --bg-light: #f3f6f9;
  --bg-soft: #f2f4f7;
  --bg-dark: #0b1f33;
  --bg-dark-alt: #15283b;
  --bg-dark-blue: #2fbf71;

  /* =========================
     🧱 BORDER / SURFACE
  ========================== */
  --color-border: #e0e4e9;
  --color-surface: #eaedf0;
  --color-card: #f9f9fb;
  --color-border-white: #ffffff;

  /* =========================
     🌈 GRADIENT
  ========================== */
  --gradient-light: linear-gradient(to top, #f1f5f9 67%, #ffffff 6%);

  /* =========================
     🔤 FONT SYSTEM
  ========================== */
  --font-body: "Segoe UI", sans-serif;
  --font-heading: "source-sans-pro", sans-serif;

  /* =========================
     🔠 FONT SIZES (FLUID)
  ========================== */
  --fs-h1: clamp(32px, 4vw, 48px);
  --fs-h2: clamp(28px, 3.2vw, 40px);
  --fs-h3: clamp(22px, 2.5vw, 30px);
  --fs-h4: clamp(20px, 2vw, 24px);
  --fs-h5: clamp(18px, 1.8vw, 20px);
  --fs-h6: clamp(16px, 1.5vw, 18px);

  --fs-body-lg: clamp(18px, 1.5vw, 20px);
  --fs-body: clamp(16px, 1.2vw, 18px);
  --fs-small: clamp(14px, 1vw, 16px);

  /* =========================
     📏 LINE HEIGHT
  ========================== */
  --lh-heading: 1.2;
  --lh-body: 1.6;

  /* =========================
     🔢 FONT WEIGHT
  ========================== */
  --fw-regular: 400;
  --fw-medium: 600;
  --fw-bold: 700;

  /* =========================
     📦 BORDER RADIUS
  ========================== */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* =========================
     🌑 SHADOWS
  ========================== */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.12);

  /* NEW CUSTOM */
  --radius-xl: 21.9px;
  --shadow-custom: 0 5.5px 13.7px rgba(0, 0, 0, 0.1);

  --green: #4a9e6b;
  --gray-dot: #c8cdd6;
  --text-dark: #1a1e26;
  --text-body: #5a6070;
  --bg: #eef0f3;
  --line-color: #d0d4db;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text-main);
  background-color: var(--bg-main);
  line-height: var(--lh-body);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  color: var(--color-text-dark);
}

h1,
.home-banner-animation .col-left h1 {
  font-size: var(--fs-h1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: -0.02px;
  color: var(--color-text-main);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

h5 {
  font-size: var(--fs-h5);
}

h6 {
  font-size: var(--fs-h6);
}

p {
  font-family: var(--font-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}
p.has-medium-font-size{
  font-family: var(--font-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
      font-size: var(--fs-body) !important;
}
a {
  text-decoration: none;
}

.home-banner-animation .col-left h1 {
  max-width: 608px;
}

/* ═══════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════ */
.hero {
  padding: 100px 0 50px;
  background: var(--bg-light);
  margin-top: 78px !important;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.top-row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.col-left {
  flex: 0 0 54%;
}

.col-right {
  flex: 1;
}

/* ═══════════════════════════════════════════════
   BADGE
═══════════════════════════════════════════════ */
span.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-surface);
  border-radius: 50px !important;
  padding: 6px 14px 6px 6px !important;
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  line-height: 1.31;
  letter-spacing: 0.04px;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

span.badge span {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--fw-bold);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .06em;
}

/* ═══════════════════════════════════════════════
   HERO TITLE
═══════════════════════════════════════════════ */
.home-banner-animation .col-left h1 {
  margin-top: 20px;
  font-weight: 800;
}

.home-banner-animation .col-left h1 span {
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════════
   BODY TEXT
═══════════════════════════════════════════════ */
.col-right p {
  color: var(--color-text-soft);
  font-size: var(--fs-body-lg);
  margin-bottom: 28px !important;
  line-height: 1.6;
  font-weight: normal;
}

/* ═══════════════════════════════════════════════
   BUTTONS  (Segoe UI — body font)
═══════════════════════════════════════════════ */
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn,
.header-right-column ul li a,
.dreaming-building-sec .view-details,
.cus-button a,
.free-always .btn-secondary,
.free-always .view-details {
  display: flex;
  align-items: center;
  font-family: var(--font-body) !important;
  font-size: var(--fs-small) !important;
  font-weight: var(--fw-medium) !important;
  padding: 10px 32px !important;
  border-radius: 50px !important;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  text-decoration: none;
  width: fit-content;
}

.header-right-column ul li a {
  font-weight: normal !important;
  line-height: 1;
  padding: 14px 22px !important;
}

.btn-solid,
.header-right-column ul li:nth-of-type(2) a,
.dreaming-building-sec .view-details,
.btn-color,
a.btn.btn-color,
.cus-button a:nth-of-type(1),
.free-always .view-details {
  background: var(--bg-dark-blue) !important;
  color: #fff !important;
}

.btn-solid:hover,
.header-right-column ul li:nth-of-type(2) a:hover,
.dreaming-building-sec .view-details:hover,
.btn-color:hover,
a.btn.btn-color:hover,
.cus-button a:nth-of-type(1):hover,
.free-always .view-details:hover {
  background: var(--color-primary) !important;
  color: var(--color-text-white) !important;
  transform: translateY(-1px);
}

.btn-outline,
.cus-button a:nth-of-type(2) {
  background: var(--bg-main) !important;
  color: var(--color-text-main) !important;
  border: 1.5px solid var(--color-border) !important;
}

.header-right-column ul li:nth-of-type(1) a {
  background: transparent;
  color: var(--color-text-white);
  border: 1.5px solid var(--color-text-white);
}

.btn-outline:hover,
.header-right-column ul li:nth-of-type(1) a:hover,
.cus-button a:nth-of-type(2):hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
  transform: translateY(-1px);
  background: transparent !important;
}

.btn-wrap .view-details {
  padding: 15px 22px !important;
}

.btn-wrap {
  display: flex;
  gap: 20px;
}

.cus-button {
  margin-top: 20px;
}

.cus-button a {
  width: 100%;
  justify-content: center;
}

.btn-wrap .view-details:nth-of-type(2),
.free-always .btn-secondary {
  background: #ffffff !important;
  color: #0b1f33 !important;
}

.btn-wrap .view-details:nth-of-type(2):hover {
  background: var(--color-primary) !important;
  color: var(--color-text-white) !important;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   SLIDER
═══════════════════════════════════════════════ */
.slider-wrap {
  margin-top: 60px;
  padding: 30px 0 60px;
  overflow: hidden;
  position: relative;
  /*-webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);*/
}

.slider-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  align-items: center;

}

/* ── Card ─────────────────────────────── */
.profile-card {
  width: calc(18.5% - 16px);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: width 0.4s ease, flex 0.4s ease;
  flex-shrink: 0;
  border: 1px solid var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-custom);
}

.profile-card:hover:not(.active) {
  opacity: 1;
}

.profile-card.active {
  opacity: 1;
  box-shadow: var(--shadow-lg);
  z-index: 5;
  width: calc(26% - 16px);
}

/* Ribbon — Source Sans Pro (heading font) */
.ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-weight: var(--fw-medium);
  z-index: 2;
  opacity: 0;
  font-size: 14px;
  font-stretch: normal;
  font-style: normal;
  line-height: 0.93;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
  transform: translateY(-100%);
  transition: opacity .35s ease, transform .35s ease;
}

.ribbon .role-label {
  font-weight: var(--fw-medium);
  font-family: var(--font-body);
  text-transform: uppercase;
  margin-bottom: 2px;
  font-size: 10px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0.02px;
  text-align: left;
  color: #fff;
}

.profile-card.active .ribbon {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}

/* Image stack */
.img-wrap {
  position: relative;
  width: 100%;
  height: 306px;
  overflow: hidden;
  background: var(--bg-dark-blue);
}

.img-wrap .img-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s ease;
  /*mix-blend-mode: multiply;*/
}

.img-wrap .img-front {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.profile-card.active .img-back {
  opacity: 1;
  z-index: 1;
  /*mix-blend-mode: multiply;*/
}

.profile-card.active .img-front {
  z-index: 2;
  /*opacity: 0;*/
}

.profile-card:hover:not(.active) .img-front {
  filter: grayscale(0%);
}

.profile-card.active .img-wrap {
  /*height: 348px;*/
  position: relative;
}

.profile-card .img-wrap {
  background: #288969;
}

/*.profile-card.active .img-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: #288969;
     mix-blend-mode: multiply; 
}*/

/* Card info — Segoe UI (body font) */
.profile-info {
  padding: 14px 16px 14px;
  background: var(--bg-main);
  border-top: 1px solid var(--color-surface);
}

.profile-name {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h5);
  color: var(--bg-dark);
  font-stretch: normal;
  font-style: normal;
  line-height: 0.82;
  letter-spacing: normal;
}

.profile-role {
  font-family: var(--font-heading);
  font-size: 12px;
  color: #6d7985;
  margin-top: 5px;
}



/* =========================
   HEADER BASE
========================= */
.header {
  background: var(--color-text-dark);
  color: var(--color-text-white);
  padding: 14px 0;
  z-index: 999;
}

.header .container {
  max-width: 1440px;
}

a.custom-logo-link img {
  width: 214px;
  height: auto;
}

.navmenu ul {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu ul li {
  padding: 0;
}

.navmenu ul li a {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 18px 0 !important;
  font-weight: normal;
  color: var(--color-text-white);
  transition: all 0.25s ease;
}

.navmenu ul li.current-menu-item>a,
.navmenu ul li.current_page_item>a,
.navmenu ul li.current-menu-ancestor>a,
.navmenu ul li a:hover {
  color: var(--color-primary);
}

.header-right-column ul {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navmenu {
  margin-left: auto;
  margin-right: 64px;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1400px !important;
}



/* =========================
   FOOTER BASE
========================= */
.footer {
  background: var(--bg-dark);
  color: var(--color-text-white);
  font-family: var(--font-body);
}

.footer a {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  font-family: var(--font-body);
  line-height: 1.5;
  letter-spacing: normal;
  color: #f9f9fb !important;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer a:hover {
  color: var(--color-primary) !important;
}

.footer-top {
  padding: 80px 0 50px;
}

/* Logo + Text */
.footer-links img {
  max-width: 104px;
  margin-bottom: 20px;
}

.footer-links p {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #f9f9fb;
}

.badge-list {
  display: flex;
  gap: 12px;
}

.badge-list img {
  width: 48px;
  height: auto;
  margin-bottom: 0;
}

.footer-links h6 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  margin-bottom: 18px;
  font-size: var(--fs-h6);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.78;
  letter-spacing: normal;
  color: var(--color-card);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container-fluid.footer-bottom {
  padding-bottom: 0;
}

.footer-links ul li {
  margin-bottom: 0px;
}

.footer-links ul li a {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #f9f9fb !important;
}

.footer-bottom {
  padding: 25px 0;
}

ul.d-flex.copyright-menu {
  margin-right: auto !important;
  margin-left: 0 !important;
  /* width: 69%; */
}

/* Layout */
.footer-bottom .copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border: 0;
}

/* Copyright text */
.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom ul li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #f9f9fb;
}

/* Middle links */
.copyright-menu {
  display: flex;
  gap: 22px;
}

.copyright-menu li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #f9f9fb;
  display: block;
}

.container-fluid.footer-bottom .copyright {
  position: relative;
}

.container-fluid.footer-bottom .copyright::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: calc(100% - 1.5rem);
  height: 1px;
  background: #c6c6c8;
}

/* =========================
   SOCIAL
========================= */
.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link li:first-child {
  font-size: 13px;
  color: #b8c4cf;
}

.social-link img {
  width: 18px;
  height: 18px;
  opacity: 0.8;
  transition: 0.3s;
}

.social-link a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}


section.py-5 {
  padding-bottom: 60px !important;
  padding-top: 60px !important;
}

section.pt-7 {
  padding-top: 100px !important;
}

section.pb-7 {
  padding-bottom: 100px !important;
}

section.pt-6 {
  padding-top: 80px !important;
}

section.pb-6 {
  padding-bottom: 80px !important;
}

section.pt-5 {
  padding-top: 60px !important;
}

section.pb-5 {
  padding-bottom: 60px !important;
}

section.pt-4 {
  padding-top: 40px !important;
}

section.pb-4 {
  padding-bottom: 40px !important;
}

section.pt-0 {
  padding-top: 0px !important;
}

section.pb-0 {
  padding-bottom: 0px !important;
}

/* =========================
   SCALE MISSION SECTION
========================= */
.scale-mission-sec {
  background: var(--bg-dark);
  color: var(--color-text-white);
  padding: 70px 0 60px;
}

/* =========================
   TITLE
========================= */
.scale-mission-sec .title h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: center;
  color: #ced2d6;
  padding-bottom: 30px !important;
}

.scale-mission-sec .counter-content {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   COUNTER BOX
========================= */
.counter-box {
  position: relative;
  text-align: center;
}


/* =========================
   CONTENT
========================= */
.counter-content {
  padding: 40px 10px;
}

/* Numbers */
.counter-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  margin-bottom: 10px;

  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.02px;
}

/* Green highlight */
.counter-content h3 span {
  color: #12b76a;
}

/* Text */
.counter-content p {
  font-size: var(--fs-small);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #ced2d6;
  margin: 0;
}



/* =========================
   ECOSYSTEM SECTION
========================= */
.ecosystem-list-sec {
  background: var(--bg-dark);
  color: var(--color-text-white);
  padding: 80px 0;
}

.ecosystem-list-sec .benefits-common {
  display: flex;
}

.ecosystem-list-sec .benefits-content {
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  border: 0px solid rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 24px;
  background-color: #15283b;

}

.ecosystem-list-sec .benefits-content:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.ecosystem-list-sec .benefits-content img {
  width: 79px;
  margin-bottom: 35px;
  position: relative;
  top: unset;
  left: unset;
}

.ecosystem-list-sec .title-desc,
.ecosystem-heading .title-desc {
  text-align: left !important;
}

.ecosystem-list-sec .title-desc p,
.ecosystem-heading .title-desc p,
.testimonials-sec .title p,
.journey-heading .title-desc p,
.ecosystem-platform-sec .signature-series-content p {
  color: #ced2d6;
  font-size: var(--fs-small);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

.journey-heading .title-desc p,
.ecosystem-platform-sec .signature-series-content p {
  font-size: var(--fs-body);
}

.journey-heading .title-desc p,
.ecosystem-platform-sec .signature-series-content p {
  color: #5d5e60;
}

.ecosystem-list-sec .title-desc p span,
.ecosystem-heading .title-desc p span,
.testimonials-sec .title p span,
.journey-heading .title-desc p span,
.press-recognition-sec .title p span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  color: #27a05f;
  text-transform: uppercase;
}

.journey-heading .title-desc p span {
  color: #6b7280;

}

.ecosystem-list-sec .title-desc h2,
.ecosystem-heading .title-desc h2,
.testimonials-sec .title h2,
.journey-heading .title-desc h2,
.reasons-employers-sec .title h2,
.ecosystem-platform-sec .signature-series-content h2,
.press-recognition-sec .title h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.02px;
}

.journey-heading .title-desc h2,
.reasons-employers-sec .title h2 {
  color: #0b1f33;
}

.reasons-employers-sec .title {
  margin-bottom: 30px;
}

.ecosystem-list-sec .benefits-content h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
  color: var(--color-surface);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.ecosystem-list-sec .benefits-content p {
  font-size: var(--fs-small);
  font-family: var(--font-body);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: #ced2d6;
  margin: 0;
}




/* =========================
   OUR PURPOSE SECTION
========================= */

.our-purpose-heading .content-below p {
  color: var(--color-text-soft);
  font-size: var(--fs-body-lg);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

.our-purpose-heading .content-below p span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}

.our-purpose-heading .content-below .green {
  color: #6b7280;
}

.our-purpose-heading .content-below h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);

}

.our-purpose-heading .what-we-bring-content {
  max-width: 657px;
  margin-left: auto;
  margin-top: 25px;
}

.our-purpose-heading .what-we-bring-content p {
  color: var(--color-text-soft);
  font-size: var(--fs-body-lg);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}



.our-purpose-list .benefits-content,
.employers-list-sec .benefits-content {
  padding: 30px;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.our-purpose-list .benefits-content:hover,
.employers-list-sec .benefits-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.our-purpose-list .benefits-common {
  width: 30%;
}

.our-purpose-list .big-image {
  width: 40%;
}

.our-purpose-list .benefits-content img,
.employers-list-sec .benefits-content img {
  width: 56px;
  margin-bottom: 35px;
  position: relative;
  top: unset;
  left: unset;
}

.our-purpose-list .benefits-content h3,
.employers-list-sec .benefits-content h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg-dark);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.our-purpose-list .benefits-content p,
.employers-list-sec .benefits-content p {
  font-size: var(--fs-small);
  font-family: var(--font-body);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--color-text-soft);
  margin: 0;
}

.employers-list-sec .benefits-content p {
  color: var(--color-text-body);
}

.our-purpose-list .big-image .benefits-content {
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
}

.our-purpose-list .big-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 0;
}

.logoMark-row {
  margin: 0 !important;
}

.logoMark-container {
  margin-top: 0 !important;
}

/* =========================
   TESTIMONIAL SECTION
========================= */
.testimonials-sec {
  background: #f2f4f7;
  padding: 80px 0;
}

/* =========================
   GRID FIX
========================= */
.testimonials-sec .testimonial-common {
  display: flex;
  padding-top: 10px;
  padding-bottom: 0px;
  padding-right: 8px;
}

.testimonials-sec .testimonial-content-wrap {
  padding: 26px;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  box-sizing: border-box;
  border-radius: 24px;
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #f3f4f6;
  background-color: #fff;
  margin-right: 5px;
}

.testimonials-sec .testimonial-content-wrap:hover {
  box-shadow: 0 1px 2px -1px rgba(0, 0, 0, 0.1), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.testimonials-sec .title {
  margin-bottom: 20px;
  text-align: left !important;
}

.testimonials-sec .title h2 {
  color: var(--color-text-main);
}

.testimonials-sec .container:nth-of-type(2),
.press-recognition-sec .container:nth-of-type(2) {
  max-width: 100% !important;
  padding-left: calc(((100% - 1400px) / 2) + .75rem);
  padding-right: 0;
}

.testimonial-three-full .container:nth-of-type(2) {
  padding-left: calc(((100% - 1400px) / 2) + .75rem);
  padding-right: calc(((100% - 1400px) / 2) + .75rem);
}

.testimonials-sec .testimonial-header {
  margin-top: 0px;
  flex-flow: column;
}

.testimonials-sec .review-name {
  margin-top: 30px;
}

/* Name */
.testimonials-sec .review-name h3 {
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.275;
  letter-spacing: normal;
  color: var(--bg-dark);
  margin-bottom: 0;
}

/* Role */
.testimonials-sec .review-name p {
  font-weight: var(--font-body);
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  /*color: #5d5e60;*/
  color: #6b7280;
}

/* =========================
   CONTENT
========================= */
.testimonials-sec .testimonial-content {
  position: relative;
}

/* Quote text */
.testimonials-sec .testimonial-content p,
.press-recognition-sec .brand-logo p {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: normal;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #0b1f33;
}

/* Quote icons */
.testimonials-sec .testimonial-content img:first-child {
  width: 32px;
  margin-bottom: 10px;
  opacity: 1;
}

.testimonials-sec .testimonial-content img:last-child {
  width: 32px;
  margin-top: 10px;
  opacity: 1;
}

/* =========================
   BUTTON
========================= */
.testimonials-sec .more-testimonial {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 26px;
  border-radius: 50px;
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.testimonials-sec .more-testimonial:hover {
  background: #219653;
}


.dreaming-building-sec .btn-wrap {
  margin-top: 20px;
}

/* =========================
   HERO CTA SECTION
========================= */
.dreaming-building-sec {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  max-height: 624px;
  height: 70vh;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center center !important;
}

/* Background Image */
.dreaming-building-sec .signature-series-content {
  position: relative;
  border-radius: 0;
  color: #fff;
  height: auto;
  padding: 0;
  background: transparent !important;
}

/* Dark overlay */
.dreaming-building-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right,
      #0b1f33 0%,
      rgba(11, 31, 51, 0.6) 62%,
      rgba(11, 31, 51, 0.9) 94%);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Content above overlay */
.dreaming-building-sec .signature-series-content>* {
  position: relative;
  z-index: 2;
}

/* =========================
   HEADING
========================= */
.dreaming-building-sec h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

/* =========================
   SUBTEXT
========================= */
.dreaming-building-sec p {
  font-size: var(--fs-h6);
  color: #d1d9e0;
  margin-bottom: 28px;
}

/* =========================
   BUTTON GROUP
========================= */
.dreaming-building-sec .view-details,
.free-always .view-details {
  width: fit-content;
  transition: all 0.3s ease;
}


/* Optional second button style */
.dreaming-building-sec .btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: #ffffff;
  color: #0f2437;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.dreaming-building-sec .btn-outline:hover {
  background: #f1f1f1;
}



.logoMark-logo-slider .logoMark-logo {
  width: calc(20% - 16.33px);
  min-width: 70px;
  max-width: 240px;
}

.logoMark-logo-slider .logoMark-logo:hover img {
  filter: none;
}

.logoMark-logo-slider .logoMark-logo img {
  max-width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
  filter: none;
  transition: filter 0.3s ease;
}

.logoMark-logo-slider .ogoMark-container h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: -0.02px;
  text-align: center;
  color: #1f3143;
}





/* =========================
   EMPLOYERS SECTION
========================= */
.employers-sec {
  background: #f2f4f7;
  padding: 90px 0;
}

/* =========================
   CONTENT COLUMN
========================= */
.employers-sec .content {
  max-width: 617px;
}

/* Small label */
.employers-sec .grey {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  color: #6b7280;
}

/* Heading */
.employers-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
}

/* Paragraph */
.employers-sec p {
  color: var(--color-text-body);
  font-size: var(--fs-body);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

/* =========================
   IMAGE
========================= */
.employers-sec .image-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.employers-sec .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* =========================
   ALIGNMENT FIX
========================= */
.employers-sec .row {
  align-items: center;
}





/* =========================
   PIPELINE SECTION
========================= */
.pipeline-sec {
  background: #f2f4f7;
}

/* CARD CONTAINER */
.pipeline-sec .container {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}

.pipeline-sec .content-below p {
  width: 100%;
  height: 100%;
}

.pipeline-sec .content-below img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.pipeline-sec .what-we-bring-content {
  padding-left: 20px;
}

.what-we-bring-common .content-below {
  height: 100%;
  max-width: 653px;
}

.pipeline-sec .grey {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  color: #6b7280;
}

/* Heading */
.pipeline-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
  margin-bottom: 40px !important;
}

/* =========================
   STATS GRID
========================= */
.pipeline-sec .what-we-bring-content {
  display: flex;
  flex-flow: row wrap !important;
  gap: 10px 40px;
  padding-left: 20px;
}

/* Each stat */
.pipeline-sec .stat-item {
  width: calc(50% - 20px);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Number */
.pipeline-sec .stat-item h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: #27a05f;
  margin-bottom: 6px;
  border-bottom: solid 1px #e7e9eb;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
}

/* Text */
.pipeline-sec .stat-item p {
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #596774;
}

.employers-sec a.btn {
  border: 0 !important;
}


/* =========================
   JOURNEY SECTION
========================= */
.journey-list-sec {
  background: #ffffff;
  padding: 90px 0;
  position: relative;
}

/* =========================
   ROW (FLEX)
========================= */
.journey-list-sec .row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

/* TOP LINE */
.journey-list-sec .row::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 5%;
  width: 94%;
  height: 3px;
  background: linear-gradient(90deg, #f4b740, #2fbf71, #2f4a68, #1f7a5c);
  z-index: 0;
}

/* =========================
   COLUMN
========================= */
.journey-list-sec .benefits-common {
  position: relative;
  z-index: 2;
}

/* =========================
   CARD CONTENT
========================= */
.journey-list-sec .benefits-content {
  padding: 0;
}

/* =========================
   PHASE BADGE
========================= */
.journey-list-sec .benefits-content>h3:first-child {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 04px !important;
  letter-spacing: 1px;
  padding: 8px 14px !important;
  border-radius: 8px;
  background-color: #f4b740;
}

/* Colors */
.journey-list-sec .phase1 .benefits-content>h3:first-child {
  background: #f4b740;
  color: #f9f9fb;
}

.journey-list-sec .phase2 .benefits-content>h3:first-child {
  background-color: #2fbf71;
  color: #f9f9fb;
}

.journey-list-sec .phase3 .benefits-content>h3:first-child {
  background: #2f4a68;
  color: #f9f9fb;
}

.journey-list-sec .phase4 .benefits-content>h3:first-child {
  background: #1f7a5c;
  color: #f9f9fb;
}

/* =========================
   TITLE
========================= */
.journey-list-sec .benefits-content h3:nth-child(2),
.journey-list-sec .benefits-content .content-btn-wrap h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
  color: var(--color-text-main);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

/* =========================
   TEXT
========================= */
.journey-list-sec .benefits-content p {
  font-size: var(--fs-small);
  font-family: var(--font-body);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  color: var(--color-text-soft);
}




/* =========================
   TRANSLATION GAP SECTION
========================= */
.translation-gap-sec {
  /*background: #f2f4f7;*/
  padding: 90px 0;
}

.translation-gap-sec {
  background-image: linear-gradient(to top, #f1f5f9 0%, #f1f5f9 10%, #ffffff 100%);
}

.translation-gap-sec .content {
  max-width: 570px;
  margin-left: auto;
}

.translation-gap-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
}

.translation-gap-sec h2 span {
  color: var(--color-primary);
}

.translation-gap-sec p {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

.translation-gap-sec .image-wrap img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.translation-gap-sec .row {
  align-items: center;
}

.logoMark-container h2 {
  font-family: var(--font-heading);
  position: relative;
  z-index: 9;
  font-size: var(--fs-h3);
  font-weight: 600;
  color: #1f3143;
}

.logoMark-container h2::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 100%;
  height: 2px;
  background-color: #ced2d6;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
}

.logoMark-container h2 span {
  margin: 0 auto;
  width: fit-content;
  padding-left: 12px;
  padding-right: 12px;
  background-color: #f2f4f7;
}

.scale-mission-sec .counter-content:after {
  opacity: 0;
}

.container-fluid.footer-bottom .copyright {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
}


/* =========================
   HERO SECTION BASE
========================= */
.fadein-slider-sec {
  position: relative;
  min-height: 350px;
  height: 61vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-height: 582px;
}

.fadein-slider-sec .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fadein-slider-sec .bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  inset: 0;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}

.fadein-slider-sec .bg-slide.active {
  opacity: 1;
  z-index: 2;
}

.fadein-slider-sec .hero-overlay {
  position: absolute;
  background: #1f3143;
  background-size: cover !important;
  background-position: center center !important;
  inset: 0;
  opacity: .5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /*background: linear-gradient(
    90deg,
    rgba(11, 31, 51, 0.95) 0%,
    rgba(11, 31, 51, 0.85) 35%,
    rgba(11, 31, 51, 0.6) 55%,
    rgba(11, 31, 51, 0.2) 75%,
    rgba(11, 31, 51, 0) 100%
  );*/
}

.fadein-slider-sec .container {
  position: relative;
  z-index: 3;
}

.fadein-slider-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text-white);
  margin: 0;
}

.fadein-slider-sec h2 span {
  color: var(--color-primary);
  display: inline-block;
  margin-top: 8px;
}

.fadein-slider-sec h2 br {
  content: "";
  display: block;
  margin-bottom: 6px;
}

.fadein-slider-sec .row {
  text-align: center;
}

section.testimonials-sec {
  background-size: cover;
  background-position: bottom center !important;
  background-repeat: no-repeat !important;
}

.testimonial-section {
  position: relative;
  z-index: 1;
}

.testimonial-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f2f4f7 100%);
  pointer-events: none;
  opacity: 0;
}

.testimonial-section .owl-nav,
.press-recognition-sec .owl-nav {
  position: absolute;
  top: -93px;
  width: 55px;
  /*right: calc(((100% - 1166px) / 2) + .75rem);*/

  margin-left: 1306px;
  z-index: 9;
}

.testimonial-section .owl-nav button img,
.press-recognition-sec .owl-nav button img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
}

.testimonial-section .owl-nav button,
.press-recognition-sec .owl-nav button {
  box-shadow: none !important;
  border: 0 !important;
  transition: all .3s ease;
}

.testimonial-section .owl-nav button:hover,
.press-recognition-sec .owl-nav button:hover {
  background: #0b1f33 !important;
}

.testimonial-section .owl-nav button:hover img,
.press-recognition-sec .owl-nav button:hover img {
  filter: brightness(0) invert(1);
}






/* =========================
   TRANSLATION SECTION
========================= */

.translation-sec {
  background-image: linear-gradient(to top, #f1f5f9 0%, #f1f5f9 100%, #ffffff 100%);
  font-family: var(--font-body);
}

.translation-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
}

.translation-sec h2 span {
  color: var(--color-primary);
}

.translation-sec p {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

.translation-sec .content-wrap {
  display: flex;
  flex-flow: column;
  max-width: 570px;
  gap: 20px;
}

.translation-sec ul {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

.translation-sec ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  color: var(--color-text-soft);
  font-size: var(--fs-small);
}

.translation-sec ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color-primary);
  font-size: 14px;
}

.translation-sec .btn {
  width: fit-content;
}

.translation-sec .btn img {
  width: 20px;
}

.preview-output p.small::after {
  position: absolute;
  top: 100%;
  width: calc(100% + 32px);
  height: 1px;
  background: #ced2d6;
  content: "";
  left: -16px;
}

.preview-output p.small {
  position: relative;
  padding-bottom: 10px !important;
}


.translation-sec .translation-card {
  background: var(--bg-main);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin: 0 auto;
  width: 100%;
}

.translation-sec .small {
  font-size: var(--fs-small);
  color: var(--color-text-soft);
}

.translation-sec .fake-input span {
  color: var(--color-text-soft);
}

.translation-sec .preview-input,
.translation-sec .fake-input {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  font-size: var(--fs-small);
  color: var(--color-text-dark);
  background: #fff;
}

.translation-sec .preview-input:focus,
.translation-sec .fake-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(39, 160, 95, 0.15);
}

/* Fake input */
.fake-input {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 10px 14px;
  min-height: 42px;
  display: flex;
  align-items: center;
  background: #fff;
}

.fake-input {
  overflow: hidden;
}

/* .fake-text{ white-space:pre; } */
.fake-text {
  display: inline;
  background: none !important;
  width: auto !important;
}

/* Cursor */
.translation-sec .typing-cursor {
  margin-left: 2px;
  font-weight: bold;
  animation: blink 1s infinite;

}

.fake-input.initial .typing-cursor {
  display: none;
}

@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

/* Arrow */
.translation-sec .preview-arrow {
  opacity: 0;
}

.translation-sec .arrow {
  font-size: 20px;
  color: var(--color-primary);
}

.translation-sec .arrow img {
  width: 22px;
}

.translation-sec .translation-box {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  min-height: 180px;
}

.translation-sec .tag {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 50px;
  border: 1px solid #27a05f;
  background: #e7f8f0;
  color: var(--color-text-dark);
  transition: 0.3s;
}

.translation-sec .tag:hover {
  background: var(--color-primary) !important;
  color: var(--color-text-white) !important;
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.translation-sec .preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Dots FIX */
.typing-dots {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  opacity: 0;
  margin-top: 20px !important;
}

.typing-dots.active {
  opacity: 1 !important;
}

.typing-dots span {
  width: 10px;
  height: 10px;
  background: #596774;
  border-radius: 50%;
  animation: bounce 1.2s infinite;
}

.typing-dots span:nth-child(2) {
  animation-delay: .2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: .4s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}





.pipeline-sec-btn .btn {
  border: 0 !important;
}

.testimonial-section .owl-nav button.owl-prev,
.press-recognition-sec .owl-nav button.owl-prev {
  right: calc(100% - 18px);
}

.scale-mission-sec .container {
  padding-bottom: 6px !important;
}

.translation-gap-sec .image-column {
  width: 55%;
}

.translation-gap-sec .content-column {
  width: 45%;
}

.testimonials-sec .title p span {
  color: #6b7280;
}



/* Image wrapper */
.hover-style .img-wrap {
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.hover-style .img-wrap img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: all .3s ease;
  object-position: top center;
}

.hover-style .img-back {
  position: absolute;
  inset: 0;
  opacity: 0;
  mix-blend-mode: none !important;
}

.hover-style .img-front {
  position: relative;
  opacity: 1;
}

.hover-style .profile-card:hover .img-front,
.hover-style .profile-card.active .img-front {
  opacity: 0;
}

.hover-style .profile-card:hover .img-back,
.hover-style .profile-card.active .img-back {
  opacity: 1;
}

.inner-page-banner.banner-section,
.inner-page-banner .heroslider-content,
.inner-page-banner.banner-section .container {
  height: 450px;
  min-height: unset;
}

.inner-page-banner.banner-section .banner-content h1 {
  padding-top: 50px !important;
}

.banner-section .banner-content h1 {
  font-size: var(--fs-h1);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: -0.02px;
  color: var(--color-text-main);
}

/* Intro line */
.inner-content .title-desc p em {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  display: block;
}

/* Paragraph */
.inner-content .title-desc p {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 16px;
}

.inner-content .title-desc {
  text-align: left !important;
}

/* Headings */
.inner-content .title-desc h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
  margin-top: 30px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 14px;
}

.inner-content .title-desc h3 span,
.inner-content .title-desc h3 strong {
  color: var(--color-primary);
}

/* =========================
   📋 LIST STYLING
========================= */

.inner-content .title-desc ul {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

.inner-content .title-desc ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  color: var(--color-text-soft);
  font-size: var(--fs-small);
}

.inner-content .title-desc ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--color-primary);
  font-size: 14px;
}


.inner-content .title-desc strong {
  color: var(--color-text-dark);
  font-weight: var(--fw-medium);
}

.inner-content .title-desc a {
  color: var(--color-primary);
  text-decoration: none;
}

.inner-content .title-desc a:hover {
  text-decoration: underline;
}




/* ── SECTION ── */
.journey-section {
  background: var(--bg-light);
  padding: 72px 0 88px;
}

/* ── EYEBROW ── */
.journey-section .title-desc p span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ── HEADLINE ── */
.journey-section .title-desc h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
}

/* ══════════════════════════
       STEPPER / TAB NAV
    ══════════════════════════ */
.stepper-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
  justify-content: space-between;
  z-index: 2;

}

.stepper-nav::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 0;
  width: 100%;
  height: 1.5px;
  background: #c7d2da;
  z-index: 0;
  pointer-events: none;
  left: 0;
  z-index: -1;
}

.stepper-btn {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 12px 15px 12px 15px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  text-align: left;
  transition: background 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
  align-items: center;
  color: #1f7a5c;
  background: #f3f6f9;
}

/* connector dashed line */
.stepper-btn:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -22%;
  width: 18%;
  height: 1.5px;
  background: #c7d2da;
  z-index: 0;
  pointer-events: none;
  display: none;
}

.stepper-btn.active {
  background: var(--bg-main);
  box-shadow: var(--shadow-sm);
}

.stepper-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ─ badge ─ */
.step-badge {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--fw-bold);
  position: relative;
  z-index: 1;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.stepper-btn.active .step-badge {
  background: var(--color-primary);
  color: var(--color-text-white);
  border: none;
}

.stepper-btn:not(.active) .step-badge {
  background: var(--bg-main);
  color: var(--color-text-muted);
}

/* ─ step text ─ */
.step-info {
  padding-top: 2px;
}

.step-label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #0b1f33;
  margin-bottom: 0px;
  transition: color 0.2s;
}

.stepper-btn.active .step-label {
  color: var(--color-primary);
}

.stepper-btn:not(.active) .step-label {
  color: var(--color-text-dark);
}

.step-sub {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #596774;
  font-family: var(--font-body);
}

/* ══════════════════════════
       CONTENT CARD
    ══════════════════════════ */
.content-card {
  background: var(--bg-main);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-custom);
  padding: 52px 52px 44px;
  position: relative;
  overflow: hidden;
}

/* green wave lines */
.wave-decor-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66%;
  height: 484px;
  pointer-events: none;
  overflow: hidden;
}

.wave-decor-wrap img {
  width: auto;
  height: 484px;
  object-fit: cover;
  object-position: bottom center;
  max-width: 100%;
}

/* ── TAB PANES ── */
.tab-pane-custom {
  display: none;
}

.tab-pane-custom.active {
  display: block;
  animation: fadeUp 0.32s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─ card text ─ */
.journey-section h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
  margin-bottom: 18px !important;
}

.journey-section p {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
  font-family: var(--font-body);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
  margin: 0;
}

/* ─ photo ─ */
.photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  width: 100%;
  display: block;
}

.photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ─ divider ─ */
.phase-divider {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  margin: 0;
  padding: 28px 0 22px;
  border-top: 1.5px solid #e2e2e4;
  margin-top: 75px !important;
}

.journey-section .phase-divider p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
  margin-top: -65px !important;
}

/* ─ features ─ */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.feature-check img {
  width: 13px;
  height: 13px;
  display: block;
  filter: brightness(0) invert(1);
}

.journey-list-item ul {
  padding: 0;
  margin: 0;
}

.journey-list-item ul li strong {
  font-family: var(--font-body);
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
  line-height: 1.5;
  margin-bottom: 7px;
  list-style: none;
}

.journey-list-item ul li {
  color: var(--color-text-soft);
  font-size: var(--fs-small);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
  margin: 0;
}

/* Parent UL */
.journey-list-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.journey-list-item ul li {
  position: relative;
  padding-left: 45px;
  flex: 0 0 calc(33.333% - 27px);
}

.journey-list-item ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 24px;
  height: 30px;
  background: url(/wp-content/uploads/2026/03/icon-checkmark@2x.png);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-position: bottom 5px center !important;
  background-size: contain;
  background-repeat: no-repeat;
}



section.inner-hero {
  background-size: cover !important;
  background-position: right top !important;
  height: 745px;
  display: flex;
  align-items: center;
}

.inner-hero .top-row {
  flex-flow: column;
  gap: 40px;
}

.inner-hero .top-row .col-right,
.inner-hero .top-row .col-left {
  flex: 1;
  width: 50%;
  min-width: 580px;
}

.home-banner-animation.inner-hero .col-left h1 {
  max-width: unset;
}

.free-always.signature-series {
  background-color: var(--color-primary);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  overflow: hidden;
  height: 60vh;
  max-height: 558px;
  min-height: 450px;
  display: flex;
  align-items: center;
}

.free-always.signature-series::after {
  content: "";
  width: 112%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: #1f7a5c;
  clip-path: polygon(0 0, 61% 0, 44% 100%, 0 100%);
  z-index: 1;
  opacity: 0;
}

.free-always.signature-series::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 144px;
  height: 218px;
  background: #1f7a5c;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 3;
  opacity: 0;

}

.free-always.signature-series .container {
  position: relative;
  z-index: 99;
}

.free-always .signature-series-content p span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  color: #8bdbaf !important;
  text-transform: uppercase;
}


/* Main heading */
.free-always .signature-series-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Sub paragraph */
.free-always .signature-series-content p {
  font-size: var(--fs-h6);
  color: #d1d9e0;
  margin-bottom: 28px;
}

/* Fine print */
.signature-series-content small {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #c5edd7;
  margin-top: -10px;
  display: block;
}

.free-always .signature-series-content {
  padding: 0;
  height: auto;
}



/* ─── SECTION ─── */
.why-major-section {
  background: var(--bg-dark);
  padding: clamp(56px, 8vw, 96px) 0;
}

/* ─── EYEBROW ─── */
.why-major-section .title-desc p span {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  color: #27a05f;
  text-transform: uppercase;
}

/* ─── HEADING ─── */
.why-major-section .title-desc h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text-light-white);
}

/* ══════════════════════════════
       LEFT VISUAL
    ══════════════════════════════ */
.why-major-section .visual-wrapper {
  position: relative;
}

.why-major-section .hero-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}

/* ── MOS Input Card ── */
.why-major-section .mos-card {
  position: absolute;
  top: 28px;
  left: -36px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 13px 16px 15px;
  box-shadow: var(--shadow-lg);
  width: 244px;
  z-index: 3;
}

.why-major-section .mos-card label {
  display: block;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.37;
  letter-spacing: normal;
  text-align: left;
  color: #6d7985;
}

.why-major-section .mos-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 7px 11px;
  background: #fff;
}

.why-major-section .mos-input-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.5;
}

.why-major-section .mos-input-row input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  width: 100%;
  background: transparent;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: left;
  color: #2f3132;
}

/* ── Translation Card ── */
.why-major-section .translation-card {
  position: absolute;
  bottom: 28px;
  left: -36px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 16px 16px;
  box-shadow: var(--shadow-lg);
  width: 290px;
  z-index: 3;
}

.why-major-section .tc-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
}

.why-major-section .tc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

.why-major-section .tc-label {
  text-transform: uppercase;
  font-size: 11.7px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #0b1f33;
}

.why-major-section .tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.why-major-section .tag {
  font-weight: var(--fw-medium);
  border-radius: 50px;
  padding: 3px 12px;
  white-space: nowrap;
  background: transparent;
  line-height: 1.6;

  font-size: 11.7px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: #0e7a57;

  padding: 5.8px;
  border-radius: 8.7px;
  border: solid 0.5px rgba(39, 160, 95, 0.5);
  background-color: rgba(85, 212, 143, 0.2);
}

/* ══════════════════════════════
       RIGHT: ACCORDION FEATURES
    ══════════════════════════════ */
.why-major-section .features-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.why-major-section .feature-item {
  border-radius: var(--radius-lg);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
  padding: 24px 32px;
  border-radius: 20px;
  border: solid 1px transparent;
  background-color: transparent;
  width: 100%;
  flex-flow: row wrap;
  gap: 0;
}

.why-major-section .feature-item:hover {
  border: solid 1px #0b1f33;
  background-color: #1f3143;
}

.why-major-section .feature-item.active {
  border: solid 1px #0b1f33;
  background-color: #1f3143;
}

.why-major-section .feature-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0px 0px;
  user-select: none;
}

/* Icon circle */
.why-major-section .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #374a5c;
  transition: background 0.3s ease;
}

.why-major-section .feature-icon img {
  max-width: 32px;
  max-height: 32px;
  opacity: .7;
}

.why-major-section .feature-item.active .feature-icon img {
  opacity: 1;
}

.why-major-section .feature-item.active .feature-icon {
  background: var(--color-primary);
}

.why-major-section .f.why-major-section ature-icon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.38;
  transition: opacity 0.3s ease;
  display: block;
}

.why-major-section .feature-item.active .feature-icon img {
  opacity: 1;
}

.why-major-section .feature-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark-white);
  line-height: 1.3;
  transition: color 0.3s ease;
  flex: 1;
}

.why-major-section .feature-item.active .feature-title {
  color: var(--color-text-light-white);
}

/* Chevron arrow */
.why-major-section .feature-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.25;
  transition: opacity 0.3s, transform 0.3s;
  filter: brightness(0) invert(1);
}

.why-major-section .feature-item.active .feature-arrow {
  opacity: 0.7;
  transform: rotate(180deg);
}

/* Body (accordion) */
.why-major-section .feature-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-major-section .feature-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 1.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-major-section .feature-item.active .feature-body {
  opacity: 1;
}

.why-major-section .feature-body-inner {
  padding-top: 20px;
}

.why-major-section .feature-body-inner p {
  color: #ced2d6;
  font-size: var(--fs-small);
  line-height: 1.5;
  font-weight: normal;
}

.why-major-section .g-4,
.why-major-section .gx-4 {
  --bs-gutter-x: 3.5rem;
}





/* CARD DEFAULT */
.profile-card {
  width: calc(20% - 9px);
  transform: scale(.8);
  flex: 0 0 auto;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.35s ease;
  transform: scale(0.9);
}

/* ACTIVE CARD */
.profile-card.active {
  transform: scale(1.12);
  /* smooth grow */
  width: calc(20% - 9px);
  opacity: 1;
  z-index: 2;
  margin-right: 30px;
  margin-left: 30px;
}

.slider-track {
  gap: 0px;
}

.contact-hero .col-left h1 {
  color: #eaedf0;
}

.contact-hero .col-right p {
  color: #bdc7d1;
}

.btn-group a:empty {
  display: none !important;
}

.contact-hero span.badge {
  border-radius: 50px;
  background-color: rgba(45, 65, 85, 0.5);
  color: #2fbf71;
  text-transform: uppercase;
  padding: 8px 15px !important;
}

.contact-support-sec .benefits-content {
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.05);
  border: solid 1px #e0e4e9;
  background-color: #fff;
}

.contact-support-sec .benefits-content img {
  width: 48px;
  margin-bottom: 10px;
}

.contact-support-sec .benefits-content p a {
  color: #27a05f;
  font-weight: 500;
  text-decoration: none;
}

.benefits-content .btn {
  position: relative;
  font-weight: 400 !important;
  padding-right: 45px !important;
}

.benefits-content .btn:after {
  position: relative;
  content: "";
  width: 13px;
  background: url(/wp-content/uploads/2026/03/icon-park-outline-arrow-right-1.png);
  height: 13px;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}





/*Form Section*/
/* ===== Form Wrapper Card ===== */
.gform-theme {
  max-width: 900px !important;
  width: 100%;
  margin: 40px auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  text-align: left !important;
}

.gform-theme p.gform_required_legend {
  display: none;
}

.gform-theme .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Half width fields */
/*.gform-theme .gfield--width-half {
  width: calc(50% - 10px);
}*/

/* Full width fields */
/*.gform-theme .gfield {
  width: 100%;
}*/
.gform_validation_errors {
  display: none !important;
}

.gform-theme .gfield_label {
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #2f3132;
}

.gform-theme--foundation .gform_fields {
  row-gap: 20px !important;
}

.gform-theme input,
.gform-theme select,
.gform-theme textarea {
  width: 100% !important;
  padding: 8px 16px !important;
  border: 1px solid #ddd !important;
  transition: all 0.3s ease;
  font-size: 16px !important;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.275 !important;
  letter-spacing: normal;
  text-align: left;
  color: #767779 !important;
  border-radius: 8px !important;
  border: solid 1px #c6c6c8 !important;
  background-color: #f9f9fb !important;
  height: 48px;
}

.gform-theme input:focus,
.gform-theme select:focus,
.gform-theme textarea:focus {
  border-color: #2fb36f !important;
  box-shadow: 0 0 0 2px rgba(47, 179, 111, 0.15) !important;
  outline: none !important;
}

/* ===== Textarea ===== */
.gform-theme textarea {
  height: 140px !important;
}

.gform-theme--foundation .gfield textarea.large {
  min-block-size: 8rem !important;
}

.gform-theme select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 20 20' width='20'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

/* ===== Button ===== */
.gform-theme .gform_button {
  width: 100% !important;
  padding: 16px !important;
  background: #2fb36f !important;
  color: #fff !important;
  font-size: 16px !important;
  border: none !important;
  border-radius: 50px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

/* Button hover */
.gform-theme .gform_button:hover {
  background: #28a764 !important;
  transform: translateY(-1px) !important;
}

/* ===== Footer spacing ===== */
.gform-theme .gform_footer {
  margin-top: 20px;
}

/* ===== Required star ===== */
.gform-theme .gfield_required {
  color: red;
  margin-left: 3px;
}



.contact-icon-guoup {
  background: #f8f9fb;
  padding: 60px 0;
}

.contact-icon-guoup .row {
  justify-content: center;
}

.contact-icon-guoup .benefits-common {
  display: flex;
  justify-content: center;
  width: 20%;
}

.contact-icon-guoup .benefits-content {
  background: #fff;
  border-radius: 16px;
  padding: 25px 10px;
  text-align: center;
  width: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: none;
  align-items: center;
  gap: 10px;
}

.contact-icon-guoup .benefits-content:hover {
  transform: translateY(-6px);
  box-shadow: none;
}

.contact-icon-guoup .benefits-content img {
  width: 120px;
  height: 80px;
  position: relative;
  margin: 0 auto;
  /*border-radius: 16px;*/
  /*box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.06);*/
  background-color: #fff;
}

.contact-icon-guoup .benefits-content h3 {
  font-size: 13px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  color: #6d7985;
  width: 100%;
  text-align: center;
  margin-bottom: 6px;
}

.contact-icon-guoup .benefits-content p {
  font-size: 17px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.41;
  letter-spacing: normal;
  text-align: left;
  color: #0b1f33;
  margin-bottom: 0;
  width: 100%;
  text-align: center !important;
}

.contact-icon-guoup .benefits-content p strong,
.contact-icon-guoup .benefits-content p a {
  font-weight: 600;
  color: #27a05f;
  text-align: center;
}

.contact-icon-guoup .benefits-content p:last-child {
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.42;
  letter-spacing: normal;
  text-align: center;
  color: #6d7985;
  margin-top: 5px;
}

.contact-icon-guoup .benefits-content a {
  color: #27a05f;
  text-decoration: none;
}

span.green {
  color: var(--color-primary) !important;
}

/* Section */
.faq-common {
  background: var(--bg-light);
  padding: 70px 0;
  font-family: var(--font-body);
}

.faq-common .accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-common .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
  border-radius: 0 !important;
}

.faq-common .accordion-button {
  background: transparent;
  box-shadow: none;
  padding: 20px 40px 20px 0;
  font-size: var(--fs-h5);
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
  line-height: var(--lh-heading);
  position: relative;
}

.faq-common .accordion-button::after {
  display: none;
}

.faq-common .accordion-button::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  transition: 0.3s ease;
}

.faq-common .accordion-button:not(.collapsed)::before {
  content: "−";
}

.faq-common .accordion-button:not(.collapsed) {
  color: var(--color-text-dark);
  background: transparent;
}

.faq-common .accordion-body {
  padding: 0 0 20px 0;
}

.faq-common .accordion-content p {
  font-size: var(--fs-small);
  color: var(--color-text-light);
  line-height: var(--lh-body);
  margin: 0;
}

.faq-common .accordion-item+.accordion-item {
  margin-top: 15px;
}




/* Section */
.get-started-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  margin-bottom: 30px;
}

.get-started-sec .btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 30px auto 0 auto;
}


.get-started-sec .btn-solid {
  background: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: var(--shadow-sm);
  padding-right: 45px !important;
}

.get-started-sec .btn-solid:hover {
  background: #239155;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.get-started-sec .btn-outline {
  background: transparent !important;
  color: var(--color-text-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.get-started-sec .btn-outline:hover {
  color: var(--color-text-white);
  border-color: var(--color-primary);
}

.get-started-sec .btn-solid::after {
  content: "";
  background: url(/wp-content/uploads/2026/03/icon-park-outline-arrow-right-1.png);
  margin-left: 8px;
  font-size: 14px;
  width: 13px;
  height: 13px;

  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}


.contact-hero .col-right p {
  margin-bottom: 0 !important;
}

.get-started-sec .btn-group br {
  display: none !important;
}

.modal {
  background-color: rgba(11, 31, 51, 0.7);
  z-index: 999999999 !important;
}

.modal-dialog {
  max-width: 560px !important;
}

.modal-content {
  border: none;
  padding: 48px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 16px 48px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
}

#RequestDemo .modal-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: 30px !important;
}

#RequestDemo .modal-subtitle {
  font-size: var(--fs-body);
  color: var(--color-text-light);
  max-width: 420px;
  margin: 0 auto 10px;
  line-height: var(--lh-body);
}

.modal-header {
  border-bottom: none;
  padding: 0 !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 0 !important;
  margin-bottom: 30px !important;
}

.modal .modal-footer {
  display: none;
}

.modal-header .btn-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  opacity: 1 !important;
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background: url(/wp-content/uploads/2026/03/close-button@2x.png);
  background-position: center center !important;
  background-size: contain !important;
  background-repeat: no-repeat;
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
}

.modal-subtitle {
  color: #6c757d;
  font-size: 0.92rem;
  margin-top: 0.4rem;
  max-width: 320px;
  line-height: 1.5;
}

.modal-body {
  padding: 0 !important;
}

.modal div#gform_wrapper_2 {
  padding: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}

section.translation-gap-sec.hire-veterans-sec {
  background: #e1f5ee;
}

.hire-veterans-sec .image-wrap img {
  max-width: 500px;
  margin-right: -47px;
  margin-left: auto;
  display: block;
  margin-bottom: -68px;
}

.inner-hero .btn-group {
  margin-top: 30px;
}

.hire-veterans-sec .content {
  padding: 0;
  margin: 0;
}

section.pipeline-sec,
section.journey-heading.py-5 {
  position: relative;
}

section.pipeline-sec .what-we-bring-content p,
section.pipeline-sec .what-we-bring-content h2 {
  width: 100%;
}

.hire-veterans-sec .content-column {
  width: 50%;
}

.hire-veterans-sec .image-column {
  width: 50%;
}







.military-career-sec {
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.military-career-sec .benefits-common {
  position: relative;
}

.military-career-sec .military-career-sec .row {
  position: relative;
}

.military-career-sec .row::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0%;
  width: 100%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

.military-career-sec .benefits-content {
  position: relative;
  z-index: 1;
  padding: 0px 0px;
  justify-content: center;
  align-items: center;
}

/* ICON IMAGE */
.military-career-sec .benefits-content img {
  width: 110px;
  height: 82px;
  ;
  object-fit: contain;
  margin-bottom: 0px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  position: relative;
}

.military-career-sec .benefits-content>h3:nth-of-type(1) {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 15px;
}

.military-career-sec .benefits-content h3:nth-of-type(2),
.military-career-sec .benefits-content .content-btn-wrap h3 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-dark);
  margin-bottom: 12px;
}

.military-career-sec .benefits-content p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  max-width: 320px;
  margin: 0 auto;
}



.reasons-employers-sec .big-image {
  width: 33.33%;
}

.reasons-employers-sec .benefits-common {
  width: 33.33%;
}

.reasons-employers-sec .benefits-common.big-image-marge {
  width: 66.66%;
}

.reasons-employers-sec .big-image .benefits-content,
.reasons-employers-sec .big-image-marge .benefits-content {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
}

.reasons-employers-sec .big-image img,
.reasons-employers-sec .big-image-marge .benefits-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.hiring-logos-sec .logoMark-track {
  gap: 30px;
  padding-top: 15px;
  padding-bottom: 15px;

}

.hiring-logos-sec .logoMark-container {
  position: relative;
}

.hiring-logos-sec .logoMark-container:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 100%;
  /*transform: rotate(-180deg);*/
  background-image: linear-gradient(to right, #f2f4f7 33%, rgba(242, 244, 247, 0) 149%);
}

.hiring-logos-sec .logoMark-container:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  transform: rotate(-180deg);
  z-index: 9;
  background-image: linear-gradient(to right, #f2f4f7 33%, rgba(242, 244, 247, 0) 149%);
}

.hiring-logos-sec .logoMark-logo {
  text-align: center;
  margin: 0 auto;
  transition: all 0.3s ease;
  border-radius: 16px;
  border: solid 1px #cacadb;
  background-color: #f2f4f7;
  flex-flow: column;
  width: calc(25% - 22.5px) !important;
  max-width: 285px;
}

.hiring-logos-sec .logoMark-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hiring-logos-sec .logoMark-logo img {
  max-height: 96px;
  width: auto;
  max-width: 96%;
  margin-bottom: 20px;
}

.hiring-logos-sec .logoMark-logo .content {
  padding: 0 15px 15px;
}

.hiring-logos-sec .logoMark-logo .content strong {
  display: block;
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--bg-dark);
  margin-bottom: 5px;
}

.hiring-logos-sec .logoMark-logo .content p:last-child {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin: 0;

}

.hiring-logos-sec .logoMark-logo .content p {
  margin: 0;
}

.hiring-logos-sec .logoMark-container h2::after {
  display: none;
}

.testimonial-header .image-wrap img {
  max-width: 180px;
  margin-bottom: 30px;
}


.testimonials-sec.testimonial-one .container:nth-of-type(2) {
  max-width: 1400px !important;
  padding-left: calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
}





/* SECTION */
.enterprise-hiring-sec {
  text-align: center;
}

.enterprise-hiring-sec .title {
  position: relative;
  margin-bottom: 60px;
}

.enterprise-hiring-sec .title h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  display: inline-block;
  position: relative;
  z-index: 2;
}

.enterprise-hiring-sec .title h2::after {
  content: "";
  position: absolute;
  left: 100%;
  width: 100%;
  height: 2px;
  left: 0;
  right: 0;
  top: 50%;
  z-index: -1;
  background: rgba(255, 255, 255, 0.15);
}

.enterprise-hiring-sec .title h2 span {
  background: #0b1f33;
  padding-left: 10px;
  padding-right: 10px;
}

.enterprise-hiring-sec .benefits-content {
  padding: 0;
  justify-content: center;
  align-items: center;
}

.enterprise-hiring-sec .benefits-content img {
  width: 124px;
  height: 124px;
  object-fit: contain;
  position: relative;
  margin: 0 auto 20px auto;
  display: block;
}

.enterprise-hiring-sec .benefits-content h3 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: #eaedf0;
  margin-bottom: 12px;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.enterprise-hiring-sec .benefits-content p {
  font-size: var(--fs-small);
  color: #ced2d6;
  line-height: var(--lh-body);
  max-width: 320px;
  margin: 0 auto;
}


.testimonial-section.testimonial-one .owl-nav {
  right: calc(var(--bs-gutter-x) * .5);
  margin-left: unset;
}

.testimonial-section.testimonial-one .testimonial-content p {
  font-size: clamp(18px, 2.5vw, 32px);
  color: #0b1f33;
  font-weight: 600;
}

.testimonial-section.testimonial-one .testimonial-content-wrap {
  padding: 80px;
  border-radius: 24px;
  border: solid 1px #9fccb4;
  background-color: #fff;
}

.testimonial-section.testimonial-one .testimonial-content {
  position: relative;
  border-bottom: 1px solid rgba(31, 122, 92, 0.1);
  padding-bottom: 30px;
}

.hire-veterans-sec p {
  color: #596774;
}

.pipeline-sec .row {
  align-items: center;
}


section.contact-hero.home-banner-animation.inner-hero.hero {
  background-size: 656px 438px !important;
  background-position: right 30% center !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - ((100% - 746px) / 2)) center !important;
}

section.contact-hero.inner-hero.how-it-banner.hero {
  background-size: 595px 594px !important;
}

.color-translation-box {
  background: #f1f3f6 !important;
}

.color-translation-box .translation-card {
  border-radius: 40px;
  background-color: #e6e9ef;
  padding: 40px 50px 20px 50px !important;
  position: relative;
  z-index: 2;
  box-shadow: none !important;
  overflow: hidden;
  margin-bottom: 15px;
}

.color-translation-box .translation-card:after {
  z-index: -2;
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  width: calc(100% - 50px);
  height: calc(100% - 30px);
  background-color: #0e7a57;
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
}

.color-translation-box .translation-card:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  width: calc(100% - 70px);
  height: calc(100% - 70px);
  background-color: #fff;
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
}

.color-translation-box .translation-card p.small {
  color: var(--color-text-white) !important;
}

.color-translation-box .translation-card .translation-box p.small {
  color: var(--color-text-soft) !important;
}

.color-translation-box .fake-input {
  margin-top: 20px;
}

.color-translation-box .col-lg-6:nth-of-type(2)>p {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: center;
  color: rgba(89, 103, 116, 0.8);
}

.starting-point-heading {
  background: #f1f3f6 !important;
}

/* SECTION BASE */
.starting-point-sec {
  background-image: linear-gradient(to bottom, #f2f4f7 124%, #eef1f4 35%);
}

.starting-point-sec .benefits-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 30px 30px 0 30px;
  border-radius: 24px;
  overflow: hidden;
}

.starting-point-sec .benefits-content>img {
  width: 56px;
  height: 56px;
  margin-bottom: 15px;
  object-fit: cover;
  position: relative;
  top: unset;
}

.starting-point-sec .benefits-content h3 {
  color: var(--color-text-white);
  font-size: var(--fs-h3);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: -0.02px;
  text-align: left;
  color: #fff;
}

.starting-point-sec .benefits-content h3 span {
  color: var(--bg-dark-blue);
}

/* SUB TEXT */
.starting-point-sec .benefits-content>p {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.43;
  letter-spacing: normal;
  text-align: left;
  color: #b6ded1;
}

/* COLOR VARIANTS */
.starting-point-sec .deep-blue-box .benefits-content {
  border-radius: 24px;
  background-color: #1f3143;
}

.starting-point-sec .green-box .benefits-content {
  background-color: #0e7a57;
}

.starting-point-sec .light-blue-box .benefits-content {
  background: #2f4a68;
}

/* WHITE CONTENT AREA */
.starting-point-sec .content-btn-wrap {
  background: #fff;
  color: #333;
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: 15px;
}

/* LIST */
.starting-point-sec .content-btn-wrap ol {
  padding-left: 18px;
  margin-bottom: 25px;
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.starting-point-sec .content-btn-wrap ol li {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: left;
  color: #596774;
  position: relative;
  position: relative;
  padding-left: 40px;
  counter-increment: step-counter;
}

.starting-point-sec .content-btn-wrap ol li strong {
  font-weight: 600;
  color: #1f3143;
}

.starting-point-sec .content-btn-wrap ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 2px;

  width: 22px;
  height: 22px;

  background: #e6ebf0;
  color: #6b7280;

  font-size: 12px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
}

/* BUTTON */
.starting-point-sec .btn.btn-color {
  padding: 12px 28px;
  border-radius: 50px;
  background: #ffffff;
  color: #0f2437;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent !important;
  color: #27a05f !important;
  border: 1px solid #a3afbc !important;
  margin: 0 auto !important;
}

.starting-point-sec .btn.btn-color:hover {
  color: var(--color-text-white) !important;
  border-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
}


/* PUSH BUTTON BOTTOM */
.starting-point-sec .content-btn-wrap a {
  margin-top: auto;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .starting-point-sec .benefits-common {
    margin-bottom: 20px;
  }
}


.ecosystem-platform-sec .signature-series-content h2 {
  color: #0b1f33;
}

.ecosystem-platform-sec .signature-series-content p {
  color: #6b7280;
  text-transform: uppercase;
  margin-top: -127px !important;
}

.ecosystem-platform-sec .signature-series-content p span {
  color: #6b7280;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.ecosystem-platform-sec .signature-series-content {
  padding: 0;
  height: 507px;
  background-size: cover !important;
  background-position: center center !important;
  border-radius: 24px !important;
  margin-top: 120px;
  gap: 0;
}

.ecosystem-platform-list .benefits-common {
  width: 33.33%;
}

.employers-list-sec.ecosystem-platform-list .benefits-content {
  padding-left: 0 !important;
  padding-right: 0 !important
}

.ecosystem-platform-list .benefits-content:hover {
  transform: none !important;
  box-shadow: none !important;
}

.ecosystem-platform-list .benefits-content img {
  margin-bottom: 15px;
}


/* SECTION BASE */
.veteran-talent-sec {
  background: #0e7a57;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.veteran-talent-sec::before {
  content: "";
  position: absolute;
  left: -150px;
  top: -150px;
  width: 600px;
  height: 600px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  opacity: 0;
}

.veteran-talent-sec .image-wrap {
  text-align: center;
}

.veteran-talent-sec .image-wrap img {
  max-width: 100%;
  height: auto;
}

.veteran-talent-sec .content {
  padding-left: 40px;
}

.veteran-talent-sec h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-border-white);
}

.veteran-talent-sec .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  padding-bottom: 60px;
  padding-left: 0;
}

.veteran-talent-sec .stat-item {
  position: relative;
  padding-bottom: 15px;
}

.veteran-talent-sec .stat-item h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text-white);
  border-bottom: solid 1px #e7e9eb;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  margin-bottom: 10px;
}

.veteran-talent-sec .stat-item h3 strong {
  color: #4cd37f;
  font-weight: 700;
}

.veteran-talent-sec .stat-item p {
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.33;
  letter-spacing: normal;
  text-align: left;
  color: #d8f0e8;
  max-width: 260px;
}

.veteran-talent-sec .content h2 {
  grid-column: span 2;
}

.veteran-talent-sec .image-wrap {
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.veteran-talent-sec .row.left-image {
  align-items: stretch !important;
}



/* SECTION */
.choose-path-sec {
  background: #0b1f33;
  color: #fff;
}

.choose-path-sec .title {
  margin-bottom: 50px;
}

.choose-path-sec .title h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-text-white);
  margin-bottom: 30px;
}

.choose-path-sec .benefits-common {
  border-radius: 28px;
  overflow: hidden;
}

.choose-path-sec .benefits-content {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 25px 25px;
  background: linear-gradient(180deg, #24384c 0%, #1a2e42 100%);
  display: flex;
  flex-direction: column;
  height: 476px;
  gap: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.choose-path-sec .benefits-content img {
  position: absolute;
  bottom: 0;
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0px;
}

.choose-path-sec .benefits-content::after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, rgba(11, 31, 51, 0.9) 20%, rgba(11, 31, 51, 0.3) 60%, transparent);
  z-index: 2;
  height: 20%;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: .8;
}

.choose-path-sec .benefits-content h3,
.choose-path-sec .benefits-content p,
.choose-path-sec .content-btn-wrap {
  position: relative;
  z-index: 3;
}

.choose-path-sec .benefits-content h3 {
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: normal;
  text-align: center;
  color: #50c988;
  text-transform: uppercase;
}

.choose-path-sec .benefits-content p {
  font-size: 24px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.58;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
}

.choose-path-sec .content-btn-wrap {
  margin-top: auto;
}

.choose-path-sec .btn-color {
  background: var(--bg-dark-blue) !important;
  color: #fff !important;
  border: var(--bg-dark-blue) !important;
}

.choose-path-sec .btn-color:hover {
  background: var(--color-primary) !important;
  color: var(--color-text-white) !important;
  transform: translateY(-1px);
}

.choose-path-sec .benefits-common:hover {
  transform: translateY(-8px);
  transition: 0.4s ease;
}

.content-btn-wrap {
  display: flex;
  flex-flow: column;
  gap: 15px;
}






/* =========================
   START POINT SECTION
========================= */
.start-point-sec {
  background: var(--bg-main);
}

.start-point-sec .title {
  margin-bottom: 60px;
}

.start-point-sec .title h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.start-point-sec .benefits-content {
  background: var(--bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 20px 15px;
  padding-top: 0;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.start-point-sec .benefits-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.start-point-sec .benefits-content img {
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
  position: relative;
  padding: 0px;
  margin-top: -28px;
  margin-bottom: 15px;
}

.start-point-sec .benefits-content h3 {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1;
  margin-bottom: 8px;
}

.start-point-sec .benefits-content>p:first-of-type {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: 0px;
  line-height: 1;
}

.start-point-sec .content-btn-wrap p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 18px;
  line-height: var(--lh-body);
}

.start-point-sec .benefits-content .btn-color {
  margin: 0 auto !important;
  transition: all 0.3s ease;
  background: transparent !important;
  color: #0b1f33 !important;
  border: 1px solid #a3afbc !important;
  margin: 0 auto !important;
}

.start-point-sec .benefits-content .btn-color:hover {
  color: var(--color-text-white) !important;
  border-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
}



.reality-stat .counter-box {
  position: relative;
}

.reality-stat .counter-content {
  height: 100%;
  transition: all 0.3s ease;
}

.reality-stat .counter-content:hover {
  transform: translateY(-6px);
}

.reality-stat .counter-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  padding-bottom: 15px !important;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
}

.reality-stat .counter-content p {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  margin: 0;
  max-width: 220px;
  margin-inline: auto;
  text-align: left;
}

.reality-stat .row {
  row-gap: 20px;
}





.challenges-list .benefits-content {
  border-radius: var(--radius-xl);
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid #E2E2E4;
  background: #FCFDFF;
  box-shadow: 0 3px 12px 0 rgba(42, 67, 94, 0.03);
}

.challenges-list .benefits-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.challenges-list .benefits-content h3 {
  color: var(--color-primary);
  text-align: center;
}

.challenges-list .benefits-content p {
  color: var(--color-text-muted);
  text-align: center;
}

.one-profile-works-list .benefits-content {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.one-profile-works-list .benefits-content img {
  border-radius: 0;
  padding: 0;
  width: auto;
  object-position: left;
  margin-bottom: 30px !important;
  height: 60px;
}

.one-profile-works-list .row::before {
  display: none;
}

.one-profile-works-list .benefits-content {
  position: relative;
}

.one-profile-works-list .benefits-content::before {
  content: "";
  position: absolute;
  top: 119px;
  left: 32px;
  width: 100%;
  height: 5px;
  background: #27a05f;
  z-index: 0;
}

.one-profile-works-list .row {
  overflow: hidden;
}


.included-list-sec .benefits-content {
  background-color: transparent;
  padding: 0;
  padding-right: 15px;
}

.included-list-sec .benefits-content:hover {
  box-shadow: none;
}

.included-list-sec .row {
  row-gap: 1rem;
}

.included-list-sec .benefits-content img {
  margin-bottom: 10px;
  width: auto;
  height: 45px;
}

.platform-built .signature-series-content {
  max-width: 62%;
  margin-left: auto;
  margin-right: 0;
}

.platform-built .signature-series-content p {
  font-size: var(--fs-h5);
}

.why-mt-list .title-desc h2 {
  color: #0B1F33;
}

.why-mt-list .feature-item:hover {
  border: solid 1px #ffffff;
  background-color: #ffffff;
}

.why-mt-list .feature-item.active {
  border: solid 1px #ffffff;
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.why-mt-list .feature-body-inner p {
  color: var(--color-text-soft);
}

.why-mt-list .feature-title {
  color: var(--color-text-dark-white);
}

.why-mt-list .feature-item.active .feature-title {
  color: #0B1F33;
}


/* =========================
   TESTIMONIAL (IMAGE RIGHT)
========================= */
.testimonial-image-right .testimonial-content-wrap {
  padding: 0 !important;
  overflow: hidden;
}

.testimonial-image-right .testimonial-header {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  padding-right: 40%;
  padding-left: 40px;
}

.testimonial-image-right .image-wrap {
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.testimonial-image-right .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: unset;
  margin-bottom: 0;
}

.testimonial-image-right .testimonial-content {
  width: 100%;
  padding: 40px 40px 40px 0;
  margin-top: 0;
}

.testimonial-image-right .review-name {
  width: 100%;
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.testimonial-image-right .testimonial-header {
  margin-top: 0px;
  flex-flow: row wrap;
}


.ceo-about-sec .row {
  justify-content: space-between;
}

.ceo-about-sec .what-we-bring-common:nth-of-type(1) {
  width: 32%;
}

.ceo-about-sec .what-we-bring-common:nth-of-type(2) {
  width: 64%;
}

.ceo-about-sec .what-we-bring-content p {
  color: var(--color-text-soft);
  font-size: var(--fs-body-lg);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

.ceo-about-sec .content-below {
  font-family: var(--font-body);
}

.ceo-about-sec .content-below p:first-child {
  margin-bottom: 15px;
}

.ceo-about-sec .content-below p:first-child img {
  max-width: 100%;
  margin-bottom: 20px;
}

.ceo-about-sec .content-below p:nth-of-type(2) {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin: 0 0 6px;
}

.ceo-about-sec .content-below p:nth-of-type(3) {
  font-size: 16px;
  font-weight: var(--fw-medium);
  color: var(--color-primary);
  margin: 0 0 6px;
}

.ceo-about-sec .content-below ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.ceo-about-sec .content-below ul li {
  font-size: 14px;
  color: var(--color-text-muted);
  position: relative;
  padding-right: 10px;
}

.ceo-about-sec .content-below ul li:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 0;
  color: var(--color-text-muted);
}



/* =========================
   PURPOSE SECTION
========================= */

.purpose-talent-sec {
  position: relative;
  background-size: cover !important;
  background-position: center right !important;
  overflow: hidden;
}

.purpose-talent-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(39, 160, 95, 0.92);
  /* green overlay */
  z-index: 1;
}

.purpose-talent-sec .container {
  position: relative;
  z-index: 2;
}

.purpose-talent-sec .signature-series-content {
  max-width: 785px;
}

.purpose-talent-sec .signature-series-content p {
  margin: 0 0 15px;
}

.purpose-talent-sec .signature-series-content .grey {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.purpose-talent-sec .signature-series-content h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  line-height: 1.6;
  font-weight: 500;
  color: var(--color-text-white);
  margin: 0;
}

.why-mt-list .feature-icon {
  background: #949ca5;
}

.reality-military {
  background-image: linear-gradient(to top, #f6f8fb 0%, #f6f8fb 10%, #ffffff 100%);
}

section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
  background-size: cover !important;
  background-position: center center !important;
}
section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
  background-position: right center !important;
}



.core-value-item-sec {
  background: var(--bg-light);
  font-family: var(--font-body);
}

.core-value-item-sec .content-below span.grey,
.translation-gap-sec p span.grey {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.31;
  letter-spacing: 1px;
  text-align: left;
  text-transform: uppercase;
}

.core-value-item-sec .content-below h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--bg-dark);
  margin-bottom: 15px !important;
  margin-top: 10px !important;
}

.core-value-item-sec .content-below p {
  color: var(--color-text-soft);
  font-size: var(--fs-body-lg);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

.core-value-item-sec .item-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.core-value-item-sec .item {
  padding: 30px;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-flow: column;
  gap: 15px;
  align-items: flex-start;
}

.core-value-item-sec .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.core-value-item-sec .item p:first-child {
  margin-bottom: 18px;
}

.core-value-item-sec .item img {
  height: 56px;
  background: var(--color-primary);
  padding: 10px;
  border-radius: var(--radius-md);
  object-fit: contain;
  width: 56px;
  margin-bottom: 35px;
  position: relative;
  top: unset;
  left: unset;
}

.core-value-item-sec .item h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg-dark);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.core-value-item-sec .item p {
  font-size: var(--fs-small);
  font-family: var(--font-body);
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--color-text-soft);
  margin: 0;
}

.core-value-item-sec .row {
  justify-content: space-between;
}

.core-value-item-sec .what-we-bring-common:nth-of-type(1) {
  width: 32%;
}

.core-value-item-sec .what-we-bring-common:nth-of-type(2) {
  width: 60%;
}




.vission-building-list {
  font-family: var(--font-body);
}

.vission-building-list .what-we-bring-common>div {
  border-radius: var(--radius-xl);
  padding: 30px 32px;
  height: 100%;
}

.vission-building-list .content-below {
  background: #f7f8fa;
  height: 100%;
}

.vission-building-list .what-we-bring-content {
  background: #e7f7f1;
  height: 100%;
  display: block;
}

.vission-building-list h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
  color: var(--color-surface);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: var(--color-text-dark);
  margin-bottom: 20px !important;
}

.vission-building-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vission-building-list li {
  position: relative;
  padding-left: 38px;
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  padding-top: 14px;
  padding-bottom: 14px;
}

.vission-building-list li:not(:last-child) {
  border-bottom: 1px solid #E2E2E4;
}

.vission-building-list .content-below li:not(:last-child) {
  border-bottom: 1px solid #c8e4d5;
}

.vission-building-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
}

.vission-building-list .content-below li::before {
  background-image: url("/wp-content/uploads/2026/04/warning.png");
}

.vission-building-list .what-we-bring-content li::before {
  background-image: url("/wp-content/uploads/2026/04/check-icon.png");
}

/* TEXT COLOR DIFFERENCE */
.vission-building-list .what-we-bring-content li {
  color: var(--color-text-main);
}


.vision-building-sec {
  background: #fff;
}




.leadership-list {
  background: var(--bg-main);
  font-family: var(--font-body);
}

.leadership-list .benefits-common {
  flex: 0 0 33.333%;
  max-width: 33.333%;
}

.leadership-list .benefits-content {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 476px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  /* background: var(--bg-dark); */
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  gap: 0;
}

.leadership-list .benefits-content img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*.leadership-list .benefits-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 31, 51, 0.85) 15%,
    rgba(11, 31, 51, 0.5) 40%,
    rgba(11, 31, 51, 0.1) 70%,
    transparent 100%
  );
}*/
.leadership-list .benefits-content h3,
.leadership-list .benefits-content p {
  position: relative;
  z-index: 2;
}

.leadership-list .benefits-content h3 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}

.leadership-list .benefits-content p {
  font-size: var(--fs-small);
  color: var(--color-text-light-white);
  line-height: var(--lh-body);
  margin: 0;
}

.leadership-list .benefits-content:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}



.certifications-sec .row {
  align-items: center;
}

.certifications-sec .benefits-common:first-child .benefits-content {
  justify-content: center;
  align-items: flex-start;
}

.certifications-sec .benefits-common .benefits-content {
  padding-left: 120px;
  min-height: 100px;
}

.certifications-sec .benefits-common:first-child .benefits-content {
  padding: 0;
}

.certifications-sec .benefits-common:first-child h3 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
  color: var(--color-text-white);
  margin: 0;
}

.certifications-sec .benefits-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.certifications-sec .benefits-content img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: var(--color-text-white);
  border-radius: 50%;
  padding: 8px;
  flex-shrink: 0;
}

.certifications-sec .benefits-content h3:not(:first-child) {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-text-white);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.certifications-sec .benefits-content p {
  font-size: var(--fs-small);
  color: var(--color-text-dark-white);
  margin: 0;
  line-height: var(--lh-body);
}

.certifications-sec .benefits-content div,
.certifications-sec .benefits-content h3+p {
  max-width: 260px;
}

.certifications-sec .benefits-common:hover img {
  transform: scale(1.05);
  transition: 0.3s ease;
}



.press-recognition-sec .title {
  margin-bottom: 20px;
  text-align: left !important;
}

.press-recognition-sec .title h2 {
  color: var(--color-text-main);
}

.press-recognition-sec .container:nth-of-type(2) {
  max-width: 100% !important;
  padding-left: calc(((100% - 1400px) / 2) + .75rem);
  padding-right: 0;
}














/* ── Section ── */
.journey-section {
  padding: 60px 0 100px;
}

.journey-timeline .section-title {
  font-size: var(--fs-h2);
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 150px !important;
  padding-left: 36px !important;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  content: '';
  position: absolute;
  left: -12px;
  top: 8px;
  width: 14px;
  height: 14px;
}

.image-col {
  align-self: start;
}

.timeline-heading {
  position: relative;
}

.timeline-heading::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: -13px;
  width: 2px;
  background: var(--green);
  z-index: 0;
}

.image-col {
  position: sticky;
  top: 90px;
  align-self: start;
}

.image-frame {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #ccc;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.7s ease;
}

.image-frame img.hidden {
  opacity: 0;
  transform: scale(1.03);
}

.image-frame img.visible {
  opacity: 1;
  transform: scale(1);
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line-color);
  z-index: 0;
}

.timeline::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  width: 2px;
  height: var(--line-progress, 0px);
  background: var(--green);
  z-index: 1;
  transition: height 0.35s ease;
}

.timeline-item {
  position: relative;
  padding-bottom: 52px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gray-dot);
  background: var(--bg);
  transition: border-color 0.4s, background 0.4s, transform 0.3s;
  z-index: 2;
}

.timeline-item.passed::before {
  border-color: var(--green);
  background: var(--green);
}

.timeline-item.active::before {
  border-color: var(--green);
  background: var(--green);
  transform: scale(1.2);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: -0.02px;
  margin-bottom: 8px;
  transition: color 0.3s;
  line-height: 1.2;
}

.timeline-item.active .timeline-year {
  color: var(--green);
}

.timeline-desc {
  color: var(--color-text-soft);
  font-size: var(--fs-body-lg);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: normal;
}

/*@media (max-width: 575.98px) {
  .journey-section { padding: 40px 0 70px; }
  .image-col        { margin-bottom: 36px; }
  .timeline-item    { padding-bottom: 36px; }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .image-col { margin-bottom: 0; padding-right: 24px; }
}
@media (min-width: 992px) {
  .journey-section { padding: 80px 0 120px; }
}*/







.press-recognition-sec .brand-logo img {
  margin-bottom: 30px;
}




/* =========================
   🚫 404 SECTION
========================== */
.not-found-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.not-found-sec .text-center {
  padding: 100px 30px 50px 30px;
  max-width: 600px;
  margin: auto;
}

.not-found-sec h1 {
  font-size: clamp(90px, 12vw, 140px);
  font-weight: var(--fw-bold);
  line-height: 1;
  color: var(--color-text-dark);
  letter-spacing: 4px;
}

.not-found-sec h1 span {
  color: var(--color-primary);
  position: relative;
}

.not-found-sec h1 span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  opacity: 0.1;
  filter: blur(20px);
  z-index: -1;
}

.not-found-sec h2 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

.not-found-sec p {
  font-size: var(--fs-body);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  max-width: 420px;
  margin: 0 auto 20px !important;
}

.not-found-sec .btn.btn-color {
  padding: 12px 28px;
  border-radius: 50px;
  background: #ffffff;
  color: #0f2437;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  background: transparent !important;
  color: #27a05f !important;
  border: 1px solid #a3afbc !important;
  margin: 0 auto !important;
}

.not-found-sec .btn.btn-color:hover {
  color: var(--color-text-white) !important;
  border-color: var(--color-primary) !important;
  background: var(--color-primary) !important;
}


.contact-hero-small.hero {
    height: 550px;
}

.veteran-talent-bg {
    position: relative;
    z-index: 2;
}
.veteran-talent-bg .image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 50%;
    align-items: flex-start !important;
    justify-content: flex-start !important;
}
.veteran-talent-bg .image-wrap img {
    width: auto;
    height: 100%;
    max-width: unset;
    object-position: left;
    position: relative;
    left: 0;
}
.veteran-talent-bg .content{
  gap: 20px;
}

.form-section {
    background-size: cover !important;
    background-position: bottom center !important;
}
.brand-logo a{
  text-decoration: none;
}

.blog-section {
  background: var(--bg-light);
  font-family: var(--font-body);
}

.blog-section .blog-common {
  width: 100%;
}

.blog-section .blog-content-wrap {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  flex-flow: column;
}

.blog-section .blog-content-wrap:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* =========================
   IMAGE
========================= */
.blog-section .blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.blog-section .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-section .blog-content-wrap:hover img {
  transform: scale(1.05);
}

.blog-section .blog-content {
  padding: 18px;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
  height: calc(100% - 250px);
}

.blog-section .blog-content h3 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--color-text-main);
  margin-bottom: 10px;
  line-height: var(--lh-heading);
}

.blog-section .blog-content h3 a {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
}

.blog-section .blog-content h3 a:hover {
  color: var(--color-primary);
}

.blog-section .blog-content p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: var(--lh-body);
  margin-bottom: 12px;
}

.blog-section .blog-bio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-light);
  padding: 0;
  margin: 10px 0;
  list-style: none;
}

.blog-section .blog-bio span {
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
}
.blog-section .blog-category {
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
}

.blog-section .blog-category a {
  font-size: 12px;
  background: var(--color-surface);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text-soft);
  transition: 0.3s;
}

.blog-section .blog-category a:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog-section a.btn-color {
  display: flex !important;
  margin: 0 auto !important;
  transition: all 0.3s ease;
  background: transparent !important;
  color: #0b1f33 !important;
  border: 1px solid #a3afbc !important;
  margin: 0 auto !important;
  position: absolute;
  bottom: 18px;
  left: 18px;
}

.blog-section a.btn-color:hover {
  background: var(--bg-dark-blue) !important;
  color: #fff !important;
}

.blog-section .row {
  display: flex;
  flex-wrap: wrap;
}

.blog-section .blog-common, .blog-category .blog-common {
  flex: 0 0 33.33%;
  max-width: 33.33%;
}




/*post details start*/


/* =========================
   MAIN WRAPPER
========================= */
.post-details {
  font-family: var(--font-body);
  color: var(--color-text-body);
  line-height: var(--lh-body);
}


/* =========================
   TITLE
========================= */
.post-details .entry-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-main);
  margin-bottom: 20px;
  line-height: var(--lh-heading);
}

/* =========================
   FEATURED IMAGE
========================= */
.post-details .post-thumbnail {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.post-details .post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.post-details .post-thumbnail:hover img {
  transform: scale(1.03);
}

/* =========================
   META INFO
========================= */
.post-details .entry-meta {
  margin-bottom: 20px;
}

.post-details .blog-bio {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  color: var(--color-text-light);
}

.post-details .blog-bio span {
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
}

/* =========================
   CONTENT TYPOGRAPHY
========================= */
.post-details .entry-content p {
  font-size: var(--fs-body);
  margin-bottom: 18px;
}

.post-details .entry-content h2 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin: 30px 0 15px;
  color: var(--color-text-main);
}

.post-details .entry-content img {
  width: 100%;
  border-radius: var(--radius-md);
  margin: 20px 0;
}

/* =========================
   LIST STYLE
========================= */
.post-details .entry-content ul,
.post-details .entry-content ol {
  padding-left: 20px !important;
}

.post-details .entry-content li {
  margin-bottom: 10px;
  font-family: var(--font-body);
  color: var(--color-text-body);
  line-height: var(--lh-body)
}
.post-details .entry-content li:last-child {
  margin-bottom: 0px;
}
/* =========================
   CATEGORY TAG
========================= */
.post-details .blog-category {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}

.post-details .blog-category a {
  display: flex;
  font-size: 12px;
  background: var(--color-surface);
  color: var(--color-text-soft);
  padding: 6px 12px !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: 0.3s;
}

.post-details .blog-category a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* =========================
   POST NAVIGATION
========================= */
.post-details .post-navigation {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

.post-details .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.post-details .nav-links a {
  display: block;
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-main);
  transition: 0.3s;
  height: auto;
}

.post-details .nav-links a:hover {
  background: var(--color-primary);
  color: #fff;
}

/* =========================
   COMMENTS
========================= */
.post-details .comments-area {
  margin-top: 40px;
}

.post-details .comment-form input,
.post-details .comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}

.post-details .comment-form input:focus,
.post-details .comment-form textarea:focus {
  border-color: var(--color-primary);
}

/* BUTTON */
.post-details .form-submit input {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: 0.3s;
}

.post-details .form-submit input:hover {
  background: #1e7f4b;
}


/* =========================
   SIDEBAR WRAPPER
========================= */
.post-sidebar-details {
  font-family: var(--font-body);
}

/* =========================
   EACH WIDGET CARD
========================= */
.post-sidebar-details .widget {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.post-sidebar-details .widget:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* =========================
   WIDGET TITLE
========================= */
.post-sidebar-details .wp-block-heading, .post-sidebar-details .widget-title {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  color: var(--color-text-main);
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 8px;
}

.post-sidebar-details .wp-block-heading::after, .post-sidebar-details .widget-title::after  {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 40px;
  height: 2px;
  background: var(--color-primary);
}

/* =========================
   SEARCH BOX
========================= */
.post-sidebar-details .wp-block-search__inside-wrapper {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.post-sidebar-details .wp-block-search__input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
}

.post-sidebar-details .wp-block-search__button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.3s;
}

.post-sidebar-details .wp-block-search__button:hover {
  background: #1e7f4b;
}

/* =========================
   LIST STYLE (COMMON)
========================= */
.post-sidebar-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-sidebar-details ul li {
  margin-bottom: 10px;
}

/* LINKS */
.post-sidebar-details ul li a {
  font-size: 14px;
  color: var(--color-text-body);
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
  line-height: 1.4;
}

/* HOVER EFFECT */
.post-sidebar-details ul li a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* =========================
   RECENT POSTS (SPECIAL LOOK)
========================= */
.post-sidebar-details .wp-block-latest-posts__post-title {
  font-weight: var(--fw-medium);
}

/* =========================
   ARCHIVES / CATEGORY
========================= */
.post-sidebar-details .wp-block-archives li a,
.post-sidebar-details .wp-block-categories li a {
  display: flex;
  justify-content: space-between;
}

/* =========================
   NO COMMENTS TEXT
========================= */
.post-sidebar-details .no-comments {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* =========================
   SPACING FIX
========================= */
.post-sidebar-details .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}




/* =========================
   SECTION BASE
========================= */
.blog-category {
  font-family: var(--font-body);
}

/* =========================
   PAGE TITLE
========================= */
.blog-category .page-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-text-main);
  margin-bottom: 30px;
}

.blog-category .page-title span {
  color: var(--color-primary);
}

/* =========================
   CARD WRAPPER
========================= */
.blog-category .blog-content-wrap {
  display: flex;
  gap: 0px;
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-category .blog-content-wrap:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

/* =========================
   IMAGE
========================= */
.blog-category .blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  overflow: hidden;
}

.blog-category .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-category .blog-content-wrap:hover img {
  transform: scale(1.05);
}

/* =========================
   CONTENT
========================= */
.blog-category .blog-content {
  flex: 1;
  padding: 18px;
}
ul.blog-bio li {
    font-size: 12px;
}
.blog-category .blog-content h4 {
  font-size: var(--fs-h5);
  font-weight: var(--fw-bold);
  margin-bottom: 8px;
  line-height: var(--lh-heading);
}

.blog-category .blog-content h4 a {
  color: inherit;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-h4);
}

.blog-category .blog-content h4 a:hover {
  color: var(--color-primary);
}

/* DESCRIPTION */
.blog-category .blog-content p {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

/* =========================
   META
========================= */
.blog-category .blog-bio {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-text-light);
}

.blog-category .blog-bio span {
  font-weight: var(--fw-medium);
  color: var(--color-text-dark);
}

/* =========================
   GRID SPACING FIX
========================= */
.blog-category .row.g-4 {
  row-gap: 24px;
}


/*post details End*/

/* =========================
   WRAPPER
========================= */
.posts-navigation {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* =========================
   NAV LINKS CONTAINER
========================= */
.posts-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

/* =========================
   BUTTON STYLE
========================= */
.posts-navigation .nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-main);
  background: var(--bg-soft);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  min-width: 140px;
}

/* HOVER */
.posts-navigation .nav-links a:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* =========================
   ALIGNMENT
========================= */
.posts-navigation .nav-previous {
  text-align: left;
}

.posts-navigation .nav-next {
  text-align: right;
}



/**************************
  SECTION RESET
**************************/
section.contact-address-map.py-5 {
  padding: 0 !important;
  margin: 0;
  background: var(--bg-main);
}

.contact-address-map .container,
.contact-address-map .container-lg,
.contact-address-map .container-md,
.contact-address-map .container-sm,
.contact-address-map .container-xl,
.contact-address-map .container-xxl {
  max-width: 100% !important;
  padding: 0 !important;
  width: 100% !important;
}

/* REMOVE EXTRA WRAPPER SPACE */
.contact-address-map .title-desc {
  margin: 0;
  padding: 0;
}

.contact-address-map iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}


.blog-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.blog-pagination .pagination {
  gap: 8px;
  flex-wrap: wrap;
}

.blog-pagination .page-item {
  list-style: none;
}

.blog-pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-text-main);
  background: var(--bg-main);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-pagination .page-link:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.blog-pagination .page-item.active .page-link,
.blog-pagination .page-link.current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  font-weight: var(--fw-bold);
  cursor: default;
  border-radius: 8px;
}

.blog-pagination .prev,
.blog-pagination .next {
  padding: 0 18px;
  font-size: 13px;
  border-radius: 8px !important;
}

.blog-pagination .page-item.disabled .page-link {
  opacity: 0.5;
  pointer-events: none;
}

section.single-blog {
    margin-top: 78px;
}

ul.blog-bio li {
    border-right: 0px solid #bcb7b7;
    margin-right: 0px;
    padding-right: 0px;
}


/* =========================
   WRAPPER
========================= */
.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

/* =========================
   LABEL
========================= */
.post-share .share-label {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--color-text-main);
}

/* =========================
   LIST
========================= */
.post-share .share-links {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* =========================
   ICON BUTTON
========================= */
.post-share .share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--color-text-main);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

/* ICON SIZE */
.post-share .share-links svg {
  width: 16px;
  height: 16px;
}

/* =========================
   HOVER EFFECT
========================= */
.post-share .share-links a:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* BRAND COLORS */
.post-share .share-facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.post-share .share-twitter:hover {
  background: #000000;
  border-color: #000000;
}

.post-share .share-linkedin:hover {
  background: #0a66c2;
  border-color: #0a66c2;
}






.start-point-sec.box-column .content-btn-wrap p {
    min-height: 79px;
}
.start-point-sec.box-column .benefits-content{
  justify-content: flex-start ;
}

.starting-point-sec.equal-heading .benefits-content h3{
  min-height: 115px;
}


/* =========================
Responsive Css Start
========================= */
@media (min-width: 768px) {
  .counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    width: 1px;
    background: rgba(249, 249, 251, 0.25) !important;
  }
}

@media (min-width: 992px) {
  .footer-top .row>div {
    position: relative;
  }

  .footer-top .row>div:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -58px;
    top: 0;
    height: 100%;
    width: 1px;
    background: #c6c6c8;
  }

  .counter-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    width: 1px;
    background: rgba(249, 249, 251, 0.25) !important;
  }

  .counter-content:after {
    opacity: 0;
  }

  .ecosystem-list-sec .row>div {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (min-width: 1200px) {
  .ceo-about-sec .container {
    max-width: 1045px !important;
  }
}

/* ===== (max-width: 1920px) START ===== */
@media (max-width: 1920px) {
  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: 656px 438px !important;
    /*background-position: right 19% center !important; */
    background-repeat: no-repeat !important;
  }

  section.contact-hero.inner-hero.how-it-banner.hero {
    background-size: 595px 594px !important;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: center center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }
}

/* ===== (max-width: 1920px) END ===== */

/* ===== (max-width: 1680px) START ===== */
@media (max-width: 1680px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 84% !important;
  }

  .profile-card .img-wrap {
    height: 270px;
  }

  .testimonials-sec.testimonial-one .container:nth-of-type(2) {
    max-width: 84% !important;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .testimonial-section.testimonial-one .owl-nav {
    right: calc(var(--bs-gutter-x) * .5);
    margin-left: unset;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: 39% !important;
    background-position: calc(100% - ((100% - 714px) / 2)) center !important;
    background-repeat: no-repeat !important;
  }

  section.contact-hero.inner-hero.how-it-banner.hero {
    background-size: 39% auto !important;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: center center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }

  .choose-path-sec .benefits-content p {
    font-size: 22px;
  }
}

/* ===== (max-width: 1680px) END ===== */

/* ===== (max-width: 1580px) START ===== */
@media (max-width: 1580px) {
  :root {
    --fs-h1: clamp(32px, 4vw, 44px);
    --fs-h2: clamp(28px, 3.2vw, 38px);
    --fs-h3: clamp(24px, 2.5vw, 30px);

    --fs-body-lg: clamp(18px, 1.5vw, 18px);
  }

  .dreaming-building-sec h2 {
    font-size: clamp(32px, 4vw, 44px);
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 86% !important;
  }

  .testimonials-sec.testimonial-one .container:nth-of-type(2) {
    max-width: 86% !important;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .navmenu ul {
    gap: 26px;
  }

  /* section.py-5 {
    padding-bottom: 50px !important;
    padding-top: 50px !important;
  }

  section.pt-7 {
    padding-top: 80px !important;
  }

  section.pb-7 {
    padding-bottom: 80px !important;
  }

  section.pt-6 {
    padding-top: 60px !important;
  }

  section.pb-6 {
    padding-bottom: 60px !important;
  }

  section.pt-5 {
    padding-top: 50px !important;
  }

  section.pb-5 {
    padding-bottom: 50px !important;
  }

  section.pt-4 {
    padding-top: 40px !important;
  }

  section.pb-4 {
    padding-bottom: 40px !important;
  }

  section.pt-0 {
    padding-top: 0px !important;
  }

  section.pb-0 {
    padding-bottom: 0px !important;
  }*/
  .testimonial-section .owl-nav,
  .press-recognition-sec .owl-nav {
    right: calc(((100% - 82%) / 2) + .75rem);
    margin-left: unset;
  }

  .testimonials-sec .container:nth-of-type(2),
  .press-recognition-sec .container:nth-of-type(2) {
    max-width: 100% !important;
    padding-left: calc(((100% - 86%) / 2) + .75rem);
    padding-right: 0;
  }

  .testimonial-three-full .container:nth-of-type(2) {
    padding-left: calc(((100% - 86%) / 2) + .75rem);
    padding-right: calc(((100% - 86%) / 2) + .75rem);
  }

  .profile-card .img-wrap {
    height: 240px;
  }

  .testimonials-sec.testimonial-one .container:nth-of-type(2) {
    max-width: 86% !important;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .testimonial-section.testimonial-one .owl-nav {
    right: calc(var(--bs-gutter-x) * .5);
    margin-left: unset;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: 36% !important;
    background-position: calc(100% - ((100% - 753px) / 2)) center !important;
    background-repeat: no-repeat !important;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: center center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }

}

/* ===== (max-width: 1580px) END ===== */

/* ===== (max-width: 1440px) START ===== */
@media (max-width: 1440px) {
  :root {
    --fs-h1: clamp(32px, 4vw, 42px);
    --fs-h2: clamp(28px, 3.2vw, 38px);
    --fs-h3: clamp(24px, 2.5vw, 30px);
    --fs-h4: clamp(18px, 2vw, 22px);
  }

  .dreaming-building-sec h2 {
    font-size: clamp(32px, 4vw, 44px);
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 90% !important;
  }

  .navmenu ul {
    gap: 26px;
  }

  section.py-5 {
    padding-bottom: 50px !important;
    padding-top: 50px !important;
  }

  section.pt-7 {
    padding-top: 80px !important;
  }

  section.pb-7 {
    padding-bottom: 80px !important;
  }

  section.pt-6 {
    padding-top: 60px !important;
  }

  section.pb-6 {
    padding-bottom: 60px !important;
  }

  section.pt-5 {
    padding-top: 50px !important;
  }

  section.pb-5 {
    padding-bottom: 50px !important;
  }

  section.pt-4 {
    padding-top: 40px !important;
  }

  section.pb-4 {
    padding-bottom: 40px !important;
  }

  section.pt-0 {
    padding-top: 0px !important;
  }

  section.pb-0 {
    padding-bottom: 0px !important;
  }

  .testimonial-section .owl-nav,
  .press-recognition-sec .owl-nav {
    right: calc(((100% - 87%) / 2) + .75rem);
    margin-left: unset;
  }

  .testimonials-sec .container:nth-of-type(2),
  .press-recognition-sec .container:nth-of-type(2) {
    max-width: 100% !important;
    padding-left: calc(((100% - 90%) / 2) + .75rem);
    padding-right: 0;
  }

  .testimonial-three-full .container:nth-of-type(2) {
    padding-left: calc(((100% - 90%) / 2) + .75rem);
    padding-right: calc(((100% - 90%) / 2) + .75rem);
  }

  .testimonials-sec.testimonial-one .container:nth-of-type(2) {
    max-width: 90% !important;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .profile-card .img-wrap {
    height: 210px;
  }


  .pipeline-sec .stat-item {
    width: calc(50% - 15px);
    padding-top: 0;
    padding-bottom: 0;
  }

  .pipeline-sec .what-we-bring-content {
    gap: 10px 30px;
  }

  .our-purpose-list .benefits-content,
  .employers-list-sec .benefits-content,
  .ecosystem-list-sec .benefits-content {
    padding: 24px;
  }

  .testimonials-sec .testimonial-content-wrap {
    padding: 24px;
  }

  .slider-wrap {
    margin-top: 40px;
    padding: 30px 0 40px;
  }


  section.inner-hero {
    height: 650px;
  }

  .stepper-btn {
    padding: 12px 10px 12px 10px;
  }

  .journey-list-item ul {
    gap: 30px;
  }

  .journey-list-item ul li {
    flex: 0 0 calc(50% - 15px);
  }

  .profile-card.active {
    transform: scale(1.13);
    margin-right: 25px;
    margin-left: 25px;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: 36% !important;
    background-position: calc(100% - ((100% - 760px) / 2)) center !important;
    background-repeat: no-repeat !important;
  }

  .choose-path-sec .benefits-content p {
    font-size: 20px;
  }

  .starting-point-sec .benefits-content {
    padding: 30px 20px 0 20px;
  }

  .starting-point-sec .content-btn-wrap {
    margin-left: -20px;
    margin-right: -20px;
  }

  .starting-point-sec .content-btn-wrap ol li {
    font-size: 14px;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: center center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }
  .leadership-list .benefits-content {
    height: 420px;
  }

  .navmenu ul li a {
    font-size: 14px;
  }


  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
    font-size: 14px;
  }

  a.custom-logo-link img {
    width: 200px;
  }

  .header-right-column a.btn {
    width: 190px !important;
  }

  .navmenu {
    margin-right: 30px;
  }
  .contact-hero-small.hero {
      height: 430px;
  }
  .veteran-talent-bg .image-wrap img {
    margin-left: -10%;
}

}

/* ===== (max-width: 1440px) End ===== */

@media (max-width: 1400px) {
  .ribbon {
    font-size: 13px;
  }

  .ribbon .role-label {
    font-size: 9px;
  }
}
@media (max-width: 1366px) {
  .veteran-talent-bg .stat-item {
    padding-bottom: 0;
}
.veteran-talent-bg .image-wrap img {
    margin-left: -10%;
}
}
@media (max-width: 1300px) {
  a.custom-logo-link img {
    width: 180px;
  }

  #mega-menu-wrap-menu-1 #mega-menu-menu-1>li.mega-menu-item>a.mega-menu-link {
    padding: 0 7px;
  }
}


/* ===== (max-width: 1280px) START ===== */
@media (max-width: 1280px) {
  :root {
    --fs-h1: clamp(32px, 4vw, 40px);
    --fs-h2: clamp(28px, 3.2vw, 38px);
    --fs-h3: clamp(24px, 2.5vw, 26px);
    --fs-h4: clamp(18px, 2vw, 22px);
  }

  .navmenu ul {
    gap: 20px;
  }

  .navmenu ul li a {
    font-size: 14px;
  }

  .header-right-column ul li a {
    padding: 10px 12px !important;
  }

  a.custom-logo-link img {
    width: 170px;
  }

  .inner-page-banner.banner-section,
  .inner-page-banner .heroslider-content,
  .inner-page-banner.banner-section .container {
    height: 350px;
    min-height: unset;
  }

  section.inner-hero {
    height: 600px;
  }

  .step-label {
    font-size: 14px;
  }

  .step-badge {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .step-sub {
    font-size: 13px;
  }

  .profile-info {
    padding: 14px 10px 14px;
  }

  .profile-role {
    font-size: 11px;
  }

  .profile-card.active {
    transform: scale(1.13);
    margin-right: 25px;
    margin-left: 25px;
  }

  .contact-icon-guoup .benefits-content p:last-child {
    font-size: 11px;
  }

  .testimonial-section.testimonial-one .testimonial-content-wrap {
    padding: 50px;
  }

  .testimonial-section.testimonial-one .testimonial-content p {
    font-size: clamp(18px, 2.5vw, 24px);
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: 36% !important;
    background-position: calc(100% - ((100% - 678px) / 2)) center !important;
    background-repeat: no-repeat !important;
  }

  .choose-path-sec .benefits-content p {
    font-size: 18px;
  }

  .ribbon {
    font-size: 12px;
  }

  .ribbon .role-label {
    font-size: 8px;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: center center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }
  .leadership-list .benefits-content {
    height: 380px;
  }
  .starting-point-sec.equal-heading .benefits-content h3{
    min-height: 100px;
  }
}

/* ===== (max-width: 1280px) END ===== */

@media (max-width: 1200px) {
  header .container {
    width: 98% !important;
  }
}

/* ===== (max-width: 1180px) START ===== */
@media (max-width: 1180px) {
  .navmenu ul {
    gap: 15px;
  }

  .navmenu ul li a {
    font-size: 13px;
  }

  headerul.d-flex {
    gap: 010px;
  }

  .navmenu {
    margin-right: 12px;
  }

  a.custom-logo-link img {
    width: 158px;
  }

  .profile-info {
    padding: 14px;
  }

  .stepper-btn:not(:last-child)::after {
    display: none;
  }

  .stepper-nav::after {
    display: none;
  }

  section.inner-hero {
    position: relative;
    z-index: 2;
  }

  section.inner-hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ebeef3;
    top: 0;
    left: 0;
    opacity: .75;
    z-index: -1;
  }

  section.inner-hero.contact-hero::after {
    display: none;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: 36% !important;
    background-position: calc(100% - ((100% - 654px) / 2)) center !important;
    background-repeat: no-repeat !important;
  }

  .choose-path-sec .benefits-content,
  .leadership-list .benefits-content {
    height: 350px;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: right center !important;
  }
  .veteran-talent-bg .image-wrap img {
        margin-left: -15%;
    }
    section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }
}

/* ===== (max-width: 1180px) End ===== */

@media (max-width: 1080px) {
  .header-right-column a.btn {
    width: 174px !important;
    height: 56px !important;
    padding: 8px;
  }

  a.custom-logo-link img {
    width: 210px;
  }

  nav#navmenu {
    display: none;
  }

  .header-right-column {
    margin-right: 50px;
  }
.veteran-talent-bg .image-wrap img {
        margin-left: -36%;
    }
}

@media (max-width: 1024px) {
  header .container {
    width: 90% !important;
  }
}


/* ===== (max-width: 1023px) START ===== */
@media (max-width: 1023px) {
  .hero {
    margin-top: 66px !important;
  }

  .navmenu ul {
    display: none;
  }

  .header-right-column {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
  }
}

/* ===== (max-width: 1023px) END ===== */
/* ===== (max-width: 991px) START ===== */

@media (max-width: 991px) {
  section.py-5 {
    padding-bottom: 50px !important;
    padding-top: 50px !important;
  }

  section.pt-7 {
    padding-top: 50px !important;
  }

  section.pb-7 {
    padding-bottom: 50px !important;
  }

  section.pt-6 {
    padding-top: 50px !important;
  }

  section.pb-6 {
    padding-bottom: 50px !important;
  }

  section.pt-5 {
    padding-top: 50px !important;
  }

  section.pb-5 {
    padding-bottom: 50px !important;
  }

  section.pt-4 {
    padding-top: 50px !important;
  }

  section.pb-4 {
    padding-bottom: 50px !important;
  }

  section.pt-0 {
    padding-top: 0px !important;
  }

  section.pb-0 {
    padding-bottom: 0px !important;
  }


  .top-row {
    flex-direction: column;
    gap: 28px;
  }

  .col-left {
    flex: none;
    width: 100%;
  }

  .col-right {
    width: 100%;
    padding-top: 0;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .ecosystem-list-sec .row>div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer-top {
    padding: 60px 0 30px;
  }

  .footer-links {
    width: 25%;
  }

  .footer-top .row>div {
    padding-left: 0;
  }

  .footer-top .row>div::before {
    display: none;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .our-purpose-list .benefits-common {
    width: calc(50% - 16px);
  }

  .our-purpose-list .big-image {
    width: calc(50% - 16px);
  }

  .journey-list-sec .row::before {
    display: none;
  }

  .journey-list-sec .benefits-common {
    width: 50%;
    margin-bottom: 30px;
  }

  .employers-sec {
    padding: 70px 0;
  }

  .employers-sec h2 {
    font-size: 34px;
  }

  .employers-sec .content {
    max-width: 100%;
  }

  .employers-sec .image-column {
    margin-top: 30px;
  }

  .translation-gap-sec .content {
    max-width: 100%;
  }

  .our-purpose-heading .what-we-bring-content {
    max-width: unset;
  }

  .scale-mission-sec .counter-box {
    width: 25%;
  }

  .pipeline-sec .what-we-bring-content {
    padding-left: 0;
  }

  .footer .footer-links {
    width: 25%;
  }

  .dreaming-building-sec {
    min-height: 450px;
    height: auto;
  }

  .fadein-slider-sec {
    height: auto;
  }

  .container-fluid.footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }

  .container-fluid.footer-bottom .copyright {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .container-fluid.footer-bottom .copyright::before {
    width: 100%;

  }

  .profile-card {
    flex: 0 0 calc(32% - 14px);
    width: calc(32% - 14px);
  }

  .profile-card.active {
    flex: 0 0 calc(35% - 14px);
    width: calc(35% - 14px);
  }

  .translation-gap-sec .image-column {
    width: 100%;
  }

  .translation-gap-sec .content-column {
    width: 100%;
  }

  .hire-veterans-sec .content-column {
    width: 50%;
  }

  .hire-veterans-sec .image-column {
    width: 50%;
  }

  .content-card {
    padding: 36px 28px 36px;
  }

  .stepper-nav {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
  }

  .stepper-btn {
    max-width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
  }

  .stepper-btn::after {
    display: none !important;
  }

  .inner-hero .top-row .col-right,
  .inner-hero .top-row .col-left {
    min-width: unset;
    width: 100%;
  }

  .journey-list-item ul li {
    flex: 0 0 calc(50% - 20px);
  }

  .free-always.signature-series::after {
    content: "";
    width: 112%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #1f7a5c;
    clip-path: none;
    z-index: 1;
    opacity: 0;
  }

  .free-always.signature-series::before {
    display: none;
  }

  .why-major-section .mos-card {
    left: -24px;
    width: 214px;
  }

  .why-major-section .translation-card {
    left: -24px;
    width: 260px;
  }

  .free-always.signature-series {
    max-height: unset;
    height: auto;
  }

  .why-major-section .feature-icon {
    width: 44px;
    height: 44px;
  }

  .why-major-section .feature-icon img {
    max-width: 30px;
    max-height: 30px;
  }

  .contact-icon-guoup .benefits-content {
    max-width: 100%;
  }

  .contact-icon-guoup .row {
    row-gap: 20px;
  }

  .contact-icon-guoup .benefits-common {
    width: 33.33%;
  }

  .faq-common {
    padding: 60px 20px;
  }

  .faq-common .accordion {
    max-width: 100%;
  }

  .contact-support-sec .benefits-common {
    width: 100%;
    text-align: center;
  }

  .contact-support-sec .benefits-common .benefits-content {
    justify-content: center;
    align-items: center;
  }

  .translation-sec {
    padding: 60px 0;
  }

  .translation-sec .translation-card {
    margin-top: 30px;
  }

  .reasons-employers-sec .big-image {
    width: 100%;
  }

  .reasons-employers-sec .benefits-common {
    width: 100%;
  }

  .reasons-employers-sec .benefits-common.big-image-marge {
    width: 100%;
  }

  .content-and-image-section.hire-veterans-sec .right-image {
    flex-flow: column !important;
  }

  .hire-veterans-sec .content-column {
    width: 100%;
  }

  .hire-veterans-sec .image-column {
    width: 100%;
  }

  .hire-veterans-sec .image-wrap img {
    margin-right: auto;
    margin-left: auto;
  }

  .enterprise-hiring-sec .benefits-content img {
    width: 100px;
    height: 100px;
  }

  .testimonial-section.testimonial-one .testimonial-content-wrap {
    padding: 30px;
  }

  .military-career-sec .military-career-sec .row::before {
    display: none;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: auto 330px !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    padding-top: 370px !important;
    height: auto !important;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }
  section.contact-hero.inner-hero.how-it-banner.hero {
    background-position: top 15px center !important;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero .top-row .col-right,
  section.contact-hero.home-banner-animation.inner-hero.hero .top-row .col-left {
    text-align: center;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: right center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }

  .starting-point-sec .benefits-common {
    width: 100%;
  }

  .veteran-talent-sec .content-column {
    order: 2;
  }

  .veteran-talent-sec .image-column {
    order: 1;
  }

  .veteran-talent-sec .content {
    padding-bottom: 0;
  }

  .start-point-sec .benefits-content img {
    margin-top: -14px;
    margin-bottom: 10px;
  }

  .platform-built .signature-series-content {
    max-width: 100%;
  }

  .scale-mission-sec .counter-content {
    padding: 0;
  }

  .hero-fullbg {
    position: relative;
    z-index: 2;
  }

  .hero-fullbg::before {
    position: absolute;
    z-index: -1;
    background: #1e2f41;
    content: "" !important;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .8;
  }

  .core-value-item-sec .what-we-bring-common:nth-of-type(1) {
    width: 100%;
  }

  .core-value-item-sec .what-we-bring-common:nth-of-type(2) {
    width: 100%;
  }

  .leadership-list .benefits-common {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .certifications-sec .benefits-common {
    width: 50%;
  }

  .certifications-sec .benefits-common:first-child {
    width: 100%;
  }

  .timeline-heading::before {
    left: 18px;
  }

  .section-title::before {
    left: 0;
  }

  .journey-timeline .section-title {
    padding-bottom: 50px !important;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.mobile-pt-50 {
    padding-top: 50px !important;
  }

  .not-found-sec h1 {
    font-size: clamp(80px, 10vw, 120px);
  }
  .free-always.signature-series{
    min-height: unset;
    background-position: left center !important;
  }
  .free-always .signature-series-content p {
    max-width: 381px;
  }
  .free-always .signature-series-content p br{
    display: none;
  }
.veteran-talent-bg .image-wrap {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    height: 400px;
}
  .veteran-talent-bg .image-column {
    height: 400px;
}
.veteran-talent-bg .image-wrap img {
        margin-left: 0%;
    }
  .signature-series-content small {
    margin-top: 20px;
}
.blog-section .blog-common, .blog-category .blog-common {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .post-sidebar-details {
    margin-top: 30px;
  }

  .post-sidebar-details .widget {
    padding: 18px;
  }
  .blog-category .blog-content-wrap {
    flex-direction: column;
  }

  .blog-category .blog-image {
    width: 100%;
    height: 200px;
  }
  .blog-pagination .page-link {
    min-width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .posts-navigation .nav-links {
    gap: 10px;
  }

  .posts-navigation .nav-links a {
    padding: 10px 14px;
    font-size: 13px;
  }
  .vission-building-list .what-we-bring-common {
    margin-bottom: 20px;
  }
  section.single-blog .container-fluid {
    padding: 0 !important;
}
section.single-blog .container-fluid > .row {
    margin: 0 auto !important;
}
section.single-blog .container-fluid .col-12.py-5 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.col-xxl-8.post-details {
    width: 100%;
}
.col-xxl-4.post-sidebar-details {
    width: 100%;
}
.post-share {
    gap: 10px;
  }

  .post-share .share-links a {
    width: 36px;
    height: 36px;
  }
  .start-point-sec .benefits-content img{
    margin-top: -15px;
  }
  .starting-point-sec.equal-heading .benefits-content h3{
    min-height: unset;
  }
}

/* ===== (max-width: 991px) End ===== */

/* ===== (max-width: 768px) START ===== */

@media (max-width: 768px) {
  .gform-theme {
    padding: 25px 20px;
  }

  .gform-theme .gfield--width-half {
    width: 100%;
  }

  .gform-theme .gform_button {
    font-size: 15px;
    padding: 14px;
  }
}

/* ===== (max-width: 768px) End ===== */


/* ===== (max-width: 767px) START ===== */

@media (max-width: 767px) {
  .footer-links {
    width: 50%;
  }

  .scale-mission-sec .counter-box {
    width: 50%;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .scale-mission-sec .title h2 {
    padding-bottom: 0 !important;
  }

  .footer .footer-links {
    width: 50%;
  }

  .profile-card .img-wrap {
    height: 210px;
  }



  .inner-page-banner.banner-section,
  .inner-page-banner .heroslider-content,
  .inner-page-banner.banner-section .container {
    height: 300px;
  }

  .slider-wrap {
    overflow: hidden;
    position: relative;
  }

  .slider-track {
    display: flex;
    gap: 20px;
    will-change: transform;
  }

  .profile-card {
    flex: 0 0 auto;
    transition: all 0.4s ease;
  }

  .profile-card {
    width: calc(33.333% - 20px);
  }

  .profile-card.active {
    width: calc(45% - 20px);
  }

  .contact-icon-guoup .benefits-common {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .contact-icon-guoup .benefits-content {
    padding: 20px 10px;
  }

  .faq-common .accordion-button {
    font-size: var(--fs-h6);
    padding: 18px 35px 18px 0;
  }

  .faq-common .accordion-button::before {
    font-size: 20px;
  }

  .faq-common .accordion-content p {
    font-size: var(--fs-small);
  }

  .hire-veterans-sec .content-column {
    width: 100%;
  }

  .hire-veterans-sec .image-column {
    width: 100%;
  }

  .military-career-sec .row::before {
    display: none;
  }

  .military-career-sec .benefits-content {
    padding: 0 10px;
  }

  .military-career-sec .benefits-content p {
    max-width: 100%;
  }

  .military-career-sec .benefits-common {
    margin-bottom: 40px;
  }

  .ecosystem-platform-list .benefits-common {
    width: 50%;
  }

  .ecosystem-platform-sec .signature-series-content {
    height: 200px;
  }

  .testimonial-image-right .image-wrap {
    width: 100%;
    height: auto;
    position: relative;
    right: unset;
    top: unset;
  }

  .testimonial-image-right .testimonial-content {
    width: 100%;
    padding: 30px;
  }

  .testimonial-image-right .review-name {
    padding: 30px;
  }

  .testimonial-image-right .testimonial-header {
    padding: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .timeline-heading::before {
    display: none;
  }

  .section-title::before {
    display: none;
  }
  .logoMark-container h2::after{
    display: none;
  }

  .post-details .nav-links {
    flex-direction: column;
  }
  .post-sidebar-details .widget {
    padding: 15px;
  }

  .post-sidebar-details .wp-block-heading {
    font-size: var(--fs-h6);
  }
  .blog-category .page-title {
    font-size: var(--fs-h4);
  }

  .blog-category .blog-image {
    height: 180px;
  }

  .blog-category .blog-content h4 {
    font-size: var(--fs-h6);
  }
  .contact-address-map iframe {
    height: 300px;
  }
   .blog-pagination .pagination {
    justify-content: center;
  }

  .blog-pagination .page-link {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  /* Reduce Prev/Next size */
  .blog-pagination .prev,
  .blog-pagination .next {
    padding: 0 12px;
  }
  .posts-navigation .nav-links {
    flex-direction: column;
  }

  .posts-navigation .nav-links a {
    width: 100%;
    text-align: center;
  }

  .posts-navigation .nav-previous,
  .posts-navigation .nav-next {
    width: 100%;
  }

  .post-share .share-links {
    gap: 8px;
  }

  .post-share .share-links a {
    width: 34px;
    height: 34px;
  }
}

/* ===== (max-width: 767px) END ===== */

/* ===== (max-width: 640px) START ===== */
@media (max-width: 640px) {
  .hero {
    padding: 40px 0 52px;
  }

  .btn {
    padding: 11px 20px;
  }

  .slider-wrap {
    margin-top: 44px;
  }

  .slider-track {
    gap: 16px;
  }

  .img-wrap {
    height: 190px;
  }

  .logoMark-track {
    gap: 25px !important;
  }

  .logoMark-logo-slider .logoMark-logo {
    width: calc(33.33% - 16.33px);
    min-width: 65px;
    max-width: 150px;
  }

  .wave-decor-wrap {
    width: 100%;
  }

  .hiring-logos-sec .logoMark-logo {
    max-width: 220px;
  }
}

/* ===== (max-width: 640px) END ===== */


/* ===== (max-width: 576px) START ===== */
@media (max-width: 576px) {
  .footer-links {
    width: 100%;
  }

  .footer-bottom .copyright {
    flex-direction: column;
    align-items: flex-start;
  }

  .copyright-menu {
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-link {
    margin-top: 10px;
  }

  .our-purpose-list .benefits-common {
    width: 100%;
  }

  .our-purpose-list .big-image {
    width: 100%;
  }

  .journey-list-sec .benefits-common {
    width: 100%;
  }

  .journey-list-sec .benefits-content p {
    max-width: 100%;
  }

  .dreaming-building-sec .view-details,
  .free-always .view-details {
    padding: 10px 22px;
  }

  .ecosystem-list-sec .row>div {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .counter-box::after {
    display: none;
  }

  .translation-gap-sec .image-wrap {
    padding: 0px;
    border-radius: 20px;
  }

  .pipeline-sec .stat-item {
    width: 100%;
  }

  .logoMark-container h2 {
    margin-bottom: 0 !important;
  }

  .pipeline-sec .container {
    padding: 20px;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
  }

  .our-purpose-list .benefits-content,
  .employers-list-sec .benefits-content,
  .ecosystem-list-sec .benefits-content {
    padding: 20px;
  }

  .footer .footer-links {
    width: 100%;
  }

  .container-fluid.footer-bottom .copyright {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .dreaming-building-sec {
    min-height: 350px;
  }

  .testimonial-section .owl-nav,
  .press-recognition-sec .owl-nav {
    top: -12px;
  }

  .journey-list-sec .benefits-content {
    padding: 0;
    justify-content: center;
    align-items: center;
  }

  .journey-list-sec .benefits-content p {
    text-align: center;
  }

  .testimonials-sec .container:nth-of-type(2),
  .press-recognition-sec .container:nth-of-type(2) {
    max-width: 100% !important;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .testimonial-three-full .container:nth-of-type(2) {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
  }

  .press-recognition-sec .owl-nav button img,
  .press-recognition-sec .owl-nav button,
  .testimonial-section .owl-nav button img,
  .testimonial-section .owl-nav button {
    height: 40px;
    width: 40px;
  }

  .slider-wrap {
    overflow: hidden;
    position: relative;
  }

  .slider-track {
    display: flex;
    gap: 20px;
    will-change: transform;
  }

  .profile-card {
    flex: 0 0 auto;
    transition: all 0.4s ease;
  }

  .profile-card {
    width: 85%;
  }

  .profile-card.active {
    width: 90%;
    min-width: 240px;
  }

  .profile-card .img-wrap {
    height: 250px;
  }

  .stepper-btn {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .photo-wrap {
    height: 220px;
    margin-top: 20px;
  }

  .content-card {
    padding: 28px 20px 28px;
  }

  span.badge {
    font-size: 11px;
  }

  .journey-list-item ul li {
    flex: 0 0 100%;
  }

  .why-major-section .mos-card {
    left: -12px;
    width: 195px;
    top: 16px;
  }

  .why-major-section .translation-card {
    left: -12px;
    width: 236px;
    bottom: 16px;
  }

  .why-major-section .feature-body-inner {
    padding-left: 58px;
  }

  .why-major-section .feature-item {
    padding: 15px 15px;
  }

  .free-always .signature-series-content h2 br {
    display: none;
  }

  section.inner-hero {
    height: auto;
  }

  .journey-section .title-desc h2 br {
    display: none;
  }

  .free-always.signature-series::after {
    content: "";
    width: 112%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #1f7a5c;
    background: #0e7a57;
    clip-path: none;
    z-index: 1;
    opacity: 1;
  }

  .profile-card.active {
    transform: scale(1);
    margin-right: 5px;
    margin-left: 5px;
  }

  .modal-content {
    padding: 30px;
  }

  .modal-header {
    margin-bottom: 25px !important;
  }

  #RequestDemo .modal-title {
    margin-bottom: 20px !important;
  }

  .translation-sec h2 {
    font-size: 26px;
  }

  .translation-sec .btn-solid {
    width: 100%;
    justify-content: center;
  }

  .enterprise-hiring-sec .title h2::after {
    display: none;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero {
    background-size: auto 300px !important;
    background-position: top center !important;
    background-repeat: no-repeat !important;
    padding-top: 338px !important;
    height: auto !important;
  }

  section.contact-hero.inner-hero.how-it-banner.hero {
    background-position: top 15px center !important;
  }

  .ecosystem-platform-list .benefits-common {
    width: 100%;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg {
    background-size: cover !important;
    background-position: right center !important;
  }
  section.contact-hero.home-banner-animation.inner-hero.hero.hero-fullbg.hero-right{
    background-position: right center !important;
  }

  .veteran-talent-sec .content {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .veteran-talent-sec .content h2 {
    grid-column: span 1;
    font-size: 30px;
  }

  .veteran-talent-sec .stat-item p {
    max-width: 100%;
  }

  .veteran-talent-sec .stat-item::after {
    width: 100%;
  }

  .starting-point-sec .content-btn-wrap {
    padding: 20px;

  }

  .included-list-sec .benefits-content {
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
  }

  .ceo-about-sec .what-we-bring-common:nth-of-type(1) {
    width: 100%;
  }

  .ceo-about-sec .what-we-bring-common:nth-of-type(2) {
    width: 100%;
  }

  .ceo-about-sec .content-below {
    width: fit-content;
    margin: 0 auto;
  }

  .core-value-item-sec .item-wrap {
    grid-template-columns: 1fr;
  }

  .core-value-item-sec .content-below {
    margin-bottom: 30px;
  }

  .leadership-list .benefits-common {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .leadership-list .benefits-content {
    height: 360px;
  }

  .certifications-sec .benefits-common {
    width: 100%;
  }

  .certifications-sec .benefits-common:first-child {
    width: 100%;
  }

  .our-purpose-list .benefits-common {
    width: 100%;
  }

  .home .journey-list-sec .benefits-content .content-btn-wrap h3 {
    text-align: center;
  }

  h2 br,
  h1 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }

  .hiring-logos-sec .logoMark-logo {
    max-width: 160px;
  }

  .hiring-logos-sec .logoMark-logo img {
    max-height: 60px;
  }

  section.contact-hero.home-banner-animation.inner-hero.hero.mobile-pt-50 {
    padding-top: 50px !important;
  }

  .not-found-sec .text-center {
    padding: 100px 20px 30px 20px;
  }

  .not-found-sec h1 {
    font-size: 70px;
    letter-spacing: 2px;
  }

  .not-found-sec h2 {
    font-size: 20px;
  }

  .not-found-sec p {
    font-size: 14px;
  }
  .veteran-talent-bg .image-wrap {
    height: 320px;
}
  .veteran-talent-bg .image-column {
    height: 320px;
}
.btn, .header-right-column ul li a, .dreaming-building-sec .view-details, .cus-button a, .free-always .btn-secondary, .free-always .view-details {
    padding: 10px 15px !important;
  }
  .btn-wrap {
    flex-flow: row wrap;
}

.blog-section .blog-common, .blog-category .blog-common {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .blog-section .blog-image, .blog-category .blog-image {
    height: 200px;
  }
  .blog-section .blog-content {
    height: calc(100% - 200px);
}
}

/* ===== (max-width: 576px) END ===== */


/* ===== (max-width: 480px) START ===== */

@media (max-width: 480px) {
  :root {
    --fs-h3: clamp(22px, 2.5vw, 26px);
    --fs-h4: clamp(18px, 2vw, 22px);
  }

  .faq-common .accordion-button {
    font-size: var(--fs-small);
  }

  .timeline-year {
    font-size: 28px;
  }

  .contact-icon-guoup .benefits-common {
    width: 50%;
  }

  .testimonial-section.testimonial-one .testimonial-content-wrap {
    padding: 20px;
  }

  .testimonial-image-right .testimonial-content {
    width: 100%;
    padding: 20px;
  }

  .testimonial-image-right .review-name {
    padding: 20px;
  }

  .ceo-about-sec .content-below {
    width: 100%;
    margin: 0 auto;
  }

  .ceo-about-sec .content-below p:first-child img {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== (max-width: 480px) END ===== */


/* ===== (max-width: 400px) START ===== */

@media (max-width: 400px) {

  .btn {
    justify-content: center;
  }

  .post-share {
    flex-direction: column;
    align-items: flex-start;
  }


}

/* ===== (max-width: 400px) END ===== */