:root {
  --navy: #0A2342;
  --blue: #145DA0;
  --white: #FFFFFF;
  --soft: #F4F6F8;
  --dark: #333333;
  --muted: #5b6470;
  --accent: #F7B500;
  --shadow: 0 20px 50px rgba(10, 35, 66, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 2000;
  background: var(--accent);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 16px;
}


:focus-visible {
  outline: 3px solid rgba(247, 181, 0, 0.8);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.section-pad {
  padding: 110px 0;
}

.bg-soft {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-kicker::before,
.eyebrow::before {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
}

.section-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
}

.section-heading {
  max-width: 760px;
}

.site-navbar {
  transition: all 0.35s ease;
  padding: 18px 0;
  background: rgba(10, 35, 66, 0.08);
  backdrop-filter: blur(10px);
}

.site-navbar.scrolled {
  background: rgba(10, 35, 66, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
}

.brand-logo {
  border-radius: 12px;
}

.brand-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: var(--white);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-lg {
  border-radius: 999px;
}

.btn-accent {
  background: var(--accent);
  color: var(--navy);
  border: 1px solid var(--accent);
  box-shadow: 0 14px 28px rgba(247, 181, 0, 0.28);
}

.btn-accent:hover,
.btn-accent:focus {
  background: #ffcb2f;
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--navy);
}

.hero-section {
  min-height: 100vh;
  padding: 132px 0 92px;
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(20, 93, 160, 0.35), transparent 28%),
    linear-gradient(135deg, #08182f 0%, #0a2342 52%, #f4f6f8 52%, #f4f6f8 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.28), rgba(20, 93, 160, 0.08));
}

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

.hero-panel {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 30px 80px rgba(5, 16, 31, 0.2);
}

.hero-left,
.hero-right {
  min-height: 700px;
}

.hero-left {
  background: linear-gradient(160deg, rgba(4, 13, 29, 0.97), rgba(10, 35, 66, 0.95));
  position: relative;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.14;
}

@media (max-width: 575.98px) {
  .hero-left::before {
    background-image: url('../assets/images/hero-main.jpg');
    background-image: image-set(
      url('../assets/images/hero-main-480.webp') type('image/webp'),
      url('../assets/images/hero-main.jpg') type('image/jpeg')
    );
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .hero-left::before {
    background-image: url('../assets/images/hero-main.jpg');
    background-image: image-set(
      url('../assets/images/hero-main-768.webp') type('image/webp'),
      url('../assets/images/hero-main.jpg') type('image/jpeg')
    );
  }
}

@media (min-width: 992px) {
  .hero-left::before {
    background-image: url('../assets/images/hero-main.jpg');
    background-image: image-set(
      url('../assets/images/hero-main-1280.webp') type('image/webp'),
      url('../assets/images/hero-main.jpg') type('image/jpeg')
    );
  }
}

.hero-left-inner {
  position: relative;
  z-index: 1;
  padding: 96px 72px;
  max-width: 760px;
}

.hero-right {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: var(--navy);
}

.hero-right-inner {
  height: 100%;
  padding: 62px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-photo {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  margin-bottom: 24px;
}

.hero-brand-block {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.14);
}

.hero-brand-logo {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(10, 35, 66, 0.2);
  flex: 0 0 74px;
}

.hero-brand-tag {
  margin-bottom: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-service-list {
  display: grid;
  gap: 18px;
}

.hero-service-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 35, 66, 0.12);
}

.hero-service-row:last-child {
  border-bottom: 0;
}

.hero-service-row i {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #163a66;
  color: var(--white);
  flex: 0 0 56px;
  box-shadow: 0 10px 24px rgba(10, 35, 66, 0.18);
}

.hero-service-row h3 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
}

.hero-service-row p {
  margin-bottom: 0;
  color: #5f6875;
  font-size: 0.94rem;
}

.info-grid {
  margin-top: 1.5rem;
}

.info-card {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(10, 35, 66, 0.08);
  box-shadow: 0 16px 35px rgba(10, 35, 66, 0.08);
}

.info-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-card {
  padding: 26px;
  border-radius: var(--radius-xl);
}

.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.2);
}

.hero-card-content {
  color: var(--white);
}

.hero-card-content h2 {
  color: var(--white);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
}

.stats-grid .stat-card {
  background: var(--white);
  border-radius: 24px;
  padding: 26px 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 93, 160, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-grid .stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10, 35, 66, 0.14);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #65707c;
}

.service-card,
.job-card,
.contact-info-card,
.testimonial-card,
.cta-card,
.contact-panel {
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 32px;
  border: 1px solid rgba(10, 35, 66, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(247, 181, 0, 0.35);
  box-shadow: 0 30px 60px rgba(10, 35, 66, 0.16);
}

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.service-card h3,
.job-card h3,
.benefit-item h3,
.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

.service-card p,
.job-card p,
.benefit-item p,
.timeline-content p,
.testimonial-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 260px;
  box-shadow: var(--shadow);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
  filter: saturate(0.9);
  transition: transform 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.06);
}

.industry-overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(10, 35, 66, 0), rgba(10, 35, 66, 0.92));
  color: var(--white);
  font-weight: 600;
  font-size: 1.02rem;
}

.industry-overlay i {
  color: var(--accent);
  font-size: 1.15rem;
}

.feature-image-wrap {
  position: relative;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(10, 35, 66, 0.08);
  border-radius: 22px;
  box-shadow: 0 16px 35px rgba(10, 35, 66, 0.08);
  height: 100%;
}

.benefit-item i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex: 0 0 52px;
  background: rgba(247, 181, 0, 0.12);
  color: var(--navy);
  font-size: 1.2rem;
}

.timeline-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.timeline-step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 35, 66, 0.08);
}

.timeline-number {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  flex: 0 0 58px;
}

.timeline-arrow {
  text-align: center;
  color: var(--accent);
  font-size: 1.5rem;
  margin: 16px 0;
}

.job-card {
  padding: 28px;
  border: 1px solid rgba(10, 35, 66, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.job-card:hover {
  transform: translateY(-8px);
  border-color: rgba(20, 93, 160, 0.22);
}

.job-card .btn {
  white-space: nowrap;
}

.testimonial-shell {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 0;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  flex: 0 0 100%;
  padding: 34px;
  border: 1px solid rgba(10, 35, 66, 0.08);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 0.95rem;
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}

.testimonial-author {
  margin-top: 20px;
  font-weight: 700;
  color: var(--navy);
}

.testimonial-author span {
  display: block;
  font-weight: 500;
  color: #66707c;
  margin-top: 4px;
}

.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.cta-card {
  padding: 70px 24px;
  background: linear-gradient(135deg, rgba(10, 35, 66, 0.98), rgba(20, 93, 160, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form .form-control {
  border-radius: 18px;
  border: 1px solid rgba(10, 35, 66, 0.1);
  padding: 16px 18px;
  box-shadow: none;
}

.staffing-modal-content {
  border: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(10, 35, 66, 0.28);
}

.staffing-modal-content .modal-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-bottom: 0;
  padding: 22px 26px;
}

.staffing-modal-content .btn-close {
  filter: invert(1) grayscale(1) brightness(3);
}

.staffing-modal-content .modal-body {
  padding: 28px;
  background: var(--white);
}

.form-section-title {
  margin: 12px 0 4px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-audience-group {
  border: 0;
  padding: 0;
  margin: 0;
}

.audience-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.audience-choice {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 35, 66, 0.04);
  border: 1px solid rgba(10, 35, 66, 0.1);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--navy);
}

.audience-choice input {
  accent-color: var(--blue);
}

.audience-choice:focus-within {
  outline: 3px solid rgba(247, 181, 0, 0.55);
  outline-offset: 2px;
}

.d-none {
  display: none !important;
}

.contact-form .form-control:focus {
  border-color: rgba(20, 93, 160, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(20, 93, 160, 0.12);
}

.contact-form .form-control.is-invalid {
  border-color: #b42318;
  box-shadow: 0 0 0 0.2rem rgba(180, 35, 24, 0.12);
}

.form-summary {
  padding: 16px 18px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-weight: 600;
  border: 1px solid transparent;
}

.form-summary.error {
  background: #fff5f4;
  border-color: rgba(180, 35, 24, 0.18);
  color: #8f1d16;
}

.form-summary.success {
  background: #f0fbf7;
  border-color: rgba(19, 121, 91, 0.18);
  color: #13795b;
}

.field-error {
  min-height: 1.25rem;
  margin-top: 8px;
  font-size: 0.92rem;
  color: #b42318;
  font-weight: 500;
}

.field-error:empty {
  margin-top: 0;
}

.form-status {
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.success {
  color: #13795b;
}

.form-status.error {
  color: #b42318;
}

.contact-panel {
  padding: 24px;
}

.contact-info-card {
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid rgba(10, 35, 66, 0.08);
  height: 100%;
  min-width: 0;
}

.contact-info-card > div {
  min-width: 0;
}

.contact-info-card i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(247, 181, 0, 0.12);
  color: var(--navy);
  flex: 0 0 48px;
}

.contact-info-card span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7480;
  margin-bottom: 4px;
}

.contact-info-card p {
  margin: 0;
  color: var(--navy);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-card a {
  color: inherit;
}

.contact-info-card a:hover,
.contact-info-card a:focus {
  color: var(--blue);
}

.footer-section {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 28px;
}

.footer-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

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

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a,
.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover,
.footer-legal a:hover,
.social-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 991.98px) {
  .site-navbar {
    background: rgba(10, 35, 66, 0.94);
  }

  .navbar-collapse {
    padding: 20px 0 8px;
  }

  .nav-link {
    padding: 10px 0;
  }

  .section-pad {
    padding: 84px 0;
  }

  .hero-section {
    padding-top: 120px;
  }

  .hero-left,
  .hero-right {
    min-height: auto;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .hero-left-inner,
  .hero-right-inner {
    padding: 42px 28px;
  }

  .hero-panel {
    display: block;
    border-radius: 28px;
  }

  .hero-right-inner {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .staffing-modal-content .modal-header,
  .staffing-modal-content .modal-body {
    padding: 20px;
  }

  .staffing-modal-content .modal-title {
    font-size: 1.15rem;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .hero-panel {
    width: 100%;
    margin: 0;
  }

  .hero-left,
  .hero-right,
  .hero-left-inner,
  .hero-right-inner {
    width: 100%;
    max-width: 100%;
  }

  .hero-right-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-left-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-right,
  .hero-left {
    overflow-x: clip;
  }

  .hero-photo {
    min-height: 180px;
  }

  .hero-left-inner,
  .hero-right-inner {
    padding: 34px 22px;
  }

  .hero-brand-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .audience-choice-grid {
    flex-direction: column;
  }

  .hero-service-row {
    flex-direction: column;
  }

  .hero-card,
  .service-card,
  .job-card,
  .contact-panel,
  .cta-card,
  .testimonial-card {
    padding: 22px;
  }

  .timeline-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card {
    min-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
