:root {
  --jp-primary: #4f46e5;
  --jp-primary-dark: #3d33c2;
  --jp-primary-light: #eef0fe;
  --jp-secondary: #7c3aed;
  --jp-accent: #f97316;
  --jp-accent-dark: #ea580c;
  --jp-success: #10b981;
  --jp-success-light: #e5f9f1;
  --jp-text: #1f2430;
  --jp-muted: #6b7280;
  --jp-bg-light: #f6f7fc;
  --jp-border: #e7e8f2;
  --jp-radius-lg: 16px;
  --jp-radius-md: 12px;
  --jp-shadow-soft: 0 10px 28px rgba(79, 70, 229, 0.08);
  --jp-shadow-hover: 0 16px 36px rgba(79, 70, 229, 0.14);

  /* Design-system additions: glass surfaces, elevation, motion */
  --jp-glass-bg: rgba(255, 255, 255, 0.72);
  --jp-glass-border: rgba(255, 255, 255, 0.45);
  --jp-blur: 16px;
  --jp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --jp-shadow-1: 0 2px 8px rgba(20, 20, 43, 0.05);
  --jp-shadow-2: 0 8px 24px rgba(20, 20, 43, 0.08);
  --jp-shadow-3: 0 20px 48px rgba(20, 20, 43, 0.14);
  --jp-radius-xl: 20px;
}

/* Glass surface */
.jp-glass {
  background: var(--jp-glass-bg);
  backdrop-filter: blur(var(--jp-blur));
  -webkit-backdrop-filter: blur(var(--jp-blur));
  border: 1px solid var(--jp-glass-border);
}

/* Scroll reveal — only hides content once JS confirms it can un-hide it,
   so pages stay fully visible if JS fails to load */
.jp-js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s var(--jp-ease), transform .5s var(--jp-ease);
}
.jp-js-ready [data-reveal].jp-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Skeleton shimmer loader */
.jp-skeleton {
  position: relative;
  overflow: hidden;
  background: #eceef5;
  border-radius: 8px;
  color: transparent !important;
}
.jp-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  animation: jp-shimmer 1.4s ease-in-out infinite;
}
@keyframes jp-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Quick-action cards (icon chip + title + subtitle + chevron) */
.jp-quick-actions { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; margin-bottom: 24px; }
.jp-quick-card {
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  box-shadow: var(--jp-shadow-1);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  transition: transform .18s var(--jp-ease), box-shadow .18s var(--jp-ease), border-color .18s var(--jp-ease);
}
.jp-quick-card:hover { transform: translateY(-4px); box-shadow: var(--jp-shadow-2); border-color: rgba(79, 70, 229, 0.25); color: inherit; }
.jp-quick-card-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: var(--stat-color-light, var(--jp-primary-light));
  color: var(--stat-color, var(--jp-primary));
  animation: jp-float 3.2s ease-in-out infinite;
}
@keyframes jp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.jp-quick-card-body { flex: 1 1 auto; min-width: 0; }
.jp-quick-card-body h6 { font-weight: 700; margin: 0 0 2px; font-size: 14.5px; }
.jp-quick-card-body span { color: var(--jp-muted); font-size: 12.5px; }
.jp-quick-card-chevron { color: var(--jp-border); font-size: 13px; }

/* Dismissible notice banner */
.jp-notice {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: var(--jp-radius-md);
  border: 1px solid var(--jp-border);
  padding: 16px 18px;
  margin-bottom: 16px;
  position: relative;
}
.jp-notice-icon { font-size: 18px; margin-top: 2px; }
.jp-notice-body { flex: 1 1 auto; }
.jp-notice-body strong { display: block; margin-bottom: 2px; }
.jp-notice-body p { margin: 0; font-size: 13.5px; color: var(--jp-muted); }
.jp-notice-body a { font-weight: 600; }
.jp-notice-close {
  background: none; border: none; color: var(--jp-muted); font-size: 16px;
  line-height: 1; cursor: pointer; padding: 2px;
}
.jp-notice--info { background: #eef4ff; border-color: #d7e6ff; }
.jp-notice--info .jp-notice-icon { color: var(--jp-primary); }
.jp-notice--warn { background: #fff8e6; border-color: #ffe9b3; }
.jp-notice--warn .jp-notice-icon { color: #c98a00; }

/* Animated stat tiles */
.jp-stat-tile-icon { animation: jp-float 3.2s ease-in-out infinite; }

/* Gradient buttons with ripple */
.jp-btn { position: relative; overflow: hidden; }
.jp-btn-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.55);
  animation: jp-ripple .6s var(--jp-ease);
  pointer-events: none;
}
@keyframes jp-ripple { to { transform: scale(2.6); opacity: 0; } }

/* Sticky-header, hover-row table utility (opt-in via .jp-table-modern) */
.jp-table-modern thead th { position: sticky; top: 0; z-index: 1; }
.jp-table-modern tbody tr { transition: background .12s var(--jp-ease); }

/* Compact "coming soon" pill, shared by seeker + recruiter stat tiles */
.jp-soon-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  color: #9aa1ad;
  background: #eef0f4;
  border-radius: 999px;
  padding: 2px 8px;
  margin-top: 2px;
}

body {
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--jp-text);
  background: #fff;
}

a { text-decoration: none; }

/* Header */
.jp-header {
  background: var(--jp-glass-bg);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s var(--jp-ease), border-color .2s var(--jp-ease);
}
.jp-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jp-primary), var(--jp-secondary), var(--jp-accent));
  opacity: 0;
  transition: opacity .2s var(--jp-ease);
}
.jp-header-scrolled {
  border-bottom-color: var(--jp-border);
  box-shadow: 0 8px 24px rgba(31, 36, 48, 0.08);
}
.jp-header-scrolled::before { opacity: 1; }
.jp-brand { display: flex; align-items: center; gap: 8px; transition: transform .2s var(--jp-ease); }
.jp-brand:hover { transform: translateY(-1px); }
.jp-brand-logo { height: 40px; transition: filter .2s var(--jp-ease); }
.jp-brand-text {
  font-weight: 700;
  font-size: 20px;
  background: linear-gradient(135deg, var(--jp-primary), var(--jp-secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: jp-brand-sheen 6s ease-in-out infinite;
}
@keyframes jp-brand-sheen {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* Notification bell */
.jp-bell-toggle {
  position: relative;
  font-size: 17px;
  padding: 8px 12px !important;
}
.jp-bell-toggle::after { display: none !important; }
.jp-bell-toggle::before {
  content: '';
  position: absolute;
  top: 7px;
  right: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--jp-accent);
  box-shadow: 0 0 0 rgba(249, 115, 22, 0.55);
  animation: jp-pulse 2.2s ease-in-out infinite;
  opacity: 0;
}
.jp-bell-dropdown.has-alerts .jp-bell-toggle::before { opacity: 1; }
@keyframes jp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0); }
  100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}
.jp-bell-menu { min-width: 260px; padding: 8px; border-radius: var(--jp-radius-md); border: 1px solid var(--jp-border); box-shadow: var(--jp-shadow-2); }
.jp-bell-empty {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 26px 12px; color: var(--jp-muted); text-align: center; font-size: 13.5px;
}
.jp-bell-empty i { font-size: 22px; opacity: 0.4; }
.jp-main-links .nav-link {
  color: var(--jp-text);
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: color .15s ease, background .15s ease;
}
.jp-main-links .nav-link:hover { color: var(--jp-primary); background: var(--jp-primary-light); }
.jp-auth-links { align-items: center; gap: 6px; }
.jp-auth-links .nav-link {
  color: var(--jp-text);
  font-weight: 500;
  padding: 8px 12px !important;
}
.jp-auth-links .dropdown-menu {
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  box-shadow: var(--jp-shadow-hover);
  padding: 8px;
  min-width: 200px;
}
.jp-auth-links .dropdown-item {
  border-radius: 8px;
  padding: 8px 12px;
  font-weight: 500;
}
.jp-auth-links .dropdown-item i { width: 20px; }
.jp-auth-links .dropdown-item:hover { background: var(--jp-primary-light); color: var(--jp-primary); }
.jp-auth-links .dropdown-item.text-danger:hover { background: #fde8ec; }
.jp-btn {
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-left: 6px;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.jp-btn-primary {
  background: linear-gradient(135deg, var(--jp-primary), var(--jp-secondary));
  color: #fff !important;
  border: none;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.28);
}
.jp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(79, 70, 229, 0.35); }
.jp-btn-outline {
  border: 1.5px solid var(--jp-primary);
  color: var(--jp-primary) !important;
  background: #fff;
}
.jp-btn-outline:hover { background: var(--jp-primary); color: #fff !important; transform: translateY(-2px); }
.jp-btn-sm {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 999px;
  line-height: 1.2;
}

/* "Free" badge pill — used on registration CTAs */
.jp-badge-free {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--jp-success-light);
  color: #0b8a5f;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .2px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.jp-badge-free i { font-size: 11px; }

/* Hero */
.jp-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(6, 182, 212, 0.18), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.18), transparent 35%),
    linear-gradient(135deg, #111827 0%, #1e293b 50%, #334155 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.jp-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}
.jp-hero h1 {
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.jp-hero p.lead {
  color: #ebe8ff;
  font-size: 1.15rem;
  max-width: 760px;
  margin: 0 auto;
}
.jp-search-box {
  background: #fff;
  border-radius: var(--jp-radius-lg);
  padding: 20px;
  box-shadow: 0 20px 50px rgba(31, 15, 90, 0.28);
  margin: 36px auto 0;
  max-width: 1020px;
}
.jp-search-box .form-control {
  border: 1px solid #e7ecf4;
  border-radius: 10px;
  height: 52px;
  box-shadow: none;
}
.jp-search-box .form-control:focus {
  box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.16);
  border-color: var(--jp-accent);
}
.jp-search-box .btn-search {
  background: linear-gradient(135deg, var(--jp-accent), var(--jp-accent-dark));
  color: #fff;
  font-weight: 700;
  height: 52px;
  border: none;
  border-radius: 12px;
  padding: 0 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.jp-search-box .btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(234, 88, 12, 0.35);
}

/* CTA cards */
.jp-cta-section { margin-top: -55px; margin-bottom: 40px; position: relative; z-index: 2; }
.jp-cta-card {
  background: #fff;
  border-radius: var(--jp-radius-lg);
  border: 1px solid var(--jp-border);
  box-shadow: var(--jp-shadow-soft);
  padding: 32px;
  height: 100%;
  transition: transform .18s ease, box-shadow .18s ease;
}
.jp-cta-card:hover { transform: translateY(-5px); box-shadow: var(--jp-shadow-hover); }
.jp-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--jp-primary-light);
  color: var(--jp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.jp-cta-card h4 { font-weight: 750; }
.jp-cta-card p { color: var(--jp-muted); }

/* Sections */
.jp-section { padding: 64px 0; }
.jp-section-title { text-align: center; margin-bottom: 40px; }
.jp-section-title h2 { font-weight: 750; letter-spacing: -0.01em; }
.jp-section-title p { color: var(--jp-muted); }
.jp-section-alt { background: var(--jp-bg-light); }

.jp-category-card {
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  padding: 22px;
  text-align: center;
  height: 100%;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.jp-category-card:hover { box-shadow: var(--jp-shadow-hover); transform: translateY(-4px); border-color: rgba(79, 70, 229, 0.25); }
.jp-category-card i {
  font-size: 24px;
  color: var(--jp-primary);
  background: var(--jp-primary-light);
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.jp-category-grid > div:nth-child(4n+2) .jp-category-card i { color: var(--jp-accent-dark); background: #fff1e6; }
.jp-category-grid > div:nth-child(4n+3) .jp-category-card i { color: #0b8a5f; background: var(--jp-success-light); }
.jp-category-grid > div:nth-child(4n+4) .jp-category-card i { color: #be185d; background: #fce7f3; }
.jp-category-card h6 { font-weight: 700; margin-bottom: 4px; }
.jp-category-card span { color: var(--jp-muted); font-size: 13px; }

.jp-stats {
  text-align: center;
  color: #fff;
  padding: 12px 0;
}
.jp-stats h3 { font-weight: 800; font-size: 2.4rem; margin-bottom: 4px; }
.jp-stats span { color: #d7d4ff; font-weight: 500; }
.jp-stats-panel {
  background: linear-gradient(135deg, var(--jp-primary) 0%, var(--jp-secondary) 100%);
  border-radius: var(--jp-radius-lg);
}

/* Footer */
.jp-footer {
  background: #16162b;
  color: #b7b5cf;
  padding: 50px 0 20px;
  position: relative;
}
.jp-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--jp-primary), var(--jp-secondary), var(--jp-accent));
}
.jp-footer h6 { color: #fff; font-weight: 700; margin-bottom: 16px; }
.jp-footer-links { list-style: none; padding: 0; margin: 0; }
.jp-footer-links li { margin-bottom: 10px; }
.jp-footer-links a { color: #b7b5cf; transition: color .15s ease, transform .15s ease; display: inline-block; }
.jp-footer-links a i { width: 18px; color: #8481a3; transition: color .15s ease; }
.jp-footer-links a:hover { color: #fff; transform: translateX(3px); }
.jp-footer-links a:hover i { color: var(--jp-accent); }
.jp-footer-brand p { margin-top: 14px; font-size: 14px; }
.jp-footer hr { border-color: rgba(255,255,255,0.1); }
.jp-copy { font-size: 13px; color: #8481a3; margin-bottom: 0; }

.jp-footer-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.18), rgba(124, 58, 237, 0.18));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--jp-radius-md);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.jp-footer-alert strong { display: block; color: #fff; font-size: 16px; margin-bottom: 4px; }
.jp-footer-alert strong i { color: var(--jp-accent); margin-right: 6px; }
.jp-footer-alert span { color: #cfcdea; font-size: 13.5px; }

/* Auth pages */
.jp-auth-wrap {
  background: var(--jp-bg-light);
  padding: 60px 0;
  min-height: 70vh;
}
.jp-auth-card {
  background: #fff;
  border-radius: var(--jp-radius-lg);
  box-shadow: var(--jp-shadow-soft);
  padding: 40px;
  max-width: 460px;
  margin: 0 auto;
}
.jp-auth-card h3 { font-weight: 750; margin-bottom: 6px; }
.jp-auth-card p.jp-sub { color: var(--jp-muted); margin-bottom: 24px; }
.jp-auth-card .form-label { font-weight: 600; font-size: 14px; }
.jp-auth-card .form-control { border-radius: 8px; padding: 10px 14px; border-color: var(--jp-border); }
.jp-auth-card .btn-submit {
  background: linear-gradient(135deg, var(--jp-primary), var(--jp-secondary));
  color: #fff;
  font-weight: 650;
  border: none;
  border-radius: 999px;
  padding: 12px;
  width: 100%;
  margin-top: 10px;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.28);
  transition: transform .15s ease, box-shadow .15s ease;
}
.jp-auth-card .btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(79, 70, 229, 0.35); }
.jp-auth-switch { text-align: center; margin-top: 18px; font-size: 14px; }
.jp-auth-alert { border-radius: 10px; font-size: 14px; }

/* Dashboard */
.jp-dash-wrap { background: var(--jp-bg-light); min-height: 80vh; padding: 30px 0; }
.jp-dash-sidebar {
  background: #fff;
  border-radius: var(--jp-radius-md);
  border: 1px solid var(--jp-border);
  padding: 24px 0;
}
.jp-dash-sidebar .jp-dash-avatar {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--jp-primary), var(--jp-secondary));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700; margin: 0 auto 12px;
}
.jp-dash-sidebar .jp-dash-avatar-photo {
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(31, 36, 48, 0.15);
}
.jp-dash-sidebar h6 { text-align: center; font-weight: 700; margin-bottom: 2px; }
.jp-dash-sidebar p.jp-role { text-align: center; color: var(--jp-muted); font-size: 13px; margin-bottom: 20px; }
.jp-dash-nav { list-style: none; padding: 0; margin: 0; }
.jp-dash-nav li a {
  display: block;
  padding: 12px 24px;
  color: var(--jp-text);
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.jp-dash-nav li a i { width: 22px; }
.jp-dash-nav li a.active, .jp-dash-nav li a:hover {
  background: var(--jp-primary-light);
  border-left-color: var(--jp-primary);
  color: var(--jp-primary);
}
.jp-dash-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 24px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  color: var(--jp-text);
  font-weight: 500;
  font-size: inherit;
  text-align: left;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.jp-dash-nav-toggle span { display: flex; align-items: center; gap: 0; }
.jp-dash-nav-toggle i:first-child { width: 22px; }
.jp-dash-nav-toggle:hover, .jp-dash-nav-toggle.active {
  background: var(--jp-primary-light);
  border-left-color: var(--jp-primary);
  color: var(--jp-primary);
}
.jp-dash-nav-chevron { transition: transform .2s ease; font-size: 12px; }
.jp-dash-nav-toggle[aria-expanded="true"] .jp-dash-nav-chevron { transform: rotate(180deg); }
.jp-dash-subnav { list-style: none; padding: 4px 0 8px; margin: 0; }
.jp-dash-subnav li a {
  display: block;
  padding: 9px 24px 9px 40px;
  color: var(--jp-muted);
  font-size: 13.5px;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.jp-dash-subnav li a i { width: 18px; }
.jp-dash-subnav li a.active, .jp-dash-subnav li a:hover {
  background: var(--jp-primary-light);
  border-left-color: var(--jp-primary);
  color: var(--jp-primary);
}
.jp-dash-card {
  background: #fff;
  border-radius: var(--jp-radius-md);
  border: 1px solid var(--jp-border);
  padding: 26px;
  margin-bottom: 24px;
}
.jp-dash-welcome { font-weight: 700; }
.jp-stat-card {
  background: #fff;
  border-radius: var(--jp-radius-md);
  border: 1px solid var(--jp-border);
  padding: 22px;
  text-align: center;
  transition: box-shadow .18s ease, transform .18s ease;
}
.jp-stat-card:hover { box-shadow: var(--jp-shadow-soft); transform: translateY(-3px); }
.jp-stat-card h3 { font-weight: 750; color: var(--jp-primary); margin-bottom: 4px; }
.jp-stat-card span { color: var(--jp-muted); font-size: 14px; }
.jp-empty-state { text-align: center; padding: 40px 20px; color: var(--jp-muted); }
.jp-empty-state i { font-size: 40px; margin-bottom: 12px; color: var(--jp-border); }

/* Latest job openings (home page) */
.jp-job-card {
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  padding: 20px;
  height: 100%;
  color: inherit;
  display: block;
  transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}
.jp-job-card:hover { box-shadow: var(--jp-shadow-hover); transform: translateY(-4px); border-color: rgba(79, 70, 229, 0.25); }
.jp-job-card h5 { font-weight: 700; margin-bottom: 6px; }
.jp-job-card-company { color: var(--jp-muted); font-size: 14px; margin-bottom: 10px; }

/* How It Works steps */
.jp-step { text-align: center; padding: 10px; }
.jp-step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--jp-primary), var(--jp-secondary));
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.28);
}
.jp-step h6 { font-weight: 700; margin-bottom: 6px; }
.jp-step p { color: var(--jp-muted); font-size: 14px; margin-bottom: 0; }

/* Why Choose Us feature cards */
.jp-feature-card {
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  padding: 26px;
  height: 100%;
  transition: box-shadow .18s ease, transform .18s ease;
}
.jp-feature-card:hover { box-shadow: var(--jp-shadow-soft); transform: translateY(-3px); }
.jp-feature-card i {
  font-size: 22px;
  color: var(--jp-primary);
  background: var(--jp-primary-light);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.jp-feature-grid > div:nth-child(3n+2) .jp-feature-card i { color: #0b8a5f; background: var(--jp-success-light); }
.jp-feature-grid > div:nth-child(3n+3) .jp-feature-card i { color: var(--jp-accent-dark); background: #fff1e6; }
.jp-feature-card h6 { font-weight: 700; margin-bottom: 8px; }
.jp-feature-card p { color: var(--jp-muted); font-size: 14px; margin-bottom: 0; }

/* FAQ accordion */
.jp-faq .accordion-item {
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.jp-faq .accordion-button {
  font-weight: 600;
  color: var(--jp-text);
}
.jp-faq .accordion-button:not(.collapsed) {
  background: var(--jp-primary-light);
  color: var(--jp-primary);
  box-shadow: none;
}
.jp-faq .accordion-button:focus { box-shadow: none; border-color: var(--jp-border); }

/* Jobs listing → view-job modal */
.jp-jobs-search-section {
  background: #f6f7fc;
  border-bottom: 1px solid var(--jp-border);
  padding: 28px 0;
}
.jp-jobs-search {
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  box-shadow: var(--jp-shadow-soft);
  padding: 14px;
}
.jp-jobs-search .form-control,
.jp-jobs-search .form-select {
  border-color: var(--jp-border);
  border-radius: 8px;
  min-height: 44px;
}
.jp-jobs-search .btn-search {
  background: linear-gradient(135deg, var(--jp-accent), var(--jp-accent-dark));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  min-height: 44px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.jp-jobs-search .btn-search:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(234, 88, 12, 0.3); color: #fff; }
.jp-jobs-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.jp-jobs-heading h2 {
  font-size: 26px;
  font-weight: 750;
  margin: 2px 0 0;
}
.jp-jobs-heading p {
  color: var(--jp-muted);
  margin: 0;
  white-space: nowrap;
}
.jp-jobs-eyebrow {
  color: var(--jp-primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.jp-job-result {
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  box-shadow: 0 6px 18px rgba(31, 36, 48, 0.05);
  cursor: pointer;
  padding: 18px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.jp-job-result:hover {
  border-color: rgba(79, 70, 229, 0.35);
  box-shadow: var(--jp-shadow-hover);
  transform: translateY(-2px);
}
.jp-job-result-main {
  align-items: center;
  display: flex;
  gap: 14px;
}
.jp-job-result-icon {
  align-items: center;
  background: var(--jp-primary-light);
  border-radius: 10px;
  color: var(--jp-primary);
  display: flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.jp-job-result-body { flex: 1 1 auto; min-width: 0; }
.jp-job-result-body h5 {
  font-size: 18px;
  font-weight: 750;
  margin: 0 0 5px;
}
.jp-view-job-link { color: var(--jp-text); }
.jp-view-job-link:hover { color: var(--jp-primary); }
.jp-job-result-company {
  color: var(--jp-muted);
  font-size: 14px;
  margin: 0 0 10px;
}
.jp-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.jp-job-tag,
.jp-job-tags .badge {
  background: var(--jp-bg-light) !important;
  border: 1px solid var(--jp-border) !important;
  border-radius: 999px;
  color: #384252 !important;
  font-size: 12.5px;
  font-weight: 650;
  padding: 6px 10px;
}
.jp-job-modal .modal-content { border-radius: var(--jp-radius-lg); border: none; }
.jp-job-modal .modal-header { border-bottom: 1px solid var(--jp-border); }
.jp-job-modal .modal-title { font-weight: 700; }
.jp-job-modal .modal-footer { border-top: 1px solid var(--jp-border); background: var(--jp-bg-light); }
.jp-job-modal .form-check-label { font-size: 14px; }
.jp-eligibility-action {
  align-items: center;
  background: #fff;
  border: 1px solid var(--jp-border);
  border-radius: var(--jp-radius-md);
  color: var(--jp-muted);
  display: flex;
  font-size: 14px;
  gap: 12px;
  justify-content: space-between;
  margin-left: auto;
  max-width: 380px;
  padding: 10px 12px;
}

/* VLSIGuru student radio group */
.form-check-inline .form-check-input { margin-top: 0.3rem; }

@media (max-width: 991px) {
  .jp-auth-links { margin-top: 12px; }
  .jp-btn { margin: 4px 6px 0 0; }
  .jp-jobs-heading { align-items: flex-start; flex-direction: column; }
  .jp-job-result-main { align-items: flex-start; }
}

@media (max-width: 575px) {
  .jp-job-result-main { flex-wrap: wrap; }
  .jp-job-result-body { flex-basis: calc(100% - 58px); }
  .jp-view-job-btn { width: 100%; text-align: center; }
  .jp-eligibility-action { align-items: stretch; flex-direction: column; max-width: none; }
  .jp-eligibility-action .jp-btn { text-align: center; }
}
