/* ============================================================
   NIOS SUCCESS STUDY POINT — Custom Stylesheet
   Bootstrap 5 + Custom CSS
   ============================================================ */

/* ── Variables ── */
:root {
  --primary:       #1a3c6e;
  --primary-dark:  #0f2447;
  --primary-light: #2a5298;
  --accent:        #f5a623;
  --accent-dark:   #e0941a;
  --danger:        #e8392d;
  --text:          #2d3748;
  --text-muted:    #718096;
  --bg-light:      #f7f9fc;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --shadow:        0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:     0 12px 40px rgba(0,0,0,0.13);
  --radius:        14px;
  --radius-sm:     8px;
  --transition:    0.3s ease;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scrollbar-width: none;
}
html::-webkit-scrollbar { display: none; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
  max-width: 100%;
  scrollbar-width: none;
}
body::-webkit-scrollbar { display: none; }

a { text-decoration: none; }

/* ── Section Spacing ── */
.section-pad { padding: 90px 0; }

/* ── Section Header ── */
.section-tag {
  display: inline-block;
  background: rgba(26,60,110,0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNavbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition), padding var(--transition);
  padding-top: 10px;
  padding-bottom: 10px;
}
#mainNavbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* Brand */
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.brand-icon-light {
  background: rgba(255,255,255,0.12);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-size: 1rem; font-weight: 800; color: var(--primary); }
.brand-sub  { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; }

/* Nav links */
#mainNavbar .nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: var(--primary);
  background: rgba(26,60,110,0.06);
}

/* Dropdown */
#mainNavbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  margin-top: 6px;
}
#mainNavbar .dropdown-item {
  font-size: 0.87rem;
  color: var(--text);
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), padding-left var(--transition);
}
#mainNavbar .dropdown-item:hover {
  background: rgba(26,60,110,0.06);
  color: var(--primary);
  padding-left: 20px;
}
#mainNavbar .dropdown-divider { margin: 4px 8px; }

/* Apply Now button */
.btn-apply {
  background: var(--primary);
  color: var(--white) !important;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-apply:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-1px);
}

/* Custom toggler */
.navbar-toggler {
  border: none;
  padding: 4px;
  box-shadow: none !important;
}
.toggler-icon {
  display: flex; flex-direction: column; gap: 5px;
  width: 24px;
}
.toggler-icon span {
  display: block; height: 2px; width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--white);
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: 0; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: 0; }
.shape-3 {
  width: 200px; height: 200px;
  top: 40%; left: 40%;
  background: var(--accent);
  opacity: 0.06;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,166,35,0.18);
  color: var(--accent);
  border: 1px solid rgba(245,166,35,0.35);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}
.text-accent { color: var(--accent); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Hero buttons */
.btn-hero-primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--accent);
  transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.5);
  transition: background var(--transition), border-color var(--transition);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* Stats */
.hero-stats { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.stat-item strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-item span { font-size: 1.4rem; font-weight: 800; color: var(--accent); }
.stat-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 4px 0 0;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  width: 340px; height: 380px;
}
.hero-card-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  width: 180px; height: 180px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  color: var(--white);
  font-size: 3rem;
}
.hero-card-main span { font-size: 0.9rem; font-weight: 700; }
.hero-card-main small { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
  animation: float 3s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-size: 0.85rem; color: var(--text); font-weight: 700; }
.hero-float-card small { color: var(--text-muted); font-size: 0.75rem; }
.hero-float-card i { font-size: 1.3rem; }

.card-1 { top: 10px; right: 0; animation-delay: 0s; }
.card-2 { bottom: 60px; left: 0; animation-delay: 1s; }
.card-3 { bottom: 0; right: 0; animation-delay: 2s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ============================================================
   COURSES
   ============================================================ */
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.course-card.course-featured {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(245,166,35,0.18);
}
.course-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.course-icon {
  width: 54px; height: 54px;
  background: var(--icon-bg);
  color: var(--icon-color);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.course-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.course-card > p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.course-features {
  list-style: none;
  padding: 0; margin: 0 0 20px;
}
.course-features li {
  font-size: 0.84rem;
  color: var(--text);
  padding: 4px 0;
  display: flex; align-items: center; gap: 8px;
}
.course-features li i { color: #4CAF50; font-size: 0.72rem; }
.course-link {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.course-link:hover { gap: 10px; color: var(--accent); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-visual { position: relative; padding-bottom: 30px; overflow: hidden; }
.about-img-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  height: 380px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 5rem;
  gap: 12px;
}
.about-img-box span {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.about-float-card {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.afc-icon {
  width: 40px; height: 40px;
  background: rgba(245,166,35,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}
.about-float-card strong { display: block; font-size: 0.88rem; color: var(--primary); font-weight: 700; }
.about-float-card small  { font-size: 0.76rem; color: var(--text-muted); }

.about-badge-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.25;
}
.dot-1 { width: 60px; height: 60px; top: -15px; right: 10px; }
.dot-2 { width: 30px; height: 30px; top: 60px; left: 0; background: var(--primary-light); }

.about-feature {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}
.about-feature:hover { background: rgba(26,60,110,0.05); border-color: var(--primary); }
.about-feature i { color: var(--primary); font-size: 1rem; }

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   RESULTS + CONTACT + FAQ
   ============================================================ */
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.result-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.result-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
.result-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--white);
  box-shadow: none !important;
  padding: 14px 18px;
}
.faq-btn:not(.collapsed) { background: rgba(26,60,110,0.05); }
.faq-btn::after { filter: invert(20%) sepia(80%) saturate(500%) hue-rotate(190deg); }
.faq-body {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 14px 18px;
}
.faq-list {
  list-style: none;
  padding: 0; margin: 0;
}
.faq-list li {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 6px;
  font-size: 0.87rem;
  color: var(--text);
}
.faq-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.cf-input {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cf-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,60,110,0.1);
}
.fw-600 { font-weight: 600; font-size: 0.88rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.testi-card.testi-featured {
  background: var(--primary);
  border-color: var(--primary);
}
.testi-featured p,
.testi-featured .testi-author strong { color: var(--white); }
.testi-featured .testi-author small  { color: rgba(255,255,255,0.55); }

.testi-stars { color: var(--accent); font-size: 0.88rem; margin-bottom: 14px; }
.testi-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-featured .testi-avatar { background: rgba(255,255,255,0.18); }
.testi-author strong { display: block; font-size: 0.9rem; }
.testi-author small  { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.15), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-section p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}
.btn-cta-primary {
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--accent);
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-cta-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  font-weight: 600;
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255,255,255,0.45);
  font-size: 0.95rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-cta-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d1f3c;
  color: rgba(255,255,255,0.68);
}
.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
}
.footer-heading {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 9px; }
.footer-links li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links li a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
}
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  font-size: 0.87rem;
}
.footer-contact-list li i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.footer-contact-list li a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-contact-list li a:hover { color: var(--accent); }

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.social-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  color: var(--white);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  background: #1a1a1a;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(-50%) translateX(6px);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a1a1a;
}
.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {
  /* Navbar collapse styles */
  #navbarNav {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 12px 0 16px;
    margin-top: 10px;
  }
  #mainNavbar .nav-link { padding: 10px 8px; }
  .btn-apply { width: 100%; text-align: center; margin-top: 8px; }

  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .about-img-box { height: 280px; }
  .about-float-card { right: 0; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 60px 0; }
  .hero-title { font-size: 2rem; }
  .stat-item strong { font-size: 1.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .about-visual { max-width: 420px; margin: 0 auto; }
}

@media (max-width: 575.98px) {
  .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
  .stat-divider { display: none; }
  .cta-section { padding: 60px 20px; }
}

/* ============================================================
   DEORIA HERO
   ============================================================ */
.deoria-hero {
  position: relative;
  min-height: 88vh;
  background: linear-gradient(rgba(10,20,40,0.75), rgba(10,20,40,0.75)),
              url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1400&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}
.deoria-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.45);
}
.deoria-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}
.deoria-brand-label {
  color: #00bcd4;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: inline-block;
  border-bottom: 2px solid #00bcd4;
  padding-bottom: 4px;
}
.deoria-hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.deoria-admission-text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #f5e642;
  margin-bottom: 16px;
}
.deoria-features {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 10px;
}
.deoria-features li {
  color: #f5e642;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.deoria-btn-primary {
  background: #00bcd4;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 0;
  border: 2px solid #00bcd4;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.deoria-btn-primary:hover {
  background: #0097a7;
  border-color: #0097a7;
  color: #fff;
  transform: translateY(-2px);
}
.deoria-btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 0;
  border: 2px solid #fff;
  letter-spacing: 0.5px;
  transition: background 0.3s ease;
}
.deoria-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.hero-list {
  list-style: none;
  padding-left: 0;
}

.hero-list li {
  position: relative;
  padding-left: 25px;
  color: #ffff00;
  font-size: 20px;
  margin-bottom: 5px;
}

.hero-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: white;
  font-size: 22px;
}