/*
Theme Name:  Jobdex
Theme URI:   https://jobdex.in
Author:      Jobdex Team
Author URI:  https://jobdex.in
Description: Custom theme for Jobdex.in — India's #1 Job, Scheme & Education Portal
Version:     1.0
License:     GNU General Public License v2 or later
Text Domain: jobdex
Tags:        custom-menu, full-width-template, custom-colors
*/
/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&family=Nunito:wght@700;800;900&family=Fira+Code:wght@400;500&display=swap");

/* ── FONTS ──
   Display/Headings : Nunito (rounded, friendly, very readable)
   Body             : Nunito Sans (clean, spacious, excellent legibility)
   Mono             : Fira Code (clear, distinct characters)
── */
:root {
  --brand:        #E8500A;
  --brand-h:      #FF6B1A;
  --brand-dim:    rgba(232,80,10,0.09);
  --brand-border: rgba(232,80,10,0.22);
  --gold:         #C98B00;
  --gold-dim:     rgba(201,139,0,0.10);
  --gold-border:  rgba(201,139,0,0.25);
  --green:        #0A9967;
  --green-dim:    rgba(10,153,103,0.10);
  --green-border: rgba(10,153,103,0.25);
  --blue:         #1B6FE8;
  --blue-dim:     rgba(27,111,232,0.09);
  --blue-border:  rgba(27,111,232,0.22);
  --purple:       #7B35ED;
  --purple-dim:   rgba(123,53,237,0.09);
  --purple-border:rgba(123,53,237,0.22);
  --red:          #D43B3B;

  /* Light surface */
  --bg:           #FFFFFF;
  --bg-2:         #F8F6F2;
  --bg-3:         #EEE9E1;
  --surface:      #FFFFFF;
  --surface-2:    #FAF8F4;
  --border:       #E6E1D8;
  --border-2:     #D8D0C4;
  --text:         #18140E;
  --text-2:       #3C3528;
  --text-3:       #6A6054;
  --text-muted:   #9E9488;

  --shadow-xs:    0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:    0 2px 6px rgba(0,0,0,0.06);
  --shadow-md:    0 6px 20px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.10);
  --shadow-brand: 0 6px 20px rgba(232,80,10,0.22);
  --shadow-green: 0 6px 20px rgba(10,153,103,0.20);
  --shadow-blue:  0 6px 20px rgba(27,111,232,0.20);

  --nav-bg:       rgba(255,255,255,0.95);
  --nav-border:   #E6E1D8;

  --font-display: 'Nunito', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;
  --font-mono:    'Fira Code', monospace;
  --t:            0.2s ease;
  --radius:       12px;
}

[data-theme="dark"] {
  --bg:           #0E1118;
  --bg-2:         #151B27;
  --bg-3:         #1C2336;
  --surface:      #192030;
  --surface-2:    #1E2838;
  --border:       rgba(255,255,255,0.08);
  --border-2:     rgba(255,255,255,0.13);
  --text:         #F2EEE8;
  --text-2:       #C5BFB5;
  --text-3:       #888280;
  --text-muted:   #5A5650;
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.3);
  --shadow-sm:    0 2px 6px rgba(0,0,0,0.3);
  --shadow-md:    0 6px 20px rgba(0,0,0,0.4);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.5);
  --shadow-brand: 0 6px 20px rgba(232,80,10,0.30);
  --shadow-green: 0 6px 20px rgba(10,153,103,0.25);
  --nav-bg:       rgba(14,17,24,0.96);
  --nav-border:   rgba(255,255,255,0.07);
  --brand-dim:    rgba(232,80,10,0.15);
  --green-dim:    rgba(10,153,103,0.14);
  --blue-dim:     rgba(27,111,232,0.13);
  --gold-dim:     rgba(201,139,0,0.14);
  --purple-dim:   rgba(123,53,237,0.14);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);font-family:var(--font-body);line-height:1.65;overflow-x:hidden;transition:background var(--t),color var(--t)}
a{text-decoration:none;color:inherit}
button{font-family:var(--font-body);cursor:pointer;border:none;background:none}
ul{list-style:none}
img{max-width:100%;display:block}
input,select,textarea{font-family:var(--font-body)}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 22px}

/* top-ribbon removed */

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  height: 66px;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%; gap: 0.8rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--text); flex-shrink: 0;
  letter-spacing: -0.03em;
}
.nav-logo em { color: var(--brand); font-style: normal; }

.nav-links {
  display: flex; align-items: center;
  gap: 0.1rem; flex: 1; justify-content: center;
}
.nav-links a {
  font-size: 0.81rem; font-weight: 700;
  color: var(--text-3);
  padding: 0.38rem 0.65rem;
  border-radius: 8px;
  transition: all var(--t); white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand); background: var(--brand-dim); }

.nav-right { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

/* Theme toggle */
.theme-toggle {
  width: 42px; height: 24px;
  background: var(--border-2);
  border-radius: 12px; position: relative;
  cursor: pointer; border: none;
  transition: background var(--t); flex-shrink: 0;
}
.theme-toggle::after {
  content: ''; position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #fff; border-radius: 50%;
  transition: transform 0.26s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.16);
}
[data-theme="dark"] .theme-toggle { background: var(--brand); }
[data-theme="dark"] .theme-toggle::after { transform: translateX(18px); }
.ti { font-size: 0.68rem; position: absolute; top: 50%; transform: translateY(-50%); pointer-events: none; transition: opacity 0.2s; }
.ti.sun { right: 5px; }
.ti.moon { left: 5px; }
[data-theme="light"] .ti.moon { opacity: 0; }
[data-theme="dark"] .ti.sun { opacity: 0; }

.btn-login {
  font-size: 0.81rem; font-weight: 700;
  color: var(--text-2);
  border: 1.5px solid var(--border-2);
  padding: 0.42rem 1.05rem; border-radius: 8px;
  background: var(--surface); transition: all var(--t); white-space: nowrap;
}
.btn-login:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }

.btn-register {
  font-size: 0.81rem; font-weight: 800;
  color: #fff; background: var(--brand);
  padding: 0.44rem 1.15rem; border-radius: 8px;
  transition: all var(--t); white-space: nowrap;
  box-shadow: var(--shadow-brand);
}
.btn-register:hover { background: var(--brand-h); transform: translateY(-1px); }

.btn-post {
  font-size: 0.81rem; font-weight: 800;
  color: var(--brand);
  border: 1.5px solid var(--brand-border);
  padding: 0.42rem 1.05rem; border-radius: 8px;
  background: var(--brand-dim); transition: all var(--t); white-space: nowrap;
}
.btn-post:hover { background: var(--brand); color: #fff; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; cursor: pointer; }
.hamburger span { display: block; width: 21px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.24s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 66px; left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  z-index: 899; padding: 1rem 22px 1.5rem;
  flex-direction: column; gap: 0.35rem;
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.2s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.92rem; font-weight: 700; color: var(--text-2); padding: 0.6rem 0.8rem; border-radius: 8px; transition: all var(--t); }
.mobile-menu a:hover { background: var(--brand-dim); color: var(--brand); }
.mobile-menu .ml { height: 1px; background: var(--border); margin: 0.4rem 0; }
@keyframes slideDown { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  padding: 72px 0 60px;
  background: var(--bg);
  position: relative; overflow: hidden;
}
.hero-glow-1, .hero-glow-2 {
  position: absolute; border-radius: 50%;
  pointer-events: none; filter: blur(90px); z-index: 0;
}
.hero-glow-1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(232,80,10,0.08), transparent 70%);
  top: -150px; right: -100px;
  animation: gfloat 9s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,153,103,0.07), transparent 70%);
  bottom: -80px; left: -80px;
  animation: gfloat 11s ease-in-out infinite reverse;
}
@keyframes gfloat { 0%,100%{transform:translate(0,0)}50%{transform:translate(16px,-16px)} }

.hero-inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--brand-dim); border: 1.5px solid var(--brand-border);
  border-radius: 100px; padding: 0.34rem 1rem;
  font-size: 0.72rem; font-family: var(--font-mono); font-weight: 600;
  color: var(--brand); margin-bottom: 1.4rem;
  animation: fadeUp 0.5s ease both;
}
.pulse { width: 7px; height: 7px; background: var(--brand); border-radius: 50%; flex-shrink: 0; animation: pr 2s ease-in-out infinite; }
@keyframes pr { 0%,100%{box-shadow:0 0 0 0 rgba(232,80,10,0.4)} 50%{box-shadow:0 0 0 5px rgba(232,80,10,0)} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5.5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 1rem;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero-title .hl { color: var(--brand); }
.hero-title .sm {
  display: block; font-size: 0.52em;
  font-weight: 700; color: var(--text-3);
  font-family: var(--font-body); margin-top: 0.2em;
  letter-spacing: 0;
}

.hero-desc {
  font-size: 1rem; color: var(--text-2);
  max-width: 540px; margin: 0 auto 2.2rem; line-height: 1.78;
  animation: fadeUp 0.5s 0.14s ease both;
}

/* Search */
.hero-search {
  display: flex; align-items: center;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  max-width: 700px; margin: 0 auto 1.3rem;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.5s 0.2s ease both;
  transition: border-color var(--t), box-shadow var(--t);
}
.hero-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(232,80,10,0.07), var(--shadow-lg);
}
.hs-cat {
  display: flex; align-items: center;
  padding: 0 0.7rem 0 1.1rem;
  border-right: 1.5px solid var(--border); height: 52px; flex-shrink: 0;
}
.hs-cat select { background: none; border: none; outline: none; font-size: 0.83rem; font-weight: 800; color: var(--brand); cursor: pointer; font-family: var(--font-body); }
.hs-cat select option { background: var(--surface); color: var(--text); }
.hs-wrap { flex: 1; display: flex; align-items: center; padding: 0 0.9rem; gap: 0.4rem; }
.hs-wrap svg { color: var(--text-muted); flex-shrink: 0; }
.hs-wrap input { flex: 1; background: none; border: none; outline: none; font-size: 0.94rem; font-family: var(--font-body); color: var(--text); padding: 0.5rem 0; }
.hs-wrap input::placeholder { color: var(--text-muted); }
.hs-btn { background: var(--brand); color: #fff; font-weight: 800; font-size: 0.88rem; height: 52px; padding: 0 1.7rem; flex-shrink: 0; transition: background var(--t); }
.hs-btn:hover { background: var(--brand-h); }

.hero-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem; animation: fadeUp 0.5s 0.26s ease both; }
.chip { font-size: 0.73rem; font-weight: 700; color: var(--text-3); background: var(--surface-2); border: 1.5px solid var(--border); border-radius: 100px; padding: 0.27rem 0.78rem; cursor: pointer; transition: all var(--t); }
.chip:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: flex; flex-wrap: wrap; justify-content: space-around; }
.stat-item { flex: 1; min-width: 120px; text-align: center; padding: 1.5rem 0.5rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--brand); display: block; line-height: 1; }
.stat-label { font-size: 0.69rem; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; margin-top: 0.28rem; display: block; }

/* ═══════════════════════════════════════════
   TICKER
═══════════════════════════════════════════ */
.ticker-bar {
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  padding: 0; overflow: hidden; height: 38px; display: flex; align-items: center;
}
.ticker-inner {
  display: flex; align-items: center;
  width: 100%; height: 100%; overflow: hidden;
}
.ticker-label {
  font-size: 0.68rem; font-family: var(--font-mono); font-weight: 700;
  color: #fff; background: var(--brand); padding: 0 1rem;
  height: 100%; display: flex; align-items: center;
  white-space: nowrap; flex-shrink: 0; z-index: 2;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-right: 3px solid rgba(255,255,255,0.2);
}
.ticker-overflow {
  flex: 1; overflow: hidden; height: 100%;
  display: flex; align-items: center;
  position: relative;
}
/* fade-out on right edge */
.ticker-overflow::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0; width: 60px;
  background: linear-gradient(to right, transparent, var(--bg-2));
  pointer-events: none; z-index: 1;
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: tickerScroll 32s linear infinite;
  will-change: transform;
}
.ticker-item {
  font-size: 0.77rem; font-weight: 700; color: var(--text-2);
  cursor: pointer; transition: color var(--t);
  padding: 0 2rem; flex-shrink: 0;
}
.ticker-item:hover { color: var(--brand); }
.ticker-item .ti-badge {
  font-size: 0.62rem; font-family: var(--font-mono);
  background: var(--brand-dim); color: var(--brand);
  border-radius: 4px; padding: 0.1rem 0.38rem; margin-right: 0.35rem;
  display: inline-block; vertical-align: middle;
}
.ticker-item .ti-badge.green { background: var(--green-dim); color: var(--green); }
.ticker-item .ti-badge.blue { background: var(--blue-dim); color: var(--blue); }
.ticker-item .ti-badge.gold { background: var(--gold-dim); color: var(--gold); }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
section { padding: 68px 0; }
.section-alt { background: var(--bg-2); }
.section-divider { height: 1px; background: var(--border); }

.sec-label { font-family: var(--font-mono); font-size: 0.68rem; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 0.42rem; }
.sec-title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--text); line-height: 1.15; letter-spacing: -0.02em; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.8rem; gap: 1rem; flex-wrap: wrap; }
.view-all { font-size: 0.79rem; font-weight: 700; font-family: var(--font-mono); color: var(--brand); border: 1.5px solid var(--brand-border); padding: 0.4rem 1rem; border-radius: 8px; white-space: nowrap; transition: all var(--t); }
.view-all:hover { background: var(--brand-dim); }

/* Badges */
.badge { font-size: 0.62rem; font-family: var(--font-mono); font-weight: 700; padding: 0.2rem 0.52rem; border-radius: 5px; text-transform: uppercase; letter-spacing: 0.05em; border: 1.5px solid transparent; line-height: 1; }
.b-govt { background: rgba(201,139,0,0.10); color: #8A6800; border-color: rgba(201,139,0,0.25); }
.b-pvt  { background: var(--blue-dim); color: var(--blue); border-color: var(--blue-border); }
.b-new  { background: var(--brand-dim); color: var(--brand); border-color: var(--brand-border); }
.b-hot  { background: rgba(212,59,59,0.09); color: var(--red); border-color: rgba(212,59,59,0.22); }
.b-remote { background: var(--green-dim); color: var(--green); border-color: var(--green-border); }
.b-hybrid { background: var(--purple-dim); color: var(--purple); border-color: var(--purple-border); }
.b-free { background: var(--green-dim); color: var(--green); border-color: var(--green-border); }
.b-paid { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-border); }
[data-theme="dark"] .b-govt { color: #F0C040; }
[data-theme="dark"] .b-paid { color: #E8C040; }

/* Filter tabs */
.ftabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.ftab { font-size: 0.79rem; font-weight: 700; padding: 0.4rem 0.92rem; border-radius: 8px; border: 1.5px solid var(--border); color: var(--text-3); background: var(--surface); transition: all var(--t); }
.ftab:hover, .ftab.active { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }

/* ═══════════════════════════════════════════
   GOVT JOB CARDS
═══════════════════════════════════════════ */
.jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

.jc {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.3rem;
  cursor: pointer; transition: all var(--t);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.jc:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.jc::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brand); border-radius: 3px 0 0 3px; transform: scaleY(0); transform-origin: bottom; transition: transform 0.22s; }
.jc:hover::before { transform: scaleY(1); }

.jc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 0.9rem; gap: 0.5rem; }
.jc-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.jc-badges { display: flex; gap: 0.3rem; flex-wrap: wrap; justify-content: flex-end; }

.jc-title { font-family: var(--font-display); font-size: 0.94rem; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 0.18rem; letter-spacing: -0.01em; }
.jc-org { font-size: 0.75rem; color: var(--text-3); font-weight: 600; margin-bottom: 0.85rem; }
.jc-meta { display: flex; flex-wrap: wrap; gap: 0.45rem 0.85rem; margin-bottom: 1rem; flex: 1; }
.jc-m { display: flex; align-items: center; gap: 0.25rem; font-size: 0.73rem; color: var(--text-3); font-weight: 600; }
.jc-ft { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; border-top: 1px solid var(--border); margin-top: auto; gap: 0.5rem; }
.jc-date { font-size: 0.7rem; color: var(--text-muted); font-family: var(--font-mono); }
.jc-date b { color: var(--red); }
.btn-apply { font-size: 0.76rem; font-weight: 800; padding: 0.37rem 0.92rem; border-radius: 7px; border: 1.5px solid var(--brand-border); color: var(--brand); background: none; transition: all var(--t); white-space: nowrap; }
.btn-apply:hover { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ═══════════════════════════════════════════
   PRIVATE JOBS SECTION
═══════════════════════════════════════════ */
.pvt-jobs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-bottom: 1.8rem; }

.pjc {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.4rem;
  cursor: pointer; transition: all var(--t);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pjc:hover { border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-3px); }
.pjc::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); border-radius: 3px 0 0 3px; transform: scaleY(0); transform-origin: bottom; transition: transform 0.22s; }
.pjc:hover::before { transform: scaleY(1); }

.pjc-top { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 0.9rem; }
.pjc-logo {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--bg-2); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.pjc-info { flex: 1; min-width: 0; }
.pjc-company { font-size: 0.75rem; font-weight: 700; color: var(--text-3); margin-bottom: 0.1rem; display: flex; align-items: center; gap: 0.3rem; }
.verified-tick { color: var(--blue); font-size: 0.75rem; }
.pjc-title { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--text); line-height: 1.3; letter-spacing: -0.01em; }

.pjc-salary {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--green-dim); border: 1px solid var(--green-border);
  color: var(--green); font-size: 0.76rem; font-weight: 800;
  padding: 0.3rem 0.7rem; border-radius: 7px; margin-bottom: 0.75rem;
  font-family: var(--font-mono);
}

.pjc-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 0.9rem; }

.pjc-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; margin-bottom: 1rem; flex: 1; }
.pjc-m { font-size: 0.72rem; color: var(--text-3); font-weight: 600; display: flex; align-items: center; gap: 0.22rem; }

.pjc-ft { display: flex; align-items: center; justify-content: space-between; padding-top: 0.9rem; border-top: 1px solid var(--border); margin-top: auto; }
.pjc-posted { font-size: 0.69rem; color: var(--text-muted); font-family: var(--font-mono); }
.btn-quick-apply { font-size: 0.76rem; font-weight: 800; padding: 0.37rem 0.92rem; border-radius: 7px; background: var(--blue-dim); border: 1.5px solid var(--blue-border); color: var(--blue); transition: all var(--t); white-space: nowrap; }
.btn-quick-apply:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Featured private job banner */
.pvt-featured-banner {
  background: linear-gradient(135deg, var(--blue-dim), var(--surface));
  border: 1.5px solid var(--blue-border);
  border-radius: var(--radius); padding: 1.4rem 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.pfb-left { display: flex; align-items: center; gap: 1rem; }
.pfb-logo { width: 52px; height: 52px; border-radius: 12px; background: var(--bg-2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.pfb-badge { font-size: 0.6rem; font-family: var(--font-mono); font-weight: 700; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 4px; padding: 0.15rem 0.45rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.35rem; display: inline-block; }
.pfb-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.pfb-sub { font-size: 0.8rem; color: var(--text-3); font-weight: 600; margin-top: 0.1rem; }
.pfb-right { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.pfb-stat { text-align: center; }
.pfb-stat-num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--blue); display: block; }
.pfb-stat-lbl { font-size: 0.68rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.btn-view-all-pvt { background: var(--blue); color: #fff; font-weight: 800; font-size: 0.84rem; padding: 0.6rem 1.4rem; border-radius: 9px; box-shadow: var(--shadow-blue); transition: all var(--t); }
.btn-view-all-pvt:hover { opacity: 0.88; transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   AI SECTION
═══════════════════════════════════════════ */
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.ai-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 2rem; transition: all var(--t);
}
.ai-card:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); }
.ai-card.feat { border-color: var(--brand); background: linear-gradient(145deg, var(--surface), var(--brand-dim)); }

.ai-pill { display: inline-flex; align-items: center; gap: 0.35rem; font-family: var(--font-mono); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); background: var(--brand-dim); border: 1px solid var(--brand-border); padding: 0.26rem 0.68rem; border-radius: 100px; margin-bottom: 1rem; }
.ai-icon { width: 46px; height: 46px; background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 0.9rem; }
.ai-card.feat .ai-icon { background: var(--brand-dim); border-color: var(--brand-border); }
.ai-card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: 0.45rem; letter-spacing: -0.02em; }
.ai-card p { font-size: 0.83rem; color: var(--text-3); line-height: 1.72; margin-bottom: 1.2rem; }

.chat-demo { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 0.85rem; margin-bottom: 1.1rem; }
.cb { font-size: 0.77rem; padding: 0.46rem 0.7rem; border-radius: 9px; margin-bottom: 0.4rem; max-width: 90%; line-height: 1.5; }
.cb:last-child { margin-bottom: 0; }
.cb-u { background: var(--brand-dim); color: var(--text); margin-left: auto; border: 1px solid var(--brand-border); }
.cb-a { background: var(--surface); color: var(--text-2); border: 1px solid var(--border); }
.cb-a strong { color: var(--green); }

.match-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-bottom: 0.75rem; }
.ms {
  background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: 8px; color: var(--text); font-size: 0.8rem;
  font-family: var(--font-body); padding: 0.56rem 2rem 0.56rem 0.8rem;
  outline: none; transition: border-color var(--t); cursor: pointer; width: 100%;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239E9488' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 9px center;
}
.ms:focus { border-color: var(--brand); }
.ms option { background: var(--surface); color: var(--text); }
.btn-match { width: 100%; background: var(--brand); color: #fff; font-weight: 800; font-size: 0.87rem; padding: 0.7rem 1rem; border-radius: 9px; transition: all var(--t); box-shadow: var(--shadow-brand); margin-bottom: 0.65rem; }
.btn-match:hover { background: var(--brand-h); transform: translateY(-1px); }
.prem-hint { display: flex; align-items: center; gap: 0.42rem; font-size: 0.72rem; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 7px; padding: 0.48rem 0.75rem; }
[data-theme="dark"] .prem-hint { color: #E8C040; }

/* ═══════════════════════════════════════════
   SCHEMES
═══════════════════════════════════════════ */
.scheme-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 1rem; }
.sc { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.4rem; cursor: pointer; transition: all var(--t); display: flex; flex-direction: column; }
.sc:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(201,139,0,0.12); transform: translateY(-2px); }
.sc.sc-feat { background: linear-gradient(145deg, var(--brand-dim), var(--surface)); border-color: var(--brand-border); }
.sc.sc-feat:hover { border-color: var(--brand); }
.sc-dept { font-size: 0.66rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); margin-bottom: 0.5rem; }
.sc-title { font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.3; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.sc.sc-feat .sc-title { font-size: 1.15rem; }
.sc-desc { font-size: 0.79rem; color: var(--text-3); line-height: 1.65; margin-bottom: 0.9rem; flex: 1; }
.sc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.sc-tag { font-size: 0.67rem; color: var(--text-muted); background: var(--bg-3); border-radius: 5px; padding: 0.2rem 0.5rem; font-family: var(--font-mono); }
.sc-arr { color: var(--brand); font-size: 1rem; transition: transform 0.2s; }
.sc:hover .sc-arr { transform: translate(3px,-3px); }

/* ═══════════════════════════════════════════
   DIRECTORY
═══════════════════════════════════════════ */
.dir-search {
  display: flex; max-width: 540px;
  background: var(--surface); border: 2px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 1.8rem;
  transition: border-color var(--t);
}
.dir-search:focus-within { border-color: var(--green); }
.dir-search input { flex: 1; background: none; border: none; outline: none; font-size: 0.9rem; font-family: var(--font-body); color: var(--text); padding: 0.72rem 1rem; }
.dir-search input::placeholder { color: var(--text-muted); }
.dir-search button { background: var(--green); color: #fff; font-weight: 800; font-size: 0.83rem; padding: 0 1.3rem; transition: background var(--t); }
.dir-search button:hover { background: #088B5E; }

.dir-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.dc {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  cursor: pointer; transition: all var(--t); position: relative;
}
.dc:hover { border-color: var(--green); box-shadow: var(--shadow-green); transform: translateY(-2px); }
.dc.spon { border-color: rgba(201,139,0,0.36); background: linear-gradient(145deg, var(--gold-dim), var(--surface)); }
.sp-tag { position: absolute; top: -1px; right: 12px; background: var(--gold); color: #fff; font-family: var(--font-mono); font-size: 0.55rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 0 0 6px 6px; text-transform: uppercase; letter-spacing: 0.07em; }
[data-theme="dark"] .sp-tag { color: #1a1200; }
.dc-ico { width: 42px; height: 42px; border-radius: 10px; background: var(--bg-2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 0.7rem; }
.dc-name { font-weight: 800; font-size: 0.88rem; color: var(--text); margin-bottom: 0.12rem; }
.dc-addr { font-size: 0.72rem; color: var(--text-3); font-weight: 600; margin-bottom: 0.55rem; }
.dc-stars { color: var(--gold); font-size: 0.77rem; margin-bottom: 0.5rem; }
[data-theme="dark"] .dc-stars { color: #E8C040; }
.dc-tags { display: flex; flex-wrap: wrap; gap: 0.28rem; margin-bottom: 0.6rem; }
.dc-tag { font-size: 0.63rem; font-family: var(--font-mono); background: var(--bg-3); color: var(--text-3); border: 1px solid var(--border); border-radius: 4px; padding: 0.15rem 0.4rem; }
.dc-dist { font-size: 0.72rem; color: var(--green); font-weight: 800; }
.dir-note { font-size: 0.73rem; color: var(--text-muted); margin-top: 1.3rem; font-family: var(--font-mono); }
.dir-note a { color: var(--brand); text-decoration: underline; }

/* ═══════════════════════════════════════════
   EDUCATION HUB
═══════════════════════════════════════════ */
.edu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.ec { background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all var(--t); }
.ec:hover { border-color: var(--brand); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.ec-thumb { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 2.3rem; position: relative; }
.ec-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, var(--surface)); }
.ec-body { padding: 1rem 1.1rem 1.2rem; }
.ec-cat { font-size: 0.64rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); margin-bottom: 0.37rem; }
.ec-title { font-weight: 800; font-size: 0.88rem; line-height: 1.35; color: var(--text); margin-bottom: 0.72rem; }
.ec-ft { display: flex; align-items: center; justify-content: space-between; }
.ec-info { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; }
.p-free { font-family: var(--font-mono); font-size: 0.77rem; font-weight: 700; color: var(--green); }
.p-paid { font-family: var(--font-mono); font-size: 0.77rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 0.28rem; }
.lock-lbl { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); border-radius: 4px; padding: 0.1rem 0.3rem; font-size: 0.58rem; font-family: var(--font-mono); }
[data-theme="dark"] .lock-lbl { color: #E8C040; }

/* ═══════════════════════════════════════════
   RESULTS SECTION
═══════════════════════════════════════════ */
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0.9rem; }
.rc {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  cursor: pointer; transition: all var(--t);
  display: flex; flex-direction: column;
}
.rc:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(201,139,0,0.12); transform: translateY(-2px); }
.rc-type { font-size: 0.64rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.rc-type.result { color: var(--green); }
.rc-type.admit { color: var(--blue); }
.rc-type.key { color: var(--purple); }
.rc-type.cutoff { color: var(--gold); }
[data-theme="dark"] .rc-type.cutoff { color: #E8C040; }
.rc-title { font-weight: 800; font-size: 0.88rem; color: var(--text); line-height: 1.3; margin-bottom: 0.5rem; font-family: var(--font-display); letter-spacing: -0.01em; }
.rc-org { font-size: 0.72rem; color: var(--text-3); font-weight: 600; margin-bottom: 0.8rem; flex: 1; }
.rc-ft { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 0.8rem; margin-top: auto; }
.rc-date { font-size: 0.67rem; font-family: var(--font-mono); color: var(--text-muted); }
.btn-dl { font-size: 0.73rem; font-weight: 800; color: var(--blue); border: 1.5px solid var(--blue-border); border-radius: 7px; padding: 0.3rem 0.75rem; background: var(--blue-dim); transition: all var(--t); }
.btn-dl:hover { background: var(--blue); color: #fff; }

/* ═══════════════════════════════════════════
   PRIVATE JOB POST MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.52); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.24s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 20px; width: 100%; max-width: 600px;
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: scale(0.95) translateY(10px); transition: transform 0.24s ease;
  max-height: 92vh; overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-overlay.open .modal.modal-auth { max-width: 420px; }

/* AUTH modal */
.modal-hd { padding: 1.5rem 1.7rem 0; display: flex; align-items: center; justify-content: space-between; }
.modal-logo { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.modal-logo em { color: var(--brand); font-style: normal; }
.modal-close { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-2); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; color: var(--text-3); cursor: pointer; transition: all var(--t); }
.modal-close:hover { background: var(--brand-dim); color: var(--brand); border-color: var(--brand-border); }

.modal-tabs { display: flex; gap: 0.45rem; padding: 1.1rem 1.7rem 0; }
.modal-tab { flex: 1; font-size: 0.84rem; font-weight: 800; padding: 0.58rem 0.5rem; border-radius: 9px; border: none; cursor: pointer; transition: all var(--t); color: var(--text-3); background: var(--bg-2); font-family: var(--font-body); }
.modal-tab.active { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }

.modal-body { padding: 1.3rem 1.7rem 1.7rem; }
.modal-panel { display: none; }
.modal-panel.active { display: block; }

.fg { margin-bottom: 0.95rem; }
.fl { display: block; font-size: 0.76rem; font-weight: 800; color: var(--text-2); margin-bottom: 0.35rem; }
.fi {
  width: 100%; background: var(--bg-2); border: 1.5px solid var(--border);
  border-radius: 9px; color: var(--text); font-family: var(--font-body);
  font-size: 0.88rem; padding: 0.62rem 0.92rem; outline: none;
  transition: border-color var(--t);
}
.fi:focus { border-color: var(--brand); }
.fi::placeholder { color: var(--text-muted); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }

.divider-or { display: flex; align-items: center; gap: 0.65rem; margin: 1rem 0; }
.divider-or::before,.divider-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.divider-or span { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }

.btn-google { width: 100%; background: var(--surface); border: 1.5px solid var(--border); border-radius: 9px; padding: 0.62rem 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.84rem; font-weight: 700; color: var(--text-2); transition: all var(--t); cursor: pointer; font-family: var(--font-body); }
.btn-google:hover { border-color: var(--brand); background: var(--brand-dim); }
.btn-submit { width: 100%; background: var(--brand); color: #fff; font-weight: 800; font-size: 0.9rem; padding: 0.72rem 1rem; border-radius: 9px; transition: all var(--t); box-shadow: var(--shadow-brand); font-family: var(--font-body); cursor: pointer; border: none; margin-top: 0.2rem; }
.btn-submit:hover { background: var(--brand-h); transform: translateY(-1px); }
.form-note { font-size: 0.74rem; color: var(--text-3); text-align: center; margin-top: 0.9rem; }
.form-note a { color: var(--brand); font-weight: 700; }
.form-note a:hover { text-decoration: underline; }

/* Private Job Detail Modal */
.pjd-header {
  background: linear-gradient(135deg, var(--blue-dim), var(--surface));
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1.7rem;
}
.pjd-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1rem; }
.pjd-logo { width: 60px; height: 60px; border-radius: 14px; background: var(--surface); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.pjd-co-name { font-size: 0.8rem; font-weight: 700; color: var(--text-3); margin-bottom: 0.15rem; display: flex; align-items: center; gap: 0.3rem; }
.pjd-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.pjd-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; }
.pjd-mi { display: flex; align-items: center; gap: 0.3rem; font-size: 0.78rem; color: var(--text-3); font-weight: 600; }
.pjd-actions { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; }
.btn-apply-full { background: var(--blue); color: #fff; font-weight: 800; font-size: 0.9rem; padding: 0.68rem 1.8rem; border-radius: 10px; box-shadow: var(--shadow-blue); transition: all var(--t); }
.btn-apply-full:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-save { background: var(--surface); color: var(--text-2); font-weight: 700; font-size: 0.86rem; padding: 0.66rem 1.2rem; border-radius: 10px; border: 1.5px solid var(--border); transition: all var(--t); }
.btn-save:hover { border-color: var(--blue); color: var(--blue); }

.pjd-body { padding: 1.5rem 1.7rem; }
.pjd-section { margin-bottom: 1.5rem; }
.pjd-section h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 0.7rem; letter-spacing: -0.01em; }
.pjd-section p { font-size: 0.84rem; color: var(--text-2); line-height: 1.72; }
.pjd-section ul { padding-left: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.pjd-section ul li { font-size: 0.83rem; color: var(--text-2); display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.6; }
.pjd-section ul li::before { content: '→'; color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: 0.05rem; font-size: 0.8rem; }
.pjd-perks { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.perk-chip { background: var(--blue-dim); border: 1px solid var(--blue-border); color: var(--blue); font-size: 0.74rem; font-weight: 700; padding: 0.3rem 0.75rem; border-radius: 100px; }
.pjd-salary-box { background: var(--green-dim); border: 1.5px solid var(--green-border); border-radius: var(--radius); padding: 1rem 1.2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.pjd-salary-box .salary-num { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--green); letter-spacing: -0.02em; }
.pjd-salary-box .salary-note { font-size: 0.76rem; color: var(--text-3); font-weight: 600; }

/* ═══════════════════════════════════════════
   CTA + NEWSLETTER
═══════════════════════════════════════════ */
.nl-strip { background: var(--surface); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.7rem 2.2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.nl-text h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--text); margin-bottom: 0.25rem; letter-spacing: -0.02em; }
.nl-text p { font-size: 0.8rem; color: var(--text-3); font-weight: 600; }
.nl-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.nl-input { background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 9px; outline: none; font-size: 0.85rem; font-family: var(--font-body); color: var(--text); padding: 0.56rem 1rem; min-width: 200px; transition: border-color var(--t); }
.nl-input::placeholder { color: var(--text-muted); }
.nl-input:focus { border-color: var(--brand); }
.nl-btn { background: var(--brand); color: #fff; font-weight: 800; font-size: 0.85rem; padding: 0.56rem 1.3rem; border-radius: 9px; transition: all var(--t); border: none; cursor: pointer; }
.nl-btn:hover { background: var(--brand-h); }

.cta-banner {
  background: linear-gradient(128deg, var(--brand) 0%, var(--brand-h) 100%);
  border-radius: 18px; padding: 2.6rem 2.4rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; box-shadow: var(--shadow-brand); margin-bottom: 68px;
}
.cta-text h2 { font-family: var(--font-display); font-size: clamp(1.3rem,3vw,1.85rem); font-weight: 800; color: #fff; margin-bottom: 0.32rem; letter-spacing: -0.02em; }
.cta-text p { font-size: 0.88rem; color: rgba(255,255,255,0.82); font-weight: 600; }
.cta-btns { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.btn-wh { background: #fff; color: var(--brand); font-weight: 800; font-size: 0.88rem; padding: 0.7rem 1.65rem; border-radius: 9px; transition: all var(--t); border: none; cursor: pointer; }
.btn-wh:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.14); }
.btn-owh { background: rgba(255,255,255,0.13); color: #fff; font-weight: 800; font-size: 0.88rem; border: 2px solid rgba(255,255,255,0.45); padding: 0.68rem 1.65rem; border-radius: 9px; transition: all var(--t); cursor: pointer; }
.btn-owh:hover { background: rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 52px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.4rem; margin-bottom: 2.4rem; }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--text); display: block; margin-bottom: 0.65rem; letter-spacing: -0.03em; }
.footer-logo em { color: var(--brand); font-style: normal; }
.footer-desc { font-size: 0.81rem; color: var(--text-3); line-height: 1.75; max-width: 255px; margin-bottom: 1.1rem; font-weight: 600; }
.socials { display: flex; gap: 0.42rem; }
.soc { width: 32px; height: 32px; background: var(--surface); border: 1.5px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.74rem; font-weight: 700; color: var(--text-3); cursor: pointer; transition: all var(--t); text-decoration: none; }
.soc:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-dim); }
.fc h5 { font-size: 0.68rem; font-family: var(--font-mono); font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--brand); margin-bottom: 0.88rem; }
.fc ul { display: flex; flex-direction: column; gap: 0.42rem; }
.fc a { font-size: 0.81rem; color: var(--text-3); font-weight: 600; transition: color var(--t); }
.fc a:hover { color: var(--brand); }
.footer-bt { border-top: 1px solid var(--border); padding-top: 1.3rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.7rem; }
.footer-bt p { font-size: 0.73rem; color: var(--text-muted); font-weight: 600; }
.footer-bt .mono { font-family: var(--font-mono); }

/* Back to top */
.back-top { position: fixed; bottom: 22px; right: 20px; width: 40px; height: 40px; background: var(--brand); color: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 800; cursor: pointer; box-shadow: var(--shadow-brand); opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; z-index: 700; border: none; }
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--brand-h); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fu { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fu.in { opacity: 1; transform: translateY(0); }
.fu.d1{transition-delay:.06s}.fu.d2{transition-delay:.12s}.fu.d3{transition-delay:.18s}
.fu.d4{transition-delay:.24s}.fu.d5{transition-delay:.3s}.fu.d6{transition-delay:.36s}
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ═══════════════════════════════════════════
   RESPONSIVE — COMPLETE MOBILE FIX
═══════════════════════════════════════════ */

/* Prevent ANY horizontal overflow on all elements */
html, body { overflow-x: hidden; max-width: 100vw; }
* { min-width: 0; }

/* ── Tablet (≤1024px) ── */
@media(max-width:1024px){
  .jobs-grid,.pvt-jobs-grid { grid-template-columns: repeat(2,1fr); }
  .dir-grid { grid-template-columns: repeat(2,1fr); }
  .scheme-grid { grid-template-columns: 1fr 1fr; }
  .scheme-grid .sc.sc-feat { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .ai-grid { grid-template-columns: 1fr; }
}

/* ── Mobile (≤768px) ── */
@media(max-width:768px){
  /* Nav */
  .nav-links, .btn-post { display: none; }
  .hamburger { display: flex; }
  .btn-login, .btn-register { font-size: 0.76rem; padding: 0.38rem 0.8rem; }

  /* Hero */
  .hero { padding: 52px 0 44px; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); letter-spacing: -0.02em; }
  .hero-desc { font-size: 0.92rem; padding: 0 0.5rem; }
  .hs-cat { display: none; }
  .hero-search { margin: 0 0 1.2rem; }
  .hero-chips { gap: 0.35rem; }
  .chip { font-size: 0.7rem; padding: 0.24rem 0.7rem; }

  /* Stats */
  .stats-inner { display: grid; grid-template-columns: repeat(3,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.1rem 0.4rem; }
  .stat-num { font-size: 1.4rem; }

  /* Ticker */
  .ticker-item { padding: 0 1.4rem; font-size: 0.72rem; }

  /* Sections */
  section { padding: 44px 0; }
  .sec-head { margin-bottom: 1.3rem; }
  .sec-title { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  /* Jobs grids */
  .jobs-grid, .pvt-jobs-grid { grid-template-columns: 1fr; }
  .pvt-featured-banner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pfb-right { display: none; }

  /* AI */
  .ai-grid { grid-template-columns: 1fr; }
  .match-grid { grid-template-columns: 1fr 1fr; }

  /* Schemes */
  .scheme-grid { grid-template-columns: 1fr; }
  .scheme-grid .sc.sc-feat { grid-column: auto; }

  /* Directory */
  .dir-grid { grid-template-columns: 1fr 1fr; }

  /* Education */
  .edu-grid { grid-template-columns: 1fr 1fr; }

  /* Results */
  .results-grid { grid-template-columns: 1fr 1fr; }

  /* CTA */
  .cta-banner { text-align: center; justify-content: center; padding: 2rem 1.4rem; }
  .cta-btns { justify-content: center; }
  .cta-text h2 { font-size: 1.3rem; }

  /* Newsletter */
  .nl-strip { padding: 1.4rem 1.2rem; flex-direction: column; align-items: flex-start; }
  .nl-form { width: 100%; }
  .nl-input { min-width: unset; width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-desc { max-width: 100%; }

  /* Modals — slide up from bottom */
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal, .modal.modal-auth { max-width: 100%; border-radius: 20px 20px 0 0; max-height: 92vh; overflow-y: auto; }

  /* Modal private job */
  .pjd-actions { flex-direction: column; width: 100%; }
  .btn-apply-full, .btn-save { width: 100%; text-align: center; }
}

/* ── Small mobile (≤600px) ── */
@media(max-width:600px){
  .container { padding: 0 16px; }

  /* Stats 2-column */
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }

  /* All grids single col */
  .dir-grid, .edu-grid, .results-grid { grid-template-columns: 1fr 1fr; }
  .match-grid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }

  /* Footer single col */
  .footer-grid { grid-template-columns: 1fr; }

  /* Featured banner */
  .pvt-featured-banner { padding: 1.2rem; }

  /* Ticker hide on very small */
  .ticker-bar { height: 34px; }
  .ticker-item { padding: 0 1rem; font-size: 0.68rem; }

  /* Nav buttons */
  .btn-login { display: none; }
}

/* ── Extra small (≤400px) ── */
@media(max-width:400px){
  .dir-grid, .results-grid, .edu-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 1.7rem; }
  .nav-logo { font-size: 1.3rem; }
  .hero-search .hs-btn { padding: 0 1rem; font-size: 0.82rem; }
}
::-webkit-scrollbar{width:5px;height:5px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:var(--border-2);border-radius:3px}
::-webkit-scrollbar-thumb:hover{background:var(--brand)}

/* ═══════════════════════════════════════════
   SHARED INNER PAGE STYLES
═══════════════════════════════════════════ */
.breadcrumb{background:var(--bg-2);border-bottom:1px solid var(--border);padding:.6rem 0}
.breadcrumb-inner{display:flex;align-items:center;gap:.4rem;font-size:.78rem;color:var(--text-muted);flex-wrap:wrap}
.breadcrumb-inner a{color:var(--text-3);font-weight:600;transition:color var(--t)}.breadcrumb-inner a:hover{color:var(--brand)}
.breadcrumb-inner .sep{color:var(--border-2)}.breadcrumb-inner .cur{color:var(--text);font-weight:700}

.page-hero-wrap{padding:80px 0 0;background:var(--surface);border-bottom:1px solid var(--border);position:relative;overflow:hidden}
.page-hero-wrap::before{content:'';position:absolute;inset:0;pointer-events:none}
.page-hero-wrap.brand::before{background:linear-gradient(135deg,var(--brand-dim) 0%,transparent 55%)}
.page-hero-wrap.gold::before{background:linear-gradient(135deg,var(--gold-dim) 0%,transparent 55%)}
.page-hero-wrap.green::before{background:linear-gradient(135deg,var(--green-dim) 0%,transparent 55%)}
.page-hero-wrap.blue::before{background:linear-gradient(135deg,var(--blue-dim) 0%,transparent 55%)}
.page-hero-wrap.purple::before{background:linear-gradient(135deg,var(--purple-dim) 0%,transparent 55%)}
.ph-inner{position:relative;z-index:1;text-align:center;max-width:760px;margin:0 auto;padding:2rem 0 2.5rem}
.ph-label{font-family:var(--font-mono);font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.14em;margin-bottom:.6rem}
.ph-label.brand{color:var(--brand)}.ph-label.gold{color:var(--gold)}.ph-label.green{color:var(--green)}.ph-label.blue{color:var(--blue)}.ph-label.purple{color:var(--purple)}
[data-theme="dark"] .ph-label.gold{color:#F0C040}
.ph-title{font-family:var(--font-display);font-size:clamp(1.8rem,4.5vw,3rem);font-weight:800;line-height:1.1;color:var(--text);margin-bottom:.85rem;letter-spacing:-.02em}
.ph-desc{font-size:.97rem;color:var(--text-2);max-width:560px;margin:0 auto 1.8rem;line-height:1.75;font-weight:600}
.ph-search{display:flex;align-items:center;background:var(--surface);border:2px solid var(--border);border-radius:var(--radius);overflow:hidden;max-width:580px;margin:0 auto;box-shadow:var(--shadow-lg);transition:border-color var(--t)}
.ph-search:focus-within{border-color:var(--brand)}.ph-search.green-focus:focus-within{border-color:var(--green)}.ph-search.blue-focus:focus-within{border-color:var(--blue)}
.ph-search input{flex:1;background:none;border:none;outline:none;padding:.82rem 1.1rem;font-size:.95rem;font-family:var(--font-body);color:var(--text)}
.ph-search input::placeholder{color:var(--text-muted)}
.ph-search button{font-weight:800;font-size:.88rem;height:52px;padding:0 1.7rem;border:none;cursor:pointer;transition:background var(--t);flex-shrink:0;font-family:var(--font-body)}
.ph-search button.brand{background:var(--brand);color:#fff}.ph-search button.green{background:var(--green);color:#fff}.ph-search button.blue{background:var(--blue);color:#fff}
.ph-search button.gold{background:var(--gold);color:#fff}

.filter-bar-strip{background:var(--surface);border-bottom:1px solid var(--border);padding:.85rem 0;position:sticky;top:66px;z-index:80}
.fbs-inner{display:flex;align-items:center;gap:.6rem;flex-wrap:wrap}
.fbs-sel{background:var(--bg-2);border:1.5px solid var(--border);border-radius:9px;padding:.45rem .85rem;font-size:.82rem;font-weight:700;font-family:var(--font-body);color:var(--text-2);outline:none;cursor:pointer;transition:all var(--t)}
.fbs-sel:focus{border-color:var(--brand);color:var(--brand)}
.fbs-count{font-size:.76rem;font-family:var(--font-mono);color:var(--text-muted);margin-left:auto;white-space:nowrap}

/* ═══ JOBS ARCHIVE LAYOUT ═══ */
.archive-layout{display:grid;grid-template-columns:280px 1fr;gap:2rem;align-items:start;padding:2.5rem 0 4rem}
.sidebar-box{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.2rem;margin-bottom:1rem}
.sb-title{font-size:.72rem;font-family:var(--font-mono);font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--brand);margin-bottom:.9rem;padding-bottom:.6rem;border-bottom:1px solid var(--border)}
.sb-title.green{color:var(--green)}.sb-title.blue{color:var(--blue)}.sb-title.gold{color:var(--gold)}
.check-row{display:flex;align-items:center;gap:.55rem;padding:.32rem 0;font-size:.83rem;color:var(--text-2);font-weight:600;cursor:pointer}
.check-row input{accent-color:var(--brand);width:15px;height:15px;cursor:pointer;flex-shrink:0}
.check-row .cnt{margin-left:auto;font-size:.7rem;font-family:var(--font-mono);color:var(--text-muted)}
.sb-divider{height:1px;background:var(--border);margin:.8rem 0}
.alert-cta-box{background:linear-gradient(135deg,var(--brand-dim),var(--surface));border:1.5px solid var(--brand-border);border-radius:var(--radius);padding:1.2rem}
.alert-cta-box h4{font-family:var(--font-display);font-size:1rem;font-weight:800;color:var(--text);margin-bottom:.4rem;letter-spacing:-.01em}
.alert-cta-box p{font-size:.8rem;color:var(--text-3);line-height:1.6;margin-bottom:.8rem}
.alert-input{width:100%;background:var(--bg-2);border:1.5px solid var(--border);border-radius:8px;padding:.55rem .85rem;font-size:.83rem;font-family:var(--font-body);color:var(--text);outline:none;transition:border-color var(--t);margin-bottom:.4rem}
.alert-input:focus{border-color:var(--brand)}
.btn-alert{width:100%;background:var(--brand);color:#fff;font-weight:800;font-size:.85rem;padding:.65rem 1rem;border-radius:9px;border:none;cursor:pointer;transition:all var(--t);font-family:var(--font-body)}
.btn-alert:hover{background:var(--brand-h)}

/* job list cards */
.job-list-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.3rem;margin-bottom:1rem;transition:all var(--t);position:relative;overflow:hidden;cursor:pointer}
.job-list-card:hover{border-color:var(--brand);box-shadow:var(--shadow-lg);transform:translateY(-2px)}
.job-list-card.featured-card{border-color:var(--brand-border);background:linear-gradient(135deg,var(--surface),var(--brand-dim))}
.feat-ribbon{position:absolute;top:0;right:1.2rem;background:var(--brand);color:#fff;font-size:.58rem;font-family:var(--font-mono);font-weight:700;padding:.22rem .6rem;border-radius:0 0 6px 6px;text-transform:uppercase;letter-spacing:.06em}
.jlc-top{display:flex;align-items:flex-start;gap:1rem;margin-bottom:.9rem}
.jlc-logo{width:44px;height:44px;border-radius:10px;background:var(--bg-2);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:1.25rem;flex-shrink:0}
.jlc-main{flex:1;min-width:0}
.jlc-title{font-family:var(--font-display);font-size:1rem;font-weight:800;color:var(--text);line-height:1.3;margin-bottom:.18rem;letter-spacing:-.01em}
.jlc-org{font-size:.78rem;color:var(--text-3);font-weight:600}
.jlc-right{text-align:right;flex-shrink:0}
.jlc-deadline{font-size:.7rem;font-family:var(--font-mono);color:var(--red);font-weight:700}
.jlc-posted{font-size:.68rem;color:var(--text-muted);margin-top:.15rem}
.jlc-facts{display:flex;flex-wrap:wrap;gap:.4rem .9rem;margin-bottom:.9rem}
.jlc-fact{font-size:.75rem;color:var(--text-3);font-weight:600}
.jlc-ft{display:flex;align-items:center;justify-content:space-between;padding-top:.85rem;border-top:1px solid var(--border);gap:.5rem;flex-wrap:wrap}
.jlc-tags{display:flex;gap:.3rem;flex-wrap:wrap}
.jlc-tag{font-size:.64rem;font-family:var(--font-mono);background:var(--bg-3);color:var(--text-3);border:1px solid var(--border);border-radius:4px;padding:.16rem .42rem}
.jlc-actions{display:flex;gap:.5rem;align-items:center}
.btn-save-sm{width:32px;height:32px;border:1.5px solid var(--border);border-radius:7px;background:var(--surface);color:var(--text-3);font-size:.9rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all var(--t)}
.btn-save-sm:hover{border-color:var(--brand);color:var(--brand)}
.btn-view{font-size:.78rem;font-weight:800;padding:.38rem .95rem;border-radius:7px;border:1.5px solid var(--brand-border);color:var(--brand);background:none;transition:all var(--t);white-space:nowrap;cursor:pointer}
.btn-view:hover{background:var(--brand);color:#fff}
.empty-state{text-align:center;padding:4rem 1rem;color:var(--text-3)}
.empty-state .es-icon{font-size:3rem;margin-bottom:1rem}
.empty-state h3{font-family:var(--font-display);font-size:1.2rem;font-weight:800;color:var(--text);margin-bottom:.5rem}
.empty-state p{font-size:.88rem;line-height:1.6}

/* ═══ SINGLE JOB POST ═══ */
.job-post-layout{display:grid;grid-template-columns:1fr 320px;gap:2rem;align-items:start;padding:2rem 0 4rem}
.job-hero-card{background:linear-gradient(135deg,var(--surface),var(--brand-dim));border:1.5px solid var(--brand-border);border-radius:16px;padding:1.8rem;margin-bottom:1.2rem}
.jhc-top{display:flex;align-items:flex-start;gap:1.2rem;margin-bottom:1.2rem}
.jhc-logo{width:64px;height:64px;border-radius:14px;background:var(--surface);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:1.8rem;flex-shrink:0;box-shadow:var(--shadow-sm)}
.jhc-title{font-family:var(--font-display);font-size:clamp(1.2rem,3vw,1.7rem);font-weight:800;color:var(--text);line-height:1.2;margin-bottom:.35rem;letter-spacing:-.02em}
.jhc-org{font-size:.83rem;color:var(--text-3);font-weight:700;display:flex;align-items:center;gap:.35rem}
.vtick{color:var(--green);font-size:.8rem}
.jhc-facts{display:flex;flex-wrap:wrap;gap:.5rem 1.2rem;margin-bottom:1.2rem}
.jhc-fact{font-size:.79rem;color:var(--text-2);font-weight:700;display:flex;align-items:center;gap:.28rem}
.jhc-actions{display:flex;align-items:center;gap:.65rem;flex-wrap:wrap}
.btn-apply-big{background:var(--brand);color:#fff;font-weight:800;font-size:.95rem;padding:.72rem 1.8rem;border-radius:10px;border:none;cursor:pointer;box-shadow:var(--shadow-brand);transition:all var(--t);text-decoration:none;display:inline-flex;align-items:center;gap:.4rem}
.btn-apply-big:hover{background:var(--brand-h);transform:translateY(-1px)}
.btn-save-job{background:var(--surface);border:1.5px solid var(--border);color:var(--text-2);font-weight:700;font-size:.85rem;padding:.7rem 1.2rem;border-radius:10px;cursor:pointer;transition:all var(--t)}
.btn-save-job:hover{border-color:var(--brand);color:var(--brand)}
.deadline-badge{background:rgba(212,59,59,.1);border:1px solid rgba(212,59,59,.25);color:var(--red);font-family:var(--font-mono);font-size:.72rem;font-weight:700;padding:.38rem .85rem;border-radius:8px}

.content-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.5rem;margin-bottom:1rem}
.cc-title{font-family:var(--font-display);font-size:1rem;font-weight:800;color:var(--text);margin-bottom:1.1rem;display:flex;align-items:center;gap:.5rem;letter-spacing:-.01em}
.cc-title-icon{width:30px;height:30px;border-radius:8px;background:var(--brand-dim);border:1px solid var(--brand-border);display:flex;align-items:center;justify-content:center;font-size:.9rem;flex-shrink:0}
.ov-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--border);border:1.5px solid var(--border);border-radius:10px;overflow:hidden}
.ov-item{background:var(--surface);padding:.85rem 1rem}
.ov-label{font-size:.68rem;color:var(--text-muted);font-weight:700;text-transform:uppercase;letter-spacing:.08em;margin-bottom:.3rem}
.ov-val{font-size:.9rem;font-weight:800;color:var(--text)}
.ov-val.hl{color:var(--brand);font-family:var(--font-display);font-size:1.1rem}
.ov-val.green{color:var(--green)}

.dates-list{display:flex;flex-direction:column;gap:0}
.date-row{display:flex;align-items:center;justify-content:space-between;padding:.72rem 0;border-bottom:1px solid var(--border);gap:1rem}
.date-row:last-child{border-bottom:none}
.date-lbl{display:flex;align-items:center;gap:.55rem;font-size:.84rem;color:var(--text-2);font-weight:600}
.ddot{width:9px;height:9px;border-radius:50%;background:var(--border-2);flex-shrink:0}
.ddot.done{background:var(--green)}.ddot.warn{background:var(--gold)}.ddot.danger{background:var(--red)}
.date-val{font-size:.82rem;font-weight:800;color:var(--text);font-family:var(--font-mono)}
.date-val.danger{color:var(--red)}

.tbl-wrap{overflow-x:auto;margin:-0.2rem}
.jobdex-table{width:100%;border-collapse:collapse;font-size:.82rem}
.jobdex-table th{background:var(--bg-2);font-weight:800;color:var(--text-2);padding:.65rem .85rem;text-align:left;border-bottom:2px solid var(--border);white-space:nowrap}
.jobdex-table td{padding:.6rem .85rem;border-bottom:1px solid var(--border);color:var(--text-2);vertical-align:middle}
.jobdex-table tr:hover td{background:var(--bg-2)}
.jobdex-table .hl-cell{font-weight:800;color:var(--brand)}

.wp-content-area{font-size:.9rem;color:var(--text-2);line-height:1.8}
.wp-content-area h2{font-family:var(--font-display);font-size:1.1rem;font-weight:800;color:var(--text);margin:1.5rem 0 .7rem;letter-spacing:-.01em}
.wp-content-area h3{font-family:var(--font-display);font-size:.98rem;font-weight:800;color:var(--text);margin:1.2rem 0 .5rem}
.wp-content-area p{margin-bottom:.9rem}
.wp-content-area ul,.wp-content-area ol{padding-left:1.4rem;margin-bottom:.9rem;display:flex;flex-direction:column;gap:.35rem}
.wp-content-area li::marker{color:var(--brand)}
.wp-content-area strong{font-weight:800;color:var(--text)}
.wp-content-area a{color:var(--brand);text-decoration:underline}
.wp-content-area table{width:100%;border-collapse:collapse;margin:1rem 0}
.wp-content-area table th{background:var(--bg-2);font-weight:800;padding:.5rem .8rem;border:1px solid var(--border);font-size:.83rem}
.wp-content-area table td{padding:.5rem .8rem;border:1px solid var(--border);font-size:.82rem}

.sidebar-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.3rem;margin-bottom:1rem}
.sc-title{font-size:.72rem;font-family:var(--font-mono);font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--brand);margin-bottom:1rem;padding-bottom:.6rem;border-bottom:1px solid var(--border)}
.sc-title.green{color:var(--green)}.sc-title.blue{color:var(--blue)}.sc-title.gold{color:var(--gold)}
.apply-cta-card{background:linear-gradient(135deg,var(--brand-dim),var(--surface));border-color:var(--brand-border)}
.qi-row{display:flex;align-items:flex-start;gap:.75rem;padding:.6rem 0;border-bottom:1px solid var(--border)}
.qi-row:last-child{border-bottom:none}
.qi-icon{width:28px;height:28px;border-radius:7px;background:var(--bg-2);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:.85rem;flex-shrink:0}
.qi-lbl{font-size:.68rem;color:var(--text-muted);font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.18rem}
.qi-val{font-size:.83rem;font-weight:800;color:var(--text)}
.qi-val.green{color:var(--green)}.qi-val.brand{color:var(--brand)}
.doc-link{display:flex;align-items:center;gap:.55rem;padding:.55rem .7rem;border:1.5px solid var(--border);border-radius:8px;font-size:.82rem;font-weight:700;color:var(--text-2);text-decoration:none;transition:all var(--t);margin-bottom:.4rem}
.doc-link:hover{border-color:var(--brand);color:var(--brand);background:var(--brand-dim)}
.share-row{display:flex;gap:.4rem;flex-wrap:wrap;margin-top:.8rem}
.share-btn-sm{flex:1;min-width:80px;background:var(--bg-2);border:1.5px solid var(--border);border-radius:8px;padding:.42rem .5rem;font-size:.72rem;font-weight:700;color:var(--text-2);cursor:pointer;transition:all var(--t);text-align:center;font-family:var(--font-body)}
.share-btn-sm:hover{border-color:var(--brand);color:var(--brand)}

/* ═══ PRIVATE JOBS ═══ */
.pvt-hero-wrap{padding:80px 0 0;background:var(--surface);border-bottom:1px solid var(--border);position:relative;overflow:hidden}
.pvt-hero-wrap::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,var(--blue-dim) 0%,transparent 55%);pointer-events:none}
.pvt-archive-layout{display:grid;grid-template-columns:260px 1fr;gap:2rem;padding:2.5rem 0 4rem;align-items:start}
.pvt-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.3rem;margin-bottom:1rem;transition:all var(--t);position:relative;overflow:hidden;cursor:pointer}
.pvt-card:hover{border-color:var(--blue);box-shadow:var(--shadow-blue);transform:translateY(-2px)}
.pvt-card.featured-pvt{border-color:var(--blue-border);background:linear-gradient(135deg,var(--surface),var(--blue-dim))}
.pvt-top{display:flex;align-items:flex-start;gap:1rem;margin-bottom:.85rem}
.pvt-logo{width:48px;height:48px;border-radius:11px;background:var(--bg-2);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:1.3rem;flex-shrink:0}
.pvt-name{font-size:.75rem;font-weight:700;color:var(--text-3);margin-bottom:.12rem;display:flex;align-items:center;gap:.3rem}
.vtick-blue{color:var(--blue);font-size:.75rem}
.pvt-title{font-family:var(--font-display);font-size:.98rem;font-weight:800;color:var(--text);line-height:1.3;letter-spacing:-.01em}
.pvt-right{text-align:right;flex-shrink:0}
.pvt-posted{font-size:.68rem;color:var(--text-muted);font-family:var(--font-mono)}
.pvt-salary-badge{display:inline-flex;align-items:center;gap:.28rem;background:var(--green-dim);border:1px solid var(--green-border);color:var(--green);font-size:.76rem;font-weight:800;padding:.28rem .7rem;border-radius:7px;margin-bottom:.7rem;font-family:var(--font-mono)}
.pvt-tags-row{display:flex;gap:.35rem;flex-wrap:wrap;margin-bottom:.8rem}
.pvt-facts{display:flex;flex-wrap:wrap;gap:.4rem .9rem;margin-bottom:.9rem}
.pvt-fact{font-size:.74rem;color:var(--text-3);font-weight:600}
.pvt-ft{display:flex;align-items:center;justify-content:space-between;padding-top:.85rem;border-top:1px solid var(--border)}
.btn-quick{font-size:.76rem;font-weight:800;padding:.36rem .9rem;border-radius:7px;border:1.5px solid var(--blue-border);color:var(--blue);background:none;cursor:pointer;transition:all var(--t)}
.btn-quick:hover{background:var(--blue);color:#fff}
.pvt-hero-card{background:linear-gradient(135deg,var(--surface),var(--blue-dim));border:1.5px solid var(--blue-border);border-radius:16px;padding:1.8rem;margin-bottom:1.2rem}
.btn-apply-pvt{background:var(--blue);color:#fff;font-weight:800;font-size:.93rem;padding:.7rem 1.8rem;border-radius:10px;border:none;cursor:pointer;box-shadow:var(--shadow-blue);transition:all var(--t);text-decoration:none;display:inline-flex;align-items:center;gap:.4rem}
.btn-apply-pvt:hover{opacity:.88;transform:translateY(-1px)}

/* ═══ SCHEMES ═══ */
.scheme-card-list{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.4rem;margin-bottom:1rem;transition:all var(--t);cursor:pointer;display:flex;gap:1.1rem;align-items:flex-start}
.scheme-card-list:hover{border-color:var(--gold);box-shadow:0 8px 24px rgba(201,139,0,.12);transform:translateY(-2px)}
[data-theme="dark"] .scheme-card-list:hover{box-shadow:0 8px 24px rgba(201,139,0,.18)}
.scl-icon{width:48px;height:48px;border-radius:11px;background:var(--gold-dim);border:1.5px solid var(--gold-border);display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.scl-body{flex:1;min-width:0}
.scl-dept{font-size:.66rem;font-family:var(--font-mono);font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--gold);margin-bottom:.3rem}
[data-theme="dark"] .scl-dept{color:#F0C040}
.scl-title{font-family:var(--font-display);font-size:1rem;font-weight:800;color:var(--text);line-height:1.3;margin-bottom:.4rem;letter-spacing:-.01em}
.scl-desc{font-size:.8rem;color:var(--text-3);line-height:1.6;margin-bottom:.7rem}
.scl-tags{display:flex;gap:.35rem;flex-wrap:wrap}
.scl-tag{font-size:.67rem;font-family:var(--font-mono);background:var(--gold-dim);color:var(--gold);border:1px solid var(--gold-border);border-radius:5px;padding:.16rem .45rem}
[data-theme="dark"] .scl-tag{color:#F0C040}
.scl-right{text-align:right;flex-shrink:0}
.scl-arrow{color:var(--gold);font-size:1.1rem;transition:transform .2s}
[data-theme="dark"] .scl-arrow{color:#F0C040}
.scheme-card-list:hover .scl-arrow{transform:translate(3px,-3px)}
.scheme-hero-card{background:linear-gradient(135deg,var(--gold-dim),var(--surface));border:1.5px solid var(--gold-border);border-radius:16px;padding:1.8rem;margin-bottom:1.2rem}
.btn-apply-scheme{background:var(--gold);color:#fff;font-weight:800;font-size:.93rem;padding:.7rem 1.8rem;border-radius:10px;border:none;cursor:pointer;transition:all var(--t);text-decoration:none;display:inline-flex;align-items:center;gap:.4rem}
.btn-apply-scheme:hover{filter:brightness(1.08);transform:translateY(-1px)}

/* ═══ STUDY ═══ */
.study-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.study-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:all var(--t)}
.study-card:hover{border-color:var(--blue);box-shadow:var(--shadow-blue);transform:translateY(-3px)}
.study-thumb{height:110px;display:flex;align-items:center;justify-content:center;font-size:2.5rem;position:relative}
.study-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,transparent 50%,var(--surface))}
.study-body{padding:1rem 1.1rem 1.2rem}
.study-cat{font-size:.64rem;font-family:var(--font-mono);font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--blue);margin-bottom:.36rem}
.study-title{font-weight:800;font-size:.9rem;color:var(--text);line-height:1.35;margin-bottom:.75rem}
.study-ft{display:flex;align-items:center;justify-content:space-between}
.study-info{font-size:.7rem;color:var(--text-muted);font-weight:600}
.study-post-layout{display:grid;grid-template-columns:1fr 300px;gap:2rem;padding:2rem 0 4rem;align-items:start}

/* ═══ RESULTS ═══ */
.result-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.2rem;margin-bottom:.9rem;display:flex;align-items:center;gap:1rem;cursor:pointer;transition:all var(--t)}
.result-card:hover{border-color:var(--gold);box-shadow:0 6px 20px rgba(201,139,0,.1);transform:translateY(-2px)}
.rc-type-badge{width:52px;height:52px;border-radius:11px;display:flex;align-items:center;justify-content:center;font-size:.65rem;font-family:var(--font-mono);font-weight:700;text-transform:uppercase;letter-spacing:.05em;text-align:center;line-height:1.3;flex-shrink:0}
.rc-type-badge.result{background:var(--green-dim);color:var(--green);border:1.5px solid var(--green-border)}
.rc-type-badge.admit{background:var(--blue-dim);color:var(--blue);border:1.5px solid var(--blue-border)}
.rc-type-badge.key{background:var(--purple-dim);color:var(--purple);border:1.5px solid var(--purple-border)}
.rc-type-badge.cutoff{background:var(--gold-dim);color:var(--gold);border:1.5px solid var(--gold-border)}
[data-theme="dark"] .rc-type-badge.cutoff{color:#F0C040}
.rc-body{flex:1;min-width:0}
.rc-org{font-size:.68rem;color:var(--text-muted);font-family:var(--font-mono);font-weight:600;margin-bottom:.2rem}
.rc-title-txt{font-weight:800;font-size:.9rem;color:var(--text);line-height:1.3;margin-bottom:.3rem;font-family:var(--font-display);letter-spacing:-.01em}
.rc-date-txt{font-size:.7rem;color:var(--text-3);font-family:var(--font-mono)}
.btn-dl-sm{font-size:.75rem;font-weight:800;padding:.38rem .9rem;border-radius:7px;border:1.5px solid var(--blue-border);color:var(--blue);background:var(--blue-dim);cursor:pointer;transition:all var(--t);white-space:nowrap;text-decoration:none}
.btn-dl-sm:hover{background:var(--blue);color:#fff}

/* ═══ CENTERS ═══ */
.center-list-card{background:var(--surface);border:1.5px solid var(--border);border-radius:var(--radius);padding:1.3rem;margin-bottom:1rem;transition:all var(--t);cursor:pointer;position:relative}
.center-list-card:hover{border-color:var(--green);box-shadow:var(--shadow-green);transform:translateY(-2px)}
.center-list-card.sponsored-lc{border-color:rgba(201,139,0,.38);background:linear-gradient(145deg,var(--gold-dim),var(--surface))}
.clc-top{display:flex;align-items:flex-start;gap:1rem;margin-bottom:.9rem}
.clc-avatar{width:52px;height:52px;border-radius:12px;background:var(--bg-2);border:1.5px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.clc-name{font-weight:800;font-size:.95rem;color:var(--text);margin-bottom:.15rem}
.clc-addr{font-size:.76rem;color:var(--text-3);font-weight:600;margin-bottom:.25rem}
.clc-stars{color:var(--gold);font-size:.82rem;letter-spacing:.04em}
[data-theme="dark"] .clc-stars{color:#E8C040}
.clc-dist{font-size:.74rem;color:var(--green);font-weight:800}
.clc-services{display:flex;flex-wrap:wrap;gap:.3rem;margin-bottom:.85rem}
.clc-svc{font-size:.67rem;font-family:var(--font-mono);background:var(--bg-3);color:var(--text-3);border:1px solid var(--border);border-radius:4px;padding:.16rem .42rem}
.clc-ft{display:flex;align-items:center;justify-content:space-between;padding-top:.85rem;border-top:1px solid var(--border);gap:.6rem}
.btn-contact-center{font-size:.76rem;font-weight:800;padding:.38rem .9rem;border-radius:7px;border:1.5px solid var(--green-border);color:var(--green);background:none;cursor:pointer;transition:all var(--t);text-decoration:none;white-space:nowrap}
.btn-contact-center:hover{background:var(--green);color:#fff}
.center-single-layout{display:grid;grid-template-columns:1fr 300px;gap:2rem;padding:2rem 0 4rem;align-items:start}
.center-hero-card{background:linear-gradient(135deg,var(--green-dim),var(--surface));border:1.5px solid var(--green-border);border-radius:16px;padding:1.8rem;margin-bottom:1.2rem}

/* ═══ AI MATCH ═══ */
.ai-page-layout{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;padding:3rem 0 4rem}
.ai-form-card{background:var(--surface);border:1.5px solid var(--border);border-radius:18px;padding:2rem;box-shadow:var(--shadow-lg);position:relative;overflow:hidden}
.ai-form-card::before{content:'✦';position:absolute;top:-20px;right:-20px;font-size:8rem;color:var(--purple-dim);pointer-events:none;line-height:1}
.ai-form-card.purple-feat{border-color:var(--purple-border);background:linear-gradient(135deg,var(--surface),var(--purple-dim))}
.ai-step-dots{display:flex;gap:.4rem;margin-bottom:1.4rem}
.ai-dot{height:4px;flex:1;border-radius:2px;background:var(--border);transition:background .3s}
.ai-dot.done{background:var(--purple)}
.ai-form-label{display:block;font-size:.78rem;font-weight:800;color:var(--text-2);margin-bottom:.35rem}
.ai-input{width:100%;background:var(--bg-2);border:1.5px solid var(--border);border-radius:9px;color:var(--text);font-family:var(--font-body);font-size:.88rem;padding:.62rem .92rem;outline:none;transition:border-color var(--t);margin-bottom:.85rem}
.ai-input:focus{border-color:var(--purple)}
.ai-select{width:100%;background:var(--bg-2);border:1.5px solid var(--border);border-radius:9px;color:var(--text);font-family:var(--font-body);font-size:.88rem;padding:.62rem 2rem .62rem .92rem;outline:none;transition:border-color var(--t);cursor:pointer;margin-bottom:.85rem;-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%239E9488' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 9px center}
.ai-select:focus{border-color:var(--purple)}
.btn-match-purple{width:100%;background:var(--purple);color:#fff;font-weight:800;font-size:.9rem;padding:.72rem 1rem;border-radius:9px;border:none;cursor:pointer;transition:all var(--t);box-shadow:0 6px 20px rgba(123,53,237,.25);font-family:var(--font-body)}
.btn-match-purple:hover{opacity:.9;transform:translateY(-1px)}
.chip-select{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:.85rem}
.c-chip{font-size:.78rem;font-weight:700;padding:.35rem .75rem;border-radius:100px;border:1.5px solid var(--border);color:var(--text-3);cursor:pointer;transition:all var(--t)}
.c-chip.sel{background:var(--purple);color:#fff;border-color:var(--purple)}
.c-chip:hover{border-color:var(--purple);color:var(--purple)}

/* ═══ RESPONSIVE — INNER PAGES ═══ */
@media(max-width:1024px){
  .archive-layout,.pvt-archive-layout{grid-template-columns:240px 1fr}
  .job-post-layout,.pvt-single-layout,.study-post-layout,.center-single-layout{grid-template-columns:1fr 280px}
  .study-grid{grid-template-columns:repeat(2,1fr)}
  .ai-page-layout{grid-template-columns:1fr}
  .ov-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:768px){
  .archive-layout,.pvt-archive-layout{grid-template-columns:1fr}
  .jobs-sidebar,.pvt-sidebar{display:none}
  .job-post-layout,.pvt-single-layout,.study-post-layout,.center-single-layout{grid-template-columns:1fr}
  .post-sidebar{display:none}
  .ov-grid{grid-template-columns:repeat(2,1fr)}
  .study-grid{grid-template-columns:1fr 1fr}
  .jhc-actions{flex-direction:column;align-items:flex-start}
  .btn-apply-big,.btn-apply-pvt,.btn-apply-scheme{width:100%;justify-content:center}
}
@media(max-width:600px){
  .study-grid{grid-template-columns:1fr}
  .ov-grid{grid-template-columns:1fr}
  .ai-page-layout{padding:2rem 0 3rem}
}

/* ═══ AI CHAT — PER JOB PAGE ═══ */
.ai-job-chat {
  background: var(--surface);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.ai-job-chat-header {
  background: linear-gradient(135deg, var(--brand-dim), var(--surface));
  border-bottom: 1px solid var(--border);
  padding: .9rem 1.2rem;
  display: flex; align-items: center; gap: .7rem;
}
.ai-job-chat-header .ai-ico { width:36px;height:36px;border-radius:9px;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0 }
.ai-job-chat-header h4 { font-family:var(--font-display);font-size:.95rem;font-weight:800;color:var(--text);margin:0;letter-spacing:-.01em }
.ai-job-chat-header p { font-size:.73rem;color:var(--text-3);margin:0 }
.ai-chat-messages { padding:.9rem 1.2rem; min-height:80px; max-height:280px; overflow-y:auto; display:flex;flex-direction:column;gap:.5rem }
.ai-chat-messages:empty::after { content:'Ask anything about this job — eligibility, salary, documents, process...'; color:var(--text-muted); font-size:.82rem; font-style:italic }
.ai-msg { font-size:.82rem; padding:.5rem .75rem; border-radius:9px; max-width:88%; line-height:1.55 }
.ai-msg-user { background:var(--brand-dim);color:var(--text);margin-left:auto;border:1px solid var(--brand-border) }
.ai-msg-bot  { background:var(--bg-2);color:var(--text-2);border:1px solid var(--border) }
.ai-msg-bot .ai-name { color:var(--brand);font-weight:800;font-size:.75rem;display:block;margin-bottom:.2rem }
.ai-msg-bot.typing .ai-name::after { content:'...'; animation:dots 1.2s infinite }
@keyframes dots { 0%,20%{content:'.'} 40%{content:'..'} 60%,100%{content:'...'} }
.ai-chat-input-row { display:flex;border-top:1px solid var(--border);background:var(--surface) }
.ai-chat-input { flex:1;background:none;border:none;outline:none;padding:.7rem 1rem;font-size:.85rem;font-family:var(--font-body);color:var(--text) }
.ai-chat-input::placeholder { color:var(--text-muted) }
.ai-chat-send { background:var(--brand);color:#fff;border:none;padding:0 1.1rem;font-weight:800;font-size:.82rem;cursor:pointer;transition:background var(--t);flex-shrink:0 }
.ai-chat-send:hover { background:var(--brand-h) }
.ai-chat-send:disabled { opacity:.5;cursor:default }
.ai-chat-suggestions { padding:.6rem 1.2rem .8rem; display:flex;flex-wrap:wrap;gap:.35rem; border-top:1px solid var(--border);background:var(--bg-2) }
.ai-sugg { font-size:.72rem;font-weight:700;padding:.28rem .7rem;border-radius:100px;border:1.5px solid var(--border);color:var(--text-3);cursor:pointer;transition:all var(--t);background:var(--surface) }
.ai-sugg:hover { border-color:var(--brand);color:var(--brand);background:var(--brand-dim) }

/* ═══ JOB CARD FIX — match uploaded UI ═══ */
.job-list-card { border-radius:var(--radius) !important }
.jlc-top { gap:1rem !important }
.jlc-logo { min-width:44px !important }
/* Vacancy count highlight */
.vac-hl { font-family:var(--font-display);color:var(--brand);font-weight:800 }

/* ═══ GTRANSLATE FIX ═══ */
.gtranslate_wrapper { z-index:9999 !important }
#google_translate_element { font-family:var(--font-body) !important }

/* ═══ AI MATCH SPACING FIX ═══ */
.ai-card .btn-match {
  margin-bottom: 0.9rem !important;
}
.ai-card .prem-hint {
  margin-top: 0 !important;
}
/* Mobile select — prevent iOS fullscreen popup */
@media (max-width:768px) {
  .ms, .ai-select, .fbs-sel, .match-select, .ms, select {
    font-size: 16px !important;
  }
}
