/* ═══════════════════════════════════════════════════════════
   SmartRecruit — style.css (CLEANED UP)
   ICT307A Capstone Project A | Deepak Bhandari | 2026
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&family=DM+Sans:wght@400;500&display=swap');

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }

/* ── VARIABLES ── */
:root {
  --navy:   #1E3A5F;
  --blue:   #185FA5;
  --green:  #065F46;
  --amber:  #92400E;
  --gold:   #D97706;
  --red:    #991B1B;
  --white:  #FFFFFF;
  --gray:   #F0F2F5;
  --border: #E2E8F0;
  --text:   #1A2332;
  --muted:  #64748B;
  --shadow: 0 1px 3px rgba(0,0,0,0.05);
  --radius: 0px;
}

/* ── BASE ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--gray);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  line-height: 1.3;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* ── NAVIGATION ── */
.nav {
  background: var(--navy);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.nav-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.nav-brand span { color: #60A5FA; }

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

.nav-links a {
  color: #93C5FD;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 0px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ── PAGE WRAPPER ── */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* ── HERO (HOME PAGE) ── */
.hero {
  background: linear-gradient(135deg, #0b1c2c 0%, #1E3A5F 50%, #185FA5 100%);
  padding: 80px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(96,165,250,0.15), transparent 70%);
  border-radius: 50%;
}

.hero-tag {
  display: inline-block;
  background: rgba(96,165,250,0.15);
  border: 1px solid rgba(96,165,250,0.3);
  color: #93C5FD;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 0px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  position: relative;
}

.hero h1 span { color: #60A5FA; }

.hero p {
  font-size: 17px;
  color: #93C5FD;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-hero-main {
  background: var(--white);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 0px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-decoration: none;
  color: var(--navy);
}

.btn-hero-sec {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 0px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,0.3);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-sec:hover {
  background: rgba(255,255,255,0.18);
  text-decoration: none;
  color: var(--white);
}

/* ── HERO STATS ── */
.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.hstat { text-align: center; }
.hstat-n {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1;
}
.hstat-l { font-size: 12px; color: #93C5FD; margin-top: 4px; }

/* ── SECTION ── */
.section { padding: 64px 32px; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── FEATURE CARDS ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--white);
  border-radius: 0px;
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  transition: all 0.25s;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.feat-card.green  { border-top-color: var(--green); }
.feat-card.amber  { border-top-color: var(--gold); }

.feat-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.feat-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--navy);
  padding: 64px 32px;
  text-align: center;
}

.how-section .section-title { color: var(--white); }
.how-section .section-sub   { color: #93C5FD; margin: 0 auto 40px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step { text-align: center; }

.how-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  border: 2px solid rgba(255,255,255,0.15);
}

.how-step h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.how-step p  { font-size: 12px; color: #93C5FD; line-height: 1.6; }

/* ── REVENUE CARDS ── */
.rev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.rev-card {
  background: var(--white);
  border-radius: 0px;
  padding: 28px;
  border: 1.5px solid var(--border);
}

.rev-card.blue { border-color: var(--blue); box-shadow: 0 2px 8px rgba(24,95,165,0.08); }
.rev-card.green { border-color: var(--green); box-shadow: 0 2px 8px rgba(6,95,70,0.06); }

.rev-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 0px;
  margin-bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.rev-badge.b { background: #E6F1FB; color: var(--blue); }
.rev-badge.g { background: #E1F5EE; color: var(--green); }

.rev-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }

.rev-price {
  font-size: 38px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 10px 0;
  line-height: 1;
}
.rev-price.b { color: var(--blue); }
.rev-price.g { color: var(--green); }
.rev-price span { font-size: 14px; color: var(--muted); font-weight: 400; }

.rev-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }

.rev-list { list-style: none; margin-bottom: 20px; }
.rev-list li {
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
  color: var(--text);
  display: flex;
  gap: 8px;
  align-items: center;
}
.tick  { color: var(--green); font-size: 14px; }
.cross { color: var(--border); font-size: 14px; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 64px 32px;
  text-align: center;
}

.cta-section h2 { font-size: 38px; font-weight: 800; color: var(--white); margin-bottom: 12px; letter-spacing: -0.5px; }
.cta-section p  { font-size: 15px; color: #93C5FD; max-width: 480px; margin: 0 auto 30px; }

/* ── FOOTER ── */
footer {
  background: #0b1c2c;
  padding: 36px 32px;
  text-align: center;
}
footer p { font-size: 12px; color: #475569; line-height: 1.9; }
footer strong { color: #93C5FD; }

/* ── APP NAV (logged in) ── */
.app-nav {
  background: var(--navy);
  padding: 10px 24px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.app-nav a {
  color: #93C5FD;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 0px;
  text-decoration: none;
  transition: all 0.2s;
}

.app-nav a:hover, .app-nav a.active {
  background: var(--blue);
  color: var(--white);
}

.app-nav a.prem { color: #FCD34D; }

/* ── LAYOUT ── */
.layout {
  display: flex;
  min-height: calc(100vh - 100px);
}

/* ── SIDEBAR ── */
.sidebar {
  width: 220px;
  background: var(--white);
  border-right: 1px solid var(--border);
  padding: 20px 14px;
  flex-shrink: 0;
}

.profile-box {
  background: #F8FAFF;
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
  border: 1px solid var(--border);
}

.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.av-g { background: var(--green); }
.av-a { background: var(--amber); }

.pname { font-size: 13px; font-weight: 700; color: var(--navy); }
.prole { font-size: 11px; color: var(--muted); margin-top: 2px; }

.pbadge {
  background: #FAEEDA;
  color: var(--amber);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 0px;
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  border: 1px solid #e6c87a;
}

.snav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--muted);
  border-radius: 0px;
  margin-bottom: 2px;
  text-decoration: none;
  transition: all 0.15s;
}

.snav a:hover, .snav a.active {
  background: #E6F1FB;
  color: var(--blue);
  font-weight: 600;
}

.snav a.prem { color: var(--amber); }
.snav a.prem:hover, .snav a.prem.active { background: #FAEEDA; }
.snav-div { height: 1px; background: var(--border); margin: 10px 0; }

.prog-label { font-size: 10px; color: var(--muted); margin-top: 16px; margin-bottom: 6px; font-weight: 600; }
.prog-bg { background: var(--border); border-radius: 0px; height: 6px; }
.prog-fill { border-radius: 0px; height: 6px; background: var(--blue); }
.prog-pct { font-size: 18px; font-weight: 800; color: var(--blue); text-align: center; margin-top: 6px; font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── MAIN CONTENT ── */
.main { flex: 1; padding: 28px; overflow-y: auto; }

.page-header { margin-bottom: 24px; }
.page-title  { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.page-sub    { font-size: 13px; color: var(--muted); }

/* ── STAT CARDS ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.stat-card {
  background: var(--white);
  border-radius: 0px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.stat-n { font-size: 30px; font-weight: 800; color: var(--blue); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.stat-l { font-size: 11px; color: var(--muted); margin-top: 5px; }
.stat-card.g .stat-n { color: var(--green); }
.stat-card.a .stat-n { color: var(--gold); }
.stat-card.r .stat-n { color: var(--red); }

/* ── PREMIUM BANNER ── */
.premium-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 0px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.pb-text h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.pb-text p  { font-size: 12px; color: #B5D4F4; }

/* ── BUTTONS ── */
.btn {
  border: none;
  border-radius: 0px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
  text-decoration: none;
}

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); text-decoration: none; }
.btn-blue    { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: #1a6dbf; color: var(--white); text-decoration: none; }
.btn-green   { background: var(--green); color: var(--white); }
.btn-green:hover { background: #054d39; color: var(--white); text-decoration: none; }
.btn-light   { background: var(--gray); color: var(--muted); border: 1px solid var(--border); }
.btn-light:hover { background: #e2e8f0; text-decoration: none; }
.btn-full    { width: 100%; text-align: center; padding: 12px; }
.btn-sm      { padding: 5px 12px; font-size: 11px; }

/* ── JOB CARDS ── */
.jcard {
  background: var(--white);
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.jcard:hover {
  box-shadow: 0 2px 8px rgba(24,95,165,0.08);
  border-color: #93C5FD;
  transform: translateY(-1px);
}

.jtitle { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; font-family: 'Plus Jakarta Sans', sans-serif; }
.jcomp  { font-size: 12px; color: var(--blue); font-weight: 500; margin-bottom: 3px; }
.jmeta  { font-size: 11px; color: var(--muted); }
.jright { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }

.match-badge {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 0px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  min-width: 60px;
  text-align: center;
}

/* ── TAGS ── */
.tags { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 8px; }
.tag  { background: #E6F1FB; color: var(--blue); font-size: 10px; padding: 3px 9px; border-radius: 0px; font-weight: 500; }
.tag-g { background: #E1F5EE; color: var(--green); }
.tag-a { background: #FAEEDA; color: var(--amber); }
.tag-r { background: #FEE2E2; color: var(--red); }

/* ── BADGES ── */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 0px; font-size: 10px; font-weight: 700; white-space: nowrap; }
.bg    { background: #E1F5EE; color: var(--green); }
.bb    { background: #E6F1FB; color: var(--blue); }
.ba    { background: #FAEEDA; color: var(--amber); }
.bprem { background: #FAEEDA; color: var(--amber); border: 1px solid #d6b656; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ── FORMS ── */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 0px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(24,95,165,0.08);
}

/* ── SEARCH BAR ── */
.search-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.search-bar input,
.search-bar select {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 0px;
  font-size: 13px;
  flex: 1;
  min-width: 140px;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  transition: border-color 0.2s;
}

.search-bar input:focus,
.search-bar select:focus {
  outline: none;
  border-color: var(--blue);
}

/* ── TABLES ── */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  font-size: 13px;
}

th {
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: #F8FAFC; }
tr:hover td { background: #EFF6FF; }

/* ── INFO BOX ── */
.info-box {
  background: #EFF6FF;
  border-radius: 0px;
  padding: 12px 16px;
  margin-bottom: 16px;
  border-left: 3px solid var(--blue);
}

.info-box h5 { font-size: 12px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.info-box p  { font-size: 11px; color: #0C447C; line-height: 1.5; }

/* ── ROADMAP STEPS ── */
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px; top: 32px;
  width: 2px;
  height: calc(100% - 8px);
  background: var(--border);
}

.sdot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  z-index: 1;
}

.sdone { background: #E1F5EE; color: var(--green); border: 2px solid var(--green); }
.sact  { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.stodo { background: var(--white); color: var(--muted); border: 2px solid var(--border); }

.sinfo h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; font-family: 'Plus Jakarta Sans', sans-serif; }
.sinfo p  { font-size: 12px; color: var(--muted); line-height: 1.5; }
.step-meta { display: flex; gap: 8px; margin-top: 6px; flex-wrap: wrap; align-items: center; }

/* ── PLAN CARDS ── */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }

.plan-card {
  border: 1.5px solid var(--border);
  border-radius: 0px;
  padding: 24px;
  position: relative;
  background: var(--white);
}

.plan-card.rec {
  border-color: var(--blue);
  box-shadow: 0 2px 8px rgba(24,95,165,0.08);
}

.rec-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  padding: 4px 14px;
  border-radius: 0px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.plan-name  { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
.plan-price { font-size: 32px; font-weight: 800; color: var(--blue); margin-bottom: 5px; font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; }
.plan-price span { font-size: 13px; color: var(--muted); font-weight: 400; }
.plan-desc  { font-size: 12px; color: var(--muted); margin-bottom: 16px; line-height: 1.5; }

.feat-list { list-style: none; margin-bottom: 18px; }
.feat-list li { font-size: 12px; padding: 6px 0; border-bottom: 1px solid #f8f8f8; display: flex; gap: 8px; align-items: center; color: var(--text); }

/* ── TRAINING CARDS ── */
.scard {
  background: var(--white);
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.scard:hover { box-shadow: 0 2px 8px rgba(24,95,165,0.08); border-color: #93C5FD; }

.stitle   { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; font-family: 'Plus Jakarta Sans', sans-serif; }
.spartner { font-size: 12px; color: var(--blue); font-weight: 500; margin-bottom: 6px; }
.smeta    { display: flex; gap: 12px; flex-wrap: wrap; font-size: 11px; color: var(--muted); }
.sright   { text-align: right; display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.sprice   { font-size: 18px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.sseats   { font-size: 11px; color: var(--green); font-weight: 600; }
.seats-bg { background: var(--border); border-radius: 0px; height: 5px; width: 80px; }
.seats-fill { border-radius: 0px; height: 5px; background: var(--green); }
.sf-amber { background: var(--gold); }
.sf-red   { background: var(--red); }

/* ── CANDIDATE CARDS ── */
.cand-card {
  background: var(--white);
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.cand-card:hover { box-shadow: 0 2px 8px rgba(24,95,165,0.08); }

.cname { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 3px; font-family: 'Plus Jakarta Sans', sans-serif; }
.cdeg  { font-size: 12px; color: var(--blue); font-weight: 500; margin-bottom: 4px; }
.cgpa  { font-size: 11px; color: var(--muted); }

/* ── SECTION HEADER ROW ── */
.sec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sec-title { font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── COMMISSION BOX ── */
.comm-box {
  background: linear-gradient(135deg, #E1F5EE, var(--white));
  border: 1px solid var(--green);
  border-radius: 0px;
  padding: 16px;
  margin-bottom: 16px;
}

.comm-box h4 { font-size: 13px; font-weight: 700; color: var(--green); margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; }
.comm-box p  { font-size: 12px; color: #0F6E56; line-height: 1.6; }

/* ── PAYPAL NOTE ── */
.paypal-note {
  background: #f8f9fa;
  border-radius: 0px;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 16px;
}

/* ── UTILITY ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.text-muted { color: var(--muted); font-size: 12px; }
.text-center { text-align: center; }
.strong { font-weight: 700; }
