/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a2e4a;
  --primary-light: #243d63;
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --white: #ffffff;
  --bg: #f8f9fb;
  --card: #ffffff;
  --border: #e5e8ed;
  --text: #1a2e4a;
  --muted: #5f6d80;
  --shadow: 0 2px 12px rgba(26,46,74,0.08);
  --shadow-lg: 0 8px 32px rgba(26,46,74,0.14);
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-box {
  width: 40px; height: 40px;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
}
.btn-ghost:hover { background: rgba(26,46,74,0.05); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--primary-light); box-shadow: var(--shadow-lg); transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--primary);
  font-weight: 700;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-white:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.8); }

.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg); }

.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; font-weight: 500; color: var(--muted); }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease, transform 1.2s ease;
  transform: scale(1.04);
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15, 26, 42, 0.88) 0%,
    rgba(15, 26, 42, 0.65) 55%,
    rgba(15, 26, 42, 0.30) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  max-width: 720px;
}

.slide-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.slide-content h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}

.slide-content h1 .gold { color: var(--gold); }

.slide-content p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
}

.slide-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.7); transform: translateY(-50%) scale(1.05); }

.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Progress bar */
.slider-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}
.slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.55s ease, transform 0.55s ease; }
.revealed { opacity: 1; transform: translateY(0); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--primary);
  padding: 44px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 44px; font-weight: 800; color: var(--gold); display: block; line-height: 1; margin-bottom: 6px; }
.stat-item .lbl { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--border);
}
.about-badge .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-badge strong { font-size: 18px; font-weight: 800; display: block; }
.about-badge span { font-size: 13px; color: var(--muted); }

.checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 500; }
.checklist li .check { width: 22px; height: 22px; border-radius: 50%; background: rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; color: var(--gold); font-size: 12px; font-weight: 700; }

.about-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 15px; margin-top: 28px; transition: all 0.2s; }
.about-link:hover { color: var(--gold); gap: 10px; }

/* ===== SERVICES with image ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card.dark { background: var(--primary); border-color: var(--primary); }

.service-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-overlay { position: absolute; inset: 0; background: rgba(26,46,74,0.3); }
.service-card.dark .service-img-overlay { background: rgba(10,20,35,0.45); }

.service-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }

.service-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px; }
.service-card:not(.dark) .service-icon { background: rgba(26,46,74,0.08); }
.service-card.dark .service-icon { background: rgba(255,255,255,0.1); }

.service-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card:not(.dark) h3 { color: var(--primary); }
.service-card.dark h3 { color: var(--white); }

.service-card p { font-size: 15px; line-height: 1.75; margin-bottom: 24px; flex: 1; }
.service-card:not(.dark) p { color: var(--muted); }
.service-card.dark p { color: rgba(255,255,255,0.75); }

.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; background: none; font-family: inherit; transition: gap 0.2s; }
.service-card:not(.dark) .service-link { color: var(--primary); }
.service-card.dark .service-link { color: var(--gold); }
.service-link:hover { gap: 10px; }

/* ===== INDUSTRIES WITH IMAGES ===== */
.industries-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ind-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: default;
}

.ind-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ind-card:hover img { transform: scale(1.08); }

.ind-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,26,42,0.85) 0%, rgba(15,26,42,0.25) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: background 0.3s;
}
.ind-card:hover .ind-overlay { background: linear-gradient(to top, rgba(15,26,42,0.92) 0%, rgba(15,26,42,0.4) 60%, rgba(15,26,42,0.1) 100%); }

.ind-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* ===== WHY US SECTION ===== */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.why-img {
  position: relative;
  overflow: hidden;
}
.why-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-img-overlay { position: absolute; inset: 0; background: rgba(26,46,74,0.45); }

.why-content {
  background: var(--primary);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.88); }
.why-icon { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(201,168,76,0.2); color: var(--gold); font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* ===== OFFICES ===== */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.office-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.office-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.office-flag { font-size: 32px; margin-bottom: 16px; }
.office-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.office-entity { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 16px; }
.office-details { display: flex; flex-direction: column; gap: 10px; }
.office-detail { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--muted); }
.office-detail .icon { flex-shrink: 0; margin-top: 2px; }
.office-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* ===== FOOTER ===== */
footer { background: var(--primary); color: var(--white); padding: 64px 0 32px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 20px; color: var(--white); margin-bottom: 16px; }
.footer-logo .logo-box { background: var(--white); color: var(--primary); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.contact-row { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); }
.contact-row .icon { flex-shrink: 0; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 12px; }

/* ===== ABOUT PAGE ===== */
.page-hero {
  padding: 120px 0 64px;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border-radius: 50%; background: rgba(201,168,76,0.12); }
.page-hero::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.04); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; margin-bottom: 12px; line-height: 1.1; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.75); max-width: 560px; margin-top: 12px; }

.breadcrumb { background: rgba(248,249,251,0.95); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.breadcrumb-inner a { color: var(--muted); transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { opacity: 0.4; }
.breadcrumb-inner .current { color: var(--primary); font-weight: 500; }

.stats-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; transition: all 0.2s; }
.stat-card:hover { border-color: rgba(26,46,74,0.25); box-shadow: var(--shadow); }
.stat-card .icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(26,46,74,0.08); display: flex; align-items: center; justify-content: center; font-size: 20px; margin: 0 auto 14px; }
.stat-card .num { font-size: 34px; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.stat-card .lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

.highlight-box { background: var(--primary); border-radius: 20px; padding: 44px; color: var(--white); position: relative; overflow: hidden; }
.highlight-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(201,168,76,0.15); }
.highlight-box .section-label { color: var(--gold-light); }
.highlight-box h3 { font-size: 24px; font-weight: 700; margin-bottom: 20px; }

.highlight-checklist { display: flex; flex-direction: column; gap: 14px; }
.highlight-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.88); }
.highlight-checklist li .check { width: 20px; height: 20px; border-radius: 50%; background: rgba(201,168,76,0.25); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 11px; color: var(--gold); font-weight: 700; margin-top: 1px; }

.twin-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.content-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.content-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.content-card p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 12px; }

.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.2s; }
.category-card:hover { box-shadow: var(--shadow-lg); }
.category-header { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; }
.category-header h3 { font-size: 16px; font-weight: 700; }
.category-header .count { font-size: 12px; opacity: 0.75; }
.category-header.professionals { background: var(--primary); color: var(--white); }
.category-header.skilled { background: var(--gold); color: var(--primary); }
.category-header.semi { background: #5f6d80; color: var(--white); }
.category-header.unskilled { background: var(--text); color: var(--white); }
.category-list { padding: 16px 20px; }
.category-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.category-list li:last-child { border-bottom: none; }
.category-list li::before { content: ''; display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 5px; }

.clients-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.clients-col h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.clients-col h3 .badge { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; font-size: 13px; font-weight: 800; }
.clients-col h3 .badge.qatar { background: var(--primary); color: var(--white); }
.clients-col h3 .badge.global { background: var(--gold); color: var(--primary); }
.client-list { display: flex; flex-direction: column; gap: 10px; }
.client-item { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--card); border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-weight: 500; transition: all 0.2s; }
.client-item:hover { border-color: rgba(26,46,74,0.25); background: rgba(26,46,74,0.02); }
.client-num { width: 24px; height: 24px; border-radius: 50%; background: rgba(26,46,74,0.08); color: var(--primary); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.client-item:hover .client-num { background: var(--primary); color: var(--white); }
.clients-col.global .client-item:hover .client-num { background: var(--gold); color: var(--primary); }

/* ===== MODAL ===== */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }

.modal { background: var(--white); border-radius: 20px; padding: 36px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.2); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--muted); transition: all 0.2s; }
.modal-close:hover { background: var(--border); color: var(--text); }
.modal h2 { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.modal p.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.span-2 { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,46,74,0.07); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input[type="file"] { padding: 8px; background: var(--bg); cursor: pointer; }

/* ===== Aesthetic scrollbars (site-wide) ===== */
* { scrollbar-width: thin; scrollbar-color: var(--gold) var(--bg); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); border-radius: 20px; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), #b8933a); border-radius: 20px; border: 2px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== Searchable / multi-select category dropdown ===== */
.cat-select { position: relative; }
.cat-select-input {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); outline: none;
  transition: border-color 0.2s; cursor: text;
}
.cat-select-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,46,74,0.07); }
.cat-select-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.cat-select-chips:empty { display: none; }
.cat-chip {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(26,46,74,0.07);
  color: var(--text); font-size: 13px; font-weight: 500; padding: 5px 8px 5px 12px; border-radius: 20px;
}
.cat-chip button {
  border: none; background: rgba(26,46,74,0.12); color: var(--text); width: 18px; height: 18px; border-radius: 50%;
  cursor: pointer; font-size: 12px; line-height: 1; display: flex; align-items: center; justify-content: center; padding: 0;
}
.cat-chip button:hover { background: var(--primary); color: #fff; }
.cat-select-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(26,46,74,0.16); max-height: 240px; overflow-y: auto; padding: 6px;
}
.cat-select-dropdown.open { display: block; }
.cat-option {
  padding: 9px 12px; border-radius: 8px; cursor: pointer; font-size: 14px; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.cat-option:hover, .cat-option.highlighted { background: rgba(201,168,76,0.12); }
.cat-option.selected { background: rgba(26,46,74,0.08); font-weight: 600; }
.cat-option .check-mark { color: var(--gold); font-weight: 700; display: none; }
.cat-option.selected .check-mark { display: inline; }
.cat-select-empty { padding: 12px; text-align: center; color: var(--muted); font-size: 13px; }

.form-submit { margin-top: 8px; width: 100%; padding: 14px; background: var(--primary); color: var(--white); border: none; border-radius: var(--radius-sm); font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.form-submit:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow); }

.form-success { display: none; text-align: center; padding: 32px; }
.success-circle { width: 72px; height: 72px; border-radius: 50%; background: rgba(45,138,78,0.1); color: #2d8a4e; font-size: 32px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-weight: 700; }
.form-success h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--muted); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .industries-img-grid { grid-template-columns: repeat(2, 1fr); }
  .why-section { grid-template-columns: 1fr; }
  .why-img { height: 300px; }
  .why-content { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: flex; }

  .hero-slider { height: 90vh; min-height: 500px; }
  .slide-content h1 { font-size: clamp(28px, 7vw, 44px); }
  .slider-arrow { width: 40px; height: 40px; font-size: 22px; }
  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(2n) { }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-badge { left: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .twin-cards { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.span-2 { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-cards-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-slider { height: 95vh; }
  .slide-content { padding-top: 80px; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
  .industries-img-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .stats-cards-grid { grid-template-columns: 1fr 1fr; }
  .why-content { padding: 40px 24px; }
}

.ceo-message-section{
    padding:100px 0;
    background:#ffffff;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#C7A24B;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.section-heading h2{
    font-size:42px;
    color:#0B2740;
    margin:10px 0;
}

.section-heading h3{
    font-size:24px;
    color:#666;
    font-weight:500;
}

.ceo-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:60px;
    align-items:center;
}

.ceo-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.ceo-content blockquote{
    font-size:20px;
    color:#0B2740;
    font-weight:600;
    line-height:1.5;
    border-left:5px solid #C7A24B;
    padding-left:25px;
    margin-bottom:30px;
}

.ceo-content p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.signature{
    margin-top:40px;
    border-top:1px solid #e5e5e5;
    padding-top:25px;
}

.signature h4{
    color:#0B2740;
    font-size:24px;
    margin-bottom:5px;
}

.signature span{
    color:#C7A24B;
    font-weight:600;
}

@media(max-width:992px){

.ceo-wrapper{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:34px;
}

.section-heading h3{
    font-size:20px;
}

.ceo-content blockquote{
    font-size:24px;
}

}

.solutions-section{
    padding:80px 20px;
}

.solutions-card{
    max-width:950px;
    margin:auto;
    background:#fff;
    border:2px solid #b8dff7;
    border-radius:18px;
    position:relative;
    padding:60px 20px 25px;
}

.solutions-title{
    position:absolute;
    top:-2px;
    left:50%;
    transform:translateX(-50%);
    background:#0b2d6d;
    color:#fff;
    padding:10px 40px;
    font-size:22px;
    font-weight:600;
    clip-path:polygon(0 0,100% 0,100% 72%,50% 100%,0 72%);
}

.solutions-grid{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
}

.solution-item{
    text-align:center;
    flex:1;
}

.icon{
    width:60px;
    height:60px;
    margin:0 auto 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2f67b1;
    font-size:38px;
    transition:.3s;
}

.solution-item h5{
    font-size:16px;
    font-weight:500;
    margin:0;
    color:#333;
}

.solution-item:hover .icon{
    transform:translateY(-5px);
    color:#0b2d6d;
}



@media(max-width:991px){

.solutions-grid{

    justify-content:center;

}

.solution-item{

    flex:0 0 45%;
    margin-bottom:35px;

}

.solutions-title{

    font-size:22px;
    padding:14px 35px;

}

}

@media(max-width:576px){

.solution-item{

    flex:0 0 100%;

}

.solution-item h5{

    font-size:22px;

}

.icon{

    width:70px;
    height:70px;
    font-size:42px;

}

.solutions-card{

    padding-top:80px;

}

}


/* ===============================
   Mission & Vision Section
==================================*/

.mission-vision{
    max-width:1100px;
    margin:40px auto;
    padding:0 15px;
}

.mv-card{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border-radius:15px;
    padding:18px 22px;
    margin-bottom:18px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.mv-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Left Border */

.mv-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
}

.mission::before{
    background:#0b2d6d;
}

.vision::before{
    background:#ff6b35;
}

/* Icon */

.mv-icon{

    width:70px;
    height:70px;
    min-width:70px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    color:#fff;

    font-size:30px;

    transition:.35s;

}

.mission .mv-icon{

    background:linear-gradient(135deg,#0b2d6d,#2c7be5);

}

.vision .mv-icon{

    background:linear-gradient(135deg,#ff6b35,#ff9800);

}

.mv-card:hover .mv-icon{

    transform:rotate(8deg) scale(1.08);

}

/* Content */

.mv-content{
    flex:1;
}

.mv-content span{

    display:inline-block;

    font-size:11px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#888;

    font-weight:700;

    margin-bottom:4px;

}

.mv-content h3{

    margin:0 0 8px;

    font-size:22px;

    font-weight:700;

    color:#0b2d6d;

}

.vision .mv-content h3{

    color:#ff6b35;

}

.mv-content p{

    margin:0;

    font-size:14px;

    color:#555;

    line-height:1.7;

}

/* Optional Button */

.mv-btn{

    margin-top:15px;

}

.mv-btn a{

    display:inline-block;

    padding:8px 20px;

    background:#0b2d6d;

    color:#fff;

    text-decoration:none;

    border-radius:30px;

    font-size:13px;

    transition:.3s;

}

.mv-btn a:hover{

    background:#ff9800;

}

/* Responsive */

@media(max-width:768px){

.mission-vision{

    padding:0 10px;

}

.mv-card{

    flex-direction:column;

    text-align:center;

    padding:20px 18px;

}

.mv-icon{

    width:60px;
    height:60px;
    min-width:60px;

    font-size:24px;

}

.mv-content span{

    font-size:10px;

}

.mv-content h3{

    font-size:18px;

}

.mv-content p{

    font-size:13px;

    line-height:1.6;

}

}

@media(max-width:480px){

.mv-card{

    padding:16px;

}

.mv-icon{

    width:55px;
    height:55px;
    min-width:55px;

    font-size:22px;

}

.mv-content h3{

    font-size:17px;

}

.mv-content p{

    font-size:12px;

}

}

/*=========================================
    WORKFLOW SECTION
==========================================*/

.workflow-section{
    padding:50px 15px;
    background:#f8fbff;
}

.section-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    margin-bottom:40px;
}

.section-title span{
    width:70px;
    height:3px;
    background:#f4a000;
    border-radius:10px;
}

.section-title h2{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#0B2C63;
    text-transform:uppercase;
    letter-spacing:1px;
}

/*==============================
    Workflow Container
==============================*/

.workflow{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
    position:relative;
}

/* Connecting Line */

.workflow::before{
    content:"";
    position:absolute;
    left:6%;
    right:6%;
    top:34px;
    height:4px;
    background:#0B2C63;
    border-radius:20px;
    z-index:1;
}

/*==============================
    Workflow Item
==============================*/

.workflow-item{
    flex:1;
    min-width:100px;
    text-align:center;
    position:relative;
    z-index:2;
}

.workflow-icon{

    width:70px;
    height:70px;

    margin:auto;

    background:#0B2C63;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;

    font-size:28px;

    transition:.35s;

    box-shadow:0 8px 20px rgba(11,44,99,.18);

}

.workflow-item:hover .workflow-icon{

    background:#f4a000;

    transform:translateY(-6px);

}

.workflow-item h4{

    margin:12px 0 5px;

    font-size:16px;

    color:#0B2C63;

    font-weight:600;

}

.workflow-item p{

    margin:0;

    font-size:13px;

    color:#666;

    line-height:1.4;

}

/*==================================
        Tablet
===================================*/

@media(max-width:992px){

.workflow{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.workflow::before{

    display:none;

}

.workflow-item{

    min-width:unset;

}

}

/*==================================
        Mobile
===================================*/

@media(max-width:576px){

.workflow{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.section-title{

    gap:10px;

}

.section-title span{

    width:40px;

}

.section-title h2{

    font-size:22px;

}

.workflow-icon{

    width:60px;
    height:60px;
    font-size:24px;

}

.workflow-item h4{

    font-size:15px;

}

.workflow-item p{

    font-size:12px;

}

}

.client-card{

    background:#fff;

    border:2px solid #d9edf8;

    border-radius:18px;

    height:130px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

}

.client-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 35px rgba(0,0,0,.15);

    border-color:#0B2C63;

}

.client-card img{

    max-width:150px;

    max-height:70px;

    transition:.35s;

    filter:grayscale(100%);

    opacity:.75;

}

.client-card:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.08);

}

/* Tablet */

@media(max-width:992px){

.client-grid{

    grid-template-columns:repeat(3,1fr);

}

}

/* Mobile */

@media(max-width:768px){

.client-grid{

    grid-template-columns:repeat(2,1fr);

    gap:15px;

}

.client-card{

    height:110px;

}

.client-card img{

    max-width:120px;

    max-height:55px;

}

.section-heading h2{

    font-size:28px;

}

}

/* Small Mobile */

@media(max-width:480px){

.client-grid{

    grid-template-columns:1fr;

}

}

/* Grid */

.client-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:22px;

}

/* ===== JOBS PAGE ===== */
.jobs-toolbar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.jobs-search { position: relative; flex: 1; min-width: 240px; max-width: 420px; }
.jobs-search input {
  width: 100%;
  padding: 12px 14px 12px 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.jobs-search input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,46,74,0.07); }
.jobs-search .search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 14px; pointer-events: none; }

.jobs-select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  cursor: pointer;
  min-width: 190px;
}
.jobs-select:focus { border-color: var(--primary); }

.jobs-filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chip {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}
.filter-chip:hover { border-color: rgba(26,46,74,0.3); color: var(--primary); }
.filter-chip.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.jobs-count { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.jobs-count strong { color: var(--primary); }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.job-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; min-height: auto; }
.job-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(26,46,74,0.08); display: flex; align-items: center; justify-content: center; font-size: 21px; flex-shrink: 0; }

.job-badge { font-size: 10.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.4px; white-space: nowrap; visibility: hidden; flex-shrink: 0; margin-top: 3px; }
.job-badge.urgent { visibility: visible; background: rgba(201,168,76,0.15); color: #a3822f; border: 1px solid rgba(201,168,76,0.45); }
.job-badge.new { visibility: visible; background: rgba(45,138,78,0.1); color: #2d8a4e; border: 1px solid rgba(45,138,78,0.3); }

.job-title { font-size: 18px; font-weight: 700; color: var(--primary); line-height: 1.3; flex: 1; margin: 0; }
.job-company { font-size: 13px; color: var(--gold); font-weight: 600; margin-bottom: 16px; }

.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; min-height: 30px; align-content: flex-start; }
.job-meta span { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--muted); background: var(--bg); border: 1px solid var(--border); padding: 5px 10px; border-radius: 999px; }

.job-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--border); margin-top: auto; }
.job-salary { font-size: 14px; font-weight: 700; color: var(--primary); line-height: 1.3; }
.job-salary span { display: block; font-size: 11px; font-weight: 500; color: var(--muted); }

.jobs-empty { display: none; text-align: center; padding: 64px 20px; color: var(--muted); }
.jobs-empty .icon { font-size: 40px; margin-bottom: 16px; }
.jobs-empty h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }

.jobs-cta { background: var(--primary); border-radius: 20px; padding: 48px; text-align: center; position: relative; overflow: hidden; margin-top: 24px; }
.jobs-cta::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(201,168,76,0.15); }
.jobs-cta h3 { position: relative; z-index: 1; color: var(--white); font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.jobs-cta p { position: relative; z-index: 1; color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.jobs-cta .btn { position: relative; z-index: 1; }

.readonly-field { background: var(--bg) !important; color: var(--primary) !important; font-weight: 600; cursor: not-allowed; }

@media (max-width: 900px) {
  .jobs-grid { grid-template-columns: 1fr; }
  .jobs-toolbar { flex-direction: column; align-items: stretch; }
  .jobs-search { max-width: none; }
}
