
:root {
  --primary-dark: #001BB7;
  --primary: #0046FF;
  --accent: #FF8040;
  --bg-soft: #F5F1DC;
  --text-main: #0b1020;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  color: var(--text-main);
  background: white;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left img {
  width: 40px;
  height: 40px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand span:first-child {
  font-weight: 700;
  font-size: 18px;
}

.nav-brand span:last-child {
  font-size: 11px;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-muted);
  transition: 0.18s ease;
}

.nav-links a:hover {
  background: rgba(37,99,235,0.08);
  color: var(--primary-dark);
}

.nav-links a.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.btn {
  border-radius: 999px;
  padding: 8px 16px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-main);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  box-shadow: 0 18px 40px rgba(37,99,235,0.35);
}

.btn-outline {
  border-color: rgba(148,163,184,0.8);
  color: var(--text-muted);
  background: #fff;
}

.btn-primary:hover {
  filter: brightness(1.04);
}

.btn-outline:hover {
  background: rgba(248,250,252,0.9);
}

/* Hero */

.hero {
  padding: 42px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.4fr) minmax(0,1.1fr);
  gap: 40px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  background: rgba(219,234,254,0.8);
  color: #1d4ed8;
  font-size: 11px;
  margin-bottom: 14px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
  font-weight: 700;
  margin-right: 6px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 40px);
  letter-spacing: -0.04em;
  margin: 0 0 10px;
}

.hero h1 span {
  color: var(--primary-dark);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 12px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-meta strong {
  display: block;
  color: var(--text-main);
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(59,130,246,0.22), transparent 55%),
              #020617;
  border-radius: 26px;
  padding: 22px 22px;
  color: #e5e7eb;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-chip {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 10px 0 6px;
}

.hero-metric span:first-child {
  font-size: 30px;
  font-weight: 700;
}

.hero-metric span:last-child {
  font-size: 11px;
  color: #a5b4fc;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.hero-pill {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(148,163,184,0.5);
}

.hero-ribbon {
  position: absolute;
  right: -40px;
  top: -60px;
  width: 160px;
  height: 160px;
  background: linear-gradient(150deg, var(--accent), #f97316);
  opacity: 0.9;
  transform: rotate(18deg);
  filter: drop-shadow(0 25px 55px rgba(248, 181, 0, 0.55));
}

/* Sections */

.section {
  padding: 28px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.section-title {
  font-size: 20px;
  letter-spacing: -0.02em;
}

.section-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.section-description {
  font-size: 13px;
  color: var(--text-muted);
}

/* Cards */

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 14px 30px rgba(15,23,42,0.04);
}

.card-tag {
  font-size: 11px;
  color: #2563eb;
  background: rgba(219,234,254,0.9);
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 15px;
  margin: 0 0 6px;
}

.card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 10px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.chip {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg-light);
  border: 1px solid rgba(209,213,219,0.9);
}

/* Layout helpers */

.split {
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap: 30px;
  align-items: flex-start;
}

/* Contact */

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 32px rgba(15,23,42,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.form-field.full {
  grid-column: 1 / -1;
}

input, textarea, select {
  border-radius: 999px;
  border: 1px solid rgba(209,213,219,0.9);
  padding: 9px 11px;
  font: inherit;
  resize: vertical;
}

textarea {
  border-radius: 14px;
  min-height: 90px;
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(37,99,235,0.45);
  outline-offset: 1px;
}

/* Footer */

footer {
  border-top: 1px solid rgba(226,232,240,0.9);
  margin-top: 24px;
  padding: 16px 0 22px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 12px;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .card-grid-3,
  .split {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 768px) {
  header {
    position: static;
  }
  .navbar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .hero {
    padding-top: 26px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-grid {
    grid-template-columns: minmax(0,1fr);
  }
}

/* Hide brand text in header */
.nav-brand {
  display: none !important;
}
/* Control logo icon size */
.nav-left img {
  height: 42px;  /* adjust if needed: 32px, 36px, 50px etc. */
  width: auto;
}


/* Logo/icon only */
.nav-brand { display: none !important; }
.nav-left img { height: 48px; width: auto; }

/* Body bg */
body { background-color: var(--bg-soft) !important; color: var(--text-main); }

/* Header bg */
header { background-color: var(--primary-dark) !important; }

/* Buttons enhancement */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  transition: 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* Jobs grid basic */
.jobs-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}
.job-card {
  background:#fff;
  padding:1.2rem;
  border-radius:16px;
}


/* Logo only header */
.nav-brand { display:none !important; }
.nav-left img { height:48px; width:auto; }

/* Color scheme */
:root {
  --primary-dark:#001BB7;
  --primary:#0046FF;
  --accent:#FF8040;
  --bg-soft:#F5F1DC;
  --text-main:#0b1020;
}
body { background-color:var(--bg-soft); color:var(--text-main); font-size:16px; line-height:1.6; }

/* v6 user updates: stronger text contrast, bigger logo, improved form, HR compliance card */
:root{--text-main:#0b1318}
.nav-left img{height:72px!important;width:auto}

/* ===== v8 FINAL CONSOLIDATED ENHANCEMENTS ===== */

/* Global typography */
body{font-size:18.5px;line-height:1.65}
h1{font-size:2.6rem}
h2{font-size:2rem}
h3{font-size:1.25rem}
p,li,label{font-size:1rem}

/* Header prominence */
.header-wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:16px 32px;
  background:linear-gradient(90deg,#001BB7 0%,#0046FF 100%);
}
.nav-links a{
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:.3px;
  color:#ffffff;
}
.nav-links a.active{
  background:#ffffff;
  color:#0046FF;
  padding:8px 18px;
  border-radius:999px;
}
.nav-cta .btn-primary{
  font-size:1.05rem;
  font-weight:700;
  padding:.65rem 1.4rem;
  border-radius:999px;
}

/* Logo sizing */
.nav-left img{
  height:90px;
  width:auto;
  border-radius:12px;
}

/* Section background */
.section-cream,.alt-bg{
  background:#F7F7F2;
}

/* Service cards */
.service-card{
  border-radius:16px;
  padding:1.5rem;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}
.service-highlight{
  border-left:4px solid #FF8040;
}

/* Jobs form */
.job-apply-form{
  max-width:760px;
  margin:2.5rem auto;
  padding:2rem;
  border-radius:16px;
  background:#ffffff;
  box-shadow:0 14px 36px rgba(0,0,0,.08);
}
.job-apply-form .form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.job-apply-form input{
  padding:.75rem .9rem;
  border-radius:8px;
}
.job-apply-form button{
  margin-top:1.5rem;
}

@media(max-width:768px){
  .job-apply-form .form-grid{grid-template-columns:1fr}
  .nav-left img{height:56px}
}


/* ===== v11 HEADER – LOCKED DESIGN ===== */
.header-wrap{background:#0046FF !important;padding:14px 24px;
display:flex;align-items:center;justify-content:flex-start}
.nav-left{margin-right:56px}
.nav-left img{height:64px}
.nav-links a{color:#fff !important;font-weight:400 !important;padding:6px 8px}
.nav-links a.active{background:#001BB7 !important;color:#fff !important;
padding:6px 10px;border-radius:4px}
.nav-cta .btn-primary{background:#001BB7 !important;color:#fff !important;
padding:6px 10px;border-radius:4px;font-weight:400}
.btn-primary{border-radius:4px !important}


/* ===== v12 HEADER COLOR FIX ===== */
/* Force lighter header background */
.header-wrap{
  background:#0046FF !important;
}


/* ===== v13 HARD HEADER OVERRIDE (FINAL FIX) ===== */
/* Force ALL header layers to lighter blue */
header,
.header,
.header-wrap,
.navbar,
.navbar::before {
  background-color: #0046FF !important;
  background-image: none !important;
}

/* Lock active menu darker */
.nav-links a.active {
  background-color: #001BB7 !important;
}


/* ===== v14 BACKGROUND FIX BELOW HEADER ===== */
/* Force site background below header */
body,
.section,
.section-cream,
.main,
main {
  background-color: #F7F7F2 !important;
}

/* =======================================================
   JOBS & APPLY PAGE ONLY – SAFE SCOPED STYLES
   (Does NOT affect other tabs)
   ======================================================= */

/* Jobs listing */
.jobs-listing {
  padding: 32px 0;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.job-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 14px 30px rgba(15,23,42,0.04);
}

.job-card h3 {
  margin-top: 0;
}

.job-card ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

/* Align Apply button consistently */
.job-card .btn-primary {
  align-self: flex-start;
  margin-top: auto;
}

/* =======================================================
   APPLY PAGE (form layout aligned with Employers/Candidates)
   ======================================================= */

.job-apply-form {
  max-width: 760px;
  margin: 32px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(226,232,240,0.9);
  box-shadow: 0 16px 32px rgba(15,23,42,0.06);
}

.job-apply-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.job-apply-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.job-apply-form .form-field.full {
  grid-column: 1 / -1;
}

/* Inputs scoped ONLY to apply form */
.job-apply-form input[type="text"],
.job-apply-form input[type="email"],
.job-apply-form input[type="tel"],
.job-apply-form input[type="file"] {
  border-radius: 999px;
  border: 1px solid rgba(209,213,219,0.9);
  padding: 9px 11px;
  font: inherit;
}

/* Submit button */
.job-apply-form button {
  margin-top: 18px;
}

/* Mobile safe */
@media (max-width: 640px) {
  .job-apply-form .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Apply Page Cleanup ===== */

.apply-page header img,
header img {
  max-height: 60px;
  width: auto;
}

.apply-page {
  padding: 60px 0;
}

.apply-page .container {
  max-width: 900px;
  margin: auto;
}

.apply-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.apply-form label {
  font-weight: 600;
  margin-top: 15px;
  display: block;
}

.apply-form input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 6px;
}

.apply-form button {
  margin-top: 25px;
  width: 100%;
  font-size: 16px;
}

/* ===== Jobs Page Styling ===== */

.jobs-section {
  padding: 60px 0;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.job-card h3 {
  margin: 0;
  font-size: 20px;
}

.job-card p {
  margin-top: 6px;
  color: #666;
}

/* ===== Jobs Page Cleanup ===== */

.jobs-listing {
  padding: 60px 0;
  background: #f8f9fb;
}

.jobs-listing h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.job-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.job-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.job-card .meta {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

.job-card ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.job-card ul li {
  margin-bottom: 6px;
}

.job-card .btn-primary {
  align-self: flex-start;
}

