/* ─── VARIABLES ─── */
:root {
  --navy:   #1B2D6B;
  --navy2:  #162459;
  --orange: #E8650A;
  --orange2:#C9570A;
  --white:  #ffffff;
  --light:  #F7F8FC;
  --light2: #EEF0F8;
  --text:   #111827;
  --muted:  #6B7280;
  --border: #E5E7EB;
  --success:#16A34A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  background: var(--white);
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 10px rgba(0,0,0,0.08);
}
.logo-img { height: 40px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-links a:hover { background: var(--light); }
.nav-login {
  border: 2px solid var(--navy) !important;
  color: var(--navy) !important;
  border-radius: 8px !important;
}
.nav-login:hover { background: var(--light2) !important; }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  padding: 9px 20px !important;
}
.nav-cta:hover { background: var(--orange2) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); border-radius:2px; }

/* ─── HERO ─── */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, var(--navy) 0%, #2B3F8F 60%, #1B2D6B 100%);
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute;
  width:700px; height:700px;
  background: radial-gradient(circle, rgba(232,101,10,0.15), transparent 70%);
  top:-200px; right:-100px;
  border-radius:50%;
}
.hero::after {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(27,45,107,0.98) 0%, rgba(27,45,107,0.4) 70%, transparent 100%);
}
.hero-content {
  position:relative; z-index:2;
  padding: 60px 40px 72px;
  max-width: 760px;
}
.hero-tag {
  display:inline-block;
  background: rgba(232,101,10,0.15);
  border: 1px solid rgba(232,101,10,0.5);
  color: #FBBF24;
  padding: 5px 16px; border-radius:50px;
  font-size:0.75rem; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  margin-bottom:20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight:800; color:var(--white);
  line-height:1.12; margin-bottom:18px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  color: rgba(255,255,255,0.72);
  font-size:1.05rem; line-height:1.75;
  margin-bottom:32px; max-width:540px;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; }

.btn-primary {
  background: var(--orange); color: var(--white);
  padding:13px 30px; border-radius:8px;
  font-weight:700; font-size:0.92rem;
  text-decoration:none; border:none; cursor:pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family:inherit; display:inline-block;
}
.btn-primary:hover { background:var(--orange2); transform:translateY(-2px); box-shadow:0 6px 20px rgba(232,101,10,0.35); }
.btn-secondary {
  background: rgba(255,255,255,0.1); color:var(--white);
  padding:13px 30px; border-radius:8px;
  font-weight:700; font-size:0.92rem;
  text-decoration:none; border:2px solid rgba(255,255,255,0.3);
  cursor:pointer; transition:all 0.2s;
  font-family:inherit; display:inline-block;
}
.btn-secondary:hover { background:rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.6); }

/* ─── STATS ─── */
.stats-section { background:var(--navy); padding:44px 40px; }
.stats-grid { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.stat-card { background:rgba(255,255,255,0.07); border-radius:14px; padding:24px 18px; text-align:center; border:1px solid rgba(255,255,255,0.08); }
.stat-icon { width:44px; height:44px; background:rgba(232,101,10,0.2); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin:0 auto 12px; }
.stat-num { font-size:2rem; font-weight:800; color:var(--white); margin-bottom:4px; }
.stat-label { font-size:0.78rem; color:rgba(255,255,255,0.55); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }

/* ─── SECTIONS ─── */
.section { padding:70px 40px; }
.section.alt { background:var(--light); }
.inner { max-width:1100px; margin:0 auto; }
.section-label { font-size:0.75rem; font-weight:700; color:var(--orange); text-transform:uppercase; letter-spacing:2px; margin-bottom:10px; }
.section-title { font-size:clamp(1.8rem,3vw,2.5rem); font-weight:800; color:var(--text); line-height:1.2; margin-bottom:12px; }
.section-sub { color:var(--muted); font-size:0.97rem; line-height:1.75; max-width:540px; margin-bottom:36px; }

/* ─── ABOUT ─── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-images { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.about-img { border-radius:16px; overflow:hidden; aspect-ratio:3/4; }
.about-img:first-child { margin-top:32px; }
.about-img-placeholder { width:100%; height:100%; min-height:200px; display:flex; align-items:center; justify-content:center; font-size:3rem; background:linear-gradient(135deg, var(--navy), #2B3F8F); color:white; }
.feature-list { list-style:none; margin:22px 0; }
.feature-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:18px; }
.feature-icon { width:38px; height:38px; min-width:38px; border:2px solid var(--orange); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; color:var(--orange); }
.feature-title { font-weight:700; font-size:0.92rem; margin-bottom:2px; }
.feature-desc { font-size:0.83rem; color:var(--muted); line-height:1.5; }
.btn-outline-navy { display:inline-block; border:2px solid var(--navy); color:var(--navy); padding:11px 26px; border-radius:8px; font-weight:700; font-size:0.88rem; text-decoration:none; transition:all 0.2s; cursor:pointer; font-family:inherit; background:transparent; }
.btn-outline-navy:hover { background:var(--navy); color:var(--white); }

/* ─── PARTNERS ─── */
.partners-strip { background:var(--light2); padding:32px 40px; }
.partners-label { text-align:center; font-size:0.75rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:20px; }
.partners-scroll { display:flex; gap:12px; overflow-x:auto; padding-bottom:6px; scrollbar-width:none; align-items:center; }
.partners-scroll::-webkit-scrollbar { display:none; }
.partner-logo { background:var(--white); border:1.5px solid var(--border); border-radius:10px; padding:12px 20px; white-space:nowrap; font-weight:700; font-size:0.82rem; color:var(--navy); flex-shrink:0; }

/* ─── CAROUSEL ─── */
.carousel { display:flex; gap:18px; overflow-x:auto; padding-bottom:10px; scroll-snap-type:x mandatory; scrollbar-width:none; }
.carousel::-webkit-scrollbar { display:none; }
.carousel-nav { display:flex; gap:8px; margin-top:16px; }
.carousel-btn { width:36px; height:36px; border-radius:50%; border:2px solid var(--border); background:var(--white); cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--navy); transition:all 0.2s; }
.carousel-btn:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }

/* ─── COURSE CARDS ─── */
.course-card { min-width:260px; max-width:280px; background:var(--white); border-radius:14px; border:1.5px solid var(--border); overflow:hidden; scroll-snap-align:start; transition:box-shadow 0.2s, transform 0.2s; flex-shrink:0; }
.course-card:hover { box-shadow:0 8px 28px rgba(0,0,0,0.09); transform:translateY(-3px); }
.course-img { width:100%; height:160px; display:flex; align-items:center; justify-content:center; font-size:3rem; overflow:hidden; flex-shrink:0; background:linear-gradient(135deg,var(--navy),#2B3F8F); }
.course-body { padding:16px; }
.course-tag { display:inline-block; background:rgba(232,101,10,0.1); color:var(--orange); padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:8px; }
.job-tag { background:rgba(27,45,107,0.08); color:var(--navy); }
.course-name { font-weight:800; font-size:0.97rem; margin-bottom:4px; }
.course-college { font-size:0.78rem; color:var(--muted); margin-bottom:10px; }
.course-meta { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.course-meta span { font-size:0.7rem; font-weight:700; background:var(--light); padding:3px 9px; border-radius:50px; color:var(--navy); }
.card-btns { display:flex; gap:8px; }
.c-about-btn { flex:1; padding:8px; border-radius:7px; background:var(--light); border:none; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; color:var(--navy); transition:background 0.2s; }
.c-about-btn:hover { background:var(--border); }
.c-apply-btn { flex:1.5; padding:8px; border-radius:7px; background:var(--navy); border:none; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; color:var(--white); transition:background 0.2s; }
.c-apply-btn:hover { background:var(--orange); }
.c-oneclick-btn { flex:1.5; padding:8px; border-radius:7px; background:var(--orange); border:none; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; color:var(--white); transition:background 0.2s; display:none; }
.c-oneclick-btn:hover { background:var(--orange2); }

/* ─── TAB BTNS ─── */
.tab-btn { padding:7px 18px; border-radius:50px; border:1.5px solid var(--border); background:var(--white); font-family:inherit; font-weight:700; font-size:0.82rem; cursor:pointer; transition:all 0.2s; color:var(--muted); }
.tab-btn.active, .tab-btn:hover { background:var(--navy); border-color:var(--navy); color:var(--white); }

/* ─── CTA BAND ─── */
.cta-band { background:linear-gradient(135deg, var(--navy) 0%, #2B3F8F 100%); padding:52px 40px; text-align:center; }
.cta-band h2 { font-size:clamp(1.8rem,3vw,2.5rem); font-weight:800; color:var(--white); margin-bottom:12px; }
.cta-band p { color:rgba(255,255,255,0.72); font-size:0.97rem; margin-bottom:26px; max-width:500px; margin-left:auto; margin-right:auto; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background:var(--navy); }
.testimonials-section .section-label { color:rgba(232,101,10,0.9); }
.testimonials-section .section-title { color:var(--white); }
.testimonials-section .section-sub { color:rgba(255,255,255,0.55); }
.testimonials-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(210px,1fr)); gap:14px; }
.t-card { background:rgba(255,255,255,0.06); border:1.5px solid rgba(255,255,255,0.09); border-radius:14px; padding:26px 18px; text-align:center; text-decoration:none; display:block; transition:all 0.2s; }
.t-card:hover { background:rgba(255,255,255,0.11); transform:translateY(-3px); }
.t-icon { font-size:2rem; margin-bottom:10px; }
.t-platform { font-weight:800; font-size:1rem; margin-bottom:5px; }
.t-label { font-size:0.8rem; color:rgba(255,255,255,0.5); line-height:1.5; margin-bottom:12px; }
.t-visit { display:inline-block; padding:5px 14px; border-radius:50px; font-size:0.75rem; font-weight:700; color:white; }

/* ─── HOW IT WORKS ─── */
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.step-card { background:var(--white); border:1.5px solid var(--border); border-radius:14px; padding:26px 20px; text-align:center; transition:box-shadow 0.2s; }
.step-card:hover { box-shadow:0 6px 22px rgba(0,0,0,0.07); }
.step-num { width:42px; height:42px; background:var(--navy); color:var(--white); border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.97rem; margin:0 auto 13px; }
.step-title { font-weight:800; font-size:0.95rem; margin-bottom:7px; }
.step-desc { font-size:0.82rem; color:var(--muted); line-height:1.6; }

/* ─── CONTACT ─── */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:56px; align-items:start; }
.contact-info p { color:var(--muted); font-size:0.92rem; line-height:1.75; margin-bottom:26px; }
.contact-item { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.contact-icon { width:42px; height:42px; background:rgba(27,45,107,0.08); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--navy); flex-shrink:0; }
.contact-item-label { font-weight:700; font-size:0.82rem; color:var(--navy); margin-bottom:2px; }
.contact-item-val { font-size:0.87rem; color:var(--muted); }
.contact-form-card { background:var(--white); border-radius:18px; padding:34px; box-shadow:0 4px 28px rgba(0,0,0,0.07); border:1.5px solid var(--border); }
.contact-form-card h3 { font-size:1.25rem; font-weight:800; margin-bottom:4px; }
.contact-form-card > p { font-size:0.83rem; color:var(--muted); margin-bottom:22px; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-weight:700; font-size:0.77rem; color:var(--text); margin-bottom:5px; text-transform:uppercase; letter-spacing:0.3px; }
.form-group input, .form-group select, .form-group textarea { width:100%; padding:10px 13px; border:1.5px solid var(--border); border-radius:9px; font-family:inherit; font-size:0.88rem; color:var(--text); background:var(--white); transition:border-color 0.2s; appearance:none; }
.form-group textarea { resize:vertical; min-height:90px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline:none; border-color:var(--navy); }
.btn-send { width:100%; background:var(--navy); color:var(--white); border:none; padding:13px; border-radius:9px; font-family:inherit; font-weight:700; font-size:0.95rem; cursor:pointer; transition:background 0.2s; margin-top:4px; }
.btn-send:hover { background:var(--orange); }

/* ─── FOOTER ─── */
footer { background:var(--navy2); padding:46px 40px 22px; }
.footer-grid { max-width:1100px; margin:0 auto 32px; display:grid; grid-template-columns:1.5fr 1fr; gap:44px; }
.footer-desc { color:rgba(255,255,255,0.55); font-size:0.85rem; line-height:1.75; margin-bottom:18px; max-width:320px; }
.footer-socials { display:flex; gap:8px; }
.social-icon { width:36px; height:36px; border-radius:50%; border:1.5px solid rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; font-size:0.85rem; color:rgba(255,255,255,0.65); text-decoration:none; transition:all 0.2s; }
.social-icon:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.4); }
.footer-nav h4 { color:var(--white); font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:14px; }
.footer-nav a { display:block; color:rgba(255,255,255,0.55); text-decoration:none; font-size:0.87rem; margin-bottom:9px; transition:color 0.2s; }
.footer-nav a:hover { color:var(--white); }
.footer-address { color:rgba(255,255,255,0.45); font-size:0.8rem; margin-bottom:5px; }
.footer-bottom { max-width:1100px; margin:0 auto; border-top:1px solid rgba(255,255,255,0.08); padding-top:18px; text-align:center; color:rgba(255,255,255,0.35); font-size:0.79rem; }

/* ─── FLOATING ─── */
.wa-float { position:fixed; bottom:26px; left:22px; width:50px; height:50px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; box-shadow:0 4px 14px rgba(37,211,102,0.4); z-index:200; text-decoration:none; transition:transform 0.2s; }
.wa-float:hover { transform:scale(1.1); }
.back-top { position:fixed; bottom:26px; right:22px; width:42px; height:42px; background:var(--white); border:2px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.95rem; cursor:pointer; z-index:200; box-shadow:0 2px 10px rgba(0,0,0,0.1); transition:all 0.2s; color:var(--navy); }
.back-top:hover { background:var(--navy); color:var(--white); border-color:var(--navy); }

/* ─── AUTH MODAL ─── */
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:999; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal { background:var(--white); border-radius:18px; padding:34px; width:100%; max-width:500px; max-height:90vh; overflow-y:auto; animation:popIn 0.3s ease both; }
.modal-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px; }
.modal-title { font-size:1.35rem; font-weight:800; color:var(--text); }
.modal-close { background:var(--light); border:none; width:32px; height:32px; border-radius:50%; font-size:0.95rem; cursor:pointer; font-weight:700; color:var(--muted); }
.modal-close:hover { background:var(--border); }

/* Role toggle */
.role-toggle { display:flex; background:var(--light); border-radius:10px; padding:3px; margin-bottom:22px; gap:3px; }
.role-btn { flex:1; padding:9px; border:none; border-radius:7px; background:transparent; font-family:inherit; font-weight:700; font-size:0.85rem; color:var(--muted); cursor:pointer; transition:all 0.2s; }
.role-btn.active { background:var(--navy); color:var(--white); }

/* Auth forms */
.auth-panel { display:none; }
.auth-panel.active { display:block; }
.auth-badge { display:flex; align-items:center; gap:10px; background:var(--light); border-radius:10px; padding:10px 14px; margin-bottom:18px; }
.auth-badge-icon { font-size:1.3rem; }
.auth-badge-text { font-size:0.8rem; font-weight:700; color:var(--navy); }
.error-msg { display:none; background:rgba(220,38,38,0.07); border:1px solid rgba(220,38,38,0.2); color:#DC2626; padding:9px 13px; border-radius:8px; font-size:0.82rem; font-weight:600; margin-bottom:14px; }
.error-msg.show { display:block; }
.pass-wrapper { position:relative; }
.pass-wrapper input { padding-right:42px; }
.pass-toggle { position:absolute; right:12px; top:50%; transform:translateY(-50%); background:none; border:none; cursor:pointer; font-size:1rem; color:var(--muted); }
.auth-footer-link { text-align:center; margin-top:14px; font-size:0.82rem; color:var(--muted); }
.auth-footer-link a { color:var(--orange); font-weight:700; text-decoration:none; }
.divider { display:flex; align-items:center; gap:10px; margin:16px 0; color:var(--muted); font-size:0.78rem; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background:var(--border); }
.back-link-auth { text-align:center; margin-top:18px; }
.back-link-auth a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.82rem; }
.back-link-auth a:hover { color:var(--white); }

/* About modal */
.about-modal { max-width:530px; }
.modal-college { color:var(--muted); font-size:0.85rem; margin-bottom:16px; }
.modal-stats { display:flex; gap:8px; margin-bottom:16px; flex-wrap:wrap; }
.modal-stat { flex:1; min-width:70px; background:var(--light); border-radius:9px; padding:10px 8px; text-align:center; overflow:hidden; }
.modal-stat-label { font-size:0.6rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:3px; word-break:break-word; }
.modal-stat-val { font-weight:800; font-size:0.82rem; color:var(--navy); }
.modal-desc { font-size:0.87rem; color:var(--muted); line-height:1.7; margin-bottom:16px; }
.modal-highlights-title { font-weight:800; font-size:0.83rem; margin-bottom:8px; }
.modal-highlights { list-style:none; margin-bottom:20px; }
.modal-highlights li { font-size:0.85rem; color:var(--muted); padding:6px 0; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:8px; }
.modal-highlights li::before { content:'✓'; color:var(--orange); font-weight:800; }
.modal-apply-btn { width:100%; background:var(--navy); color:var(--white); border:none; padding:13px; border-radius:9px; font-family:inherit; font-weight:700; font-size:0.92rem; cursor:pointer; transition:background 0.2s; }
.modal-apply-btn:hover { background:var(--orange); }

/* One-tap apply banner */
.onetap-banner { background:linear-gradient(135deg,var(--orange),var(--orange2)); border-radius:12px; padding:14px 18px; margin-bottom:18px; display:flex; align-items:center; gap:12px; }
.onetap-banner-icon { font-size:1.5rem; }
.onetap-banner-text { flex:1; }
.onetap-banner-title { color:white; font-weight:800; font-size:0.9rem; }
.onetap-banner-sub { color:rgba(255,255,255,0.8); font-size:0.78rem; }
.onetap-btn { background:white; color:var(--orange); border:none; padding:9px 18px; border-radius:8px; font-family:inherit; font-weight:800; font-size:0.82rem; cursor:pointer; white-space:nowrap; transition:background 0.2s; }
.onetap-btn:hover { background:var(--light); }

/* Apply form */
.apply-form-group { margin-bottom:13px; }
.apply-form-group label { display:block; font-weight:700; font-size:0.75rem; color:var(--text); margin-bottom:5px; text-transform:uppercase; letter-spacing:0.3px; }
.apply-form-group input, .apply-form-group select { width:100%; padding:10px 13px; border:1.5px solid var(--border); border-radius:9px; font-family:inherit; font-size:0.88rem; color:var(--text); background:var(--white); transition:border-color 0.2s; appearance:none; }
.apply-form-group input:focus, .apply-form-group select:focus { outline:none; border-color:var(--navy); }
.apply-row { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.success-msg { display:none; text-align:center; padding:20px 0; }
.success-msg .tick { font-size:3rem; margin-bottom:10px; }
.success-msg h3 { font-size:1.25rem; font-weight:800; margin-bottom:7px; }
.success-msg p { color:var(--muted); font-size:0.87rem; }

/* ─── ANIMATIONS ─── */
@keyframes popIn { from { opacity:0; transform:scale(0.93); } to { opacity:1; transform:scale(1); } }

/* ─── RESPONSIVE ─── */
@media (max-width:900px) {
  .about-grid { grid-template-columns:1fr; }
  .about-images { display:none; }
  .contact-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; gap:26px; }
}


/* ─── HERO SLIDESHOW ─── */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-right: 40px;
}
.hero-slideshow {
  position: relative;
  flex-shrink: 0;
  width: 340px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 2;
  margin-bottom: 30px;
}
.hero-slides { width: 100%; height: 100%; position: relative; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 22px; text-align: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-icon { font-size: 2.8rem; margin-bottom: 12px; }
.hero-slide-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff; padding: 4px 12px;
  border-radius: 50px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 12px;
}
.hero-slide-title {
  font-size: 1.2rem; font-weight: 800;
  color: #fff; line-height: 1.3; margin-bottom: 8px;
}
.hero-slide-sub { font-size: 0.82rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 16px; }
.hero-slide-btn {
  background: #fff; color: var(--navy);
  border: none; padding: 9px 20px;
  border-radius: 50px; font-family: inherit;
  font-weight: 800; font-size: 0.8rem;
  cursor: pointer; transition: background 0.2s;
}
.hero-slide-btn:hover { background: var(--light); }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.18); border: none;
  color: #fff; width: 32px; height: 32px;
  border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-arrow.left { left: 10px; }
.hero-arrow.right { right: 10px; }
.hero-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 3;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35); border: none;
  cursor: pointer; transition: all 0.2s;
}
.hero-dot.active { background: #fff; transform: scale(1.3); }

/* ─── MENTORS ─── */
.mentor-card {
  min-width: 220px; max-width: 220px;
  background: var(--white); border-radius: 16px;
  border: 1.5px solid var(--border);
  overflow: hidden; scroll-snap-align: start;
  flex-shrink: 0; text-align: center;
  padding-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.mentor-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.mentor-img {
  width: 100%; height: 200px;
  object-fit: cover; object-position: top;
  background: linear-gradient(135deg, var(--navy), #2B3F8F);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.mentor-body { padding: 16px 14px 0; }
.mentor-tag {
  display: inline-block;
  background: rgba(232,101,10,0.1);
  color: var(--orange); padding: 3px 10px;
  border-radius: 50px; font-size: 0.7rem;
  font-weight: 700; margin-bottom: 8px;
}
.mentor-name { font-weight: 800; font-size: 1rem; margin-bottom: 4px; }
.mentor-role { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; }
.mentor-city { font-size: 0.75rem; color: var(--muted); }

/* ─── BLOG ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.blog-card {
  background: var(--white); border-radius: 16px;
  border: 1.5px solid var(--border); overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.09); transform: translateY(-3px); }
.blog-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--navy), #2B3F8F);
  display: flex; align-items: center;
  justify-content: center; font-size: 3rem;
  overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 18px; }
.blog-tag {
  display: inline-block;
  background: rgba(27,45,107,0.08);
  color: var(--navy); padding: 3px 10px;
  border-radius: 50px; font-size: 0.7rem;
  font-weight: 700; margin-bottom: 9px;
}
.blog-title { font-weight: 800; font-size: 1rem; margin-bottom: 7px; line-height: 1.4; }
.blog-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.blog-meta { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.blog-read-more {
  display: inline-block; margin-top: 10px;
  color: var(--orange); font-weight: 700;
  font-size: 0.82rem; text-decoration: none;
  border: none; background: none;
  cursor: pointer; font-family: inherit;
  padding: 0;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; padding-right: 20px; }
  .hero-slideshow { width: 100%; max-width: 100%; height: 280px; margin-bottom: 0; }
}

/* ─── WHATSAPP BAND ─── */
.wa-band {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
  padding: 52px 40px;
}
.wa-band-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.wa-band-left { display: flex; align-items: flex-start; gap: 20px; flex: 1; }
.wa-band-icon {
  width: 68px; height: 68px; min-width: 68px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wa-band-label {
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.wa-band-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800; color: white;
  margin-bottom: 8px; line-height: 1.3;
}
.wa-band-sub { color: rgba(255,255,255,0.75); font-size: 0.95rem; line-height: 1.6; }
.wa-band-btn {
  display: flex; align-items: center; gap: 10px;
  background: white; color: #075E54;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.95rem;
  text-decoration: none; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.wa-band-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ─── NAV WHATSAPP ─── */
.nav-wa { background: #25D366 !important; color: white !important; }
.nav-wa:hover { background: #1ebe5d !important; }

/* ─── POPUP ─── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}
.popup-overlay.hidden { display: none; }
.popup-box {
  background: white; border-radius: 22px;
  width: 100%; max-width: 480px;
  padding: 32px 28px;
  position: relative;
  animation: popIn 0.4s ease;
  max-height: 90vh; overflow-y: auto;
}
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light); border: none;
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-weight: 700;
  transition: background 0.2s;
}
.popup-close:hover { background: var(--border); }
.popup-header { margin-bottom: 20px; }
.popup-tag {
  display: inline-block;
  background: rgba(232,101,10,0.1);
  color: var(--orange); padding: 4px 12px;
  border-radius: 50px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 10px;
}
.popup-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.popup-sub { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* popup slides */
.popup-slides {
  position: relative; height: 200px;
  border-radius: 14px; overflow: hidden;
  margin-bottom: 14px;
}
.popup-slide {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  opacity: 0; transition: opacity 0.5s ease;
}
.popup-slide.active { opacity: 1; }
.popup-slide-icon { font-size: 2.4rem; margin-bottom: 10px; }
.popup-slide-tag {
  display: inline-block; background: rgba(255,255,255,0.2);
  color: white; padding: 3px 10px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; margin-bottom: 8px;
}
.popup-slide-title { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 6px; }
.popup-slide-sub { font-size: 0.78rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.popup-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: none;
  color: white; width: 30px; height: 30px;
  border-radius: 50%; font-size: 1.1rem;
  cursor: pointer; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.popup-arrow:hover { background: rgba(255,255,255,0.35); }
.popup-arrow.left { left: 8px; }
.popup-arrow.right { right: 8px; }
.popup-dots {
  display: flex; gap: 6px; justify-content: center; margin-bottom: 20px;
}
.popup-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: all 0.2s;
}
.popup-dot.active { background: var(--navy); transform: scale(1.3); }
.popup-footer { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.popup-wa-btn {
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: white;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 800; font-size: 0.92rem;
  text-decoration: none; width: 100%;
  justify-content: center;
  transition: background 0.2s;
}
.popup-wa-btn:hover { background: #1ebe5d; }
.popup-skip {
  background: none; border: none;
  color: var(--muted); font-size: 0.82rem;
  cursor: pointer; font-family: inherit;
  text-decoration: underline; padding: 4px;
}


/* ─── STATUS TAGS ─── */
.status-open { display:inline-block; background:rgba(22,163,74,0.1); color:#16A34A; padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:6px; }
.status-closed { display:inline-block; background:rgba(220,38,38,0.08); color:#DC2626; padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:6px; }
.c-apply-closed { background:#f3f4f6 !important; color:#9CA3AF !important; cursor:not-allowed !important; }

/* ─── VIEW MORE BUTTON ─── */
.section-footer-row { display:flex; justify-content:space-between; align-items:center; margin-top:16px; flex-wrap:wrap; gap:12px; }
.view-more-btn { background:var(--navy); color:white; border:none; padding:10px 24px; border-radius:50px; font-family:inherit; font-weight:700; font-size:0.88rem; cursor:pointer; transition:background 0.2s, transform 0.2s; }
.view-more-btn:hover { background:var(--orange); transform:translateY(-2px); }

/* ─── FILTER MODAL ─── */
.filter-modal { padding:0 !important; }
.fm-header { display:flex; justify-content:space-between; align-items:center; padding:20px 24px; border-bottom:1px solid var(--border); position:sticky; top:0; background:white; z-index:2; border-radius:18px 18px 0 0; }
.fm-title { font-size:1.15rem; font-weight:800; display:flex; align-items:center; gap:10px; }
.fm-count { background:rgba(27,45,107,0.08); color:var(--navy); padding:3px 10px; border-radius:50px; font-size:0.75rem; font-weight:700; }
.fm-filters { display:flex; gap:10px; flex-wrap:wrap; padding:14px 24px; background:#F9FAFB; border-bottom:1px solid var(--border); }
.filter-sel { padding:8px 12px; border:1.5px solid var(--border); border-radius:8px; font-family:inherit; font-size:0.82rem; color:var(--text); background:white; cursor:pointer; }
.filter-sel:focus { outline:none; border-color:var(--navy); }
.fm-clear { background:none; border:1.5px solid var(--coral); color:var(--coral); padding:7px 14px; border-radius:8px; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; }
.fm-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(260px,1fr)); gap:16px; padding:20px 24px; }
.fm-card { background:#F9FAFB; border:1.5px solid var(--border); border-radius:14px; padding:16px; display:flex; gap:12px; align-items:flex-start; transition:box-shadow 0.2s; }
.fm-card:hover { box-shadow:0 4px 16px rgba(0,0,0,0.08); background:white; }
.fm-card-icon { font-size:2rem; flex-shrink:0; width:44px; text-align:center; }
.fm-card-body { flex:1; }
.fm-card-name { font-weight:800; font-size:0.92rem; margin-bottom:3px; }
.fm-card-sub { font-size:0.78rem; color:var(--muted); margin-bottom:7px; }
.fm-card-meta { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:4px; }
.fm-card-meta span { font-size:0.7rem; font-weight:700; background:var(--light); padding:2px 8px; border-radius:50px; color:var(--navy); }
.fm-empty { grid-column:1/-1; text-align:center; padding:48px; color:var(--muted); font-size:0.9rem; }

/* ─── APPLICANT SHOWCASE ─── */
.applicant-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(200px,1fr)); gap:18px; }
.applicant-card { background:white; border:1.5px solid var(--border); border-radius:16px; padding:22px 18px; text-align:center; transition:box-shadow 0.2s, transform 0.2s; }
.applicant-card:hover { box-shadow:0 8px 24px rgba(0,0,0,0.09); transform:translateY(-3px); }
.applicant-avatar { width:56px; height:56px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-weight:800; font-size:1.4rem; margin:0 auto 12px; }
.applicant-name { font-weight:800; font-size:0.97rem; margin-bottom:6px; }
.applicant-meta { font-size:0.78rem; color:var(--muted); margin-bottom:4px; }
.applicant-badge { display:inline-block; background:rgba(27,45,107,0.08); color:var(--navy); padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin:4px 2px; }
.applicant-badge.job { background:rgba(232,101,10,0.08); color:var(--orange); }
.applicant-contact { display:block; margin-top:12px; background:#25D366; color:white; padding:8px 14px; border-radius:8px; font-size:0.78rem; font-weight:700; text-decoration:none; transition:background 0.2s; }
.applicant-contact:hover { background:#1ebe5d; }
.showcase-empty { grid-column:1/-1; text-align:center; padding:48px; color:var(--muted); }

/* ─── VIDEO TESTIMONIALS ─── */
.video-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:20px; }
.video-card { background:white; border:1.5px solid var(--border); border-radius:14px; overflow:hidden; transition:box-shadow 0.2s, transform 0.2s; cursor:pointer; }
.video-card:hover { box-shadow:0 10px 32px rgba(0,0,0,0.12); transform:translateY(-4px); }
.video-thumb { position:relative; height:180px; background:linear-gradient(135deg,var(--navy),#2B3F8F); display:flex; align-items:center; justify-content:center; }
.video-thumb-icon { font-size:3.5rem; }
.video-play-icon { position:absolute; width:52px; height:52px; background:rgba(255,255,255,0.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:white; border:2px solid rgba(255,255,255,0.5); transition:background 0.2s; }
.video-card:hover .video-play-icon { background:rgba(255,255,255,0.35); }
.video-duration { position:absolute; bottom:10px; right:12px; background:rgba(0,0,0,0.6); color:white; padding:2px 8px; border-radius:4px; font-size:0.72rem; font-weight:700; }
.video-body { padding:16px; }
.video-title { font-weight:800; font-size:0.92rem; margin-bottom:6px; color:var(--text); line-height:1.4; }
.video-student { font-size:0.78rem; color:var(--muted); margin-bottom:4px; }
.video-result { font-size:0.78rem; color:#16A34A; font-weight:600; }

/* ═══════════════════════════════════════════════════
   ANIMATIONS & VISUAL UPGRADES
   ═══════════════════════════════════════════════════ */

/* ─── LOGO SIZE FIX ─── */
.logo-img {
  height: 52px !important;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 6px;
  padding: 4px 8px;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity:0; transform:translateX(-40px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity:0; transform:translateX(40px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity:1; transform:translateX(0); }

/* ─── HERO UPGRADES ─── */
.hero-tag {
  animation: fadeDown 0.6s ease both;
  animation-delay: 0.1s;
}
.hero h1 {
  animation: fadeDown 0.7s ease both;
  animation-delay: 0.2s;
}
.hero p {
  animation: fadeDown 0.8s ease both;
  animation-delay: 0.3s;
}
.hero-btns {
  animation: fadeDown 0.9s ease both;
  animation-delay: 0.4s;
}
.hero-slideshow {
  animation: fadeLeft 0.9s ease both;
  animation-delay: 0.3s;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ─── COURSE CARD HOVER GLOW ─── */
.course-card {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.2s !important;
}
.course-card:hover {
  transform: translateY(-6px) scale(1.01) !important;
  box-shadow: 0 16px 40px rgba(27,45,107,0.15) !important;
  border-color: var(--orange) !important;
}

/* ─── CARD ENTRY ANIMATION ─── */
.course-card {
  animation: cardPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
}
@keyframes cardPop {
  from { opacity:0; transform:translateY(24px) scale(0.96); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ─── STAT CARD PULSE ─── */
.stat-card {
  transition: transform 0.2s, box-shadow 0.2s;
  animation: fadeUp 0.5s ease both;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ─── BUTTON ANIMATIONS ─── */
.btn-primary, .btn-secondary, .c-apply-btn, .c-oneclick-btn, .view-more-btn, .btn-send {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .c-oneclick-btn::after, .btn-send::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn-primary:hover::after, .c-oneclick-btn:hover::after, .btn-send:hover::after { opacity: 1; }

/* ─── MODAL ANIMATIONS ─── */
.modal-overlay { transition: opacity 0.25s ease; }
.modal { animation: modalSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes modalSlideUp {
  from { opacity:0; transform:translateY(40px) scale(0.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}

/* ─── NAV LINK UNDERLINE ─── */
.nav-links a:not(.nav-cta):not(.nav-wa):not(.nav-login) {
  position: relative;
}
.nav-links a:not(.nav-cta):not(.nav-wa):not(.nav-login)::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  border-radius: 2px;
}
.nav-links a:not(.nav-cta):not(.nav-wa):not(.nav-login):hover::after { transform: scaleX(1); }

/* ─── APPLICANT CARD ANIMATION ─── */
.applicant-card {
  animation: cardPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
}
.applicant-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 32px rgba(27,45,107,0.12);
}

/* ─── BLOG CARD ANIMATION ─── */
.blog-card {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s;
  animation: cardPop 0.4s ease both;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ─── STEP CARD ANIMATION ─── */
.step-card {
  transition: transform 0.2s, box-shadow 0.2s;
  animation: cardPop 0.4s ease both;
}
.step-card:hover { transform: translateY(-4px); }

/* ─── VIDEO CARD ─── */
.video-card {
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s !important;
}
.video-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
}

/* ─── PARTNER SCROLL ANIMATION ─── */
.partner-logo {
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  animation: cardPop 0.4s ease both;
}
.partner-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(27,45,107,0.1);
  border-color: var(--navy);
}

/* ─── SECTION LABEL ANIMATE ─── */
.section-label {
  animation: fadeDown 0.5s ease both;
}

/* ─── WA BAND PULSE ─── */
.wa-band-btn {
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
  50% { box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
}

/* ─── POPUP ANIMATION ─── */
.popup-box {
  animation: modalSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1) both !important;
}

/* ─── SUCCESS TICK BOUNCE ─── */
.tick { animation: tickBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) both; }
@keyframes tickBounce {
  from { opacity:0; transform:scale(0.3); }
  to   { opacity:1; transform:scale(1); }
}

/* ─── STATUS TAGS PULSE ─── */
.status-open {
  animation: fadeDown 0.3s ease both;
}

/* ─── HERO SLIDESHOW SLIDE TRANSITION ─── */
.hero-slide {
  transition: opacity 0.7s ease !important;
}

/* ─── LOADING SPINNER ─── */
.loading-spinner {
  display: flex; align-items: center; justify-content: center;
  padding: 40px; color: var(--muted); font-size: 0.88rem; gap: 10px; width: 100%;
}
.loading-spinner::before {
  content: ''; width: 20px; height: 20px;
  border: 3px solid var(--border); border-top-color: var(--navy);
  border-radius: 50%; animation: spin 0.7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── FILTER SEARCH ─── */
.fm-search {
  flex: 1; min-width: 160px; padding: 8px 12px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 0.82rem; color: var(--text); background: white;
}
.fm-search:focus { outline: none; border-color: var(--navy); }

/* ─── LIVE BADGE ─── */
.showcase-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(22,163,74,0.1); color: #16A34A;
  padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 700; margin-left: 10px;
}
.showcase-live-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #16A34A; animation: livePulse 1.5s infinite;
}
@keyframes livePulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(0.7); } }

/* ─── EXPORT BUTTONS ─── */
.export-btn-excel {
  background: #16A34A; color: white; border: none; padding: 7px 14px;
  border-radius: 7px; font-family: inherit; font-weight: 700; font-size: 0.78rem;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: background 0.2s;
}
.export-btn-excel:hover { background: #15803D; }
.export-btn-csv {
  background: rgba(27,45,107,0.08); color: var(--navy); border: none; padding: 7px 14px;
  border-radius: 7px; font-family: inherit; font-weight: 700; font-size: 0.78rem;
  cursor: pointer; transition: background 0.2s;
}
.export-btn-csv:hover { background: rgba(27,45,107,0.15); }

/* ─── STATUS TAGS ─── */
.status-open   { display:inline-block; background:rgba(22,163,74,0.1); color:#16A34A; padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:6px; }
.status-closed { display:inline-block; background:rgba(220,38,38,0.08); color:#DC2626; padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:6px; }
.c-apply-closed { background:#f3f4f6 !important; color:#9CA3AF !important; cursor:not-allowed !important; }

/* ─── VIEW MORE BUTTON ─── */
.section-footer-row { display:flex; justify-content:space-between; align-items:center; margin-top:16px; flex-wrap:wrap; gap:12px; }
.view-more-btn { background:var(--navy); color:white; border:none; padding:10px 24px; border-radius:50px; font-family:inherit; font-weight:700; font-size:0.88rem; cursor:pointer; transition:background 0.2s, transform 0.2s; }
.view-more-btn:hover { background:var(--orange); transform:translateY(-2px); }

/* ─── FILTER MODAL ─── */
.filter-modal { padding:0 !important; }
.fm-header { display:flex; justify-content:space-between; align-items:center; padding:20px 24px; border-bottom:1px solid var(--border); position:sticky; top:0; background:white; z-index:2; border-radius:18px 18px 0 0; }
.fm-title { font-size:1.15rem; font-weight:800; display:flex; align-items:center; gap:10px; }
.fm-count { background:rgba(27,45,107,0.08); color:var(--navy); padding:3px 10px; border-radius:50px; font-size:0.75rem; font-weight:700; }
.fm-filters { display:flex; gap:10px; flex-wrap:wrap; padding:14px 24px; background:#F9FAFB; border-bottom:1px solid var(--border); }
.filter-sel { padding:8px 12px; border:1.5px solid var(--border); border-radius:8px; font-family:inherit; font-size:0.82rem; color:var(--text); background:white; cursor:pointer; }
.filter-sel:focus { outline:none; border-color:var(--navy); }
.fm-clear { background:none; border:1.5px solid #E56B6F; color:#E56B6F; padding:7px 14px; border-radius:8px; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; }
.fm-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:16px; padding:20px 24px; }
.fm-card { background:#F9FAFB; border:1.5px solid var(--border); border-radius:14px; padding:16px; display:flex; gap:12px; align-items:flex-start; transition:transform 0.2s, box-shadow 0.2s; }
.fm-card:hover { transform:translateY(-3px); box-shadow:0 6px 20px rgba(0,0,0,0.08); background:white; }
.fm-card-icon { font-size:2rem; flex-shrink:0; width:44px; text-align:center; }
.fm-card-body { flex:1; }
.fm-card-name { font-weight:800; font-size:0.92rem; margin-bottom:3px; }
.fm-card-sub  { font-size:0.78rem; color:var(--muted); margin-bottom:7px; }
.fm-card-meta { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:4px; }
.fm-card-meta span { font-size:0.7rem; font-weight:700; background:var(--light); padding:2px 8px; border-radius:50px; color:var(--navy); }
.fm-empty { grid-column:1/-1; text-align:center; padding:48px; color:var(--muted); font-size:0.9rem; }

/* ─── APPLICANT SHOWCASE ─── */
.applicant-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(200px,1fr)); gap:18px; }
.applicant-card { background:white; border:1.5px solid var(--border); border-radius:16px; padding:22px 18px; text-align:center; transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s; animation:cardPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
.applicant-card:hover { box-shadow:0 12px 32px rgba(27,45,107,0.12); transform:translateY(-5px) scale(1.02); }
.applicant-avatar { width:56px; height:56px; background:var(--navy); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; font-weight:800; font-size:1.4rem; margin:0 auto 12px; }
.applicant-name   { font-weight:800; font-size:0.97rem; margin-bottom:6px; }
.applicant-meta   { font-size:0.78rem; color:var(--muted); margin-bottom:4px; }
.applicant-badge  { display:inline-block; background:rgba(27,45,107,0.08); color:var(--navy); padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin:4px 2px; }
.applicant-badge.job { background:rgba(232,101,10,0.08); color:var(--orange); }
.applicant-contact { display:block; margin-top:12px; background:#25D366; color:white; padding:8px 14px; border-radius:8px; font-size:0.78rem; font-weight:700; text-decoration:none; transition:background 0.2s; }
.applicant-contact:hover { background:#1ebe5d; }
.showcase-empty   { grid-column:1/-1; text-align:center; padding:48px; color:var(--muted); }

/* ─── VIDEO TESTIMONIALS ─── */
.video-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:20px; }
.video-card { background:white; border:1.5px solid var(--border); border-radius:14px; overflow:hidden; transition:transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s; cursor:pointer; }
.video-card:hover { box-shadow:0 10px 32px rgba(0,0,0,0.12); transform:translateY(-6px) scale(1.02); }
.video-thumb { position:relative; height:180px; background:linear-gradient(135deg,var(--navy),#2B3F8F); display:flex; align-items:center; justify-content:center; }
.video-thumb-icon { font-size:3.5rem; }
.video-play-icon  { position:absolute; width:52px; height:52px; background:rgba(255,255,255,0.2); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:white; border:2px solid rgba(255,255,255,0.5); transition:background 0.2s; }
.video-card:hover .video-play-icon { background:rgba(255,255,255,0.35); }
.video-duration { position:absolute; bottom:10px; right:12px; background:rgba(0,0,0,0.6); color:white; padding:2px 8px; border-radius:4px; font-size:0.72rem; font-weight:700; }
.video-body    { padding:16px; }
.video-title   { font-weight:800; font-size:0.92rem; margin-bottom:6px; color:var(--text); line-height:1.4; }
.video-student { font-size:0.78rem; color:var(--muted); margin-bottom:4px; }
.video-result  { font-size:0.78rem; color:#16A34A; font-weight:600; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity:0; transform:translateY(32px); transition:opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ─── ANIMATIONS ─── */
@keyframes cardPop { from { opacity:0; transform:translateY(24px) scale(0.96); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp   { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
@keyframes popIn    { from { opacity:0; transform:scale(0.93); } to { opacity:1; transform:scale(1); } }
@keyframes modalSlideUp { from { opacity:0; transform:translateY(40px) scale(0.95); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes tickBounce   { from { opacity:0; transform:scale(0.3); } to { opacity:1; transform:scale(1); } }
@keyframes pulse { 0%,100% { box-shadow:0 4px 16px rgba(0,0,0,0.15); } 50% { box-shadow:0 8px 28px rgba(0,0,0,0.25); } }

/* ─── LOGO ─── */
.logo-img    { height:52px !important; width:auto; object-fit:contain; background:white; border-radius:6px; padding:4px 8px; }

/* ─── COURSE CARD ─── */
.course-card { min-width:260px; max-width:280px; background:white; border-radius:14px; border:1.5px solid var(--border); overflow:hidden; scroll-snap-align:start; transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease, border-color 0.2s; flex-shrink:0; animation:cardPop 0.4s cubic-bezier(0.34,1.56,0.64,1) both; }
.course-card:hover { box-shadow:0 16px 40px rgba(27,45,107,0.15); transform:translateY(-6px) scale(1.01); border-color:var(--orange); }
.course-img { width:100%; height:160px; display:flex; align-items:center; justify-content:center; font-size:3rem; overflow:hidden; flex-shrink:0; background:linear-gradient(135deg,var(--navy),#2B3F8F); }
.course-body { padding:16px; }
.course-tag  { display:inline-block; background:rgba(232,101,10,0.1); color:var(--orange); padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:8px; }
.course-name { font-weight:800; font-size:0.97rem; margin-bottom:4px; }
.course-college { font-size:0.78rem; color:var(--muted); margin-bottom:10px; }
.course-meta { display:flex; gap:6px; flex-wrap:wrap; margin-bottom:12px; }
.course-meta span { font-size:0.7rem; font-weight:700; background:var(--light); padding:3px 9px; border-radius:50px; color:var(--navy); }
.card-btns   { display:flex; gap:8px; }
.c-about-btn { flex:1; padding:8px; border-radius:7px; background:var(--light); border:none; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; color:var(--navy); transition:background 0.2s; }
.c-about-btn:hover { background:var(--border); }
.c-apply-btn { flex:1.5; padding:8px; border-radius:7px; background:var(--navy); border:none; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; color:white; transition:background 0.2s; }
.c-apply-btn:hover { background:var(--orange); }
.c-oneclick-btn { flex:1.5; padding:8px; border-radius:7px; background:var(--orange); border:none; font-family:inherit; font-weight:700; font-size:0.8rem; cursor:pointer; color:white; transition:background 0.2s; }
.c-oneclick-btn:hover { background:var(--orange2); }

/* ─── BLOG ─── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; }
.blog-card  { background:white; border-radius:16px; border:1.5px solid var(--border); overflow:hidden; transition:transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s; cursor:pointer; animation:cardPop 0.4s ease both; }
.blog-card:hover { box-shadow:0 12px 32px rgba(0,0,0,0.1); transform:translateY(-5px); }
.blog-img   { width:100%; height:180px; background:linear-gradient(135deg,var(--navy),#2B3F8F); display:flex; align-items:center; justify-content:center; font-size:3rem; }
.blog-body  { padding:18px; }
.blog-tag   { display:inline-block; background:rgba(27,45,107,0.08); color:var(--navy); padding:3px 10px; border-radius:50px; font-size:0.7rem; font-weight:700; margin-bottom:9px; }
.blog-title { font-weight:800; font-size:1rem; margin-bottom:7px; line-height:1.4; }
.blog-excerpt { font-size:0.83rem; color:var(--muted); line-height:1.6; margin-bottom:12px; }
.blog-meta  { font-size:0.75rem; color:var(--muted); display:flex; align-items:center; gap:10px; }
.blog-read-more { display:inline-block; margin-top:10px; color:var(--orange); font-weight:700; font-size:0.82rem; border:none; background:none; cursor:pointer; font-family:inherit; padding:0; }

/* ─── NAV ─── */
.nav-wa { background: #25D366 !important; color: white !important; }
.nav-wa:hover { background:#1ebe5d !important; }

/* ─── MISC ─── */
.stat-card { background:rgba(255,255,255,0.07); border-radius:14px; padding:24px 18px; text-align:center; border:1px solid rgba(255,255,255,0.08); transition:transform 0.2s, box-shadow 0.2s; animation:fadeUp 0.5s ease both; }
.stat-card:hover { transform:translateY(-4px); box-shadow:0 8px 24px rgba(0,0,0,0.15); }
.stat-icon  { width:44px; height:44px; background:rgba(232,101,10,0.2); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin:0 auto 12px; }
.stat-num   { font-size:2rem; font-weight:800; color:white; margin-bottom:4px; }
.stat-label { font-size:0.78rem; color:rgba(255,255,255,0.55); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; }
.modal-overlay { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.5); z-index:999; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open { display:flex; }
.modal { background:white; border-radius:18px; padding:34px; width:100%; max-width:500px; max-height:90vh; overflow-y:auto; animation:modalSlideUp 0.35s cubic-bezier(0.34,1.56,0.64,1) both; }
.modal-header  { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:20px; }
.modal-title   { font-size:1.35rem; font-weight:800; color:var(--text); }
.modal-close   { background:var(--light); border:none; width:32px; height:32px; border-radius:50%; font-size:0.95rem; cursor:pointer; font-weight:700; color:var(--muted); }
.modal-close:hover { background:var(--border); }
.modal-college { color:var(--muted); font-size:0.85rem; margin-bottom:16px; }
.modal-stats   { display:flex; gap:10px; margin-bottom:16px; flex-wrap:wrap; }
.modal-stat    { flex:1; min-width:80px; background:var(--light); border-radius:9px; padding:11px; text-align:center; }
.modal-stat-label { font-size:0.65rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:3px; }
.modal-stat-val   { font-weight:800; font-size:0.88rem; color:var(--navy); }
.modal-desc  { font-size:0.87rem; color:var(--muted); line-height:1.7; margin-bottom:16px; }
.modal-highlights-title { font-weight:800; font-size:0.85rem; margin-bottom:8px; }
.modal-highlights { list-style:none; margin-bottom:20px; }
.modal-highlights li { font-size:0.85rem; color:var(--muted); padding:6px 0; border-bottom:1px solid var(--border); display:flex; align-items:center; gap:8px; }
.modal-highlights li::before { content:'✓'; color:var(--orange); font-weight:800; }
.modal-apply-btn { width:100%; background:var(--navy); color:white; border:none; padding:13px; border-radius:9px; font-family:inherit; font-weight:700; font-size:0.92rem; cursor:pointer; transition:background 0.2s; }
.modal-apply-btn:hover { background:var(--orange); }
.tick { animation:tickBounce 0.6s cubic-bezier(0.34,1.56,0.64,1) both; font-size:3rem; margin-bottom:10px; }
.success-msg { text-align:center; padding:20px 0; }
.success-msg h3 { font-size:1.25rem; font-weight:800; margin-bottom:7px; }
.success-msg p  { color:var(--muted); font-size:0.87rem; }
.onetap-banner  { background:linear-gradient(135deg,var(--orange),var(--orange2,#C9570A)); border-radius:12px; padding:14px 18px; margin-bottom:18px; display:flex; align-items:center; gap:12px; }
.onetap-banner-icon  { font-size:1.5rem; }
.onetap-banner-title { color:white; font-weight:800; font-size:0.9rem; }
.onetap-banner-sub   { color:rgba(255,255,255,0.8); font-size:0.78rem; }
.onetap-btn { background:white; color:var(--orange); border:none; padding:9px 18px; border-radius:8px; font-family:inherit; font-weight:800; font-size:0.82rem; cursor:pointer; white-space:nowrap; }
.apply-form-group { margin-bottom:13px; }
.apply-form-group label { display:block; font-weight:700; font-size:0.75rem; color:var(--text); margin-bottom:5px; text-transform:uppercase; letter-spacing:0.3px; }
.apply-form-group input,.apply-form-group select { width:100%; padding:10px 13px; border:1.5px solid var(--border); border-radius:9px; font-family:inherit; font-size:0.88rem; color:var(--text); background:white; transition:border-color 0.2s; appearance:none; }
.apply-form-group input:focus,.apply-form-group select:focus { outline:none; border-color:var(--navy); }
.apply-row { display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.btn-send  { width:100%; background:var(--navy); color:white; border:none; padding:13px; border-radius:9px; font-family:inherit; font-weight:700; font-size:0.95rem; cursor:pointer; transition:background 0.2s; margin-top:4px; }
.btn-send:hover { background:var(--orange); }
.role-toggle { display:flex; background:var(--light); border-radius:10px; padding:3px; margin-bottom:22px; gap:3px; }
.role-btn { flex:1; padding:9px; border:none; border-radius:7px; background:transparent; font-family:inherit; font-weight:700; font-size:0.85rem; color:var(--muted); cursor:pointer; transition:all 0.2s; }
.role-btn.active { background:var(--navy); color:white; }
.auth-panel { display:none; }
.auth-panel.active { display:block; }
.auth-badge { display:flex; align-items:center; gap:10px; background:var(--light); border-radius:10px; padding:10px 13px; margin-bottom:18px; }
.auth-badge-icon { font-size:1.3rem; }
.auth-badge-text { font-size:0.8rem; font-weight:700; color:var(--navy); }
.error-msg { display:none; background:rgba(220,38,38,0.07); border:1px solid rgba(220,38,38,0.2); color:#DC2626; padding:9px 12px; border-radius:8px; font-size:0.82rem; font-weight:600; margin-bottom:14px; }
.error-msg.show { display:block; }
.pass-wrapper { position:relative; }
.pass-wrapper input { padding-right:42px; }
.pass-toggle { position:absolute; right:12px; top:50%; transform:translateY(-50%); background:none; border:none; cursor:pointer; font-size:1rem; color:var(--muted); }
.popup-overlay { position:fixed; inset:0; background:rgba(0,0,0,0.65); z-index:9999; display:flex; align-items:center; justify-content:center; padding:20px; animation:fadeIn 0.4s ease; }
.popup-overlay.hidden { display:none; }
.popup-box { background:white; border-radius:22px; width:100%; max-width:480px; padding:32px 28px; position:relative; animation:modalSlideUp 0.4s ease; max-height:90vh; overflow-y:auto; }
.popup-close { position:absolute; top:14px; right:14px; width:32px; height:32px; border-radius:50%; background:var(--light); border:none; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; color:var(--muted); font-weight:700; }
.popup-header { margin-bottom:20px; }
.popup-tag { display:inline-block; background:rgba(232,101,10,0.1); color:var(--orange); padding:4px 12px; border-radius:50px; font-size:0.72rem; font-weight:700; text-transform:uppercase; margin-bottom:10px; }
.popup-title { font-size:1.35rem; font-weight:800; margin-bottom:6px; color:var(--text); }
.popup-sub   { font-size:0.85rem; color:var(--muted); line-height:1.5; }
.popup-slides { position:relative; height:200px; border-radius:14px; overflow:hidden; margin-bottom:14px; }
.popup-slide  { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:24px; text-align:center; opacity:0; transition:opacity 0.5s ease; }
.popup-slide.active { opacity:1; }
.popup-slide-icon  { font-size:2.4rem; margin-bottom:10px; }
.popup-slide-tag   { display:inline-block; background:rgba(255,255,255,0.2); color:white; padding:3px 10px; border-radius:50px; font-size:0.68rem; font-weight:700; text-transform:uppercase; margin-bottom:8px; }
.popup-slide-title { font-size:1.1rem; font-weight:800; color:white; margin-bottom:6px; }
.popup-slide-sub   { font-size:0.78rem; color:rgba(255,255,255,0.8); line-height:1.5; }
.popup-arrow { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.2); border:none; color:white; width:30px; height:30px; border-radius:50%; font-size:1.1rem; cursor:pointer; z-index:2; display:flex; align-items:center; justify-content:center; }
.popup-arrow.left  { left:8px; }
.popup-arrow.right { right:8px; }
.popup-dots  { display:flex; gap:6px; justify-content:center; margin-bottom:20px; }
.popup-dot   { width:7px; height:7px; border-radius:50%; background:var(--border); border:none; cursor:pointer; transition:all 0.2s; }
.popup-dot.active { background:var(--navy); transform:scale(1.3); }
.popup-footer { display:flex; flex-direction:column; gap:10px; align-items:center; }
.popup-wa-btn { display:flex; align-items:center; gap:8px; background:#25D366; color:white; padding:13px 28px; border-radius:50px; font-weight:800; font-size:0.92rem; text-decoration:none; width:100%; justify-content:center; }
.popup-skip  { background:none; border:none; color:var(--muted); font-size:0.82rem; cursor:pointer; font-family:inherit; text-decoration:underline; padding:4px; }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ─── WA BAND ─── */
.wa-band { background:linear-gradient(135deg,#075E54,#128C7E); padding:52px 40px; }
.wa-band-inner { max-width:1000px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap; }
.wa-band-left  { display:flex; align-items:flex-start; gap:20px; flex:1; }
.wa-band-icon  { width:68px; height:68px; min-width:68px; background:rgba(255,255,255,0.15); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.wa-band-label { font-size:0.75rem; font-weight:700; color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:6px; }
.wa-band-title { font-size:clamp(1.3rem,2.5vw,1.8rem); font-weight:800; color:white; margin-bottom:8px; line-height:1.3; }
.wa-band-sub   { color:rgba(255,255,255,0.75); font-size:0.95rem; line-height:1.6; }
.wa-band-btn   { display:flex; align-items:center; gap:10px; background:white; color:#075E54; padding:14px 28px; border-radius:50px; font-weight:800; font-size:0.95rem; text-decoration:none; white-space:nowrap; transition:transform 0.2s, box-shadow 0.2s; box-shadow:0 4px 16px rgba(0,0,0,0.15); flex-shrink:0; animation:pulse 2.5s infinite; }
.wa-band-btn:hover { transform:translateY(-2px); }
.wa-float { position:fixed; bottom:26px; left:22px; width:50px; height:50px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; box-shadow:0 4px 14px rgba(37,211,102,0.4); z-index:200; text-decoration:none; transition:transform 0.2s; }
.wa-float:hover { transform:scale(1.1); }
.back-top { position:fixed; bottom:26px; right:22px; width:42px; height:42px; background:white; border:2px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.95rem; cursor:pointer; z-index:200; box-shadow:0 2px 10px rgba(0,0,0,0.1); transition:all 0.2s; color:var(--navy); }
.back-top:hover { background:var(--navy); color:white; border-color:var(--navy); }

/* ─── HERO ─── */
.hero { min-height:88vh; background:linear-gradient(135deg,var(--navy) 0%,#2B3F8F 60%,#1B2D6B 100%); display:flex; align-items:stretch; position:relative; overflow:hidden; gap:0; padding-right:0; }
.hero::before { content:''; position:absolute; width:700px; height:700px; background:radial-gradient(circle,rgba(232,101,10,0.15),transparent 70%); top:-200px; right:48%; border-radius:50%; pointer-events:none; }
.hero::after  { content:''; position:absolute; inset:0; background:linear-gradient(to right, rgba(27,45,107,0.6) 50%, transparent 100%); pointer-events:none; }
.hero-content { position:relative; z-index:2; padding:60px 40px 60px; flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }
.hero-tag { display:inline-block; background:rgba(232,101,10,0.15); border:1px solid rgba(232,101,10,0.5); color:#FBBF24; padding:5px 16px; border-radius:50px; font-size:0.75rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:20px; animation:fadeDown 0.6s ease both; animation-delay:0.1s; }
.hero h1 { font-size:clamp(2.4rem,5vw,4rem); font-weight:800; color:white; line-height:1.12; margin-bottom:18px; animation:fadeDown 0.7s ease both; animation-delay:0.2s; }
.hero h1 span { color:var(--orange); }
.hero p { color:rgba(255,255,255,0.72); font-size:1.05rem; line-height:1.75; margin-bottom:32px; max-width:540px; animation:fadeDown 0.8s ease both; animation-delay:0.3s; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; animation:fadeDown 0.9s ease both; animation-delay:0.4s; }
.hero-slideshow { width:48% !important; min-width:48% !important; height:auto !important; min-height:88vh !important; border-radius:0 !important; margin-bottom:0 !important; box-shadow:none !important; flex-shrink:0; position:relative; z-index:2; animation:fadeLeft 0.9s ease both; animation-delay:0.3s; }
.hero-slides { width:100%; height:100% !important; position:relative; }
.hero-slide  { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:36px; opacity:0; transition:opacity 0.7s ease; }
.hero-slide.active { opacity:1; }
.hero-slide-icon  { font-size:2.8rem; margin-bottom:12px; }
.hero-slide-tag   { display:inline-block; background:rgba(255,255,255,0.2); color:white; padding:5px 16px; border-radius:50px; font-size:0.8rem; font-weight:700; margin-bottom:12px; letter-spacing:0.5px; }
.hero-slide-title { font-size:1.5rem; font-weight:800; color:white; margin-bottom:10px; line-height:1.3; text-align:center; }
.hero-slide-sub   { font-size:0.9rem; color:rgba(255,255,255,0.75); line-height:1.6; margin-bottom:4px; text-align:center; }
.hero-slide-btn   { background:white; color:var(--navy); border:none; padding:10px 22px; border-radius:50px; font-family:inherit; font-weight:800; font-size:0.85rem; cursor:pointer; margin-top:18px; transition:background 0.2s; }
.hero-arrow { position:absolute; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.18); border:none; color:white; width:32px; height:32px; border-radius:50%; font-size:1.2rem; cursor:pointer; z-index:3; display:flex; align-items:center; justify-content:center; transition:background 0.2s; }
.hero-arrow:hover { background:rgba(255,255,255,0.35); }
.hero-arrow.left  { left:10px; }
.hero-arrow.right { right:10px; }
.hero-dots { position:absolute; bottom:14px; left:50%; transform:translateX(-50%); display:flex; gap:8px; z-index:3; }
.hero-dot  { width:8px; height:8px; border-radius:50%; background:rgba(255,255,255,0.35); border:none; cursor:pointer; transition:all 0.2s; }
.hero-dot.active { background:white; transform:scale(1.3); }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

/* ─── SECTIONS ─── */
:root { --navy:#1B2D6B; --navy2:#162459; --orange:#E8650A; --orange2:#C9570A; --white:#ffffff; --light:#F7F8FC; --light2:#EEF0F8; --text:#111827; --muted:#6B7280; --border:#E5E7EB; }
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Inter',sans-serif; background:white; color:var(--text); overflow-x:hidden; }
nav { background:white; padding:12px 40px; display:flex; justify-content:space-between; align-items:center; position:sticky; top:0; z-index:100; box-shadow:0 1px 10px rgba(0,0,0,0.08); }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-links a { color:var(--navy); text-decoration:none; font-weight:600; font-size:0.88rem; padding:8px 14px; border-radius:8px; transition:background 0.2s; }
.nav-links a:hover { background:var(--light); }
.nav-login { border:2px solid var(--navy) !important; color:var(--navy) !important; border-radius:8px !important; }
.nav-login:hover { background:var(--light2) !important; }
.nav-cta { background:var(--orange) !important; color:white !important; border-radius:8px !important; padding:9px 20px !important; }
.nav-cta:hover { background:var(--orange2) !important; }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--navy); border-radius:2px; }
.stats-section { background:var(--navy); padding:44px 40px; }
.stats-grid { max-width:1000px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.section { padding:70px 40px; }
.section.alt { background:var(--light); }
.inner { max-width:1100px; margin:0 auto; }
.section-label { font-size:0.75rem; font-weight:700; color:var(--orange); text-transform:uppercase; letter-spacing:2px; margin-bottom:10px; }
.section-title { font-size:clamp(1.8rem,3vw,2.5rem); font-weight:800; color:var(--text); line-height:1.2; margin-bottom:12px; }
.section-sub   { color:var(--muted); font-size:0.97rem; line-height:1.75; max-width:540px; margin-bottom:36px; }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-images { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.about-img { border-radius:16px; overflow:hidden; aspect-ratio:3/4; }
.about-img:first-child { margin-top:32px; }
.about-img-placeholder { width:100%; height:100%; min-height:200px; display:flex; align-items:center; justify-content:center; font-size:3rem; background:linear-gradient(135deg,var(--navy),#2B3F8F); color:white; }
.feature-list { list-style:none; margin:22px 0; }
.feature-item { display:flex; gap:14px; align-items:flex-start; margin-bottom:18px; }
.feature-icon { width:38px; height:38px; min-width:38px; border:2px solid var(--orange); border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:0.95rem; color:var(--orange); }
.feature-title { font-weight:700; font-size:0.92rem; margin-bottom:2px; }
.feature-desc  { font-size:0.83rem; color:var(--muted); line-height:1.5; }
.btn-outline-navy { display:inline-block; border:2px solid var(--navy); color:var(--navy); padding:11px 26px; border-radius:8px; font-weight:700; font-size:0.88rem; text-decoration:none; transition:all 0.2s; cursor:pointer; font-family:inherit; background:transparent; }
.btn-outline-navy:hover { background:var(--navy); color:white; }
.partners-strip { background:var(--light2); padding:32px 40px; }
.partners-label { text-align:center; font-size:0.75rem; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:20px; }
.partners-scroll { display:flex; gap:12px; overflow-x:auto; padding-bottom:6px; scrollbar-width:none; align-items:center; }
.partners-scroll::-webkit-scrollbar { display:none; }
.partner-logo { background:white; border:1.5px solid var(--border); border-radius:10px; padding:12px 20px; white-space:nowrap; font-weight:700; font-size:0.82rem; color:var(--navy); flex-shrink:0; transition:transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.partner-logo:hover { transform:translateY(-3px); box-shadow:0 6px 18px rgba(27,45,107,0.1); border-color:var(--navy); }
.carousel { display:flex; gap:18px; overflow-x:auto; padding-bottom:10px; scroll-snap-type:x mandatory; scrollbar-width:none; }
.carousel::-webkit-scrollbar { display:none; }
.carousel-nav { display:flex; gap:8px; }
.carousel-btn { width:36px; height:36px; border-radius:50%; border:2px solid var(--border); background:white; cursor:pointer; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--navy); transition:all 0.2s; }
.carousel-btn:hover { background:var(--navy); color:white; border-color:var(--navy); }
.tab-btn { padding:7px 18px; border-radius:50px; border:1.5px solid var(--border); background:white; font-family:inherit; font-weight:700; font-size:0.82rem; cursor:pointer; transition:all 0.2s; color:var(--muted); }
.tab-btn.active,.tab-btn:hover { background:var(--navy); border-color:var(--navy); color:white; }
.steps-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; }
.step-card  { background:white; border:1.5px solid var(--border); border-radius:14px; padding:26px 20px; text-align:center; transition:box-shadow 0.2s, transform 0.2s; animation:cardPop 0.4s ease both; }
.step-card:hover { box-shadow:0 6px 22px rgba(0,0,0,0.07); transform:translateY(-4px); }
.step-num   { width:42px; height:42px; background:var(--navy); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:0.97rem; margin:0 auto 13px; }
.step-title { font-weight:800; font-size:0.95rem; margin-bottom:7px; }
.step-desc  { font-size:0.82rem; color:var(--muted); line-height:1.6; }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:56px; align-items:start; }
.contact-info p { color:var(--muted); font-size:0.92rem; line-height:1.75; margin-bottom:26px; }
.contact-item   { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.contact-icon   { width:42px; height:42px; background:rgba(27,45,107,0.08); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--navy); flex-shrink:0; }
.contact-item-label { font-weight:700; font-size:0.82rem; color:var(--navy); margin-bottom:2px; }
.contact-item-val   { font-size:0.87rem; color:var(--muted); }
.contact-form-card  { background:white; border-radius:18px; padding:34px; box-shadow:0 4px 28px rgba(0,0,0,0.07); border:1.5px solid var(--border); }
.contact-form-card h3 { font-size:1.25rem; font-weight:800; margin-bottom:4px; }
.form-row-2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.form-group { margin-bottom:14px; }
.form-group label { display:block; font-weight:700; font-size:0.77rem; color:var(--text); margin-bottom:5px; text-transform:uppercase; letter-spacing:0.3px; }
.form-group input,.form-group select,.form-group textarea { width:100%; padding:10px 13px; border:1.5px solid var(--border); border-radius:9px; font-family:inherit; font-size:0.88rem; color:var(--text); background:white; transition:border-color 0.2s; appearance:none; }
.form-group textarea { resize:vertical; min-height:90px; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { outline:none; border-color:var(--navy); }
footer { background:#162459; padding:46px 40px 22px; }
.footer-grid { max-width:1100px; margin:0 auto 32px; display:grid; grid-template-columns:1.5fr 1fr; gap:44px; }
.footer-desc    { color:rgba(255,255,255,0.55); font-size:0.85rem; line-height:1.75; margin-bottom:18px; max-width:320px; }
.footer-socials { display:flex; gap:8px; }
.social-icon { width:36px; height:36px; border-radius:50%; border:1.5px solid rgba(255,255,255,0.18); display:flex; align-items:center; justify-content:center; font-size:0.85rem; color:rgba(255,255,255,0.65); text-decoration:none; transition:all 0.2s; }
.social-icon:hover { background:rgba(255,255,255,0.1); border-color:rgba(255,255,255,0.4); }
.footer-nav h4 { color:white; font-size:0.8rem; font-weight:700; text-transform:uppercase; letter-spacing:1px; margin-bottom:14px; }
.footer-nav a  { display:block; color:rgba(255,255,255,0.55); text-decoration:none; font-size:0.87rem; margin-bottom:9px; transition:color 0.2s; }
.footer-nav a:hover { color:white; }
.footer-address { color:rgba(255,255,255,0.45); font-size:0.8rem; margin-bottom:5px; }
.footer-bottom  { max-width:1100px; margin:0 auto; border-top:1px solid rgba(255,255,255,0.08); padding-top:18px; text-align:center; color:rgba(255,255,255,0.35); font-size:0.79rem; }
.btn-primary { background:var(--orange); color:white; padding:13px 30px; border-radius:8px; font-weight:700; font-size:0.92rem; text-decoration:none; border:none; cursor:pointer; transition:background 0.2s, transform 0.2s, box-shadow 0.2s; font-family:inherit; display:inline-block; }
.btn-primary:hover { background:var(--orange2); transform:translateY(-2px); box-shadow:0 6px 20px rgba(232,101,10,0.35); }
.btn-secondary { background:rgba(255,255,255,0.1); color:white; padding:13px 30px; border-radius:8px; font-weight:700; font-size:0.92rem; text-decoration:none; border:2px solid rgba(255,255,255,0.3); cursor:pointer; transition:all 0.2s; font-family:inherit; display:inline-block; }
.btn-secondary:hover { background:rgba(255,255,255,0.18); border-color:rgba(255,255,255,0.6); }
.testimonials-section { background:var(--navy); }
.testimonials-section .section-label { color:rgba(232,101,10,0.9); }
.testimonials-section .section-title { color:white; }
.testimonials-section .section-sub   { color:rgba(255,255,255,0.55); }
.about-modal { max-width:530px; }
@media (max-width:900px) { .about-grid { grid-template-columns:1fr; } .about-images { display:none; } .contact-grid { grid-template-columns:1fr; } .stats-grid { grid-template-columns:repeat(2,1fr); } .footer-grid { grid-template-columns:1fr; gap:26px; } }

/* Mobile layout rules (non-nav) */



/* ─── IMAGE SUPPORT IN CARDS ─── */
.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.course-img { width:100%; height:160px; display:flex; align-items:center; justify-content:center; font-size:3rem; overflow:hidden; flex-shrink:0; background:linear-gradient(135deg,var(--navy),#2B3F8F); }
.fm-card-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}
.hero-slide {
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-img {
  overflow: hidden;
  position: relative;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 12px 12px 0 0;
}
.video-thumb {
  position: relative;
  overflow: hidden;
}
/* Admin form image preview */
.img-preview-box {
  width: 100%;
  max-height: 120px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 8px;
  display: none;
  border: 1.5px solid var(--border, #E5E7EB);
}
.img-url-hint {
  font-size: 0.72rem;
  color: #9CA3AF;
  margin-top: 4px;
}

/* ─── NAV DASHBOARD BUTTON ─── */
.nav-dashboard {
  background: rgba(27,45,107,0.08) !important;
  color: var(--navy) !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  border: 1.5px solid rgba(27,45,107,0.2) !important;
  transition: all 0.2s !important;
}
.nav-dashboard:hover {
  background: var(--navy) !important;
  color: white !important;
}

/* ══════════════════════════════════════════════════════
   HERO FINAL OVERRIDE — forces left-right side-by-side
   ════════════════════════════════════════════════════════ */
.hero {
  min-height: 88vh;
  background: linear-gradient(135deg, #1B2D6B 0%, #2B3F8F 60%, #1B2D6B 100%);
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  position: relative;
  overflow: hidden;
  gap: 0;
  padding: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 48px;
  flex: 1 1 50% !important;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-slideshow {
  flex: 0 0 48% !important;
  width: 48% !important;
  min-width: 0 !important;
  max-width: 48% !important;
  height: auto !important;
  min-height: 88vh !important;
  border-radius: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-icon  { font-size: 2.8rem; margin-bottom: 12px; position: relative; z-index: 1; }
.hero-slide-tag   { display: inline-block; background: rgba(255,255,255,0.18); color: white; padding: 5px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px; position: relative; z-index: 1; }
.hero-slide-title { font-size: 1.45rem; font-weight: 800; color: white; margin-bottom: 8px; line-height: 1.3; position: relative; z-index: 1; }
.hero-slide-sub   { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 4px; position: relative; z-index: 1; }
.hero-slide-btn   { background: white; color: var(--navy); border: none; padding: 10px 22px; border-radius: 50px; font-family: inherit; font-weight: 800; font-size: 0.84rem; cursor: pointer; margin-top: 16px; transition: background 0.2s; position: relative; z-index: 1; }
.hero-slide-btn:hover { background: var(--orange); color: white; }
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.18);
  border: none;
  color: white;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-arrow.left  { left: 10px; }
.hero-arrow.right { right: 10px; }
.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.hero-dot.active { background: white; transform: scale(1.3); }



/* ── ADMIN DASHBOARD TABLE FIXES ── */
.admin-table-fix { min-width: 700px; }
.table-wrap { overflow-x: auto; width: 100%; }
.table-wrap table { min-width: 650px; }
/* Prevent form-grid from overflowing */
.form-grid { box-sizing: border-box; width: 100%; }
.fg input, .fg select, .fg textarea { box-sizing: border-box; max-width: 100%; }
/* Upload box sizing */
.img-upload-box, label.img-upload-box {
  box-sizing: border-box;
  width: 100%;
  min-height: 80px;
  border: 2px dashed #E5E7EB;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  background: #FAFAFA;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: border-color 0.2s;
}
.img-upload-box:hover, label.img-upload-box:hover { border-color: #1B2D6B; background: #F0F4FF; }
.upload-preview { width: 100%; max-height: 130px; object-fit: cover; border-radius: 8px; display: block; }

/* ── VIDEO TESTIMONIAL PLAYER ── */
.video-card .video-thumb { cursor: pointer; }
.video-card:hover .vid-overlay { opacity: 0 !important; }
.vid-sound-btn:hover { background: rgba(232,101,10,0.85) !important; transform: scale(1.1); }
.vid-sound-btn { transition: all 0.2s; }
.video-player:focus { outline: none; }

/* ── TRANSLATE BUTTON ── */
.nav-translate {
  background: rgba(27,45,107,0.08);
  border: 1.5px solid rgba(27,45,107,0.2);
  border-radius: 8px;
  padding: 7px 12px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy,#1B2D6B);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-translate:hover { background: var(--navy,#1B2D6B); color: white; }

/* ── PARTNERS MARQUEE (auto-scroll right to left) ── */
.partners-strip {
  background: white;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 14px 0;
  overflow: hidden;
}
.partners-marquee-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partners-marquee-wrap::before,
.partners-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.partners-marquee-wrap::before { left: 0;  background: linear-gradient(to right, white, transparent); }
.partners-marquee-wrap::after  { right: 0; background: linear-gradient(to left,  white, transparent); }
.partners-marquee {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}
.partners-marquee:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
  padding: 8px 16px;
  background: #F9FAFB;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.partner-logo:hover { border-color: var(--navy, #1B2D6B); }
.partner-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}

/* nav-profile-btn — plain emoji button */
.nav-profile-btn { background:none; border:none; cursor:pointer; font-size:1.4rem; padding:4px; color:white; line-height:1; }

/* ── HAMBURGER ACTIVE STATE ── */
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.hamburger span { transition: all 0.3s; }


/* ── SOCIAL ICONS SVG ── */
.footer-socials { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.9rem;
}
.social-icon:hover { background: var(--orange,#E8650A); border-color: var(--orange,#E8650A); transform: translateY(-2px); }
.social-icon svg { display: block; }

/* ── NAV PROFILE PIC ── */
.nav-profile-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
/* ── APPLICANT AVATAR FIX ── */
.applicant-avatar {
  border-radius: 50% !important;
  overflow: hidden !important;
}
.applicant-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}


/* ══ HERO SLIDE: IMAGE TOP, TEXT BELOW (clean) ══ */
.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-slide-img-box {
  width: 100%;
  height: 52%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-slide-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30%;
  font-size: 3rem;
  flex-shrink: 0;
}
.hero-slide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 16px 14px;
  gap: 5px;
  overflow: hidden;
  min-height: 0;
}
.hero-slide-text .hero-slide-tag {
  font-size: 0.68rem;
  padding: 3px 10px;
  margin-bottom: 2px;
}
.hero-slide-text .hero-slide-title {
  font-size: 1.1rem;
  line-height: 1.2;
}
.hero-slide-text .hero-slide-sub {
  font-size: 0.75rem;
  line-height: 1.4;
  max-height: 2.8em;
  overflow: hidden;
}
.hero-slide-btn {
  margin-top: 6px;
  padding: 8px 18px !important;
  font-size: 0.78rem !important;
}

/* ── BLOG CARDS: IMAGE FIRST ── */
.blog-card {
  border-radius: 14px;
  overflow: hidden;
  background: white;
  border: 1px solid #E5E7EB;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.blog-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1B2D6B, #2B4A9F);
}
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-emoji {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.blog-card-overlay {
  position: absolute;
  top: 10px; left: 10px;
}
.blog-card-footer {
  padding: 14px 16px 16px;
}
.blog-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #111;
  margin: 6px 0 4px;
  line-height: 1.3;
}
.blog-card-meta {
  font-size: 0.75rem;
  color: #9CA3AF;
  margin-bottom: 8px;
}
.blog-read-more-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange, #E8650A);
}

/* ── FOOTER: Consistent desktop + mobile ── */
footer { background: var(--navy, #1B2D6B); padding: 48px 0 0; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.6; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-nav h4, footer h4 { color: white; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-nav a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange, #E8650A); }
.footer-address { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 4px; }
.footer-bottom { text-align: center; padding: 20px 40px; margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* Mobile footer */


/* Footer logo — white bg pill so logo shows on dark footer */
.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  background: white;
  border-radius: 8px;
  padding: 5px 10px;
  margin-bottom: 16px;
  display: block;
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE — Single authoritative block
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── NAVBAR ── */
  nav { padding: 12px 18px; position: relative; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy, #1B2D6B);
    padding: 8px 20px 20px;
    gap: 0;
    z-index: 9999;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block !important;
    color: white !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 0 !important;
    padding: 12px 4px !important;
    font-size: 0.95rem;
    text-align: left;
    width: 100%;
    text-decoration: none;
  }
  .nav-links .nav-wa { background: #25D366 !important; color: white !important; }
  .nav-links .nav-dashboard {
    color: rgba(255,255,255,0.75) !important;
    font-size: 0.85rem !important;
  }
  .nav-links .nav-translate {
    display: block !important;
    width: auto !important;
    align-self: flex-start;
    color: white !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    border-radius: 8px !important;
    padding: 8px 14px !important;
    margin: 8px 0 4px !important;
    font-size: 0.82rem;
    cursor: pointer;
  }
  .nav-links #navLogout {
    display: block !important;
    width: 100% !important;
    color: rgba(255,255,255,0.7) !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 0 !important;
    padding: 12px 4px !important;
    text-align: left;
    font-size: 0.9rem;
    cursor: pointer;
  }
  /* Logout button in nav — plain emoji on desktop, full-width in mobile menu */
  #navLogout {
    display: none; /* shown by JS when logged in */
    color: white !important;
    background: none !important;
    border: none !important;
  }
  nav > .nav-links #navLogout {
    display: block !important;
    width: 100% !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 12px 4px !important;
    font-size: 0.95rem !important;
    text-align: left;
    border-radius: 0 !important;
  }
  .hamburger { display: flex; }

  /* ── HERO ── */
  .hero { flex-direction: column !important; padding: 0 0 20px; }
  .hero-content { padding: 32px 20px 24px; flex: none !important; }
  .hero-slideshow {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 320px !important;
    height: 320px !important;
    border-radius: 0 !important;
  }

  /* ── SECTIONS ── */
  .section { padding: 40px 18px; }
  .stats-section { padding: 28px 18px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .courses-grid, .jobs-grid, .blog-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .applicant-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .footer-bottom { padding: 16px 20px; }

  /* ── POPUP ── */
  .popup { width: 92vw; padding: 24px 18px; }

  /* ── HERO SLIDE ── */
  .hero-slide-text .hero-slide-title { font-size: 1rem; }
  .hero-slide-text .hero-slide-sub { font-size: 0.72rem; }

  /* ── FILTER MODAL ── */
  .fm { width: 95vw; max-height: 88vh; }
}

/* ── ADMIN APPLICANTS TABLE ALIGNMENT ── */
.table-wrap { overflow-x: auto; }
.table-wrap table { table-layout: fixed; width: 100%; min-width: 800px; }
.table-wrap th, .table-wrap td {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
  padding: 10px 12px;
}
.table-wrap th { font-size: 0.75rem; font-weight: 700; color: #6B7280; text-transform: uppercase; letter-spacing: 0.5px; background: #F9FAFB; }
.table-wrap td { font-size: 0.83rem; color: #374151; border-bottom: 1px solid #F3F4F6; }
.table-wrap tr:last-child td { border-bottom: none; }

/* Blog card overlay hidden — tag shown in footer instead */
.blog-card-overlay { display: none; }

/* Hero slide WA button */
.hero-slide-wa-btn {
  display: flex;
  justify-content: center;
  padding: 12px 16px 16px;
  flex-shrink: 0;
}

/* Remove emoji from course card image area */
.course-img .card-emoji { display: none; }
.course-img span:not(.status-badge) { display: none; }

.nav-wa { background: #25D366 !important; border-color: #25D366 !important; }
.nav-wa:hover { background: #1da851 !important; }

/* Sarkari status pills */
.status-open  { color: #16A34A; font-weight: 700; }
.status-closed { color: #DC2626; font-weight: 700; }

/* WhatsApp button in navbar — force green */
a.nav-wa, .nav-wa {
  background: #25D366 !important;
  color: white !important;
}
a.nav-wa:hover, .nav-wa:hover {
  background: #1da851 !important;
}

/* Hero slide — full image no overlay */
.hero-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
.hero-slide.active { opacity: 1 !important; }
.hero-slide-content { display: none !important; }
.hero-slide-wa-btn { display: none !important; }

/* Dashboard button — orange background, white text */
.nav-dashboard {
  background: var(--orange, #E8650A) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  font-family: inherit !important;
}
.nav-dashboard:hover {
  background: #c8540a !important;
  color: white !important;
}

/* ── ABOUT MODAL MOBILE FIX ── */
@media (max-width: 480px) {
  .about-modal {
    width: 95vw !important;
    max-width: 95vw !important;
    padding: 20px 16px !important;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal-stats {
    gap: 6px;
  }
  .modal-stat {
    min-width: 60px;
    padding: 8px 6px;
    flex: 1 1 28%;
  }
  .modal-stat-label {
    font-size: 0.55rem;
    letter-spacing: 0;
    white-space: normal;
    word-break: break-word;
    line-height: 1.2;
  }
  .modal-stat-val {
    font-size: 0.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .about-overlay .modal-title {
    font-size: 1.1rem;
  }
  .modal-college {
    font-size: 0.78rem;
  }
  .modal-desc {
    font-size: 0.82rem;
  }
}
