:root {
  --navy-900: #0a1e38;
  --navy-800: #0f2b4d;
  --navy-700: #163d6b;
  --steel-600: #4c5c70;
  --steel-300: #c3ccd6;
  --ice-100: #f4f7fa;
  --white: #ffffff;
  --accent-500: #263d84;
  --accent-600: #cc4e12;
  --accent-100: #fdece1;

  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 45px -20px rgba(10, 30, 56, 0.35);
}
a:hover {
  text-decoration: none !important;
}
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-500);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-eyebrow.section-eyebrow--light {
  color: #044d96;
}
.lead-text.lead-text--light.mx-auto {
  text-align: center;
}
.section-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background:#263d84;
  display: inline-block;
}
.section-eyebrow--light {
  color: var(--accent-500);
}
.text-center .section-eyebrow {
  justify-content: center;
}
.text-center .section-eyebrow::before {
  display: none;
}

.section-title {
padding: 0;
  margin: 0 0 10px 0;
  font-family: 'Be Vietnam', sans-serif;
  font-size: 36px;
  font-weight: 600;
  font-style: normal;
  color: #044d96;
  text-transform: uppercase;
  display: block;
  position: relative;
}
.section-title--light {
  color: #044d96;
}

.lead-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--steel-600);
}
.lead-text--light {
 color: #494949;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  display: inline-flex;
  align-items: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.btn-accent {
  background: var(--accent-500);
  border: 1px solid var(--accent-500);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(232, 98, 31, 0.55);
}
.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ INTRO / CULTURE ============ */
.intro {
  padding: 60px 0;
  background: var(--white);
}
.intro__points {
  margin-top: 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.intro__point {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.intro__point i {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1e3817;
  color: var(--accent-500);
  border-radius: 12px;
  font-size: 1.15rem;
}
.intro__point h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--navy-900);
}
.intro__point p {
  color: var(--steel-600);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.intro__media {
  position: relative;
  padding-left: 50px;
}
.intro__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/10.5;
  object-fit: cover;
  object-position: center 25%;
}
.intro__badge {
  position: absolute;
  bottom: -1.5rem;
  left: 30px;
  background: #253d84;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 15px 30px -12px rgba(10, 30, 56, 0.5);
}
.intro__badge i {
  color:#fff;
  font-size: 1.4rem;
}
.intro__badge strong {
  display: block;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.intro__badge span {
  font-size: 0.78rem;
  color: var(--steel-300);
}

/* ============ OPEN POSITIONS ============ */
.openings {
  padding: 60px 0;
  /* background:
    radial-gradient(
      circle at 15% 20%,
      rgba(232, 98, 31, 0.12),
      transparent 40%
    ),
    linear-gradient(180deg, var(--navy-900), var(--navy-800)); */
    background: #f2f9ff;
  position: relative;
}
.job-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px -18px rgba(0, 0, 0, 0.45);
}
.job-card__plate {
  /* background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); */
  background: var(--accent-500);
  color: #fff;
  padding: 1.5rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.job-card__plate::after {
  content: "";
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 0;
  height: 3px;
  background: var(--accent-500);
}
.job-card__dept {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}
.job-card__icon {
  font-size: 1.5rem;
  color: #fff;
}
.job-card__body {
  padding: 1.5rem 1.4rem;
  flex: 1;
}
.job-card__title {
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: none;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}
.job-card__location {
  font-size: 0.82rem;
  color: var(--accent-500);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.job-card__location i {
  margin-right: 0.35rem;
}
.job-card__desc {
  font-size: 0.9rem;
  color: var(--steel-600);
  line-height: 1.6;
  margin: 0;
	text-align: left;
}
.job-card__footer {
  padding: 0 1.4rem 1.5rem;
}
.job-card__apply {
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--navy-900);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 2px solid var(--accent-500);
  padding-bottom: 0.15rem;
  transition:
    color 0.2s ease,
    gap 0.2s ease;
}
.job-card__apply:hover {
  color: var(--accent-500);
  gap: 0.75rem;
}

/* ============ BENEFITS ============ */
.benefits {
  padding: 60px 0;
  background: var(--ice-100);
}
.benefit-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px -18px rgba(10, 30, 56, 0.2);
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-6px);
}
.benefit-card i {
  font-size: 1.8rem;
  color: var(--accent-500);
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--steel-600);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* ============ REVEAL BASE STATE (JS/GSAP controls animation) ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
  .intro__badge {
    position: static;
    margin-top: 1rem;
    display: inline-flex;
  }
  .hero__content {
    padding: 4rem 0 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .utility-bar__inner {
    font-size: 0.72rem;
  }
  .hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__cta .btn {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__scroll-cue span {
    animation: none;
  }
}
