*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #1d4ed8;
  --blue-dark: #1e3a8a;
  --blue-light: #3b82f6;
  --accent: #f59e0b;
  --text: #111827;
  --muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-section: #eff6ff;
  --border: #e5e7eb;
  --white: #ffffff;
  --radius: 12px;
  --max-width: 1200px;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ─── NAVBAR ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}
nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
nav a:hover {
  color: var(--blue);
}
nav a.active {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  white-space: nowrap;
  border-bottom: none !important;
  transition: background .2s, transform .15s;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: transparent;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}
/* Mobile Menu Dropdown */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.mobile-menu.open {
  display: flex;
  max-height: 400px;
}
.mobile-menu a {
  padding: 16px 24px;
  font-size: .95rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child {
  border-bottom: none;
}
/* ─── SHARED UTILS ─── */
.page {
  display: none;
}
.page.active {
  display: block;
}
.section {
  padding: 80px 24px;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 56px;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #1a1a1a;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary:hover {
  opacity: .9;
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  text-align: center;
  transition: background .2s, color .2s, transform .15s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 20px;
  line-height: 1.2;
}
.hero h2 {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 20px;
  opacity: .9;
  line-height: 1.4;
}
.hero p {
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: .85;
  line-height: 1.5;
}
/* ─── CARDS GRID ─── */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  transform: translateY(-4px);
}
.card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.card p {
  font-size: .925rem;
  color: var(--muted);
  line-height: 1.65;
}
/* ─── JOB CARDS ─── */
.job-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.job-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.job-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}
.job-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
.pay-label {
  font-size: .85rem;
  color: var(--muted);
}
.pay-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
}
.pay-period {
  font-size: .9rem;
  color: var(--muted);
}
.job-card p {
  font-size: .925rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}
.job-card .btn-outline {
  width: 100%;
  margin-top: 8px;
}
/* ─── STEPS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}
.step-item {
  text-align: center;
}
.step-item img {
    width: 350px;
    margin: 0 auto 20px;
}
.step-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-item p {
  font-size: .925rem;
  color: var(--muted);
  line-height: 1.6;
}
/* ─── WHY CHOOSE SPLIT ─── */
.why-choose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-choose-inner img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  object-fit: cover;
}
.badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.badge i {
    font-size: 30px;
	color:var(--blue);
}
.badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}
.badge-text {
    line-height: 18px;
}
.badge-text strong {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: 2px;
}
.badge-text span {
  font-size: .8rem;
  color: var(--muted);
}
/* ─── TESTIMONIALS ─── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testi-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.testi-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-header strong {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}
.testi-header span {
  font-size: .85rem;
  color: var(--muted);
}
.stars {
  color: #f59e0b;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  font-size: .925rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.65;
}
/* ─── FAQ ─── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  font-weight: bold;
}
details[open] summary::after {
  content: '−';
}
.faq-body {
  padding: 0 24px 20px;
  font-size: .925rem;
  color: var(--muted);
  line-height: 1.75;
}
/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-banner p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
/* ─── FOOTER ─── */
footer {
  background: #111827;
  color: #d1d5db;
  padding: 80px 24px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  gap: 48px;
}
.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(10);
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.75;
  color: #9ca3af;
}
footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer ul li a {
  font-size: .9rem;
  color: #9ca3af;
  transition: color .2s;
}
footer ul li a:hover {
  color: var(--white);
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: .9rem;
  color: #9ca3af;
}
.contact-info a {
  color: #9ca3af;
  transition: color .2s;
}
.contact-info a:hover {
  color: var(--white);
}
.footer-bottom {
    max-width: var(--max-width);
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid #374151;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    color: #6b7280;
    gap: 10px;
	margin-bottom: 50px;
}
.links {
	gap: 10px;
	display: flex;
}
.footer-bottom a {
  color: #9ca3af;
}
.footer-bottom a:hover {
  color: var(--white);
}
/* ─── PAGE HERO BANNER ─── */
.page-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #2563eb 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 24px;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: .88;
  max-width: 650px;
  margin: 0 auto;
}
/* ─── ABOUT ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-content p {
  color: var(--muted);
  font-size: .975rem;
  margin-bottom: 24px;
  line-height: 1.75;
}
.about-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}
.about-content ul li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.6;
}
.about-content ul li::before {
  content: '✓';
  background: var(--blue);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.stat {
  text-align: left;
}
.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1.1;
}
.stat-label {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}
.about-img img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}
/* ─── AVAILABLE ROLES ─── */
.roles-notice {
  background: var(--bg-section);
  border-radius: var(--radius);
  border: 1px solid #bfdbfe;
  padding: 24px 32px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.roles-notice span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.roles-notice span::before {
  content: '•';
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 0;
}
/* ─── MISSIONS PAGE ─── */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.mission-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
/* ─── CONTACT PAGE ─── */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.contact-image img {
  border-radius: var(--radius);
  width: 100%;
  height: auto;
}
.contact-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.contact-content > p {
  font-size: .975rem;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.75;
}
.contact-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-checklist li {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-checklist li::before {
  content: '✓';
  background: var(--blue);
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-note {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-content .btn-primary {
  padding: 16px 40px;
  font-size: 1.05rem;
}
/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  background: var(--blue);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  font-size: 1.2rem;
  border: none;
}
#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
/* ─── RESPONSIVE STYLES ─── */
/* Laptop & Desktop adjustments */
@media (max-width: 1100px) {
  nav ul {
    gap: 16px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}
/* Tablets & Small Laptops */
@media (max-width: 960px) {
  nav {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav-inner {
    height: 70px;
  }
  .why-choose-inner, .about-split, .contact-wrapper, .mission-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
/* Phablets & Smartphones */
@media (max-width: 640px) {
  .section {
    padding: 60px 16px;
  }
  .hero {
    padding: 80px 16px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero h2 {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .section-sub {
    margin-bottom: 40px;
  }
  .badges {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    margin-top: 40px;
  }
  .about-stats {
    gap: 24px;
    justify-content: space-between;
  }
  .roles-notice {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
  }
}