/* ============================================
   RB Classes – Main Stylesheet
   Colors: Saffron #FF6B00, Navy #0D1B3E, Gold #FFB800
   Fonts: Baloo 2, Noto Sans Devanagari
   ============================================ */

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C35;
  --saffron-pale: #FFF3E8;
  --navy: #0D1B3E;
  --navy-mid: #1A2F5E;
  --gold: #FFB800;
  --gold-light: #FFD966;
  --cream: #FFFDF8;
  --green: #1A7A4A;
  --green-light: #E8F7EF;
  --text-dark: #0D1B3E;
  --text-mid: #3D4F72;
  --text-light: #6B7B99;
  --white: #FFFFFF;
  --border: rgba(13,27,62,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Baloo 2', 'Noto Sans Devanagari', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ============================================ TOPBAR */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar span { margin: 0 16px; }
.topbar a { color: var(--gold); text-decoration: none; }

/* ============================================ NAVBAR */
nav {
  background: var(--white);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(13,27,62,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--gold) 100%);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; font-weight: 800; letter-spacing: -1px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .name { font-size: 20px; font-weight: 800; color: var(--navy); line-height: 1; }
.logo-text .tagline { font-size: 10px; color: var(--saffron); font-weight: 600; letter-spacing: 0.05em; text-transform: none; }

.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-mid); font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; transition: all 0.2s;
}
.nav-links a:hover { background: var(--saffron-pale); color: var(--saffron); }
.nav-cta { background: var(--saffron) !important; color: white !important; padding: 9px 20px !important; border-radius: 8px !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--saffron-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none; border: none;
  font-size: 26px; cursor: pointer; color: var(--navy);
}

/* ============================================ HERO */
.hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 80px 5% 0;
  min-height: 580px;
  display: flex; align-items: flex-end;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255,184,0,0.08) 0%, transparent 40%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 420px; gap: 60px;
  align-items: flex-end; width: 100%; max-width: 1200px; margin: 0 auto;
}
.hero-left { padding-bottom: 70px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,184,0,0.15); border: 1px solid rgba(255,184,0,0.3);
  color: var(--gold); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 22px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.hero-badge::before { content: '★'; font-size: 11px; }
.hero h1 { font-size: clamp(32px,4vw,52px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.hero h1 .accent { color: var(--saffron); }
.hero h1 .gold { color: var(--gold); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary { background: var(--saffron); color: white; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; font-family: inherit; }
.btn-primary:hover { background: var(--saffron-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.35); }
.btn-outline { border: 1.5px solid rgba(255,255,255,0.3); color: white; padding: 14px 30px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; white-space: nowrap; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; font-weight: 500; }

/* HERO RIGHT CARD */
.hero-card { background: var(--white); border-radius: 20px 20px 0 0; padding: 32px; position: relative; }
.hero-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.course-pills { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.course-pill { display: flex; align-items: center; justify-content: space-between; background: var(--saffron-pale); border-radius: 10px; padding: 12px 16px; cursor: pointer; transition: all 0.2s; }
.course-pill:hover { background: #FFE8D0; transform: translateX(4px); }
.pill-left { display: flex; align-items: center; gap: 12px; }
.pill-icon { font-size: 18px; }
.pill-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.pill-sub { font-size: 11px; color: var(--text-light); margin-top: 1px; }
.pill-tag { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 6px; background: var(--saffron); color: white; }
.pill-tag.new { background: var(--green); }
.enroll-mini { width: 100%; background: var(--navy); color: white; border: none; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.enroll-mini:hover { background: var(--navy-mid); }

/* ============================================ MARQUEE */
.marquee-wrap { background: var(--saffron); padding: 12px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; gap: 0; animation: marquee 30s linear infinite; }
.marquee-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: white; padding: 0 32px; border-right: 1px solid rgba(255,255,255,0.3); }
.marquee-item::before { content: '✓'; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================ SECTIONS */
section { padding: 80px 5%; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.section-title { font-size: clamp(24px,3vw,36px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
.section-sub { font-size: 15px; color: var(--text-light); max-width: 520px; }
.section-head { margin-bottom: 48px; }

/* ============================================ COURSES */
.courses-section { background: var(--white); }
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 20px; }
.course-card { border: 1.5px solid var(--border); border-radius: 16px; padding: 28px 22px; transition: all 0.25s; cursor: pointer; position: relative; overflow: hidden; background: var(--cream); }
.course-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--saffron); transform:scaleX(0); transition:transform 0.25s; transform-origin:left; }
.course-card:hover { border-color: var(--saffron); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,107,0,0.12); }
.course-card:hover::before { transform: scaleX(1); }
.course-card-dark { background: var(--navy) !important; border-color: var(--navy) !important; }
.course-card-dark:hover { border-color: var(--gold) !important; }
.icon-wrap { width:52px; height:52px; background:var(--saffron-pale); border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:16px; }
.course-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.course-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.fees { font-size: 13px; font-weight: 700; color: var(--saffron); }
.course-duration { font-size: 12px; color: var(--text-light); }

/* ============================================ WHY */
.why-section { background: var(--navy); }
.why-section .section-label { color: var(--gold); }
.why-section .section-title { color: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 16px; }
.why-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 22px; text-align: center; transition: all 0.2s; overflow: hidden; }
.why-card:hover { background: rgba(255,107,0,0.12); border-color: rgba(255,107,0,0.3); }
.why-num { font-size: 36px; font-weight: 800; color: var(--gold); line-height: 1; white-space: nowrap; }
.why-title { font-size: 15px; font-weight: 700; color: var(--white); margin: 8px 0 6px; }
.why-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================ RESULTS */
.results-section { background: var(--white); }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 16px; }
.result-card { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 20px; display: flex; align-items: center; gap: 14px; }
.result-avatar { width:48px; height:48px; border-radius:50%; background: linear-gradient(135deg,var(--saffron),var(--gold)); display:flex; align-items:center; justify-content:center; color:white; font-weight:800; font-size:16px; flex-shrink:0; }
.result-avatar-img { width:48px; height:48px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.result-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.result-post { font-size: 12px; color: var(--saffron); font-weight: 600; margin-top: 2px; }
.result-year { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.result-badge { display:inline-block; background:var(--green-light); color:var(--green); font-size:10px; font-weight:700; padding:2px 8px; border-radius:6px; margin-top:4px; }

/* ============================================ BATCHES */
.batches-section { background: var(--saffron-pale); }
.batches-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; }
.batch-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.2s; }
.batch-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,27,62,0.1); }
.batch-head { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:12px; gap:8px; }
.batch-name { font-size: 16px; font-weight: 800; color: var(--navy); }
.batch-mode { background: var(--navy); color: white; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; }
.batch-meta { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:16px; }
.batch-meta span { font-size: 12px; color: var(--text-mid); background: var(--cream); padding: 4px 10px; border-radius: 20px; }
.seats-bar-wrap { margin-bottom: 16px; }
.seats-bar { height: 6px; background: #E8EAF0; border-radius: 3px; overflow: hidden; }
.seats-fill { height: 100%; background: linear-gradient(90deg,var(--saffron),var(--gold)); border-radius: 3px; transition: width 0.8s ease; }
.batch-footer { display: flex; justify-content: space-between; align-items: center; }
.batch-fee { font-size: 18px; font-weight: 800; color: var(--navy); }
.btn-batch { background: var(--saffron); color: white; text-decoration: none; padding: 9px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; transition: all 0.2s; }
.btn-batch:hover { background: var(--saffron-light); transform: translateY(-1px); }

/* ============================================ FACULTY */
.faculty-section { background: var(--saffron-pale); }
.faculty-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 24px; }
.faculty-card { background: var(--white); border-radius: 16px; padding: 28px 22px; text-align: center; border: 1px solid var(--border); transition: all 0.2s; }
.faculty-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,27,62,0.1); }
.faculty-avatar { width:72px; height:72px; border-radius:50%; background:linear-gradient(135deg,var(--saffron),var(--gold)); display:flex; align-items:center; justify-content:center; color:white; font-size:28px; font-weight:800; margin:0 auto 16px; }
.faculty-avatar-img { width:72px; height:72px; border-radius:50%; object-fit:cover; margin:0 auto 16px; display:block; }
.faculty-name { font-size: 17px; font-weight: 800; color: var(--navy); }
.faculty-subject { font-size: 13px; color: var(--saffron); font-weight: 600; margin-top: 4px; }
.faculty-exp { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.faculty-qual { font-size: 11px; color: var(--text-light); margin-top: 4px; }

/* ============================================ TESTIMONIALS */
.testi-section { background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 24px; }
.testi-card { background: var(--cream); border: 1px solid var(--border); border-radius: 16px; padding: 28px; }
.testi-stars { color: var(--gold); font-size: 18px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.testi-footer { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width:44px; height:44px; border-radius:50%; background:linear-gradient(135deg,var(--saffron),var(--gold)); display:flex; align-items:center; justify-content:center; color:white; font-weight:800; font-size:16px; flex-shrink:0; }
.testi-avatar-img { width:44px; height:44px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-post { font-size: 12px; color: var(--saffron); font-weight: 600; margin-top: 2px; }

/* ============================================ GALLERY */
.gallery-section { background: var(--cream); }
.gallery-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.gtab-btn { padding: 8px 20px; border-radius: 8px; font-size: 13px; font-weight: 700; cursor: pointer; border: 1px solid rgba(13,27,62,0.15); background: white; color: var(--text-mid); font-family: inherit; transition: all 0.2s; }
.gtab-btn:hover { background: var(--navy); color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 16px; }
.gcard { background: var(--white); border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; border: 1px solid var(--border); transition: all 0.2s; }
.gcard:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(13,27,62,0.15); }

/* ============================================ CONTACT */
.contact-section { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1100px; margin: 0 auto; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.ci-icon { font-size: 20px; margin-top: 2px; }
.ci-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.ci-val { font-size: 15px; font-weight: 600; color: white; text-decoration: none; }
a.ci-val:hover { color: var(--gold); }
.map-btn { display: inline-block; margin-top: 24px; background: rgba(255,184,0,0.15); border: 1px solid rgba(255,184,0,0.3); color: var(--gold); padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.map-btn:hover { background: rgba(255,184,0,0.25); }
.social-links { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.soc-btn { padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.soc-fb { background: #1877F2; color: white; }
.soc-ig { background: linear-gradient(135deg,#405DE6,#E1306C); color: white; }
.soc-yt { background: #FF0000; color: white; }

.contact-form-wrap { background: white; border-radius: 20px; padding: 36px; }
.contact-form-wrap h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: inherit; background: var(--cream); color: var(--text-dark); transition: border 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--saffron); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { width: 100%; background: var(--saffron); color: white; border: none; padding: 15px; border-radius: 10px; font-size: 16px; font-weight: 700; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.form-submit:hover { background: var(--saffron-light); transform: translateY(-2px); }
.form-success { background: var(--green-light); color: var(--green); padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.form-error { background: #FFEAEA; color: #CC2222; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-bottom: 16px; }

/* ============================================ FOOTER */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: 60px 5% 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand {}
.footer-links {}
.fl-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ============================================ FLOATING ELEMENTS */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25D366; color: white; border-radius: 50px;
  padding: 14px 22px 14px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  text-decoration: none; transition: all 0.2s; font-family: inherit;
}
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; background: white; border-top: 1px solid rgba(13,27,62,0.12); padding: 10px 16px; grid-template-columns: 1fr 1fr; gap: 10px; }
.mb-call { background: var(--navy); color: white; text-align: center; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 700; text-decoration: none; }
.mb-admit { background: var(--saffron); color: white; text-align: center; padding: 12px; border-radius: 10px; font-size: 13px; font-weight: 700; text-decoration: none; }

/* ============================================ RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .topbar span:not(:first-child) { display: none; }
  .hamburger { display: block; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: white; flex-direction: column; padding: 16px 5%; box-shadow: 0 8px 24px rgba(0,0,0,0.1); gap: 4px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
  .nav-cta { text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .results-grid { grid-template-columns: repeat(2,1fr); }
  .mobile-bar { display: grid; }
  .wa-float { bottom: 80px; right: 16px; padding: 12px 16px; font-size: 0; gap: 0; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .wa-float span { font-size: 24px; }
  footer { padding-bottom: 80px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; justify-content: center; }
  .results-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}


/* ============================================ DARK MODE TOGGLE BUTTON */
.dark-toggle {
  background: #F0F2F7;
  border: 1.5px solid rgba(13,27,62,0.15);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.dark-toggle:hover {
  background: var(--saffron-pale);
  border-color: var(--saffron);
  transform: rotate(15deg);
}

/* ============================================ DARK MODE */
html.dark {
  color-scheme: dark;
}

html.dark body {
  background: #0D1422 !important;
  color: #E2E8F4 !important;
}

/* Navbar */
html.dark nav {
  background: #111827 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}
html.dark .nav-links a { color: #94A3C0 !important; }
html.dark .nav-links a:hover { background: rgba(255,107,0,0.15) !important; color: #FF8C35 !important; }
html.dark .logo-text .name { color: #E2E8F4 !important; }
html.dark .dark-toggle { background: #1E293B !important; border-color: rgba(255,255,255,0.12) !important; }
html.dark .topbar { background: #080D18 !important; }

/* Sections background */
html.dark .courses-section { background: #111827 !important; }
html.dark .results-section { background: #111827 !important; }
html.dark .faculty-section { background: #0D1422 !important; }
html.dark .testi-section   { background: #111827 !important; }
html.dark .gallery-section { background: #0D1422 !important; }
html.dark .batches-section { background: #0D1422 !important; }
html.dark .contact-section { background: #080D18 !important; }

/* Section titles */
html.dark .section-title { color: #E2E8F4 !important; }
html.dark .section-sub   { color: #7A8FA8 !important; }

/* Course cards */
html.dark .course-card {
  background: #1E293B !important;
  border-color: rgba(255,255,255,0.08) !important;
}
html.dark .course-card h3 { color: #E2E8F4 !important; }
html.dark .course-card p  { color: #7A8FA8 !important; }
html.dark .course-card:hover { border-color: #FF8C35 !important; }
html.dark .icon-wrap { background: rgba(255,107,0,0.15) !important; }

/* Hero card */
html.dark .hero-card { background: #1E293B !important; }
html.dark .hero-card h3 { color: #E2E8F4 !important; }
html.dark .course-pill { background: rgba(255,107,0,0.12) !important; }
html.dark .pill-name { color: #E2E8F4 !important; }
html.dark .pill-sub  { color: #7A8FA8 !important; }

/* Result cards */
html.dark .result-card { background: #1E293B !important; border-color: rgba(255,255,255,0.07) !important; }
html.dark .result-name { color: #E2E8F4 !important; }

/* Batch cards */
html.dark .batch-card  { background: #1E293B !important; border-color: rgba(255,255,255,0.07) !important; }
html.dark .batch-name  { color: #E2E8F4 !important; }
html.dark .batch-meta span { background: #263349 !important; color: #94A3C0 !important; }
html.dark .batch-fee   { color: #E2E8F4 !important; }

/* Faculty */
html.dark .faculty-card { background: #1E293B !important; border-color: rgba(255,255,255,0.07) !important; }
html.dark .faculty-name { color: #E2E8F4 !important; }

/* Testimonials */
html.dark .testi-card { background: #1E293B !important; border-color: rgba(255,255,255,0.07) !important; }
html.dark .testi-text { color: #94A3C0 !important; }
html.dark .testi-name { color: #E2E8F4 !important; }

/* Gallery */
html.dark .gcard { background: #1E293B !important; border-color: rgba(255,255,255,0.07) !important; }
html.dark .gtab-btn { background: #1E293B !important; color: #94A3C0 !important; border-color: rgba(255,255,255,0.1) !important; }

/* Contact form */
html.dark .contact-form-wrap { background: #1E293B !important; }
html.dark .form-group label { color: #94A3C0 !important; }
html.dark .form-group input,
html.dark .form-group select,
html.dark .form-group textarea {
  background: #263349 !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: #E2E8F4 !important;
}

/* Mobile nav open state in dark */
html.dark .nav-links.open { background: #111827 !important; }

/* Footer */
html.dark footer { background: #080D18 !important; }