/* ============================================================
   StaffUK — Recruitment & Staffing Landing Page
   Author: StaffUK
   ============================================================ */

:root {
  --primary: #00247d;
  --primary-dark: #001a5c;
  --accent: #c8102e;
  --grad-1: #00247d;
  --grad-2: #c8102e;
  --grad-3: #00247d;
  --dark: #00103a;
  --dark-2: #001854;
  --dark-3: #00206e;
  --light: #f4f6fb;
  --white: #ffffff;
  --text: #334155;
  --text-light: #64748b;
  --border: #e2e8f0;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 4px 18px rgba(0, 36, 125, 0.08);
  --shadow-md: 0 12px 40px rgba(0, 36, 125, 0.12);
  --shadow-lg: 0 24px 70px rgba(0, 36, 125, 0.2);
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* ---------- Gradient text ---------- */
.grad-text {
  background: linear-gradient(120deg, var(--grad-1), var(--grad-2), var(--grad-3));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradShift 6s ease infinite;
}

@keyframes gradShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn i { transition: transform 0.35s var(--ease); }
.btn:hover i { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(120deg, var(--grad-1), var(--grad-2));
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 36, 125, 0.35);
  background-size: 150% 150%;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-primary:hover::before { transform: translateX(120%); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0, 36, 125, 0.5); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-3px); }

.btn-hero-primary {
  background: linear-gradient(120deg, var(--grad-1), var(--grad-2));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 36, 125, 0.3);
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
}

.btn-hero-primary:hover::before { transform: translateX(120%); }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0, 36, 125, 0.4); }

.btn-hero-ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-hero-ghost:hover { background: var(--accent); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(200, 16, 46, 0.3); }

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,99,235,0.3); }

.btn-light { background: #fff; color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.btn-light:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }

.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.9rem; border-radius: 11px; }
.btn-block { width: 100%; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #000d2e 0%, #001a5c 40%, #00247d 70%, #000d2e 100%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-box {
  width: 160px;
  height: 160px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: preloaderBoxPulse 2s ease-in-out infinite;
}

@keyframes preloaderBoxPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(200, 16, 46, 0.1); }
  50% { box-shadow: 0 0 50px rgba(200, 16, 46, 0.3); }
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: preloaderLogoFade 1s ease forwards;
}

@keyframes preloaderLogoFade {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.preloader-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: preloaderNameIn 0.8s ease 0.3s forwards;
  opacity: 0;
}

@keyframes preloaderNameIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.preloader-loading {
  font-family: var(--font-head);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
}

.preloader-dots {
  animation: preloaderDots 1.4s infinite;
}

@keyframes preloaderDots {
  0%, 20% { content: '.'; }
  40% { content: '..'; }
  60%, 100% { content: '...'; }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 0.3rem;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4d7ce5, #c8102e);
  border-radius: 3px;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(200, 16, 46, 0.5);
}

.preloader-percent {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
}

.preloader-percent span {
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.4s var(--ease);
}

.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 36, 125, 0.08);
}

.nav-inner { display: flex; align-items: center; }

.logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: var(--dark); margin-right: auto; }

.logo-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 36, 125, 0.5);
  animation: floatY 4s ease-in-out infinite;
}

.logo-accent { color: #c8102e; }

.logo-img { height: 120px; width: auto; object-fit: contain; margin: -30px 0; display: block; }
.footer-brand .logo-img { height: 120px; margin: 0; }

.nav-links { display: flex; gap: 2rem; }
.nav-ico { display: none; }  /* shown only in the mobile menu */

.nav-link {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-3));
  transition: width 0.35s var(--ease);
}

.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; padding-left: 1.5rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }

.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.35s var(--ease);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Megamenu ---------- */
.has-megamenu { position: static; }

.megamenu {
  position: fixed;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 820px;
  background: var(--white);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 20px 60px rgba(0, 36, 125, 0.18);
  padding: 1.8rem 1.5rem 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  z-index: 1001;
  pointer-events: none;
  overflow: hidden;
}

.has-megamenu:hover .megamenu,
.has-megamenu:focus-within .megamenu,
.has-megamenu.mega-open .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.megamenu-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.megamenu-col {
  padding: 0 0.5rem;
}

.megamenu-col h4 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
}

.mega-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  transition: all 0.2s var(--ease);
}

.mega-link:hover {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  transform: translateX(3px);
}

.mega-link:hover * { color: #fff !important; }
.mega-link:hover i { color: #fff !important; }

.mega-link i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--light);
  color: var(--primary);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.2s;
}

.mega-link:hover i {
  background: rgba(255, 255, 255, 0.2);
}

.mega-link strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0;
}

.mega-link p {
  font-size: 0.72rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.2;
}

.megamenu-cta {
  margin: 1.8rem -1.5rem -1.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--light);
  border-radius: 0 0 calc(var(--radius) - 1.5rem) calc(var(--radius) - 1.5rem);
}

.megamenu-cta p {
  font-size: 0.85rem;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  font-weight: 500;
}

.megamenu-cta .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.82rem;
  border-radius: 10px;
}

/* Mobile megamenu */
@media (max-width: 768px) {
  .megamenu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    left: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
    pointer-events: none;
    background: transparent;
    z-index: auto;
    opacity: 1;
    visibility: visible;
  }
  /* Neutralise the desktop hover/focus/mega-open transforms on mobile so the
     dropdown stays inside the side panel instead of shifting left by 50%. */
  .has-megamenu .megamenu,
  .has-megamenu:hover .megamenu,
  .has-megamenu:focus-within .megamenu,
  .has-megamenu.mega-open .megamenu {
    transform: none !important;
  }
  .has-megamenu.open .megamenu {
    max-height: none;
    overflow: visible;
    pointer-events: auto;
    flex-shrink: 0;
  }
  /* When collapsed, keep it hidden even while the trigger is focused/hovered */
  .has-megamenu:not(.open) .megamenu {
    max-height: 0;
    pointer-events: none;
  }
  .megamenu-inner {
    display: block;
    gap: 0;
  }
  .megamenu-col { padding: 0; }
  .megamenu-col h4 {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    margin: 0.6rem 0 0.3rem;
    padding-left: 0.5rem;
  }
  .mega-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.5rem;
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--text);
    transition: background 0.2s;
  }
  .mega-link:active { background: var(--light); }
  .mega-link:hover { background: none; transform: none; }
  /* Cancel the desktop white-on-hover text so items stay visible on mobile (sticky :hover after tap) */
  .mega-link:hover *,
  .mega-link:active * { color: inherit !important; }
  .mega-link:hover strong,
  .mega-link:active strong { color: var(--dark) !important; }
  .mega-link:hover p,
  .mega-link:active p { color: var(--text-light) !important; }
  .mega-link:hover i,
  .mega-link:active i { color: var(--primary) !important; background: var(--light) !important; }
  .mega-link i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--light);
    color: var(--primary);
    font-size: 0.7rem;
    flex-shrink: 0;
  }
  .mega-link strong { font-size: 0.85rem; }
  .mega-link p { font-size: 0.72rem; color: var(--text-light); margin: 0; }
  .megamenu-cta { display: none; }
  .has-megamenu > .nav-link { display: flex; align-items: center; justify-content: space-between; width: 100%; }
  .has-megamenu > .nav-link .fa-chevron-down { display: none; }
  .has-megamenu > .nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    transition: transform 0.3s;
  }
  .has-megamenu.open > .nav-link::after { transform: rotate(180deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  background: #f0f2f8;
  color: var(--dark);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; }

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 36, 125, 0.12), transparent 70%);
  top: -300px; right: -200px;
  animation: orbFloat 14s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.08), transparent 70%);
  bottom: -250px; left: -150px;
  animation: orbFloat 12s ease-in-out infinite reverse;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 36, 125, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 36, 125, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  animation: gridMove 18s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.orb { display: none; }

.hero-particle { position: absolute; inset: 0; }

.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-120vh); opacity: 0; }
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  background: rgba(0, 36, 125, 0.08);
  border: 1px solid rgba(0, 36, 125, 0.15);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.6rem;
  animation: badgeFade 0.8s var(--ease) 0.3s both;
}

@keyframes badgeFade {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.5);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.hero-title .line { display: block; overflow: hidden; }

.hero-title .line .char { display: inline-block; transform: translateY(110%); animation: slideUp 0.8s var(--ease) forwards; }

.hero-title .line:nth-child(2) .char { animation-delay: 0.25s; }

@keyframes slideUp { to { transform: translateY(0); } }

.typed { border-bottom: 3px solid transparent; }

.type-wrap {
  position: relative;
  display: inline-block;
}

.type-wrap::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 8%;
  height: 84%;
  width: 3px;
  background: var(--grad-3);
  animation: blink 0.8s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; gap: 3rem; flex-wrap: wrap; }

.hero-stat span {
  font-family: var(--font-head);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--primary);
  display: inline-block;
}

.hero-stat p { color: var(--text-light); font-size: 0.9rem; }

/* Hero visual */
.hero-visual { position: relative; }

.hero-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: 0 20px 60px rgba(0, 36, 125, 0.12);
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.hc-head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }

.hc-avatar {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 15px;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 10px 24px rgba(0, 36, 125, 0.35);
}

.hc-head h4 { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); }
.hc-head p { font-size: 0.82rem; color: var(--text-light); }

.hc-badge {
  margin-left: auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(200, 16, 46, 0.1);
  color: var(--accent);
  font-size: 1.05rem;
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(200, 16, 46, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0); }
}

.candidate-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem;
  border-radius: 14px;
  background: var(--light);
  border: 1px solid var(--border);
  margin-bottom: 0.7rem;
  transition: all 0.3s var(--ease);
}

.candidate-row:hover { background: rgba(255, 255, 255, 0.1); transform: translateX(6px); }

.cand-av {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #a855f7);
}

.candidate-row:nth-child(2) .cand-av { background: linear-gradient(135deg, #c8102e, #4d7ce5); }
.candidate-row:nth-child(3) .cand-av { background: linear-gradient(135deg, #00247d, #c8102e); }

.candidate-row strong { font-size: 0.92rem; display: block; color: var(--dark); }
.candidate-row p { font-size: 0.78rem; color: var(--text-light); }

.match {
  margin-left: auto;
  font-weight: 700;
  font-size: 0.85rem;
  color: #34d399;
}

.hc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
}

.live { display: flex; align-items: center; gap: 0.5rem; color: var(--accent); }
.salary { color: var(--text-light); }

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  border-radius: 50px;
  background: #fff;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(0, 36, 125, 0.12);
  white-space: nowrap;
  animation: floatY 5s ease-in-out infinite;
}

.float-chip i { color: var(--accent); }

.chip-1 { top: -24px; left: -34px; animation-delay: 0.3s; }
.chip-2 { bottom: 16%; right: -40px; animation-delay: 1s; }
.chip-3 { bottom: -22px; left: 8%; animation-delay: 1.7s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.scroll-indicator {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--primary);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.wheel {
  width: 4px; height: 8px;
  border-radius: 4px;
  background: var(--primary);
  animation: wheelScroll 1.8s ease infinite;
}

@keyframes wheelScroll {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee-section { background: var(--light); padding: 3.5rem 0 1.5rem; text-align: center; }

.marquee-label { color: var(--text-light); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.8rem; margin-bottom: 1.8rem; }

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--dark-3);
  opacity: 0.55;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.marquee-track span:hover { opacity: 1; }
.marquee-track i { font-size: 1.4rem; color: var(--primary); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }

.eyebrow {
  display: inline-block;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  color: var(--primary);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.eyebrow.light { background: rgba(255, 255, 255, 0.14); color: #fff; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.section-head p { color: var(--text-light); font-size: 1.02rem; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- About ---------- */
.about { background: var(--light); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
}

.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img-wrap:hover img { transform: scale(1.06); }

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 18, 32, 0.5));
}

.about-float {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.4rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: floatY 5s ease-in-out infinite;
}

.about-float i {
  font-size: 1.6rem;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
}

.about-float strong { font-family: var(--font-head); color: var(--dark); display: block; }
.about-float p { font-size: 0.82rem; color: var(--text-light); }

.about-text .section-title { margin-bottom: 1.2rem; }

.about-text > p { color: var(--text-light); margin-bottom: 2rem; font-size: 1.02rem; }

.about-points { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2.4rem; }

.point { display: flex; gap: 1rem; align-items: flex-start; }

.point i { color: var(--primary); font-size: 1.25rem; margin-top: 0.2rem; }

.point strong { font-family: var(--font-head); color: var(--dark); display: block; font-size: 1.02rem; }
.point p { color: var(--text-light); font-size: 0.92rem; }

/* ---------- Services ---------- */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); border-color: transparent; }

.sc-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
  margin-bottom: 1.4rem;
  transition: all 0.45s var(--ease);
}

.service-card:hover .sc-icon {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  transform: rotateY(360deg);
}

.service-card h3 { font-family: var(--font-head); color: var(--dark); font-size: 1.15rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 1.3rem; }

.card-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.card-link i { transition: transform 0.35s var(--ease); }
.card-link:hover i { transform: translateX(5px); }

/* ---------- Stats band ---------- */
.stats-band {
  background: linear-gradient(120deg, #000d2e, #00247d, #001854);
  background-size: 200% 200%;
  animation: gradShift 12s ease infinite;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.stats-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }

.stat span {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(120deg, #ffffff, #e0e7ff, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.stat p { color: rgba(255, 255, 255, 0.65); font-weight: 500; margin-top: 0.3rem; }

/* ---------- Jobs ---------- */
.jobs { background: var(--white); }

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: all 0.35s var(--ease);
}

.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.filter-btn.active {
  background: linear-gradient(120deg, var(--grad-1), var(--grad-2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.3);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 2.8rem;
}

.job-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.7rem;
  transition: all 0.45s var(--ease);
  opacity: 1;
  transform: scale(1);
}

.job-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: var(--white); }

.job-card.fade-out { opacity: 0; transform: scale(0.92); }

.job-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.1rem; }

.job-type {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.job-save {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--text-light);
  transition: all 0.3s;
  cursor: pointer;
}

.job-save:hover, .job-save.saved { color: #ef4444; transform: scale(1.15); }

.job-card h3 { font-family: var(--font-head); color: var(--dark); font-size: 1.1rem; margin-bottom: 0.5rem; }

.job-company { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1rem; }
.job-company i { color: var(--primary); margin-right: 0.3rem; }

.job-meta { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }

.job-meta span { font-size: 0.86rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.job-meta i { color: var(--primary); width: 16px; text-align: center; }

.jobs-more { text-align: center; margin-top: 2.5rem; }

/* ---------- Industries ---------- */
.industries {
  position: relative;
  background: #ffffff;
  padding: 6rem 0;
  overflow: hidden;
}

.industries-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 36, 125, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 36, 125, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

.industries .section-head { position: relative; z-index: 2; }
.industries .section-head .section-title { color: var(--dark); }
.industries .section-head p { color: var(--text-light); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 2;
}

.industry-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  cursor: pointer;
  height: 320px;
  border: none;
}

.ind-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

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

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0.15) 0%, rgba(7, 13, 26, 0.85) 75%);
  transition: background 0.5s var(--ease);
}

.industry-card:hover .ind-overlay {
  background: linear-gradient(180deg, rgba(0, 36, 125, 0.3) 0%, rgba(0, 36, 125, 0.92) 80%);
}

.ind-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 2rem;
}

.ind-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.25rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  margin-bottom: 1rem;
  transition: all 0.45s var(--ease);
}

.industry-card:hover .ind-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: rotateY(360deg);
}

.industry-card h3 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.industry-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.industry-card:hover p { color: rgba(255, 255, 255, 0.85); }

.ind-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.35s var(--ease);
  width: fit-content;
}

.ind-meta strong { color: #fff; }
.ind-meta i { font-size: 0.7rem; transition: transform 0.35s var(--ease); }

.industry-card:hover .ind-meta {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.industry-card:hover .ind-meta i { transform: translateX(4px); }

/* ---------- Process ---------- */
.process { background: var(--light); position: relative; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.7rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.45s var(--ease);
  position: relative;
  z-index: 2;
}

.process-step:hover { transform: translateY(-10px); box-shadow: var(--shadow-md); }

.process-num {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: rgba(37, 99, 235, 0.08);
  transition: color 0.4s;
}

.process-step:hover .process-num { color: rgba(37, 99, 235, 0.22); }

.process-icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
  border-radius: 22px;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
  transition: transform 0.5s var(--ease);
}

.process-step:hover .process-icon { transform: rotateY(360deg) scale(1.08); }

.process-step h3 { font-family: var(--font-head); color: var(--dark); font-size: 1.1rem; margin-bottom: 0.6rem; }
.process-step p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--light); }

.testi-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 1.5rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.testi-scroll::-webkit-scrollbar { display: none; }

.testi-card {
  min-width: 340px;
  flex: 0 0 calc(33.333% - 1rem);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.testi-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }

.testi-stars { color: #f59e0b; font-size: 0.95rem; display: flex; gap: 0.2rem; }

.testi-quote-icon { color: rgba(37, 99, 235, 0.15); font-size: 2.4rem; }

.testi-quote {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--dark-3);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 1.8rem;
  flex: 1;
}

.testi-author { display: flex; align-items: center; gap: 0.9rem; }

.testi-av {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
}

.testi-card:nth-child(2) .testi-av { background: linear-gradient(135deg, #c8102e, #00247d); }
.testi-card:nth-child(3) .testi-av { background: linear-gradient(135deg, #00247d, #c8102e); }
.testi-card:nth-child(4) .testi-av { background: linear-gradient(135deg, #c8102e, #4d7ce5); }

.testi-author strong { font-family: var(--font-head); color: var(--dark); display: block; font-size: 0.95rem; }
.testi-author p { color: var(--text-light); font-size: 0.82rem; }

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2rem;
}

.testi-prev, .testi-next {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}

.testi-prev:hover, .testi-next:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.08);
}

.testi-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.testi-dot {
  width: 10px; height: 10px;
  border-radius: 50px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease);
  padding: 0;
}

.testi-dot:hover { background: var(--primary); }
.testi-dot.active { width: 28px; background: var(--primary); }

/* ---------- CTA Full Width ---------- */
.cta-full {
  position: relative;
  background: linear-gradient(120deg, #000d2e, #00247d, #001854);
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-full-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.cta-full-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-full-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.9rem;
}

.cta-full-content > p { color: rgba(255, 255, 255, 0.7); margin-bottom: 2rem; }

.cta-form { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1rem; }

.cta-form input {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.3s;
}

.cta-form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.cta-form input:focus { border-color: #c8102e; background: rgba(255, 255, 255, 0.13); }

.cta-form .btn { grid-column: 1 / -1; }

.form-note { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
.form-note i { margin-right: 0.3rem; }

/* ---------- Footer ---------- */
.footer {
  background: #000d2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 4.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
  top: -200px; right: -150px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 3.5rem;
}

.footer-brand .logo { margin-bottom: 0.5rem; }

.footer-brand p { font-size: 0.92rem; margin-bottom: 1.5rem; max-width: 300px; }

.socials { display: flex; gap: 0.8rem; margin-top: 1rem; }

.socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s ease;
}

.socials a i {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.socials a:hover {
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  transform: translateY(-4px) rotate(8deg);
}

.footer-col h4 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 1.3rem;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  padding: 0.4rem 0;
  transition: all 0.3s;
}

.footer-col a:hover { color: #fff; transform: translateX(5px); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  padding: 0.45rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
  width: 18px;
  text-align: center;
  color: #c8102e;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact-item span { font-weight: 500; }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.86rem;
  position: relative;
  z-index: 2;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--dark);
  color: #fff;
  padding: 1rem 1.6rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  font-size: 0.92rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  transition: transform 0.5s var(--ease);
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast i { color: #34d399; font-size: 1.2rem; }

/* ---------- Back to top ---------- */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  font-size: 1.05rem;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  z-index: 999;
}

.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { transform: translateY(-5px); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: #f0f2f8;
  overflow: hidden;
}

.page-hero-bg { position: absolute; inset: 0; overflow: hidden; }

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.orb-blue { width: 500px; height: 500px; background: rgba(0, 36, 125, 0.1); top: -200px; right: -100px; }
.orb-red { width: 400px; height: 400px; background: rgba(200, 16, 46, 0.07); bottom: -180px; left: -80px; }

.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.breadcrumb a { color: var(--primary); font-weight: 500; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 0.6rem; color: var(--text-light); }

.page-hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-sub {
  position: relative;
  z-index: 2;
  font-size: 1.08rem;
  color: var(--text-light);
  max-width: 560px;
}

/* ---------- About Mission ---------- */
.about-mission { background: #ffffff; }

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-mission-text .section-title { margin-bottom: 1.2rem; }

.about-mission-text p { color: var(--text-light); font-size: 1.02rem; margin-bottom: 1rem; }

.about-mission-visual { position: relative; }

.about-mission-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-mission-img img { width: 100%; height: 420px; object-fit: cover; }

.about-mission-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.4rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: floatY 5s ease-in-out infinite;
}

.about-mission-badge i {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
}

.about-mission-badge strong { font-family: var(--font-head); color: var(--dark); display: block; }
.about-mission-badge p { font-size: 0.82rem; color: var(--text-light); }

/* ---------- Values ---------- */
.about-values { background: var(--light); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.value-num {
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: rgba(0, 36, 125, 0.07);
}

.value-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 15px;
  font-size: 1.3rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  margin-bottom: 1.3rem;
  transition: transform 0.5s var(--ease);
}

.value-card:hover .value-icon { transform: rotateY(360deg); }

.value-card h3 { font-family: var(--font-head); color: var(--dark); font-size: 1.1rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Team ---------- */
.about-team { background: #ffffff; }

/* ---------- Mission & Vision ---------- */
.about-mv { background: #ffffff; }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.mv-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.2rem;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.45s var(--ease);
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--grad-1), var(--grad-2));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transform: scaleX(0);
  transition: transform 0.45s var(--ease);
}

.mv-card:hover::before { transform: scaleX(1); }
.mv-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }

.mv-icon {
  width: 80px; height: 80px;
  display: grid; place-items: center;
  margin: 0 auto 1.6rem;
  border-radius: 22px;
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
  transition: transform 0.5s var(--ease);
}

.mv-card:hover .mv-icon { transform: scale(1.1) rotateY(180deg); }

.mv-card h3 { font-family: var(--font-head); color: var(--dark); font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; }
.mv-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.4rem; }

.mv-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}

/* ---------- Why Choose Us ---------- */
.about-why { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual { position: relative; }

.why-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-img img { width: 100%; height: 480px; object-fit: cover; }

.why-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  color: #fff;
  padding: 1.6rem 2rem;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.35);
  animation: floatY 5s ease-in-out infinite;
}

.why-stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.why-stat-card p { font-size: 0.82rem; opacity: 0.9; max-width: 160px; }

.why-content { position: relative; z-index: 2; }

.why-desc { color: var(--text-light); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }

.why-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--light);
  transition: all 0.4s var(--ease);
}

.why-feature:hover {
  border-color: transparent;
  box-shadow: var(--shadow-sm);
  transform: translateX(8px);
}

.why-feature-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
}

.why-feature-text h4 { font-family: var(--font-head); color: var(--dark); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
.why-feature-text p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }

/* ---------- Services Intro ---------- */
.svc-intro { background: #ffffff; }

.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-intro-text .section-title { margin-bottom: 1.2rem; }
.svc-intro-text p { color: var(--text-light); font-size: 1.02rem; margin-bottom: 1rem; }

.svc-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.svc-stat-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 1.8rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.svc-stat-item:hover { transform: translateX(8px); box-shadow: var(--shadow-sm); border-color: transparent; }

.svc-stat-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 15px;
  font-size: 1.2rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  flex-shrink: 0;
}

.svc-stat-info span { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--dark); }
.svc-stat-suffix { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--accent); }
.svc-stat-info p { color: var(--text-light); font-size: 0.88rem; margin-top: 0.1rem; }

/* ---------- Service Detail ---------- */
.svc-detail { overflow: hidden; }
.svc-dark { background: var(--dark); color: #fff; }
.svc-dark .svc-detail-title { color: #fff; }
.svc-dark .svc-detail-content > p { color: rgba(255, 255, 255, 0.75); }
.svc-dark .svc-feat { color: rgba(255, 255, 255, 0.9); }
.svc-light { background: #ffffff; }

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-detail-grid.svc-reverse { direction: rtl; }
.svc-detail-grid.svc-reverse > * { direction: ltr; }

.svc-detail-visual { position: relative; }

.svc-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.svc-detail-img img { width: 100%; height: 440px; object-fit: cover; }

.svc-float-badge {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 20px;
  font-size: 1.6rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.35);
  animation: floatY 5s ease-in-out infinite;
}

.svc-detail-content .eyebrow { display: block; margin-bottom: 0.8rem; background: none; padding: 0; border-radius: 0; }
.svc-dark .eyebrow.light { background: none; padding: 0; color: #ffffff; font-weight: 700; letter-spacing: 0.08em; }

.svc-detail-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.svc-detail-content > p { color: var(--text-light); font-size: 1.02rem; margin-bottom: 1.6rem; line-height: 1.7; }

.svc-detail-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}

.svc-feat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.svc-feat i { color: var(--accent); font-size: 0.85rem; }

/* ---------- Process ---------- */
.svc-process { background: var(--light); padding: 4rem 0; }
.svc-process .section-head { margin-bottom: 2.5rem; }
.svc-process .eyebrow { display: inline-block; background: none; padding: 0; border-radius: 0; color: var(--primary); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.82rem; width: auto; }

/* ---------- Industries Detail ---------- */
.ind-all { background: #ffffff; }

.ind-detail-block {
  margin-bottom: 4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.45s var(--ease);
}

.ind-detail-block:last-child { margin-bottom: 0; }
.ind-detail-block:hover { box-shadow: var(--shadow-lg); border-color: transparent; }

.ind-detail-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.8rem 2.2rem;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.ind-detail-icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 16px;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  flex-shrink: 0;
}

.ind-detail-header h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 0.2rem; }
.ind-detail-header p { color: var(--text-light); font-size: 0.92rem; }

.ind-detail-body {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
}

.ind-detail-img img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }

.ind-detail-content { padding: 2.2rem 2.5rem; }

.ind-detail-content h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.8rem; }
.ind-detail-content h3:not(:first-child) { margin-top: 1.5rem; }
.ind-detail-content > p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

.ind-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }

.ind-tags span {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(0, 36, 125, 0.06);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.ind-tags span:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* ---------- Contact Page ---------- */
.contact-main { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form-wrap h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: all 0.3s var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300247d' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.form-legal { color: var(--text-light); font-size: 0.82rem; margin-top: 1rem; }
.form-legal i { color: var(--accent); margin-right: 0.3rem; }

/* Contact Info Cards */
.contact-info-wrap { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: all 0.4s var(--ease);
}

.contact-info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: transparent; }

.contact-info-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  margin-bottom: 1rem;
}

.contact-info-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.contact-info-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.6rem; }
.contact-info-card a { color: var(--primary); font-weight: 600; font-size: 0.88rem; transition: color 0.3s; }
.contact-info-card a:hover { color: var(--accent); }

/* Contact Offices */
.contact-offices { background: #ffffff; }

.contact-offices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.contact-office-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.4s var(--ease);
}

.contact-office-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: transparent; }

.contact-office-card h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.6rem; }
.contact-office-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.8rem; }
.contact-office-card a { color: var(--primary); font-size: 0.85rem; font-weight: 500; display: flex; align-items: center; gap: 0.4rem; transition: color 0.3s; }
.contact-office-card a:hover { color: var(--accent); }

/* FAQ */
.contact-faq { background: var(--light); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all 0.4s var(--ease);
}

.faq-item:hover { border-color: transparent; box-shadow: var(--shadow-sm); }

.faq-item h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem; }
.faq-item h3 i { color: var(--primary); font-size: 0.75rem; transition: transform 0.3s; }
.faq-item:hover h3 i { transform: rotate(90deg); }
.faq-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }

/* ---------- Careers Page ---------- */
.career-upload { background: #ffffff; }

.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.career-info .section-title { margin-bottom: 1.2rem; }
.career-info > p { color: var(--text-light); font-size: 1.02rem; margin-bottom: 2rem; line-height: 1.7; }

.career-perks { display: flex; flex-direction: column; gap: 1.4rem; }

.career-perk {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.career-perk:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: transparent; }

.career-perk-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  font-size: 1.15rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  flex-shrink: 0;
}

.career-perk h4 { font-family: var(--font-head); color: var(--dark); font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.career-perk p { color: var(--text-light); font-size: 0.88rem; line-height: 1.5; }

/* Career Form */
.career-form-wrap {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.career-form-wrap h3 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.career-form-wrap > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 1.5rem; }

/* File Upload */
.file-upload { position: relative; }

.file-upload-box {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  background: #fff;
}

.file-upload-box:hover { border-color: var(--primary); background: rgba(37, 99, 235, 0.03); }

.file-upload-box i { font-size: 2rem; color: var(--primary); margin-bottom: 0.8rem; display: block; }
.file-upload-box p { color: var(--text-light); font-size: 0.92rem; }
.file-upload-box p span { color: var(--primary); font-weight: 600; }
.file-types { display: block; font-size: 0.78rem; color: var(--text-light); margin-top: 0.4rem; }

.file-name {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
}

/* ---------- Get Started Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 20, 60, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  box-shadow: 0 25px 60px rgba(0, 20, 60, 0.3);
}

.modal.active { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: none;
  background: var(--light);
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.modal-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }

.modal-header { text-align: center; margin-bottom: 1.8rem; }

.modal-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  border-radius: 18px;
  font-size: 1.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-1), var(--grad-2));
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.3);
}

.modal-header h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 0.4rem; }
.modal-header p { color: var(--text-light); font-size: 0.92rem; }

.modal-form .form-group { margin-bottom: 1rem; }
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 0.3rem; }

.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: all 0.3s var(--ease);
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.modal-form textarea { resize: vertical; min-height: 80px; }
.modal-form select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300247d' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.btn-full { width: 100%; }

/* ---------- Requirements Page ---------- */
.req-section { background: var(--light); }

.req-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
  margin-bottom: 1.5rem;
  align-items: flex-end;
}

.req-filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.req-filter-group label { font-size: 0.72rem; font-weight: 600; color: var(--dark); }

.req-filter-group select {
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%2300247d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  transition: all 0.3s var(--ease);
}

.req-filter-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

.req-search { flex: 1.5; min-width: 0; }

.req-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.req-search-box i {
  position: absolute;
  left: 0.7rem;
  color: var(--text-light);
  font-size: 0.8rem;
}

.req-search-box input {
  width: 100%;
  padding: 0.5rem 0.7rem 0.5rem 2.2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: all 0.3s var(--ease);
}

.req-search-box input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

.req-results { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1.5rem; font-weight: 500; }

.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.req-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}

.req-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }

.req-card-top { display: flex; gap: 0.5rem; margin-bottom: 1rem; }

.req-tag {
  display: inline-block;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.req-type { background: rgba(37, 99, 235, 0.1); color: var(--primary); }
.req-level { background: rgba(200, 16, 46, 0.1); color: var(--accent); }

.req-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.3; }

.req-card-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin-bottom: 0.8rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.req-card-meta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 0.8rem; }
.req-card-meta span { font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }
.req-card-meta i { color: var(--primary); font-size: 0.75rem; }

.req-card-salary { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.4rem; }
.req-card-salary i { color: var(--accent); font-size: 0.85rem; }

.req-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--border); }

.req-posted { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 0.3rem; }

/* Pagination */
.req-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.req-page-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.req-page-btn:hover { border-color: var(--primary); color: var(--primary); }
.req-page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.req-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* Job Modal */
.job-modal { max-width: 920px; padding: 0; overflow: hidden; }

.job-modal-body {
  display: flex;
  height: 80vh;
  max-height: 680px;
}

.job-modal-left {
  flex: 1;
  overflow-y: auto;
  height: 100%;
  padding: 2rem 2rem 2rem 2.5rem;
}

.job-modal-left::-webkit-scrollbar { width: 5px; }
.job-modal-left::-webkit-scrollbar-track { background: transparent; }
.job-modal-left::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }

.job-modal-right {
  width: 360px;
  flex-shrink: 0;
  padding: 2rem;
  border-left: 1px solid var(--border);
  background: var(--light);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: 100%;
}

.job-modal-right h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
}

.job-modal-header { display: flex; gap: 0.5rem; margin-bottom: 1rem; }

.job-modal h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }

.job-modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.job-modal-meta span { font-size: 0.88rem; color: var(--text-light); display: flex; align-items: center; gap: 0.4rem; }
.job-modal-meta i { color: var(--primary); }

.job-modal-desc { margin-bottom: 1.5rem; }
.job-modal-desc p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

.job-modal-section { margin-bottom: 1.5rem; }

.job-modal-section h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.job-modal-section h3 i { color: var(--primary); font-size: 0.85rem; }

.job-modal-section ul { list-style: none; padding: 0; }

.job-modal-section li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.job-modal-section li i { color: var(--accent); font-size: 0.7rem; flex-shrink: 0; }

.job-apply-form .form-group { margin-bottom: 0.7rem; }
.job-apply-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.job-apply-form label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--dark); margin-bottom: 0.25rem; }

.job-apply-form input,
.job-apply-form textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: all 0.3s var(--ease);
}

.job-apply-form input:focus,
.job-apply-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.job-apply-form textarea { resize: vertical; min-height: 80px; }

.file-upload-box-sm { padding: 1rem; }
.file-upload-box-sm i { font-size: 1.4rem; margin-bottom: 0.3rem; }
.file-upload-box-sm p { font-size: 0.82rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3.5rem; text-align: center; }
  .hero-sub { margin: 0 auto 2.2rem; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .chip-1 { left: -10px; }
  .chip-2 { right: -10px; }
  .services-grid, .jobs-grid, .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-card { height: 290px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-intro-grid, .svc-detail-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-detail-grid.svc-reverse { direction: ltr; }
  .svc-detail-img img { height: 360px; }
  .ind-detail-body { grid-template-columns: 1fr; }
  .ind-detail-img img { min-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-offices-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: 1fr; gap: 3rem; }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .req-filters { flex-direction: column; }
  .req-filter-group { min-width: 100%; }
  .values-grid, .mv-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 78%;
    max-width: 340px;
    height: 100vh;      /* fallback for old browsers */
    height: 100dvh;     /* visible viewport on mobile — excludes the address/nav bars so the list can scroll fully */
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 2.4rem 2.5rem;   /* extra bottom space so the last item clears the edge */
    gap: 1.0rem;
    transition: right 0.5s var(--ease);
    z-index: 999;
    box-shadow: -20px 0 60px rgba(0, 36, 125, 0.15);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,36,125,0.4) transparent;
  }
  .nav-links::-webkit-scrollbar { width: 4px; }
  .nav-links::-webkit-scrollbar-track { background: transparent; }
  .nav-links::-webkit-scrollbar-thumb { background: rgba(0,36,125,0.4); border-radius: 4px; }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1.1rem; color: var(--dark); display: flex; align-items: center; gap: 0.8rem; flex-shrink: 0; }
  .nav-links > li { flex-shrink: 0; }
  /* Leading icons in the mobile menu */
  .nav-ico {
    display: inline-flex;
    width: 26px;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
  }
  .has-megamenu > .nav-link { justify-content: flex-start; }
  /* Remove the animated underline bar in the vertical mobile menu */
  .nav-link::after { display: none !important; }
  /* Drop the pseudo-arrow and use the real chevron icon so it aligns
     vertically with the label and sits on the right edge */
  .has-megamenu > .nav-link::after { content: none !important; }
  .has-megamenu > .nav-link .fa-chevron-down {
    display: inline-block;
    margin-left: auto !important;
    font-size: 0.8rem !important;
    color: var(--text-light);
    transition: transform 0.3s var(--ease);
  }
  .has-megamenu.open > .nav-link .fa-chevron-down { transform: rotate(180deg); }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; position: relative; z-index: 1000; }
  .hero { padding-top: 7rem; }
  .hero-title { font-size: 2.3rem; }
  .services-grid, .jobs-grid, .industries-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .industry-card { height: 260px; }
  .values-grid, .mv-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-visual { order: -1; }
  .why-img img { height: 320px; }
  .why-stat-card { bottom: -16px; right: 16px; }
  .svc-intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .svc-detail-img img { height: 280px; }
  .svc-float-badge { top: -10px; left: -10px; width: 56px; height: 56px; font-size: 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-offices-grid { grid-template-columns: 1fr; }
  .req-grid { grid-template-columns: 1fr; }
  .job-modal-body { flex-direction: column; height: auto; max-height: 85vh; }
  .job-modal-left { padding: 2rem; overflow-y: auto; height: auto; max-height: 50vh; }
  .job-modal-right { width: 100%; border-left: none; border-top: 1px solid var(--border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); height: auto; }
  .job-apply-form .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .cta-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem; }
  .testi-card { min-width: 280px; flex: 0 0 85%; }
  .testimonials .container { position: relative; }
  .testi-scroll { mask-image: linear-gradient(90deg, black 80%, transparent 100%); -webkit-mask-image: linear-gradient(90deg, black 80%, transparent 100%); }
  .toast { display: none !important; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 1.8rem; }
  .hero-stat span { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .float-chip { display: none; }
  .back-top { bottom: 1.4rem; right: 1.4rem; }
}
