/* =========================================================
   SAI MANPOWER CONSULTANT — Main Stylesheet
   Brand: Navy Blue (#0B2545 / #13315C) + Orange (#F2622E)
   ========================================================= */

:root {
  --navy-900: #081B33;
  --navy-800: #0B2545;
  --navy-700: #13315C;
  --navy-600: #1B4079;
  --blue-500: #2E6FCC;
  --orange-500: #F2622E;
  --orange-600: #DA4F1E;
  --orange-100: #FFE6DA;
  --grey-900: #1A1F29;
  --grey-700: #4B5568;
  --grey-500: #7A8499;
  --grey-200: #E6E9EF;
  --grey-100: #F4F6FA;
  --white: #FFFFFF;

  --font-head: 'Poppins', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.08);
  --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.18);

  --container: 1180px;
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--navy-800);
  margin: 0 0 16px;
  line-height: 1.25;
  font-weight: 700;
}
p { margin: 0 0 16px; color: var(--grey-700); }
button { font-family: var(--font-body); cursor: pointer; }
input, textarea, select { font-family: var(--font-body); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--orange-500);
  color: #fff; padding: 10px 16px; z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Section Heading ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange-500);
  background: var(--orange-100);
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}
.section-head p { font-size: 17px; margin-bottom: 0; }
.section-head.align-left { margin-left: 0; text-align: left; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 8px 20px rgba(242, 98, 46, 0.35);
}
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(242,98,46,0.4); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-navy {
  background: var(--navy-800);
  color: #fff;
}
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */
.topbar {
  background: var(--navy-900);
  color: #d7deeb;
  font-size: 13.5px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info a, .topbar-info span { color: #d7deeb; display: inline-flex; align-items: center; gap: 6px; }
.topbar-info a:hover { color: var(--orange-500); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 13px;
  transition: background var(--transition);
}
.topbar-social a:hover { background: var(--orange-500); }

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 14px rgba(11,37,69,0.07);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
  max-width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 1;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; overflow: hidden; }
.brand-text strong {
  font-family: var(--font-head); color: var(--navy-800); font-size: 18px; font-weight: 800; letter-spacing: 0.3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.brand-text span {
  font-size: 11px; color: var(--orange-500); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-800);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--orange-500); }
.nav-menu .has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 7px;
  transition: transform var(--transition);
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 50;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.has-dropdown:hover > a::after { transform: rotate(225deg); }
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--grey-900);
}
.dropdown li a:hover { background: var(--grey-100); color: var(--orange-500); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--navy-800); display: block; transition: all var(--transition); }
.nav-toggle.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: radial-gradient(1200px 600px at 85% -10%, rgba(242,98,46,0.20), transparent 60%), linear-gradient(120deg, var(--navy-900) 0%, var(--navy-800) 45%, var(--navy-700) 100%);
  color: #fff;
  padding: 96px 0 110px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 70%);
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  color: #ffd8c4;
}
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange-500); }
.hero p.lead {
  color: #c9d3e6;
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
}
.hero-stats div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 30px;
  color: #fff;
  font-weight: 800;
}
.hero-stats div span { font-size: 13.5px; color: #aab8d1; }

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-art .art-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
  width: 100%;
  max-width: 420px;
}
.hero-art .art-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 14px;
}
.hero-art .art-row:last-child { margin-bottom: 0; }
.hero-art .art-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-500);
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
}
.hero-art .art-row strong { display: block; font-size: 15px; color: #fff; }
.hero-art .art-row span { font-size: 13px; color: #aab8d1; }
.hero-badge-float {
  position: absolute;
  top: -22px;
  right: -10px;
  background: var(--orange-500);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Page (inner) header banner */
.page-banner {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(242,98,46,0.35), transparent 70%);
}
.page-banner h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 10px; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; font-size: 14px; color: #b9c4dc; position: relative; z-index: 2; }
.breadcrumbs a:hover { color: var(--orange-500); }
.breadcrumbs .sep { opacity: 0.5; }
.page-banner .container { position: relative; z-index: 2; }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust-strip {
  background: var(--grey-100);
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy-800);
  font-size: 14.5px;
}
.trust-strip .item i { color: var(--orange-500); font-size: 18px; }

/* =========================================================
   CARDS GRID — generic
   ========================================================= */
.grid {
  display: grid;
  gap: 28px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

.section { padding: 90px 0; }
.section.bg-grey { background: var(--grey-100); }
.section.bg-navy { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; }
.section.bg-navy h2, .section.bg-navy h3 { color: #fff; }
.section.bg-navy p { color: #c9d3e6; }
.section.tight { padding: 60px 0; }

/* ---------- Service Cards ---------- */
.service-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card .icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--orange-100);
  color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .icon { background: var(--orange-500); color: #fff; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 14px; }
.service-card .more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more i { transition: transform var(--transition); }
.service-card:hover .more i { transform: translateX(4px); }
.service-card:hover .more { color: var(--orange-500); }

/* ---------- Why choose us ---------- */
.feature-row {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-200);
}
.feature-row:last-child { border-bottom: none; }
.feature-row .icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--navy-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-row h4 { font-size: 16.5px; margin-bottom: 6px; }
.feature-row p { font-size: 14.5px; margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img, .split .media { border-radius: var(--radius-lg); }
.media-frame {
  position: relative;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.media-frame img.real-photo {
  width: 220px; height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid rgba(255,255,255,0.15);
}
.media-frame::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 45%);
}
.stat-chip {
  position: absolute;
  bottom: 20px; left: 20px;
  background: #fff;
  color: var(--navy-800);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 700;
  z-index: 3;
}
.stat-chip strong { color: var(--orange-500); font-size: 22px; display: block; }

/* ---------- Industries ---------- */
.industry-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}
.industry-card:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  transform: translateY(-4px);
}
.industry-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  transition: all var(--transition);
}
.industry-card:hover .icon { background: var(--orange-500); color: #fff; }
.industry-card h4 { font-size: 15.5px; margin-bottom: 0; transition: color var(--transition); }
.industry-card:hover h4 { color: #fff; }

/* ---------- Process Steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 30px 20px 24px;
  text-align: center;
  position: relative;
}
.process-step .num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 14px rgba(242,98,46,0.4);
}
.process-step .icon {
  width: 54px; height: 54px;
  margin: 10px auto 16px;
  border-radius: 50%;
  background: var(--grey-100);
  color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.process-step h4 { font-size: 15.5px; margin-bottom: 8px; }
.process-step p { font-size: 13px; margin-bottom: 0; }

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  padding: 30px;
  height: 100%;
}
.testimonial-card .stars { color: var(--orange-500); font-size: 14px; margin-bottom: 14px; }
.testimonial-card p.quote { font-style: italic; color: var(--grey-700); margin-bottom: 20px; }
.testimonial-card .person { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card .person strong { display: block; font-size: 14.5px; color: var(--navy-800); }
.testimonial-card .person span { font-size: 12.5px; color: var(--grey-500); }

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 36px 0;
}
.logo-strip .tag {
  font-weight: 800;
  font-size: 15px;
  color: var(--grey-500);
  letter-spacing: 1px;
  border: 1px solid var(--grey-200);
  padding: 12px 22px;
  border-radius: 30px;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  border-radius: var(--radius-lg);
  padding: 50px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: -60px; bottom: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-band h3 { color: #fff; margin-bottom: 8px; font-size: 26px; }
.cta-band p { color: rgba(255,255,255,0.9); margin-bottom: 0; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-band .btn-primary { background: #fff; color: var(--orange-600); box-shadow: none; }
.cta-band .btn-primary:hover { background: var(--navy-900); color: #fff; }

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--grey-900);
  background: var(--grey-100);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--grey-500); margin-top: -6px; }
.form-success {
  display: none;
  background: #e6f6ec;
  border: 1px solid #b6e3c4;
  color: #1c7a3d;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }

/* ---------- Info / contact cards ---------- */
.info-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy-800);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}
.info-card h4 { font-size: 15.5px; margin-bottom: 6px; }
.info-card p { font-size: 14px; margin-bottom: 0; }
.info-card a { color: var(--grey-700); }
.info-card a:hover { color: var(--orange-500); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 380px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Steps list (registration) ---------- */
.doc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.doc-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--grey-700);
}
.doc-list li i { color: var(--orange-500); margin-top: 3px; }

.timeline {
  border-left: 3px solid var(--grey-200);
  padding-left: 28px;
  margin-left: 6px;
}
.timeline .t-item { position: relative; padding-bottom: 30px; }
.timeline .t-item:last-child { padding-bottom: 0; }
.timeline .t-item::before {
  content: '';
  position: absolute; left: -34px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--orange-500);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--grey-200);
}
.timeline h4 { font-size: 16px; margin-bottom: 6px; }
.timeline p { font-size: 14px; margin-bottom: 0; }

/* ---------- Job openings table ---------- */
.job-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.job-pill {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 10px;
}
.job-pill i { color: var(--orange-500); }

/* ---------- Accordion (FAQ-style for registration) ---------- */
.accordion-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--navy-800);
}
.accordion-trigger .plus {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.accordion-item.is-open .accordion-trigger .plus { background: var(--orange-500); color: #fff; transform: rotate(45deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-panel-inner { padding: 0 24px 22px; font-size: 14.5px; color: var(--grey-700); }

/* ---------- Tabs (services) ---------- */
.tabs-nav { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.tabs-nav button {
  background: #fff;
  border: 1.5px solid var(--grey-200);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  transition: all var(--transition);
}
.tabs-nav button.active, .tabs-nav button:hover {
  background: var(--navy-800);
  color: #fff;
  border-color: var(--navy-800);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.4s ease; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { to { transform: rotate(360deg); } }

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-900);
  color: #aab8d1;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; gap: 12px; margin-bottom: 18px; align-items: center; }
.footer-brand img { width: 50px; height: 50px; border-radius: 50%; }
.footer-brand strong { color: #fff; font-family: var(--font-head); font-size: 17px; display: block; }
.footer-brand span { font-size: 11px; color: var(--orange-500); text-transform: uppercase; letter-spacing: 0.5px; }
.site-footer p { color: #93a0b8; font-size: 14px; }
.site-footer h5 { color: #fff; font-size: 16px; margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #93a0b8; font-size: 14.5px; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange-500); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 16px; font-size: 14px; color: #93a0b8; }
.footer-contact li i { color: var(--orange-500); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--orange-500); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #7c89a3;
}
.footer-bottom a:hover { color: var(--orange-500); }

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 500;
  border: none;
  font-size: 18px;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
  z-index: 500;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { margin-top: 30px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .job-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { display: none; }
}

@media (max-width: 860px) {
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
    box-shadow: var(--shadow-md);
    display: none;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu > li > a { padding: 13px 10px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; margin-left: 10px; }
  .has-dropdown.is-open .dropdown { display: block; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.is-open:hover .dropdown { display: block; }
  .nav-toggle { display: flex; }
  .nav-cta .btn span { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .navbar { padding: 12px 16px; }
  .brand-text { max-width: 52vw; }
}

@media (max-width: 520px) {
  .brand-text span { display: none; }
  .brand-text strong { font-size: 15px; }
  .brand img { width: 42px; height: 42px; }
  .brand-text { max-width: 48vw; }
}

@media (max-width: 700px) {
  .grid-4, .grid-3, .grid-5, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .doc-list { grid-template-columns: 1fr; }
  .job-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 64px 0 70px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .section { padding: 60px 0; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .hero-stats div strong { font-size: 22px; }
}
