/* ===================================================
   AImaxHub — Shared Stylesheet
   NEP 2020 Internship Program 2025-26
   All pages use this single CSS file
=================================================== */

:root {
  --navy: #061220;
  --navy2: #0d2240;
  --blue: #1565c0;
  --blue2: #1976d2;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --white: #ffffff;
  --off-white: #f4f6fb;
  --text: #12223a;
  --muted: #607080;
  --border: #d0dcea;
  --success: #2e7d32;
  --error: #c62828;
  --card-shadow: 0 4px 28px rgba(10,22,60,.10);
  --radius: 12px;
  --radius-lg: 20px;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--off-white); line-height: 1.65; }

/* ===== UTILITY ===== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.section-title { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.6rem); color: var(--navy); margin-bottom: 12px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 48px; }
.badge { display: inline-block; background: var(--gold); color: var(--navy); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 28px; border-radius: var(--radius); font-family: var(--font-body); font-size: .95rem; font-weight: 600; cursor: pointer; border: none; transition: all .22s; text-decoration: none; }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ===== SCROLLING TICKER ===== */
.ticker-wrap { background: var(--gold); overflow: hidden; width: 100%; padding: 9px 0; }
.ticker-content { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.ticker-content:hover { animation-play-state: paused; }
.ticker-item { white-space: nowrap; padding: 0 40px; font-size: .8rem; font-weight: 700; color: var(--navy); letter-spacing: .05em; text-transform: uppercase; }
.ticker-item span { margin: 0 12px; opacity: .45; }
@keyframes ticker { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

/* ===== HEADER ===== */
header.main-header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 24px rgba(0,0,0,.3); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo-wrap { display: flex; align-items: center; text-decoration: none; cursor: pointer; }
.logo-wrap img { height: 50px; width: auto; object-fit: contain; }
nav { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,.75); font-size: .87rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; text-decoration: none; transition: all .18s; border: none; background: none; cursor: pointer; font-family: var(--font-body); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-register { background: var(--gold); color: var(--navy) !important; padding: 8px 18px; border-radius: 8px; font-weight: 600 !important; }
.nav-register:hover { background: var(--gold-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.mobile-nav { display: none; background: var(--navy2); padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav a, .mobile-nav button { display: block; color: rgba(255,255,255,.85); text-decoration: none; padding: 12px 24px; font-size: .95rem; font-weight: 500; width: 100%; text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-body); transition: background .15s; }
.mobile-nav a:hover, .mobile-nav button:hover { background: rgba(255,255,255,.07); }
.mobile-nav.open { display: block; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #0a1e42 55%, #0e2655 100%); padding: 80px 0 72px; overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(21,101,192,.12) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.nep-badge { background: rgba(201,168,76,.18); border: 1px solid rgba(201,168,76,.45); color: var(--gold); font-size: .72rem; font-weight: 600; padding: 5px 13px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; }
.msme-badge { background: rgba(21,101,192,.2); border: 1px solid rgba(21,101,192,.4); color: #90caf9; font-size: .72rem; font-weight: 600; padding: 5px 13px; border-radius: 20px; letter-spacing: .06em; text-transform: uppercase; }
.hero h1 { font-family: var(--font-head); font-size: clamp(2rem,4.5vw,3rem); color: var(--white); line-height: 1.2; margin-bottom: 18px; }
.hero h1 span { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 28px; margin-bottom: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); font-weight: 700; line-height: 1; }
.stat-label { font-size: .72rem; color: rgba(255,255,255,.5); letter-spacing: .04em; margin-top: 4px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero program cards */
.hero-visual { display: flex; flex-direction: column; gap: 16px; }
.cpcard { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 22px; backdrop-filter: blur(12px); transition: transform .25s, border-color .25s; }
.cpcard:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.4); }
.cpcard-hr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.ci { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.ci-ai { background: linear-gradient(135deg, rgba(201,168,76,.35), rgba(201,168,76,.12)); }
.ci-bot { background: linear-gradient(135deg, rgba(21,101,192,.35), rgba(21,101,192,.12)); }
.cpcard-wk { font-size: .7rem; color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); padding: 4px 10px; border-radius: 20px; }
.cpcard-title { font-family: var(--font-head); font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.cpcard-desc { font-size: .8rem; color: rgba(255,255,255,.55); line-height: 1.55; margin-bottom: 12px; }
.cpcard-bens { display: flex; flex-direction: column; gap: 4px; }
.cpb { font-size: .75rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.cpb::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: .78rem; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.09); }
.cp-price { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); }
.cp-note { font-size: .68rem; color: rgba(255,255,255,.38); }
.enroll-mini { font-size: .78rem; font-weight: 600; color: var(--navy); background: var(--gold); padding: 7px 15px; border-radius: 8px; cursor: pointer; border: none; font-family: var(--font-body); text-decoration: none; }
.enroll-mini:hover { background: var(--gold-light); }

/* ===== FEATURES ===== */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.feature-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 20px; text-align: center; transition: all .22s; }
.feature-card:hover { border-color: var(--gold); box-shadow: var(--card-shadow); transform: translateY(-3px); }
.fi { font-size: 1.9rem; margin-bottom: 10px; }
.ft { font-weight: 600; font-size: .93rem; color: var(--navy); margin-bottom: 7px; }
.fd { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ===== PROGRAMS ===== */
.programs { background: var(--off-white); }
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.prog-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); transition: transform .25s, box-shadow .25s; }
.prog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(10,22,60,.14); }
.pc-top { padding: 28px 28px 0; }
.prog-tag { display: inline-flex; align-items: center; gap: 6px; font-size: .71rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; padding: 5px 13px; border-radius: 20px; margin-bottom: 14px; }
.pt-ai { background: rgba(201,168,76,.12); color: #7a5c08; }
.pt-bot { background: rgba(21,101,192,.1); color: var(--blue); }
.prog-title { font-family: var(--font-head); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.prog-sub { font-size: .87rem; color: var(--muted); margin-bottom: 18px; }
.pc-bar { width: 100%; height: 5px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.pc-bar-blue { background: linear-gradient(90deg, var(--blue), #64b5f6); }
.pc-body { padding: 22px 28px 26px; }
.ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 20px; }
.ben { display: flex; align-items: flex-start; gap: 7px; font-size: .82rem; color: var(--text); }
.bck { font-size: .87rem; font-weight: 700; margin-top: 1px; flex-shrink: 0; color: var(--blue); }
.bck-g { color: var(--gold); }
.week-grid { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.week-row { display: flex; gap: 11px; align-items: flex-start; }
.wl { background: var(--navy); color: var(--gold); font-size: .66rem; font-weight: 700; padding: 3px 8px; border-radius: 5px; white-space: nowrap; margin-top: 2px; }
.wt { font-size: .83rem; color: var(--text); }
.pc-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border); }
.pc-price { display: flex; flex-direction: column; }
.pc-price-num { font-family: var(--font-head); font-size: 1.6rem; color: var(--gold); }
.pc-price-sub { font-size: .7rem; color: var(--muted); }

/* ===== HOW IT WORKS ===== */
.how { background: var(--navy); }
.how .section-title { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,.5); }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
.steps::before { content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,.35), transparent); }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #b8902a); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 0 auto 16px; box-shadow: 0 4px 22px rgba(201,168,76,.3); }
.step-title { font-weight: 600; font-size: .93rem; color: var(--white); margin-bottom: 7px; }
.step-desc { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ===== FAQ ===== */
.faq { background: var(--white); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: var(--gold); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; background: var(--white); gap: 16px; }
.faq-q:hover { background: var(--off-white); }
.faq-qtext { font-weight: 600; font-size: .95rem; color: var(--navy); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--muted); flex-shrink: 0; transition: all .2s; }
.faq-item.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; font-size: .88rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ===== FORM STYLES ===== */
.page-wrap { padding: 64px 0; min-height: 70vh; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 38px 46px; box-shadow: var(--card-shadow); max-width: 700px; margin: 0 auto; }
.form-title { font-family: var(--font-head); font-size: 1.75rem; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: .88rem; color: var(--muted); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; letter-spacing: .03em; text-transform: uppercase; }
label .req { color: var(--error); margin-left: 2px; }
input, select { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 9px; font-family: var(--font-body); font-size: .9rem; color: var(--text); background: var(--white); transition: border-color .18s, box-shadow .18s; outline: none; -webkit-appearance: none; appearance: none; }
input:focus, select:focus { border-color: var(--blue2); box-shadow: 0 0 0 3px rgba(25,118,210,.11); }
input.error-field { border-color: var(--error) !important; box-shadow: 0 0 0 3px rgba(198,40,40,.1) !important; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field-error { font-size: .76rem; color: var(--error); margin-top: 4px; display: none; }
.field-error.show { display: block; }
.submit-btn { width: 100%; padding: 14px; background: var(--navy); color: var(--white); border: none; border-radius: 10px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all .22s; margin-top: 10px; }
.submit-btn:hover { background: var(--blue); transform: translateY(-1px); }
.submit-btn.gold { background: var(--gold); color: var(--navy); }
.submit-btn.gold:hover { background: var(--gold-light); }
.divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--muted); font-size: .82rem; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.link-btn { color: var(--blue2); font-size: .88rem; font-weight: 500; text-decoration: none; cursor: pointer; background: none; border: none; font-family: var(--font-body); }
.link-btn:hover { text-decoration: underline; }
.mail-hint { background: rgba(21,101,192,.06); border: 1px solid rgba(21,101,192,.18); border-radius: 8px; padding: 11px 14px; font-size: .82rem; color: var(--blue); margin-bottom: 20px; line-height: 1.5; }
.pwd-rules { font-size: .75rem; color: var(--muted); margin-top: 5px; line-height: 1.5; }
.pwd-match-ok { color: var(--success); font-size: .76rem; margin-top: 4px; display: none; }
.pwd-match-ok.show { display: block; }
.pwd-strength { height: 4px; border-radius: 2px; margin-top: 6px; background: var(--border); transition: all .3s; width: 0%; }
.tcbox { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; padding: 14px 16px; background: var(--off-white); border: 1px solid var(--border); border-radius: 9px; }
.tcbox input[type=checkbox] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; cursor: pointer; accent-color: var(--blue); }
.tcbox label { font-size: .82rem; color: var(--text); font-weight: 400; text-transform: none; letter-spacing: 0; line-height: 1.5; cursor: pointer; }
.tcbox label a { color: var(--blue2); text-decoration: underline; }
.pwd-wrap { position: relative; }
.pwd-wrap input { padding-right: 44px; }
.pwd-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--muted); font-size: .85rem; padding: 0; }

/* ===== OVERLAYS ===== */
.overlay { position: fixed; inset: 0; background: rgba(6,18,32,.72); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(5px); }
.overlay.open { display: flex; }
.popup { background: var(--white); border-radius: var(--radius-lg); padding: 38px; max-width: 500px; width: 100%; position: relative; animation: popIn .25s ease; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
@keyframes popIn { from { opacity: 0; transform: scale(.94) translateY(12px) } to { opacity: 1; transform: scale(1) translateY(0) } }
.popup-close { position: absolute; top: 14px; right: 14px; background: var(--off-white); border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: .95rem; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.popup-close:hover { background: var(--border); }
.popup-icon { width: 54px; height: 54px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px; }
.pi-gold { background: linear-gradient(135deg, var(--gold), #b8902a); }
.pi-blue { background: linear-gradient(135deg, var(--blue), #42a5f5); }
.pi-navy { background: linear-gradient(135deg, var(--navy), var(--navy2)); }
.popup-title { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.popup-sub { font-size: .84rem; color: var(--muted); margin-bottom: 20px; line-height: 1.55; }
.cert-result { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 18px; margin-top: 18px; display: none; }
.cert-result.show { display: block; }
.cert-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); font-size: .84rem; }
.cert-row:last-child { border-bottom: none; }
.ck { color: var(--muted); font-weight: 500; }
.cv { color: var(--navy); font-weight: 600; text-align: right; }
.cert-ok { display: flex; align-items: center; gap: 8px; background: rgba(46,125,50,.1); border: 1px solid rgba(46,125,50,.3); border-radius: 8px; padding: 10px 14px; margin-bottom: 14px; color: var(--success); font-size: .84rem; font-weight: 600; }
.cert-err { background: rgba(198,40,40,.07); border: 1px solid rgba(198,40,40,.25); border-radius: 9px; padding: 13px; color: var(--error); font-size: .83rem; font-weight: 500; display: none; margin-top: 11px; }
.cert-err.show { display: block; }
.info-box { background: rgba(21,101,192,.07); border: 1px solid rgba(21,101,192,.2); border-radius: 10px; padding: 16px 18px; font-size: .85rem; color: var(--navy); line-height: 1.65; }
.info-box.warning { background: rgba(245,124,0,.07); border-color: rgba(245,124,0,.25); color: #7a4500; }
.success-msg { background: rgba(46,125,50,.08); border: 1.5px solid rgba(46,125,50,.3); border-radius: 10px; padding: 16px 18px; color: var(--success); font-size: .88rem; font-weight: 500; display: none; margin-top: 11px; line-height: 1.6; }
.success-msg.show { display: block; }

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 60px 20px; }
.thankyou-card { background: var(--white); border-radius: var(--radius-lg); padding: 52px 44px; max-width: 600px; width: 100%; text-align: center; box-shadow: var(--card-shadow); }
.ty-icon { font-size: 3.5rem; margin-bottom: 20px; }
.ty-title { font-family: var(--font-head); font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.ty-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.ty-steps { background: var(--off-white); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; text-align: left; }
.ty-step { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; font-size: .88rem; color: var(--text); line-height: 1.55; }
.ty-step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 700; font-size: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }

/* ===== DASHBOARD ===== */
.dash-page { min-height: 100vh; background: var(--off-white); }
.dash-header { background: var(--navy); padding: 0; box-shadow: 0 2px 20px rgba(0,0,0,.25); position: sticky; top: 0; z-index: 100; }
.dash-header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; padding: 0 28px; }
.dash-logo img { height: 44px; width: auto; object-fit: contain; }
.dash-user { display: flex; align-items: center; gap: 16px; }
.dash-user-name { color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; }
.dash-logout { color: rgba(255,255,255,.65); font-size: .84rem; background: rgba(255,255,255,.1); border: none; border-radius: 8px; padding: 7px 16px; cursor: pointer; font-family: var(--font-body); transition: all .18s; text-decoration: none; }
.dash-logout:hover { background: rgba(255,255,255,.18); color: var(--white); }
.dash-body { max-width: 1100px; margin: 0 auto; padding: 36px 24px; }
.dash-welcome { margin-bottom: 28px; }
.dash-welcome h2 { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); margin-bottom: 5px; }
.dash-welcome p { color: var(--muted); font-size: .92rem; }
.dash-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 32px; }
.dash-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--card-shadow); cursor: pointer; transition: all .22s; text-align: center; text-decoration: none; display: block; }
.dash-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(10,22,60,.13); }
.dc-icon { font-size: 2.2rem; margin-bottom: 12px; }
.dc-title { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.dc-sub { font-size: .8rem; color: var(--muted); line-height: 1.5; }
.dc-btn { margin-top: 16px; display: inline-block; padding: 9px 20px; border-radius: 9px; font-size: .84rem; font-weight: 600; border: none; cursor: pointer; font-family: var(--font-body); transition: all .2s; text-decoration: none; }
.dc-btn-gold { background: var(--gold); color: var(--navy); }
.dc-btn-gold:hover { background: var(--gold-light); }
.dc-btn-blue { background: var(--blue); color: var(--white); }
.dc-btn-blue:hover { background: var(--blue2); }
.dc-btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.dc-btn-outline:hover { border-color: var(--navy); background: var(--off-white); }
.dash-profile { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--card-shadow); display: none; }
.dash-profile.show { display: block; }
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.dp-title { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); }
.dp-lock-note { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.dp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dp-field { display: flex; flex-direction: column; gap: 4px; }
.dp-label { font-size: .75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.dp-value { font-size: .92rem; color: var(--navy); font-weight: 500; padding: 10px 14px; background: var(--off-white); border: 1px solid var(--border); border-radius: 9px; word-break: break-word; }
.dp-locked { color: var(--muted) !important; }

/* ===== COURSE / MODULES PAGE ===== */
.course-page { min-height: 100vh; background: var(--off-white); }
.course-hero { background: var(--navy); padding: 48px 0 40px; }
.course-hero-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.course-hero h1 { font-family: var(--font-head); font-size: clamp(1.5rem,3vw,2rem); color: var(--white); margin-bottom: 6px; }
.course-hero p { font-size: .9rem; color: rgba(255,255,255,.6); }
.course-back { color: rgba(255,255,255,.7); font-size: .85rem; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .15s; margin-bottom: 16px; border: none; background: none; cursor: pointer; font-family: var(--font-body); }
.course-back:hover { color: var(--gold); }
.course-body { max-width: 900px; margin: 0 auto; padding: 40px 24px 60px; }
.module-list { display: flex; flex-direction: column; gap: 18px; }
.module-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--card-shadow); transition: border-color .2s; }
.module-item.open { border-color: var(--gold); }
.module-header { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; transition: background .15s; }
.module-header:hover { background: var(--off-white); }
.module-num { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: var(--gold); font-family: var(--font-head); font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.module-info { flex: 1; }
.module-title { font-weight: 700; font-size: .98rem; color: var(--navy); margin-bottom: 3px; }
.module-meta { font-size: .78rem; color: var(--muted); }
.module-toggle { width: 32px; height: 32px; border-radius: 50%; background: var(--off-white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--muted); flex-shrink: 0; transition: all .2s; }
.module-item.open .module-toggle { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(45deg); }
.module-content { display: none; border-top: 1.5px solid var(--border); }
.module-item.open .module-content { display: block; }
.module-video-area { padding: 24px; background: var(--off-white); border-bottom: 1px solid var(--border); }
.module-video-area h4 { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.video-player-mock { background: #0a1628; border-radius: var(--radius); aspect-ratio: 16/9; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; cursor: pointer; }
.video-player-mock::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(21,101,192,.2), rgba(0,0,0,.4)); }
.video-play-btn { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,168,76,.9); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; z-index: 1; transition: transform .2s, background .2s; }
.video-player-mock:hover .video-play-btn { transform: scale(1.1); background: var(--gold); }
.video-title { color: rgba(255,255,255,.8); font-size: .82rem; margin-top: 12px; z-index: 1; }
.video-duration { color: rgba(255,255,255,.5); font-size: .72rem; margin-top: 4px; z-index: 1; }
.module-topics { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.module-topics h4 { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 12px; }
.topic-list { display: flex; flex-direction: column; gap: 8px; }
.topic-item { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: var(--text); padding: 8px 12px; background: var(--off-white); border-radius: 8px; }
.topic-check { color: var(--blue); font-weight: 700; }
.module-pdf-area { padding: 18px 24px; }
.module-pdf-area h4 { font-weight: 700; font-size: .88rem; color: var(--navy); margin-bottom: 12px; }
.pdf-link-card { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(21,101,192,.06); border: 1.5px solid rgba(21,101,192,.2); border-radius: 10px; text-decoration: none; transition: all .2s; cursor: pointer; }
.pdf-link-card:hover { background: rgba(21,101,192,.1); border-color: rgba(21,101,192,.4); }
.pdf-icon { width: 40px; height: 40px; border-radius: 9px; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.pdf-info { flex: 1; }
.pdf-name { font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 2px; }
.pdf-hint { font-size: .75rem; color: var(--muted); }
.pdf-action { font-size: .78rem; font-weight: 600; color: var(--blue); }

/* ===== POLICY PAGES ===== */
.policy-wrap { max-width: 860px; margin: 0 auto; padding: 60px 24px; }
.policy-title { font-family: var(--font-head); font-size: 2.2rem; color: var(--navy); margin-bottom: 8px; }
.policy-date { font-size: .82rem; color: var(--muted); margin-bottom: 32px; }
.policy-section { margin-bottom: 32px; }
.policy-section h3 { font-family: var(--font-head); font-size: 1.15rem; color: var(--navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.policy-section p { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: 10px; }
.policy-section ul { padding-left: 20px; margin-top: 8px; margin-bottom: 10px; }
.policy-section ul li { font-size: .9rem; color: var(--text); line-height: 1.75; margin-bottom: 6px; }
.policy-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,125,50,.08); border: 1px solid rgba(46,125,50,.25); border-radius: 10px; padding: 12px 16px; font-size: .84rem; color: var(--success); font-weight: 600; margin-bottom: 24px; }

/* ===== FOOTER ===== */
footer { background: var(--navy); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo img { height: 46px; width: auto; object-fit: contain; margin-bottom: 14px; display: block; }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.48); line-height: 1.7; margin-bottom: 18px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.fbadge { font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.fb-msme { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.25); }
.fb-nep { background: rgba(21,101,192,.15); color: #90caf9; border: 1px solid rgba(21,101,192,.25); }
.footer-col-title { font-size: .77rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-link { color: rgba(255,255,255,.55); font-size: .84rem; text-decoration: none; cursor: pointer; background: none; border: none; text-align: left; font-family: var(--font-body); transition: color .15s; display: block; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 18px; }
.footer-legal a { font-size: .76rem; color: rgba(255,255,255,.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: grid; grid-template-columns: 1fr 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 26px 18px; }
  .dash-cards { grid-template-columns: 1fr; }
  .dp-grid { grid-template-columns: 1fr; }
  .ben-grid { grid-template-columns: 1fr; }
  .dash-body { padding: 24px 16px; }
}
@media (max-width: 560px) {
  .hero-visual { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-stats { gap: 18px; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; }
  .thankyou-card { padding: 32px 18px; }
  .dash-header-inner { padding: 0 16px; }
  .course-body { padding: 24px 16px 40px; }
}
