/* ============================================================
   rozgar.css — RozgarOne Design System
   All styles for Rozgar.html landing page + auth modals
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --primary-gradient: radial-gradient(circle at top, #214f94 0%, #0d1623 58%, #09111d 100%);
  --navbar-color: rgba(11, 24, 40, 0.92);
  --text: #ffffff;
  --blue: #58a7ff;
  --muted: rgba(255, 255, 255, 0.7);
  --surface: #edf1f2;
  --card-shadow: 0 18px 40px rgba(6, 18, 36, 0.12);
  --button: linear-gradient(135deg, #3a8cff, #145baa);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: #f7f8f9;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #1a1a2e;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.rz-navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navbar-color);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.rz-navbar .navbar-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.rz-navbar .brand-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--button);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff;
}
.rz-navbar .brand-text { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: 2px; }
.rz-navbar .nav-link {
  color: rgba(255,255,255,0.75) !important;
  font-size: 0.9rem; font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
}
.rz-navbar .nav-link:hover { color: #fff !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.3) !important; }
.navbar-toggler-icon { filter: invert(1); }

.btn-ghost-nav {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff; border-radius: 8px;
  padding: 7px 20px; font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-ghost-nav:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.btn-solid-nav {
  background: var(--button); border: none; color: #fff;
  border-radius: 8px; padding: 8px 22px;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-solid-nav:hover { opacity: 0.88; transform: translateY(-1px); color: #fff; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.rz-hero {
  min-height: 100vh;
  background: radial-gradient(circle at top, #a4b37a 0%, #8A9A5B 34%, #667245 68%, #1b2415 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
}
.rz-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: #7ec3ff;
  border: 1px solid #5eaef5;
  color: #111; border-radius: 50px;
  padding: 6px 16px; font-size: 0.8rem;
  font-weight: 800; letter-spacing: 0.5px; margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.3); }
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero-h1 span { color: #fff; }

.hero-subtitle {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.7; max-width: 520px; margin-bottom: 36px;
}

.btn-hero-primary {
  background: var(--button); color: #fff; border: none;
  border-radius: 10px; padding: 14px 32px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
  box-shadow: 0 8px 24px rgba(58,140,255,0.35);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(58,140,255,0.45); color: #fff; }

.btn-hero-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 10px; padding: 13px 32px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.25s; text-decoration: none; display: inline-block;
}
.btn-hero-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat .val { font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; color: var(--muted); margin-top: 4px; font-weight: 500; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* Floating job cards in hero */
.hero-card-float {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 28px;
  width: 100%; max-width: 360px;
  color: #111;
}
.job-card-mini {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px; margin-bottom: 12px;
}
.job-card-mini:last-child { margin-bottom: 0; }
.job-tag {
  font-size: 0.7rem;
  background: rgba(88,167,255,0.2); color: var(--blue);
  border-radius: 4px; padding: 2px 8px; font-weight: 600;
}
.job-tag.urgent { background: #c62828; color: #fff; }
.job-tag.new    { background: #fff; color: #145baa; }
.job-tag:not(.urgent):not(.new) { background: #0f3d91; color: #fff; }
.job-title-mini { font-size: 0.9rem; font-weight: 700; color: #111; margin: 6px 0 4px; }
.job-meta-mini  { font-size: 0.75rem; color: #111; display: flex; gap: 12px; }
.job-salary     { font-size: 0.85rem; font-weight: 700; color: #fff; margin-top: 8px; }
.hero-float-header {
  font-size: 0.75rem; font-weight: 700; color: #111;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.hero-card-float [style*="color:var(--muted)"] { color: #111 !important; }

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.rz-how { background: #F2F5E0; padding: 96px 0; }

.section-kicker {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; color: var(--blue);
  text-transform: uppercase; margin-bottom: 12px;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; color: #0d1623; margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: #6b7280; max-width: 480px; line-height: 1.7; }

.step-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  box-shadow: var(--card-shadow); border: 1px solid #e8ecf0;
  transition: transform 0.25s, box-shadow 0.25s; height: 100%;
}
.step-card:hover { transform: translateY(-6px); box-shadow: 0 28px 56px rgba(6,18,36,0.16); }
.step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--button); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin-bottom: 20px;
}
.step-icon  { font-size: 2rem; margin-bottom: 16px; }
.step-title { font-size: 1.1rem; font-weight: 700; color: #0d1623; margin-bottom: 10px; }
.step-desc  { font-size: 0.9rem; color: #6b7280; line-height: 1.65; }

/* ============================================================
   STATS BAR
   ============================================================ */
.rz-stats-bar { background: #0d1623; padding: 64px 0; }
.stat-item { text-align: center; padding: 16px; }
.stat-val { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-val span { color: var(--blue); }
.stat-lbl { font-size: 0.85rem; color: var(--muted); margin-top: 8px; font-weight: 500; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.1); }

/* ============================================================
   CTA SPLIT SECTION
   ============================================================ */
.rz-cta-split { background: #8A9A5B; padding: 80px 0; }
.cta-card {
  border-radius: 24px; padding: 48px 40px; height: 100%;
  display: flex; flex-direction: column;
  justify-content: space-between; min-height: 420px;
}
.cta-card-worker {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.cta-card-worker-tray {
  background: #123b87;
  border-radius: 24px;
  padding: 48px 40px;
  min-height: 420px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(10, 30, 72, 0.22);
}
.cta-card-employer { background: #F2F5E0; }
.cta-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.cta-card-sub { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; margin-bottom: 28px; }
.cta-card-worker .cta-card-sub { color: rgba(255,255,255,0.86); }
.cta-card-employer .cta-card-title { color: #4f5c34; }
.cta-card-employer .cta-card-sub { color: rgba(79, 92, 52, 0.9); }
.btn-cta-white {
  background: #fff; border: none; border-radius: 10px;
  padding: 13px 28px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  display: inline-block; text-decoration: none; align-self: flex-start;
}
.btn-cta-white.worker   { color: #5f6c3d; }
.btn-cta-white.employer { color: #4f5c34; }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.rz-footer { background: #23344d; padding: 56px 0 32px; }
.footer-brand    { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: 2px; margin-bottom: 8px; }
.footer-tagline  { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-link     { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; display: block; margin-bottom: 10px; }
.footer-link:hover { color: #fff; }
.footer-divider  { border-color: rgba(255,255,255,0.1); margin: 32px 0 24px; }
.footer-copy     { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-social a { color: rgba(255,255,255,0.5); font-size: 1.1rem; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }

/* ============================================================
   MODAL OVERLAY
   ============================================================ */
.rz-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 12, 25, 0.85);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.rz-modal-overlay.active { display: flex; }

.rz-modal {
  background: #fff; border-radius: 24px;
  width: 100%; max-width: 440px;
  padding: 40px 36px; position: relative;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.92) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: #f3f4f6; color: #6b7280; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s;
}
.modal-close:hover { background: #e5e7eb; color: #111; }
.modal-title { font-size: 1.5rem; font-weight: 800; color: #0d1623; margin-bottom: 4px; }
.modal-sub   { font-size: 0.875rem; color: #6b7280; margin-bottom: 28px; }

/* ============================================================
   FORM ELEMENTS
   ============================================================ */
.form-label-rz {
  font-size: 0.8rem; font-weight: 600; color: #374151;
  margin-bottom: 6px; display: block;
}
.form-input-rz {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 10px;
  padding: 11px 14px; font-size: 0.9rem; color: #111; background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none; font-family: inherit;
}
.form-input-rz:focus  { border-color: #3a8cff; box-shadow: 0 0 0 3px rgba(58,140,255,0.12); }
.form-input-rz.error  { border-color: #ef4444; }
.form-input-rz.success{ border-color: #22c55e; }

.input-wrapper { position: relative; }
.input-prefix {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  font-size: 0.875rem; color: #6b7280; font-weight: 600; pointer-events: none;
}
.input-with-prefix { padding-left: 44px !important; }
.input-counter {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 0.75rem; color: #9ca3af; pointer-events: none;
}
.input-eye {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: #9ca3af;
  cursor: pointer; padding: 4px; font-size: 14px; transition: color 0.2s;
}
.input-eye:hover { color: #374151; }

.field-error { font-size: 0.75rem; color: #ef4444; margin-top: 4px; display: none; }
.field-error.show { display: block; }
.form-group-rz { margin-bottom: 18px; }

/* ============================================================
   ROLE SELECTOR (Signup)
   ============================================================ */
.role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.role-card {
  border: 2px solid #e5e7eb; border-radius: 12px; padding: 16px 12px;
  text-align: center; cursor: pointer; transition: all 0.2s; background: #fff;
}
.role-card:hover    { border-color: #3a8cff; background: #f0f7ff; }
.role-card.selected { border-color: #3a8cff; background: #eff6ff; }
.role-card .role-icon  { font-size: 1.8rem; margin-bottom: 6px; }
.role-card .role-label { font-size: 0.85rem; font-weight: 700; color: #374151; }
.role-card.selected .role-label { color: #1d4ed8; }

.employer-type-group { margin-top: -4px; }
.employer-type-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.employer-type-option {
  border: 2px solid #dbe5ff; border-radius: 12px; padding: 12px;
  background: #fff; color: #27375f; cursor: pointer; font: inherit; font-weight: 700;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.employer-type-option:hover,
.employer-type-option.selected { border-color: #3159dc; background: #edf3ff; color: #2045c5; }
.required-mark { color: #dc2626; }

/* ============================================================
   PASSWORD STRENGTH
   ============================================================ */
.pw-hints { margin-top: 10px; }
.pw-hint {
  font-size: 0.75rem; color: #9ca3af;
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 4px; transition: color 0.2s;
}
.pw-hint.met { color: #22c55e; }
.pw-hint i   { font-size: 10px; }
.pw-strength-bar  { height: 4px; border-radius: 2px; background: #e5e7eb; margin-top: 8px; overflow: hidden; }
.pw-strength-fill { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0%; }

/* ============================================================
   OTP BOXES
   ============================================================ */
.otp-row { display: flex; gap: 10px; justify-content: center; margin: 24px 0; }
.otp-box {
  width: 50px; height: 50px;
  min-width: 50px; max-width: 50px;   /* fixed — no flex:1 */
  border: 2px solid #e5e7eb; border-radius: 12px;
  text-align: center; font-size: 1.3rem; font-weight: 700; color: #0d1623;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  background: #f9fafb; flex: none;
}
.otp-box:focus  { border-color: #3a8cff; box-shadow: 0 0 0 3px rgba(58,140,255,0.15); background: #fff; }
.otp-box.filled { border-color: #22c55e; background: #f0fdf4; }

/* ============================================================
   STEP INDICATOR
   ============================================================ */
.step-indicator {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; gap: 0;
}
.step-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid #e5e7eb;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; color: #9ca3af; background: #fff;
  transition: all 0.3s; flex-shrink: 0;
}
.step-dot.active { border-color: #3a8cff; color: #3a8cff; background: #eff6ff; }
.step-dot.done   { border-color: #22c55e; background: #22c55e; color: #fff; }
.step-line { flex: 1; height: 2px; background: #e5e7eb; max-width: 60px; transition: background 0.3s; }
.step-line.done { background: #22c55e; }
.step-label-row { display: flex; justify-content: space-between; margin-bottom: 24px; padding: 0 4px; }
.step-lbl { font-size: 0.68rem; color: #9ca3af; font-weight: 500; text-align: center; flex: 1; }
.step-lbl.active { color: #3a8cff; font-weight: 700; }
.step-lbl.done   { color: #22c55e; }

/* ============================================================
   RESEND ROW
   ============================================================ */
.resend-row { text-align: center; margin-top: 16px; font-size: 0.85rem; color: #6b7280; }
.resend-btn { background: none; border: none; color: #3a8cff; font-weight: 600; cursor: pointer; font-size: 0.85rem; padding: 0; }
.resend-btn:disabled { color: #9ca3af; cursor: default; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-rz {
  width: 100%; background: var(--button); color: #fff; border: none;
  border-radius: 10px; padding: 13px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; font-family: inherit; margin-top: 4px;
}
.btn-primary-rz:hover    { opacity: 0.9; transform: translateY(-1px); }
.btn-primary-rz:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-link-rz {
  background: none; border: none; color: #3a8cff;
  font-size: 0.85rem; font-weight: 600; cursor: pointer; padding: 0; font-family: inherit;
}
.btn-link-rz:hover { text-decoration: underline; }

.divider-or {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0; color: #9ca3af; font-size: 0.8rem;
}
.divider-or::before, .divider-or::after { content: ''; flex: 1; height: 1px; background: #e5e7eb; }

/* ============================================================
   TERMS ROW
   ============================================================ */
.terms-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.terms-row input[type=checkbox] { margin-top: 2px; accent-color: #3a8cff; width: 16px; height: 16px; flex-shrink: 0; }
.terms-row label { font-size: 0.8rem; color: #6b7280; line-height: 1.5; }
.terms-row a { color: #3a8cff; text-decoration: none; }

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  background: #eff6ff; border: 1px solid #bfdbfe; border-radius: 10px;
  padding: 12px 16px; font-size: 0.82rem; color: #1d4ed8;
  display: flex; gap: 10px; align-items: flex-start; margin-bottom: 20px;
}
.info-box i { margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container-rz {
  position: fixed; top: 20px; right: 20px; z-index: 99999;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.toast-rz {
  background: #1e293b; color: #fff; border-radius: 12px;
  padding: 14px 20px; font-size: 0.875rem; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  min-width: 280px; max-width: 360px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3); pointer-events: all;
  animation: toastIn 0.3s ease; border-left: 4px solid #3a8cff;
}
.toast-rz.success { border-left-color: #22c55e; }
.toast-rz.error   { border-left-color: #ef4444; }
.toast-rz.warning { border-left-color: #f59e0b; }
@keyframes toastIn {
  from { opacity:0; transform: translateX(40px); }
  to   { opacity:1; transform: translateX(0); }
}

/* ============================================================
   FORGOT PASSWORD STEPS
   ============================================================ */
.fp-step        { display: none; }
.fp-step.active { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .rz-modal    { padding: 28px 20px; }
  .hero-stats  { gap: 20px; }
  .hero-stat .val { font-size: 1.4rem; }
  .cta-card    { padding: 32px 24px; min-height: auto; }
  .stat-divider { display: none; }
  .otp-box     { width: 44px; height: 44px; min-width: 44px; max-width: 44px; font-size: 1.1rem; }
  .otp-row     { gap: 8px; }
}
@media (max-width: 480px) {
  .otp-box { width: 40px; height: 40px; min-width: 40px; max-width: 40px; }
  .hero-card-float { display: none; }
}

/* ============================================================
   PRESENCE SECTION — Worker image + India Map
   ============================================================ */
.rz-presence {
  background: #F2F5E0;
  padding: 96px 0;
}
.presence-header {
  margin-bottom: 56px;
}

/* ── LEFT: Worker Card ── */
.worker-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  background: #0d1623;
}
.worker-img-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=800&q=80');
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
  transition: opacity 0.4s;
}
.worker-card:hover .worker-img-bg { opacity: 0.65; }
.worker-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 17, 29, 0.3) 0%,
    rgba(9, 17, 29, 0.5) 40%,
    rgba(9, 17, 29, 0.92) 100%
  );
}
.worker-card-content {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 520px;
}
.worker-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.worker-card-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 340px;
}
.worker-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.worker-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.wf-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(242, 85, 10, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.wf-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.wf-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ── RIGHT: Map Card ── */
.map-card {
  background: #0d1623;
  border-radius: 24px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
  border: 1px solid #1e3a5f;
  display: flex;
  flex-direction: column;
}
.map-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 10px;
}
.map-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}
.map-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}
.map-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
}
.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f2550a;
  display: inline-block;
}
.legend-dot.active { background: #f2550a; }

/* India SVG Map */
.india-map-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.india-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
}
.india-path {
  fill: #1A3FBF;
  stroke: rgba(255,255,255,0.35);
  stroke-width: 1.2;
  stroke-linejoin: round;
  transition: fill 0.2s;
}
.india-path:hover  { fill: #2B5CE6; }
.india-path-north  { fill: #214f94; }
.india-path-ne     { fill: #214f94; }
.india-states path, .india-state {
  fill: #1A3FBF;
  stroke: rgba(255,255,255,0.45);
  stroke-width: 0.6;
  stroke-linejoin: round;
  transition: fill 0.2s;
  cursor: pointer;
}
.india-states path:hover, .india-state:hover { fill: #2B5CE6; }

/* Pin styles */
.map-pin { cursor: pointer; }
.pin-pulse {
  fill: rgba(242, 85, 10, 0.18);
  transform-origin: center;
  animation: pinPulse 2s ease-in-out infinite;
}
.pin-pulse-delay1 { animation-delay: 0.6s; }
.pin-pulse-delay2 { animation-delay: 1.2s; }
@keyframes pinPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 0.1; transform: scale(1.6); }
}
.pin-dot {
  fill: #f2550a;
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 2px 4px rgba(242,85,10,0.5));
}
.pin-label {
  font-family: Inter, sans-serif;
  font-size: 9px;
  font-weight: 700;
  fill: #ffffff;
  pointer-events: none;
}
.map-pin:hover .pin-dot { fill: #145baa; }

/* Map stats row */
.map-stats-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}
.map-stat-chip {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
  flex: 1;
  min-width: 80px;
}
.msc-val {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: #58a7ff;
  line-height: 1;
}
.msc-lbl {
  display: block;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 991px) {
  .worker-card { min-height: 400px; }
  .worker-card-content { min-height: 400px; }
}
@media (max-width: 576px) {
  .rz-presence { padding: 60px 0; }
  .map-stat-chip { padding: 8px 12px; }
  .msc-val { font-size: 1rem; }
}

/* ============================================================
   INDIA MAP — Highlighted States + Worker Pins
   ============================================================ */

/* Highlighted states — orange glow */
.india-state-highlight {
  fill: #f2550a !important;
  stroke: rgba(255,255,255,0.6) !important;
  stroke-width: 1px !important;
  filter: drop-shadow(0 0 6px rgba(242,85,10,0.5));
  transition: fill 0.2s, filter 0.2s;
}
.india-state-highlight:hover {
  fill: #ff6b2b !important;
  filter: drop-shadow(0 0 12px rgba(242,85,10,0.8));
}

/* State pin — worker emoji with pulse ring */
.map-pin-state { cursor: pointer; }

.state-pin-ring {
  fill: rgba(242, 85, 10, 0.15);
  animation: statePinPulse 2.2s ease-in-out infinite;
  transform-origin: center;
}
@keyframes statePinPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 0.1; transform: scale(1.5); }
}

.state-pin-bg {
  fill: #f2550a;
  stroke: #fff;
  stroke-width: 2.5;
  filter: drop-shadow(0 3px 8px rgba(242,85,10,0.6));
}

.state-pin-icon {
  font-size: 14px;
  pointer-events: none;
}

/* Tooltip — hidden by default, show on hover */
.state-pin-tooltip { display: none; }
.map-pin-state:hover .state-pin-tooltip { display: block; }

.tooltip-bg {
  fill: #1e293b;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}
.tooltip-name {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  fill: #ffffff;
}
.tooltip-stat {
  font-family: Inter, sans-serif;
  font-size: 9px;
  fill: rgba(255,255,255,0.7);
}

/* Stagger pin animations */
.map-pin-state:nth-child(2) .state-pin-ring { animation-delay: 0.3s; }
.map-pin-state:nth-child(3) .state-pin-ring { animation-delay: 0.6s; }
.map-pin-state:nth-child(4) .state-pin-ring { animation-delay: 0.9s; }
.map-pin-state:nth-child(5) .state-pin-ring { animation-delay: 1.2s; }
.map-pin-state:nth-child(6) .state-pin-ring { animation-delay: 1.5s; }
.map-pin-state:nth-child(7) .state-pin-ring { animation-delay: 1.8s; }


/* ============================================================
   VOICE ASSISTANT
   ============================================================ */
.voice-assistant {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.voice-assistant-btn {
  width: 62px;
  height: 62px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #3a8cff, #145baa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 18px 42px rgba(20, 91, 170, 0.42);
  border: 2px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.voice-assistant-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(20, 91, 170, 0.4);
}

.voice-assistant-btn.listening {
  background: linear-gradient(135deg, #f2550a, #ef4444);
  box-shadow: 0 0 0 12px rgba(242, 85, 10, 0.18), 0 18px 44px rgba(239, 68, 68, 0.35);
  animation: voicePulse 1.4s infinite;
}

.voice-assistant-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.voice-assistant-hint {
  max-width: 260px;
  background: rgba(11, 24, 40, 0.92);
  color: #fff;
  border: 1px solid rgba(88, 167, 255, 0.18);
  border-radius: 16px;
  padding: 12px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  box-shadow: 0 16px 38px rgba(6, 18, 36, 0.24);
}

@keyframes voicePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (max-width: 768px) {
  .voice-assistant {
    top: auto;
    left: auto;
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .voice-assistant-btn {
    width: 56px;
    height: 56px;
  }

  .voice-assistant-hint {
    max-width: none;
    flex: 1;
  }
}


.lang-switcher-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.nav-lang-item {
  display: inline-flex;
  align-items: center;
}

.lang-icon {
  font-size: 14px;
  line-height: 1;
}

.lang-label {
  font-size: 0.8rem;
  font-weight: 700;
}

.lang-select {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.lang-select option {
  color: #111827;
}
