﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Tenor+Sans&family=Cormorant+Garamond:ital,wght@0,300;1,300&display=swap');

/* â”€â”€ SCROLLBAR â”€â”€ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #dce8ff; }
::-webkit-scrollbar-thumb { background: #1a3cbe; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #0d1b6e; }
* { scrollbar-width: thin; scrollbar-color: #1a3cbe #dce8ff; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
  width: 100vw;
  overflow-x: hidden;
}
.page {
  position: relative;
  background: #ffffff;
  overflow-y: auto;
  overflow-x: hidden;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 50;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-title {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-title-main,
.nav-title-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0d1b6e;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 60;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #0d1b6e;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 8px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -8px); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links li { position: relative; }
.nav-links a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-links a:hover { color: #0d1b6e; }
.active-link {
  background: linear-gradient(135deg, #f6d365, #d4a017) !important;
  color: #071338 !important;
  font-weight: 600 !important;
  padding: 0.35rem 1rem !important;
  border-radius: 50px !important;
  border: 1px solid transparent !important;
  box-shadow: 0 10px 24px rgba(246,211,101,0.22) !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.active-link:hover {
  color: #071338 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 14px 28px rgba(246,211,101,0.28) !important;
}

@media (min-width: 769px) {
  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(13, 27, 110, 0.08);
    border: 1px solid rgba(13, 27, 110, 0.14);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

  .nav-links a:hover {
    background: rgba(13, 27, 110, 0.12);
    border-color: rgba(13, 27, 110, 0.22);
  }

  @supports (background: color-mix(in srgb, white 10%, transparent)) {
    .nav-links a {
      background: color-mix(in srgb, currentColor 12%, transparent);
      border-color: color-mix(in srgb, currentColor 18%, transparent);
    }

    .nav-links a:hover {
      background: color-mix(in srgb, currentColor 18%, transparent);
      border-color: color-mix(in srgb, currentColor 26%, transparent);
    }
  }
}
 
.dropdown-toggle::after { content: ' â–¾'; font-size: 0.8em; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-radius: 8px;
  list-style: none;
  padding: 0.4rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: #333;
  font-size: 0.88rem;
  transition: background 0.2s, color 0.2s;
}
.dropdown-menu a:hover { background: #f5f5f5; color: #0d1b6e; }

.nav-contact-btn {
  padding: 0.6rem 1.8rem;
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,60,190,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,60,190,0.35);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 54;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #050e3a;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,10,45,0.5) 0%, rgba(4,10,45,0.3) 50%, rgba(4,10,45,0.65) 100%),
    linear-gradient(135deg, rgba(4,10,45,0.55) 0%, transparent 65%);
}

/* centered wrapper */
.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  width: 100%;
  padding: 0 2rem;
  gap: 2rem;
}

/* eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: rgba(255,215,0,0.55);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* headline */
.hero-title {
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: #ffffff;
  line-height: 1.22;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
}
.hero-title em {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.12em;
  letter-spacing: 0.04em;
  text-transform: none;
  background: linear-gradient(120deg, #FFD700 0%, #ffe599 45%, #FFD700 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* subtext */
.hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  letter-spacing: 0.04em;
  max-width: 520px;
  margin: 0;
}

/* buttons */
.hero-btns {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.72rem 1.8rem;
  background: linear-gradient(135deg, #FFD700, #f0a500);
  color: #0a1540;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255,215,0,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,215,0,0.38); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.72rem 1.8rem;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: #fff; transform: translateY(-2px); }
.btn-hire-talent {
  background: linear-gradient(135deg, #0e8fdd, #1a3cbe);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(26,60,190,0.28);
}
.btn-hire-talent:hover {
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(26,60,190,0.4);
}

/* stat strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0.5rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2.2rem;
  gap: 0.2rem;
}
.hero-stat-num {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.7rem;
  color: #FFD700;
  letter-spacing: 0.06em;
  line-height: 1;
}
.hero-stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.3;
  animation: scrollBob 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 20px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}
.scroll-wheel {
  width: 2px;
  height: 6px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}
@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(7px); }
}

/* hide old unused */
.hero-content, .hero-visual, .hero-blob, .hero-card,
.hc-icon, .hc-title, .hc-sub, .hero-bg-shapes, .shape,
.hero-badge, .badge-dot, .hero-left, .hero-right,
.hero-title-top, .hero-title-bottom, .hero-title-divider { display: none; }

/* responsive */
@media (max-width: 768px) {
  .hero-title { font-size: clamp(2rem, 7vw, 3rem); white-space: normal; }
  .hero-stat { padding: 0 1.2rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .eyebrow-text { font-size: 0.6rem; letter-spacing: 0.16em; }
}
@media (max-width: 480px) {
  .hero-center { gap: 1.6rem; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .hero-stats { flex-wrap: wrap; justify-content: center; row-gap: 1rem; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0 1rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STATS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.stats {
  background: linear-gradient(135deg, rgb(13, 27, 110) 0%, rgb(26, 60, 190) 60%, rgb(14, 143, 221) 100%);
  padding: 4rem 3rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-num {
  font-size: 3rem;
  font-weight: 800;
  color: #FFD700;
  line-height: 1;
  display: inline-block;
}
.stat-suffix {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
  display: inline-block;
}
.stat-label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SECTION COMMON STYLES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  background: rgba(26,60,190,0.08);
  color: #1a3cbe;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #0d1b6e;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.section-header p {
  font-size: 1rem;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SERVICES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.services {
  padding: 5rem 3rem;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  background: #f8f9ff;
  border-radius: 18px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(26,60,190,0.08);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,27,110,0.14);
  background: #fff;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.service-icon { font-size: 1.6rem; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d1b6e;
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
}
.service-arrow {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-size: 1.2rem;
  color: #1a3cbe;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INDUSTRIES SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.industries {
  padding: 5rem 3rem;
  background: #f8f9ff;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.industry-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(26,60,190,0.07);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(13,27,110,0.12);
}
.industry-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.industry-name {
  font-weight: 700;
  font-size: 1rem;
  color: #0d1b6e;
  margin-bottom: 0.4rem;
}
.industry-desc { font-size: 0.85rem; color: #888; line-height: 1.55; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HOW IT WORKS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.how-it-works {
  padding: 5rem 3rem;
  background: #fff;
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.step-card {
  flex: 1;
  background: #f8f9ff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(26,60,190,0.07);
  position: relative;
}
.step-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: #1a3cbe;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.6;
}
.step-icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1b6e;
  margin-bottom: 0.5rem;
}
.step-card p { font-size: 0.85rem; color: #777; line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #1a3cbe, #0e8fdd);
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: 'â–¶';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #0e8fdd;
  font-size: 0.7rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   JOB OPENINGS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.jobs {
  padding: 5rem 3rem;
  background: #f8f9ff;
}
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.job-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(26,60,190,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(13,27,110,0.12); }
.job-top { display: flex; justify-content: space-between; align-items: center; }
.job-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}
.job-badge.full { background: rgba(26,60,190,0.1); color: #1a3cbe; }
.job-badge.remote { background: rgba(0,180,100,0.1); color: #00b464; }
.job-company { font-size: 0.82rem; color: #888; font-weight: 500; }
.job-title { font-size: 1.05rem; font-weight: 700; color: #0d1b6e; }
.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; }
.job-meta span { font-size: 0.82rem; color: #666; }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-tags span {
  background: #f0f3ff;
  color: #1a3cbe;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}
.job-apply-btn {
  margin-top: auto;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.job-apply-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(26,60,190,0.3); }
.jobs-cta { text-align: center; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testimonials {
  padding: 5rem 3rem;
  background: #f8f9ff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid rgba(26,60,190,0.07);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(13,27,110,0.12); }
.testi-card.featured {
  background: #fff;
  border-color: rgba(26,60,190,0.15);
}
.testi-quote {
  font-size: 4rem;
  color: #1a3cbe;
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.8rem; left: 1.5rem;
}
.testi-stars { color: #FFD700; font-size: 1rem; margin-bottom: 0.8rem;padding-top:10px; }
.testi-card p { font-size: 0.9rem; color: #555; line-height: 1.7; margin-bottom: 1.2rem; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.9rem; color: #0d1b6e; }
.testi-role { font-size: 0.8rem; color: #888; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CTA SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cta {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #0d1b6e 0%, #1a3cbe 60%, #0e8fdd 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1, .cta-shape-2 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: #fff;
}
.cta-shape-1 { width: 400px; height: 400px; top: -200px; left: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -150px; right: -50px; }
.cta-content { position: relative; z-index: 1; }
.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-white:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REVEAL ANIMATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .navbar { padding: 1rem 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; }
  .steps-grid { flex-wrap: wrap; gap: 1rem; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .navbar { padding: 0.85rem 1.5rem; }
  .hamburger { display: flex; }
  .nav-overlay { display: block; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%; left: auto;
    transform: none;
    width: 75vw; max-width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.12);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 5rem 1.8rem 2rem;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 55;
    overflow-y: auto;
  }
  .nav-menu.active { right: 0; }
  .nav-links {
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid #f0f0f0; }
  .nav-links > li > a { display: block; padding: 0.9rem 0; font-size: 0.95rem; font-weight: 600; }
  .nav-links > li > a.active-link { padding: 0.9rem 0 !important; border-radius: 0 !important; box-shadow: none !important; background: transparent !important; color: #0d1b6e !important; border-left: 3px solid #1a3cbe; padding-left: 0.75rem !important; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: #f7f9ff;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
  }
  .dropdown.open .dropdown-menu { max-height: 200px; }
  .dropdown-menu a { padding: 0.75rem 1rem; font-size: 0.88rem; border-bottom: 1px solid #eee; }
  .nav-contact-btn {
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 10px;
  }
  .services { padding: 4rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries { padding: 4rem 1.5rem; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs { padding: 4rem 1.5rem; }
  .jobs-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 4rem 1.5rem; }
  .cta { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .navbar { padding: 0.75rem 1rem; }
  .nav-logo { width: 36px; height: 36px; }
  .nav-title-main, .nav-title-sub { font-size: 0.88rem; }
  .stats { padding: 3rem 1rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .industries-grid { grid-template-columns: 1fr; }
}

.how-it-works-v2 {
  padding: 5rem 3rem;
  background: #fff;
}
 
/* Header */
.hiw-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
 
/* Toggle */
.hiw-toggle-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}
.hiw-toggle {
  position: relative;
  display: inline-flex;
  background: #f0f3ff;
  border-radius: 50px;
  padding: 5px;
  gap: 0;
  max-width: 100%;
}
.hiw-tab {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}
.hiw-tab.active { color: #fff; }
.hiw-tab-slider {
  position: absolute;
  top: 5px;
  left: 5px;
  height: calc(100% - 10px);
  border-radius: 50px;
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  box-shadow: 0 4px 16px rgba(26,60,190,0.3);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), width 0.35s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
 
/* Panel */
.hiw-panel { display: block; }
.hiw-panel-hidden { display: none; }
 
/* Steps track */
.hiw-steps-track {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
 
/* Individual step */
.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw-step-last .hiw-step-left { padding-bottom: 0; }
 
/* Left column: number + line */
.hiw-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 56px;
  flex-shrink: 0;
  padding-bottom: 0;
}
.hiw-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  z-index: 1;
}
.seeker-num {
  background: rgba(26,60,190,0.1);
  color: #1a3cbe;
  border: 2px solid rgba(26,60,190,0.2);
}
.seeker-num.final {
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(26,60,190,0.35);
}
.employer-num {
  background: rgba(221, 159, 14, 0.1);
  color: #ddd30e;
  border: 2px solid rgba(229, 211, 17, 0.2);
}
.employer-num.final {
  background: linear-gradient(135deg, #ddcf0e, #daaf04);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(221, 218, 14, 0.35);
}

.hiw-step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  margin: 6px 0;
  background: linear-gradient(180deg, rgba(26,60,190,0.25), rgba(26,60,190,0.08));
  border-radius: 2px;
}
.emp-line {
  background: linear-gradient(180deg, rgba(221, 197, 14, 0.25), rgba(221, 183, 14, 0.08));
}
 
/* Right body */
.hiw-step-body {
  flex: 1;
  margin-left: 1.5rem;
  margin-bottom: 2rem;
  background: #f8f9ff;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(26,60,190,0.07);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hiw-step-body:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(13,27,110,0.1);
  background: #fff;
}

.hiw-step-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.seeker-icon {
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
}
.employer-icon {
  background: linear-gradient(135deg, #ddc50e, #a88b0b);
  color: #fff;
}

.hiw-step-text { flex: 1; min-width: 0; }
.hiw-step-text h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #0d1b6e;
  margin-bottom: 0.4rem;
  padding-right: 3.5rem;
  line-height: 1.3;
}
.hiw-step-text p {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.hiw-step-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 0.18rem 0.5rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.seeker-badge {
  background: rgba(26,60,190,0.08);
  color: #1a3cbe;
}
.employer-badge {
  background: rgba(221, 214, 14, 0.1);
  color: #ddd30e;
}

/* Final celebration card */
.hiw-final-card {
  border: none !important;
}
.seeker-final {
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe) !important;
}
.employer-final {
  background: linear-gradient(135deg, #b49f07, #ddc50e) !important;
}
.seeker-final h4,
.seeker-final p,
.employer-final h4,
.employer-final p {
  color: #fff !important;
}
.employer-final p { color: rgba(255,255,255,0.8) !important; }
.seeker-final p { color: rgba(255,255,255,0.8) !important; }
 
.hiw-final-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}
 
/* Responsive */
@media (max-width: 768px) {
  .how-it-works-v2 { padding: 4rem 1.5rem; }
  .hiw-toggle-wrap { margin-bottom: 2.5rem; }
  .hiw-tab { padding: 0.6rem 1.4rem; font-size: 0.85rem; }
  .hiw-step-body { margin-left: 0.75rem; margin-bottom: 1.4rem; padding: 1.1rem 1rem; gap: 0.85rem; }
  .hiw-step-text h4 { padding-right: 3rem; font-size: 0.93rem; }
  .hiw-step-text p { font-size: 0.83rem; }
  .hiw-step-icon { width: 40px; height: 40px; }
  .hiw-step-icon svg { width: 20px; height: 20px; }
  .hiw-step-num { width: 34px; height: 34px; font-size: 0.68rem; }
  .hiw-step-left { width: 46px; }
}
@media (max-width: 480px) {
  .how-it-works-v2 { padding: 2.5rem 0.85rem; }
  .hiw-toggle-wrap { padding: 0 0.5rem; }
  .hiw-tab { padding: 0.55rem 1rem; font-size: 0.78rem; gap: 5px; }
  .hiw-tab svg { width: 14px; height: 14px; }
  .hiw-step-body { margin-left: 0.6rem; margin-bottom: 1.2rem; padding: 1rem 0.85rem; gap: 0.75rem; }
  .hiw-step-text h4 { font-size: 0.9rem; padding-right: 2.8rem; }
  .hiw-step-text p { font-size: 0.81rem; line-height: 1.65; }
  .hiw-step-icon { width: 36px; height: 36px; border-radius: 9px; }
  .hiw-step-icon svg { width: 18px; height: 18px; }
  .hiw-step-num { width: 30px; height: 30px; font-size: 0.65rem; }
  .hiw-step-left { width: 40px; }
  .hiw-step-badge { font-size: 0.62rem; padding: 0.15rem 0.4rem; top: 0.7rem; right: 0.7rem; }
}

/* ══ FOOTER ══ */
.footer { background: linear-gradient(160deg, #010818 0%, #020d2e 30%, #030f3a 60%, #040c30 80%, #050e38 100%); position: relative; overflow: hidden; padding: 0; }
.footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 45% at 10% 15%, rgba(255,215,0,0.05) 0%, transparent 55%), radial-gradient(ellipse 45% 55% at 90% 85%, rgba(255,215,0,0.04) 0%, transparent 55%); pointer-events: none; }
.footer::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,215,0,0.04) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
.footer-inner { position: relative; z-index: 2; }
.footer-accent-bar { height: 2px; background: linear-gradient(90deg, transparent 0%, rgba(255,215,0,0.3) 20%, #FFD700 50%, rgba(255,215,0,0.3) 80%, transparent 100%); opacity: 1; }
.footer-main { max-width: 1180px; margin: 0 auto; padding: 4rem 2rem 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 1.5rem; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; }
.footer-logo { width: 42px; height: 42px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.footer-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-brand-name { font-weight: 700; font-size: 1.05rem; color: #ffffff !important; line-height: 1.2; -webkit-text-fill-color: #ffffff !important; background: none !important; }
.footer-brand-name span { display: block; color: #ffffff !important; font-weight: 500; -webkit-text-fill-color: #ffffff !important; }
.footer-desc { font-size: 0.86rem; line-height: 1.85; color: rgba(255,255,255,0.45) !important; max-width: 270px; margin-bottom: 1.8rem; -webkit-text-fill-color: rgba(255,255,255,0.45) !important; background: none !important; }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.social-link { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: transform 0.25s, box-shadow 0.25s; }
.social-link:hover { transform: translateY(-3px) scale(1.08); }
.social-whatsapp { background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.social-linkedin { background: #0A66C2; box-shadow: 0 4px 14px rgba(10,102,194,0.3); }
.social-facebook { background: #1877F2; box-shadow: 0 4px 14px rgba(24,119,242,0.3); }
.social-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); box-shadow: 0 4px 14px rgba(214,36,159,0.3); }
.social-x { background: #111; box-shadow: 0 4px 14px rgba(0,0,0,0.4); }
.social-youtube { background: #FF0000; box-shadow: 0 4px 14px rgba(255,0,0,0.3); }
.social-link svg { width: 19px; height: 19px; fill: #fff; display: block; position: relative; z-index: 1; }
.footer-col h4 { font-size: 0.75rem !important; font-weight: 700 !important; letter-spacing: 0.2em !important; text-transform: uppercase !important; color: #FFD700 !important; -webkit-text-fill-color: #FFD700 !important; background: none !important; margin-bottom: 1.2rem !important; position: relative; padding-bottom: 0.65rem !important; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 24px; height: 1.5px; background: rgba(255,215,0,0.5); border-radius: 2px; }
.footer-col ul { list-style: none !important; display: flex !important; flex-direction: column !important; gap: 0.6rem !important; margin: 0 !important; padding: 0 !important; }
.footer-col ul li a { font-size: 0.86rem !important; color: rgba(255,255,255,0.45) !important; -webkit-text-fill-color: rgba(255,255,255,0.45) !important; background: none !important; text-decoration: none !important; display: inline-flex !important; align-items: center !important; gap: 0.4rem !important; padding: 0.15rem 0.5rem !important; border-radius: 5px !important; margin-left: -0.5rem !important; transition: color 0.2s, background 0.2s !important; }
.footer-col ul li a::before { content: '›'; color: rgba(255,215,0,0.4); font-size: 1rem; transition: color 0.2s, transform 0.2s; }
.footer-col ul li a:hover { color: #FFD700 !important; -webkit-text-fill-color: #FFD700 !important; background: rgba(255,215,0,0.05) !important; }
.footer-col ul li a:hover::before { color: #FFD700; transform: translateX(3px); }
.footer-bottom { max-width: 1180px; margin: 0 auto; padding: 1.2rem 2rem 1.8rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.footer-bottom p { font-size: 0.81rem !important; color: rgba(255,255,255,0.3) !important; -webkit-text-fill-color: rgba(255,255,255,0.3) !important; background: none !important; margin: 0 !important; }
.footer-bottom p strong { color: rgba(255,215,0,0.7) !important; -webkit-text-fill-color: rgba(255,215,0,0.7) !important; font-weight: 600 !important; }
.footer-bottom-links { display: flex; gap: 1.4rem; }
.footer-bottom-links a { font-size: 0.81rem !important; color: rgba(255,255,255,0.3) !important; -webkit-text-fill-color: rgba(255,255,255,0.3) !important; background: none !important; text-decoration: none !important; padding: 0.15rem 0.5rem !important; border-radius: 5px !important; transition: color 0.2s !important; }
.footer-bottom-links a:hover { color: rgba(255,215,0,0.7) !important; -webkit-text-fill-color: rgba(255,215,0,0.7) !important; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; } .footer-grid > div:first-child { grid-column: 1 / -1; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-grid > div:first-child { grid-column: 1 / -1; } .footer-bottom { flex-direction: column; align-items: flex-start; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-main { padding: 3rem 1.5rem 2rem; } }
