@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
@import "tailwindcss";

/* ── Skip intro instantly — no flicker, no delay ── */
html.skip-intro .backdrop,
html.skip-intro .brand,
html.skip-intro .loader-wrap,
html.skip-intro .expand-circle {
  display: none !important;
}

html.skip-intro .page {
  position: relative !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

/* ── 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;
}

/* ── Blue gradient backdrop ── */
.backdrop {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #0d1b6e 0%, #1a3cbe 45%, #0e8fdd 100%);
  opacity: 0;
  animation: fadeBackdrop 0.6s ease forwards;
  z-index: 1;
}
@keyframes fadeBackdrop { to { opacity: 1; } }

/* ── Brand block (intro screen) ── */
.brand {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 10;
  pointer-events: none;
}

.brand-logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  opacity: 0;
  transform: translateX(-10px) scale(0.85);
  animation: revealLogo 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes revealLogo {
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.brand h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.2vw, 2.8rem);
  color: #ffffff;
  letter-spacing: -0.01em;
  text-align: left;
  line-height: 1.15;
  opacity: 0;
  transform: translateX(12px);
  animation: revealText 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.brand h1 span {
  display: block;
  font-size: 1em;
  font-weight: 700;
  color: #ffffff;
}

.brand h1.hide { opacity: 0 !important; transform: scale(1.04) !important; }
.brand-logo.hide {
  opacity: 0 !important;
  transform: scale(0.9) !important;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@keyframes revealText { to { opacity: 1; transform: translateX(0); } }

/* ══════════════════════════════════════
   LOADER — Arc progress ring
══════════════════════════════════════ */
.loader-wrap {
  position: fixed;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: loaderFadeIn 0.5s ease 0.35s forwards;
}
@keyframes loaderFadeIn { to { opacity: 1; } }

.ring-container {
  position: relative;
  width: 56px;
  height: 56px;
}

.loader-svg {
  width: 56px;
  height: 56px;
  transform: rotate(-90deg);
}
.ring-track {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 3.5;
}
.ring-progress {
  fill: none;
  stroke: #FFD700;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 144.5;
  stroke-dashoffset: 144.5;
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.9));
  animation: fillRing 2.85s cubic-bezier(0.3, 0, 0.15, 1) 0.4s forwards;
}
@keyframes fillRing { to { stroke-dashoffset: 0; } }

.ring-spinner {
  position: absolute;
  inset: 0;
  animation: spinDot 2.2s cubic-bezier(0.3, 0, 0.15, 1) 0.4s forwards;
}
@keyframes spinDot {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.ring-spinner::after {
  content: '';
  position: absolute;
  top: 2.5px;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 10px 2px rgba(255,215,0,0.95);
}

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .center-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,215,0,0.5);
  animation: centerPulse 1.1s ease-in-out 0.5s infinite;
} */
@keyframes centerPulse {
  0%, 100% { transform: scale(1);   opacity: 0.5; }
  50%       { transform: scale(1.5); opacity: 1; }
}

.loader-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   EXPANDING CIRCLE — Page reveal
══════════════════════════════════════ */
.expand-circle {
  position: fixed;
  border-radius: 50%;
  background: #ffffff;
  z-index: 30;
  width: 56px;
  height: 56px;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%) scale(1);
  opacity: 0;
  pointer-events: none;
}
.expand-circle.go {
  animation: expandCover 0.2s cubic-bezier(0.76, 0, 0.2, 1) forwards;
}
@keyframes expandCover {
  0%   { opacity: 1; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(75); }
}

/* ══════════════════════════════════════
   PAGE — Revealed after intro
══════════════════════════════════════ */
.page {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
}
.page.visible {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s ease 0.2s;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.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, #0d1b6e, #1a3cbe) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0.35rem 1rem !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 14px rgba(26,60,190,0.35) !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
}
.active-link:hover {
  color: #fff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(26,60,190,0.5) !important;
}

.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: calc(100vh - 73px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 7rem;
  padding: 8rem 6rem 5rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 50%, #e8f4ff 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.shape-1 {
  width: 600px; height: 600px;
  background: #1a3cbe;
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #0d1b6e;
  bottom: -150px; left: -100px;
}
.shape-3 {
  width: 250px; height: 250px;
  background: #FFD700;
  top: 50%; right: 30%;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,60,190,0.08);
  color: #1a3cbe;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 6px rgba(255,215,0,0.8);
  animation: centerPulse 1.5s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #0d1b6e;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #1a3cbe, #0e8fdd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-search { margin-bottom: 1.8rem; }
.search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(13,27,110,0.12);
  padding: 0.5rem;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.search-icon { font-size: 1.1rem; padding: 0 0.5rem; color: #aaa; }
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: #333;
  min-width: 150px;
  padding: 0.5rem;
}
.search-box select {
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #555;
  background: #f5f5f5;
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
}
.search-btn {
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 10px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.search-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,60,190,0.3); }

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, #0d1b6e, #1a3cbe);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(26,60,190,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(26,60,190,0.42); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.8rem 2rem;
  background: transparent;
  color: #0d1b6e;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid #0d1b6e;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.btn-outline:hover { background: #0d1b6e; color: #fff; transform: translateY(-2px); }

.hero-visual {
  flex: 1;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  margin-left: 3rem;
}

.hero-blob {
  width: 340px;
  height: 340px;
  border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
  background: linear-gradient(135deg, rgba(26,60,190,0.12), rgba(14,143,221,0.15));
  position: absolute;
}

.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(13,27,110,0.14);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.hero-card:nth-child(2) { top: 10%; left: 0; }
.hero-card:nth-child(3) { top: 42%; right: 0; }
.hero-card:nth-child(4) { bottom: 10%; left: 8%; }

.hc-icon { font-size: 1.8rem; }
.hc-title { font-weight: 700; font-size: 0.85rem; color: #0d1b6e; }
.hc-sub { font-size: 0.78rem; color: #888; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating { animation: float 3.5s ease-in-out infinite; }
.delay1 { animation-delay: 1s; }
.delay2 { animation-delay: 2s; }

/* ══════════════════════════════════════
   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); }

/* ══════════════════════════════════════
       FOOTER — Attractive Gradient Blue
    ══════════════════════════════════════ */
    .footer {
      background: linear-gradient(160deg, #050e3a 0%, #0a1a6e 25%, #0f2faa 55%, #0b6dc7 80%, #0e9fe0 100%);
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    /* Mesh overlay */
    .footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(14,159,224,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 85% 80%, rgba(255,215,0,0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    /* Dot grid pattern */
    .footer::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
    }

    .footer-inner {
      position: relative;
      z-index: 2;
    }

    /* Top accent line */
    .footer-accent-bar {
      height: 3px;
      background: linear-gradient(90deg, transparent 0%, #FFD700 30%, #0e9fe0 60%, transparent 100%);
      opacity: 0.7;
    }

    .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: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Brand */
    .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;
      /* box-shadow: 0 4px 16px rgba(0,0,0,0.3); */
    }

    .footer-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .footer-brand-name {
      font-weight: 700;
      font-size: 1.05rem;
      color: #fff;
      line-height: 1.2;
    }

    .footer-brand-name span { display: block; font-size: 1em; color: rgba(255,255,255,0.75); font-weight: 500; }

    .footer-desc {
      font-size: 0.86rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.75);
      max-width: 270px;
      margin-bottom: 1.8rem;
    }

    /* Social Icons */
    .footer-social {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    .social-link {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .social-link::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 10px;
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .social-link:hover { transform: translateY(-3px) scale(1.08); }
    .social-link:hover::before { opacity: 1; }

    /* Individual brand colours */
    .social-whatsapp { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); }
    .social-whatsapp::before { background: #25D366; }
    .social-whatsapp:hover { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

    .social-linkedin { background: rgba(0,119,181,0.2); border: 1px solid rgba(0,119,181,0.35); }
    .social-linkedin::before { background: #0077B5; }
    .social-linkedin:hover { box-shadow: 0 8px 24px rgba(0,119,181,0.45); }

    .social-facebook { background: rgba(24,119,242,0.2); border: 1px solid rgba(24,119,242,0.35); }
    .social-facebook::before { background: #1877F2; }
    .social-facebook:hover { box-shadow: 0 8px 24px rgba(24,119,242,0.45); }

.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.35);
}
.social-instagram:hover { box-shadow: 0 8px 28px rgba(214,36,159,0.55); }

    .social-x { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }
    .social-x::before { background: #000000; }
    .social-x:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.5); }

    .social-youtube { background: rgba(255,0,0,0.15); border: 1px solid rgba(255,0,0,0.3); }
    .social-youtube::before { background: #FF0000; }
    .social-youtube:hover { box-shadow: 0 8px 24px rgba(255,0,0,0.45); }

    .social-link svg {
      width: 18px;
      height: 18px;
      position: relative;
      z-index: 1;
      fill: rgba(255,255,255,0.85);
      transition: fill 0.2s;
      display: block;
    }

    .social-link:hover svg { fill: #ffffff; }

    /* Footer columns */
    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.95);
      margin-bottom: 1.3rem;
      position: relative;
      padding-bottom: 0.7rem;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 28px;
      height: 2px;
      background: linear-gradient(90deg, #FFD700, #0e9fe0);
      border-radius: 2px;
    }

    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }

    .footer-col ul li a {
      font-size: 0.87rem;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: background 0.2s, color 0.2s, padding-left 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.15rem 0.5rem;
      border-radius: 5px;
      margin-left: -0.5rem;
    }

    .footer-col ul li a::before {
      content: '›';
      color: rgba(14,159,224,0.8);
      font-size: 1rem;
      transition: color 0.2s, transform 0.2s;
      transform: translateX(0);
    }

    .footer-col ul li a:hover { color: #fff; background: rgba(255,255,255,0.1); }
    .footer-col ul li a:hover::before { color: #FFD700; transform: translateX(3px); }

    /* Footer bottom */
    .footer-bottom {
      max-width: 1180px;
      margin: 0 auto;
      padding: 1.8rem 2rem 2.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .footer-bottom p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
    }

    .footer-bottom p strong { color: rgba(255,255,255,0.8); font-weight: 600; }

    .footer-bottom-links { display: flex; gap: 1.4rem; }

    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.55);
      text-decoration: none;
      transition: color 0.2s, background 0.2s;
      padding: 0.15rem 0.5rem;
      border-radius: 5px;
    }

.footer-bottom-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }

/* ══ SOCIAL ICONS — Official Brand Colors ══ */
.footer-social { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.social-link {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.social-link:hover { transform: translateY(-3px) scale(1.08); }

/* WhatsApp – #25D366 */
.social-whatsapp {
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
}
.social-whatsapp:hover { box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* LinkedIn – #0A66C2 */
.social-linkedin {
  background: #0A66C2;
  box-shadow: 0 4px 14px rgba(10,102,194,0.35);
}
.social-linkedin:hover { box-shadow: 0 8px 28px rgba(10,102,194,0.55); }

/* Facebook – #1877F2 */
.social-facebook {
  background: #1877F2;
  box-shadow: 0 4px 14px rgba(24,119,242,0.35);
}
.social-facebook:hover { box-shadow: 0 8px 28px rgba(24,119,242,0.55); }

/* Instagram – gradient */
.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.35);
}
.social-instagram:hover { box-shadow: 0 8px 28px rgba(214,36,159,0.55); }

/* X (Twitter) – #000000 */
.social-x {
  background: #000000;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}
.social-x:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.6); }

/* YouTube – #FF0000 */
.social-youtube {
  background: #FF0000;
  box-shadow: 0 4px 14px rgba(255,0,0,0.35);
}
.social-youtube:hover { box-shadow: 0 8px 28px rgba(255,0,0,0.55); }

.social-link svg {
  width: 19px; height: 19px; fill: #ffffff; display: block;
  position: relative; z-index: 1;
}

    

/* Responsive Footer Styling Added from contact.html */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:first-child .footer-desc { max-width: 100%; }
}

@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; }
}

/* ══════════════════════════════════════
   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; }
  .hero { padding: 4rem 2rem; flex-direction: column; min-height: auto; gap: 3rem; }
  .hero-visual { margin-left: 0; }
  .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; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .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; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@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; }
  .hero { padding: 3rem 1rem; margin-top: 1.5rem; }
  .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; }
}
