/* ════════════════════════════════════════════════════════
   SPS-THEME.CSS
   Sneh Public School — New Design System
   Drop this file in your /css/ folder.
   Does NOT override original style.css globally —
   all new rules are scoped under .sps-* prefix.
════════════════════════════════════════════════════════ */

/* ── THEME VARIABLES ── */
[data-theme="light"] {
  --bg:         #f7f9fc;
  --bg2:        #ffffff;
  --bg3:        #eef2f8;
  --bg4:        #e3eaf5;
  --text:       #1a2340;
  --text2:      #3d4f6e;
  --text3:      #6b7fa3;
  --border:     #d6e0f0;
  --card:       #ffffff;
  --shadow:     0 4px 24px rgba(30,60,120,0.08);
  --shadow-lg:  0 12px 40px rgba(30,60,120,0.14);
  --nav-bg:     rgba(247,249,252,0.96);
  --blue:       #1a56db;
  --blue-l:     #e8f0fe;
  --blue-m:     #3b72e8;
  --accent:     #f97316;
  --accent-l:   #fff4ed;
  --green:      #16a34a;
  --green-l:    #dcfce7;
  --gold:       #d97706;
  --gold-l:     #fef3c7;
  --footer-bg:  #0f1c36;
  --footer-bd:  rgba(255,255,255,0.07);
}
[data-theme="dark"] {
  --bg:         #0e1523;
  --bg2:        #131d30;
  --bg3:        #1a2540;
  --bg4:        #1f2d4a;
  --text:       #e8edf8;
  --text2:      #a8b8d8;
  --text3:      #6b82aa;
  --border:     #253352;
  --card:       #1a2540;
  --shadow:     0 4px 24px rgba(0,0,0,0.32);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.48);
  --nav-bg:     rgba(14,21,35,0.97);
  --blue:       #4a90e8;
  --blue-l:     rgba(74,144,232,0.13);
  --blue-m:     #5a9ef0;
  --accent:     #fb923c;
  --accent-l:   rgba(249,115,22,0.12);
  --green:      #22c55e;
  --green-l:    rgba(34,197,94,0.12);
  --gold:       #fbbf24;
  --gold-l:     rgba(251,191,36,0.12);
  --footer-bg:  #070e1a;
  --footer-bd:  rgba(255,255,255,0.06);
}

/* ── GLOBAL BASE (body-level, replaces old body styles) ── */
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', 'Open Sans', sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { color: var(--text2); }
h1,h2,h3,h4,h5 {
  font-family: 'Nunito', 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.22;
  color: var(--text);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg3); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* Page content wrapper opened in header, closed in footer */
.sps-page-content {
  background: var(--bg);
  transition: background 0.4s;
}

/* ════════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════ */
@keyframes sps-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes sps-fadeUp {
  from { opacity: 0; transform: translateY(42px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sps-fadeLeft {
  from { opacity: 0; transform: translateX(-42px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sps-fadeRight {
  from { opacity: 0; transform: translateX(42px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sps-scaleIn {
  from { opacity: 0; transform: scale(0.86); }
  to   { opacity: 1; transform: none; }
}
@keyframes sps-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes sps-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26,86,219,0.3); }
  50%       { box-shadow: 0 0 0 8px rgba(26,86,219,0); }
}
@keyframes sps-dotblink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes sps-spin {
  to { transform: rotate(360deg); }
}
@keyframes sps-slideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sps-noticeUp {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* ════════════════════════════════════════
   SCROLL REVEAL UTILITY
════════════════════════════════════════ */
.sps-rv {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.sps-rv.sps-fl  { transform: translateX(-46px); }
.sps-rv.sps-fr  { transform: translateX(46px); }
.sps-rv.sps-sc  { transform: scale(0.86); opacity: 0; }
.sps-rv.sps-vis { opacity: 1; transform: none; }

/* ════════════════════════════════════════
   TOP BAR
════════════════════════════════════════ */
.sps-topbar {
  background: var(--blue);
  color: #fff;
  padding: 7px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  flex-wrap: wrap;
  gap: 6px;
  position: relative;
  z-index: 200;
}
.sps-topbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.sps-topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1;
}
.sps-topbar-item .fas {
  flex-shrink: 0;
  font-size: 0.82rem;
  opacity: 0.85;
}
/* Ticker inside topbar */
.sps-topbar-ticker {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.sps-topbar-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  animation: sps-ticker 30s linear infinite;
  font-size: 0.8rem;
  font-weight: 600;
}
.sps-topbar-track:hover { animation-play-state: paused; }
.sps-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.sps-topbar-link {
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sps-topbar-link:hover { opacity: 1; color: #fff; }
.sps-topbar-cta {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 4px 14px;
  border-radius: 100px;
  opacity: 1 !important;
  transition: background 0.2s !important;
}
.sps-topbar-cta:hover { background: rgba(255,255,255,0.32) !important; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.sps-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, background 0.4s;
}
.sps-nav.sps-scrolled {
  box-shadow: 0 4px 28px rgba(30,60,120,0.11);
}
.sps-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.sps-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  text-decoration: none;
}
.sps-logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.sps-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.sps-logo-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--blue);
  white-space: nowrap;
}
.sps-logo-tag {
  font-size: 0.65rem;
  color: var(--text3);
  font-weight: 500;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* Nav links (desktop) */
.sps-nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sps-nav-links li {
  position: relative;
}
.sps-nav-a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text2);
  padding: 8px 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.sps-nav-a:hover,
.sps-nav-a.sps-active {
  background: var(--blue-l);
  color: var(--blue);
}
.sps-nav-a .fas { font-size: 0.7rem; margin-top: 1px; }

/* Dropdown */
.sps-has-drop { position: relative; }
.sps-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 210px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 800;
  list-style: none;
  animation: sps-slideUp 0.22s ease both;
}
.sps-has-drop:hover .sps-dropdown { display: block; }
.sps-dropdown li a {
  display: block;
  padding: 9px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text2);
  border-radius: 9px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.sps-dropdown li a:hover {
  background: var(--blue-l);
  color: var(--blue);
}

/* Nav right */
.sps-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Theme toggle button */
.sps-theme-btn {
  width: 52px;
  height: 28px;
  background: var(--bg3);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  font-size: 11px;
  transition: background 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.sps-theme-knob {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--blue);
  transition: transform 0.3s;
  pointer-events: none;
}
[data-theme="dark"] .sps-theme-knob { transform: translateX(24px); }

/* Enroll button */
.sps-enroll-btn {
  background: var(--blue);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.84rem;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: 0 3px 12px rgba(26,86,219,0.28);
}
.sps-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(26,86,219,0.36);
  background: var(--blue-m);
  color: #fff !important;
}

/* Hamburger */
.sps-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.sps-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════ */
.sps-mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1050;
  backdrop-filter: blur(3px);
}
.sps-mob-overlay.sps-open { display: block; }

.sps-mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: var(--bg2);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.sps-mob-drawer.sps-open { transform: none; }

.sps-mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.sps-mob-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text2);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.sps-mob-close:hover { background: var(--bg3); }

.sps-mob-links {
  flex: 1;
  overflow-y: auto;
  padding: 0.75rem 0;
  list-style: none;
}
.sps-mob-links li > a,
.sps-mob-drop-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text2);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
  border-radius: 0;
}
.sps-mob-links li > a:hover,
.sps-mob-drop-head:hover {
  background: var(--blue-l);
  color: var(--blue);
}
.sps-mob-arrow { margin-left: auto; font-size: 0.72rem; transition: transform 0.25s; }
.sps-mob-has-drop.sps-mob-open .sps-mob-arrow { transform: rotate(180deg); }

.sps-mob-sub {
  display: none;
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  list-style: none;
  padding: 0.3rem 0;
}
.sps-mob-has-drop.sps-mob-open .sps-mob-sub { display: block; }
.sps-mob-sub li a {
  display: block;
  padding: 9px 1.4rem 9px 3rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text3);
  transition: color 0.18s;
  text-decoration: none;
}
.sps-mob-sub li a:hover { color: var(--blue); }

.sps-mob-footer {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   SECTION UTILITIES (used in index.php)
════════════════════════════════════════ */
.sps-sec { padding: 5rem 5%; }
.sps-sec.sps-alt { background: var(--bg3); }
.sps-sec.sps-white { background: var(--bg2); }
.sps-sec-wrap { max-width: 1240px; margin: 0 auto; }

.sps-sec-hd {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.sps-eyebrow {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.8rem;
}
.sps-eyebrow::before, .sps-eyebrow::after {
  content: '';
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  border-radius: 1px;
}
.sps-eyebrow.sps-left { justify-content: flex-start; }
.sps-eyebrow.sps-left::after { display: none; }

.sps-sec-title {
  font-family: 'Playfair Display', 'Montserrat', serif;
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.95rem;
  line-height: 1.25;
}
.sps-sec-desc {
  font-size: 1rem;
  color: var(--text2);
  line-height: 1.82;
}

/* Wave divider */
.sps-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}
.sps-wave svg { display: block; width: 100%; }

/* Generic buttons */
.sps-btn-blue {
  background: var(--blue);
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(26,86,219,0.28);
  text-decoration: none;
}
.sps-btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,86,219,0.38);
  color: #fff;
}
.sps-btn-line {
  background: var(--bg3);
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 11px 26px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}
.sps-btn-line:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-l);
}

/* ════════════════════════════════════════
   NOTICE TICKER BAR  (index.php)
════════════════════════════════════════ */
.sps-ticker-bar {
  background: var(--blue);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sps-ticker-lbl {
  background: var(--accent);
  color: #fff;
  padding: 11px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sps-ticker-scroll { flex: 1; overflow: hidden; }
.sps-ticker-track {
  display: flex;
  gap: 3.5rem;
  animation: sps-ticker 32s linear infinite;
  width: max-content;
  padding: 11px 0;
}
.sps-ticker-track:hover { animation-play-state: paused; }
.sps-ticker-track span {
  white-space: nowrap;
  font-family: 'Nunito', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sps-ticker-track span::before { content: '•'; opacity: 0.5; }

/* ════════════════════════════════════════
   FEATURE PILLARS  (index.php)
════════════════════════════════════════ */
.sps-pillars {
  background: var(--bg2);
  padding: 0 5%;
}
.sps-pillars-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  transform: translateY(-48px);
}
.sps-pillar {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
  overflow: hidden;
}
.sps-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pc1), var(--pc2));
}
.sps-pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sps-pillar:nth-child(1) { --pc1: #1a56db; --pc2: #4a90e8; }
.sps-pillar:nth-child(2) { --pc1: #f97316; --pc2: #fb923c; }
.sps-pillar:nth-child(3) { --pc1: #16a34a; --pc2: #22c55e; }
.sps-pillar:nth-child(4) { --pc1: #d97706; --pc2: #f59e0b; }
.sps-pillar-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sps-pillar-icon img {
  width: 28px; height: 28px;
  object-fit: contain;
}
.sps-pillar h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 4px;
}
.sps-pillar p {
  font-size: 0.84rem;
  color: var(--text2);
  line-height: 1.7;
  margin: 0;
}

/* ════════════════════════════════════════
   ABOUT / NOTICE BOARD  (index.php)
════════════════════════════════════════ */
.sps-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: stretch;
  max-width: 1240px;
  margin: 0 auto;
}
.sps-about-img-wrap { position: relative; }
.sps-about-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.sps-about-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--blue);
  color: #fff;
  border-radius: 16px;
  padding: 16px 22px;
  font-family: 'Nunito', sans-serif;
  box-shadow: 0 8px 24px rgba(26,86,219,0.35);
  text-align: center;
}
.sps-about-badge .sps-num {
  font-size: 1.9rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.sps-about-badge .sps-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.85;
}

/* Notice Panel */
.sps-notice-panel {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sps-notice-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.3rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.sps-notice-head h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--text);
  margin: 0;
}
.sps-np-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.sps-notice-scroll {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 300px;
}
.sps-notice-scroll::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 48px;
  background: linear-gradient(to top, var(--card), transparent);
  pointer-events: none;
}
.sps-notice-marquee {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: sps-noticeUp 20s linear infinite;
}
.sps-notice-marquee:hover { animation-play-state: paused; }
.sps-notice-item {
  padding: 0.85rem 1rem;
  background: var(--bg3);
  border-radius: 10px;
  border-left: 3px solid var(--blue);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text2);
  line-height: 1.6;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.sps-notice-item:hover {
  background: var(--blue-l);
  transform: translateX(4px);
  color: var(--blue);
}

/* ════════════════════════════════════════
   STATS STRIP  (index.php)
════════════════════════════════════════ */
.sps-stats-strip { background: var(--blue); padding: 3rem 5%; }
.sps-stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.sps-stat-col {
  text-align: center;
  padding: 1.4rem 0.8rem;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.sps-stat-col:last-child { border-right: none; }
.sps-stat-ico { font-size: 1.5rem; display: block; margin-bottom: 0.5rem; }
.sps-stat-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.sps-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.74); font-weight: 600; }

/* ════════════════════════════════════════
   CLASSES GRID  (index.php)
════════════════════════════════════════ */
.sps-classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.sps-class-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}
.sps-class-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.sps-class-img-wrap { position: relative; overflow: hidden; }
.sps-class-img {
  width: 100%; height: 200px;
  object-fit: cover;
  transition: transform 0.45s;
}
.sps-class-card:hover .sps-class-img { transform: scale(1.06); }
.sps-class-timing {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--blue);
  color: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sps-class-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.sps-class-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.sps-class-title a { color: inherit; transition: color 0.2s; text-decoration: none; }
.sps-class-card:hover .sps-class-title a { color: var(--blue); }
.sps-class-desc { font-size: 0.84rem; color: var(--text2); line-height: 1.72; flex: 1; }
.sps-class-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 1rem;
}
.sps-class-lnk {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
  text-decoration: none;
}
.sps-class-card:hover .sps-class-lnk { gap: 8px; }

/* ════════════════════════════════════════
   CHOICE BANNER  (index.php)
════════════════════════════════════════ */
.sps-choice-banner {
  padding: 4.5rem 5%;
  background: linear-gradient(135deg, #1a3a8f, #1a56db, #1e65f5);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.sps-choice-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.sps-choice-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sps-choice-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.sps-choice-inner h1 span {
  background: linear-gradient(90deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sps-choice-inner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.82;
  margin-bottom: 2rem;
}
.sps-choice-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sps-btn-white {
  background: #fff;
  color: var(--blue);
  padding: 13px 30px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-decoration: none;
}
.sps-btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  color: var(--blue);
}
.sps-btn-ghost {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 11px 28px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  transition: background 0.2s;
  text-decoration: none;
}
.sps-btn-ghost:hover { background: rgba(255,255,255,0.26); color: #fff; }

/* ════════════════════════════════════════
   VIDEO SECTION  (index.php)
════════════════════════════════════════ */
.sps-video-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sps-video-thumb {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: brightness(0.72);
}
.sps-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,20,50,0.3);
}
.sps-play-btn {
  width: 82px; height: 82px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
  text-decoration: none;
  color: var(--blue);
  position: relative;
}
.sps-play-btn::before {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.45);
  animation: sps-spin 8s linear infinite;
}
.sps-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.36);
  color: var(--blue);
}

/* ════════════════════════════════════════
   GALLERY  (index.php)
════════════════════════════════════════ */
.sps-gallery-layout {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
}
.sps-gallery-info p {
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.82;
  margin: 1rem 0 1.8rem;
}
.sps-gallery-grid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.sps-gal-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}
.sps-gal-item:first-child { grid-column: span 2; aspect-ratio: 2/1; }
.sps-gal-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.sps-gal-item:hover .sps-gal-img { transform: scale(1.08); }
.sps-gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,86,219,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sps-gal-item:hover .sps-gal-overlay { opacity: 1; }
.sps-gal-icon { font-size: 1.5rem; color: #fff; }

/* ════════════════════════════════════════
   TESTIMONIALS  (index.php)
════════════════════════════════════════ */
.sps-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.sps-testi-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  position: relative;
}
.sps-testi-card:hover { transform: translateY(-5px); }
.sps-testi-quote {
  position: absolute;
  top: 1.4rem; right: 1.6rem;
  font-size: 3rem;
  line-height: 0;
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  opacity: 0.15;
}
.sps-stars { color: #f59e0b; font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.sps-testi-text {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.82;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.sps-testi-author { display: flex; align-items: center; gap: 12px; }
.sps-testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.sps-testi-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--text);
}
.sps-testi-role { font-size: 0.75rem; color: var(--text3); font-weight: 500; }

/* ════════════════════════════════════════
   ENROLL STRIP  (index.php)
════════════════════════════════════════ */
.sps-enroll-strip {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
  padding: 4rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sps-enroll-strip::before {
  content: '🎓';
  font-size: 12rem;
  position: absolute;
  right: -2rem; top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
}
.sps-enroll-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sps-enroll-inner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.9rem;
}
.sps-enroll-inner p {
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  line-height: 1.82;
  margin-bottom: 2rem;
}
.sps-enroll-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.sps-phone-btn {
  background: #fff;
  color: #0284c7;
  padding: 13px 28px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
  text-decoration: none;
}
.sps-phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.24);
  color: #0284c7;
}
.sps-phone-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #0ea5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: #fff;
}

/* ════════════════════════════════════════
   TEACHERS  (index.php)
════════════════════════════════════════ */
.sps-teachers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.sps-teacher-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.sps-teacher-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sps-teacher-img-wrap { position: relative; overflow: hidden; }
.sps-teacher-img {
  width: 100%; height: 200px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.sps-teacher-card:hover .sps-teacher-img { transform: scale(1.05); }
.sps-teacher-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,86,219,0.88) 0%, transparent 100%);
  padding: 1rem 0.8rem 0.7rem;
}
.sps-teacher-badge h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
  margin: 0;
}
.sps-teacher-body { padding: 1rem 1.2rem 1.4rem; }
.sps-teacher-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.7; }

/* ════════════════════════════════════════
   BEEHIVE  (index.php)
════════════════════════════════════════ */
.sps-beehive-sec { padding: 5rem 5%; background: var(--bg3); overflow: hidden; }
.sps-beehive-wrap {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.sps-bhex:nth-child(n+7) { margin-top: -0.8rem; }
.sps-bhex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}
.sps-hexagon {
  width: 130px; height: 130px;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s, filter 0.3s;
}
.sps-hexagon:hover { transform: scale(1.09); filter: brightness(0.93); }
.sps-hex-icon { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.sps-hex-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  line-height: 1.25;
  color: #fff;
}
.sps-hex-sub { font-size: 0.59rem; opacity: 0.82; font-weight: 500; color: #fff; }
.sps-bhex-lbl {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.73rem;
  color: var(--text2);
  text-align: center;
}
/* hex colours */
.sps-hx-blue   { background: linear-gradient(135deg, #1a56db, #3b72e8); }
.sps-hx-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.sps-hx-green  { background: linear-gradient(135deg, #16a34a, #22c55e); }
.sps-hx-sky    { background: linear-gradient(135deg, #0284c7, #38bdf8); }
.sps-hx-purple { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.sps-hx-rose   { background: linear-gradient(135deg, #e11d48, #f43f5e); }
.sps-hx-amber  { background: linear-gradient(135deg, #d97706, #f59e0b); }
.sps-hx-teal   { background: linear-gradient(135deg, #0f766e, #14b8a6); }
.sps-hx-indigo { background: linear-gradient(135deg, #4338ca, #6366f1); }
.sps-hx-pink   { background: linear-gradient(135deg, #db2777, #ec4899); }
.sps-hx-lime   { background: linear-gradient(135deg, #65a30d, #84cc16); }
.sps-hx-cyan   { background: linear-gradient(135deg, #0e7490, #22d3ee); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.sps-footer { background: var(--footer-bg); }
.sps-footer-top { padding: 4.5rem 5% 2.5rem; }
.sps-footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.sps-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.1rem;
  text-decoration: none;
}
.sps-footer-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
}
.sps-footer-school-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.2;
}
.sps-footer-school-tag {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.07em;
}
.sps-footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.82;
  margin-bottom: 1.4rem;
}
.sps-social-row { display: flex; gap: 0.6rem; }
.sps-social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.sps-social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.sps-footer-col-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.8rem;
}
.sps-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.sps-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  list-style: none;
  padding: 0; margin: 0;
}
.sps-footer-links li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.sps-footer-links li a::before { content: '›'; font-size: 1rem; opacity: 0.5; }
.sps-footer-links li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }

/* Hours list */
.sps-hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
  padding: 0; margin: 0;
}
.sps-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--footer-bd);
  font-size: 0.83rem;
}
.sps-hours-sunday { opacity: 0.45; }
.sps-day { color: rgba(255,255,255,0.6); font-weight: 500; }
.sps-time { color: rgba(255,255,255,0.9); font-weight: 700; font-family: 'Nunito', sans-serif; }

/* Contact list */
.sps-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  padding: 0; margin: 0;
  margin-bottom: 1.2rem;
}
.sps-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.sps-contact-list li a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-decoration: none;
}
.sps-contact-list li a:hover { color: rgba(255,255,255,0.95); }
.sps-contact-icon {
  color: var(--blue);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.sps-map-thumb { border-radius: 10px; overflow: hidden; }

/* Footer bottom */
.sps-footer-bottom {
  border-top: 1px solid var(--footer-bd);
  padding: 1.4rem 5%;
}
.sps-footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.sps-copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.sps-developed {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.sps-developed a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.sps-developed a:hover { color: var(--blue-m); }

/* ════════════════════════════════════════
   BACK TO TOP
════════════════════════════════════════ */
.sps-btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 888;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(26,86,219,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.sps-btt.sps-vis { opacity: 1; transform: none; pointer-events: all; }
.sps-btt:hover { background: var(--blue-m); }

/* ════════════════════════════════════════
   HERO SLIDER  (index.php)
════════════════════════════════════════ */
.sps-hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 108px);
  min-height: 520px;
  overflow: hidden;
  background: var(--bg3);
}
.sps-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 1;
}
.sps-slide.sps-active { opacity: 1; z-index: 2; }
.sps-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.sps-slide.sps-active img { transform: scale(1); }
.sps-slide-overlay {
  position: absolute;
  inset: 0; z-index: 3;
  background: linear-gradient(to right, rgba(10,20,50,0.72) 0%, rgba(10,20,50,0.3) 60%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.sps-slide-content { max-width: 640px; color: #fff; }
.sps-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 1.4rem;
  animation: sps-fadeUp 0.6s 0.2s both;
}
.sps-dot-blink {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: sps-dotblink 2s ease-in-out infinite;
}
.sps-slide-title {
  font-family: 'Playfair Display', 'Montserrat', serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.1rem;
  color: #fff;
  animation: sps-fadeUp 0.7s 0.4s both;
}
.sps-slide-text {
  font-size: clamp(0.9rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.82;
  margin-bottom: 2rem;
  animation: sps-fadeUp 0.7s 0.6s both;
}
.sps-slide-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: sps-fadeUp 0.7s 0.8s both;
}
.sps-sbtn-primary {
  background: var(--blue);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(26,86,219,0.4);
  text-decoration: none;
}
.sps-sbtn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(26,86,219,0.5);
  color: #fff;
}
.sps-sbtn-outline {
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: 11px 24px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  text-decoration: none;
}
.sps-sbtn-outline:hover { background: rgba(255,255,255,0.22); color: #fff; }

/* Slider controls */
.sps-slider-arrows {
  position: absolute;
  bottom: 2rem; right: 5%;
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}
.sps-sarrow {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  user-select: none;
}
.sps-sarrow:hover { background: var(--blue); }
.sps-slider-dots {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.6rem;
}
.sps-sdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.sps-sdot.sps-active { background: #fff; transform: scale(1.3); }

/* Hero float cards */
.sps-hero-cards {
  position: absolute;
  right: 5%; bottom: 4rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  animation: sps-fadeRight 0.8s 0.8s both;
}
.sps-h-card {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  min-width: 200px;
}
.sps-h-card:nth-child(1) { animation: sps-float 5s ease-in-out infinite; }
.sps-h-card:nth-child(2) { animation: sps-float 5s ease-in-out infinite; animation-delay: -2.5s; }
.sps-h-card-icon { font-size: 1.6rem; flex-shrink: 0; }
.sps-h-card-lbl {
  font-size: 0.68rem;
  color: #6b7fa3;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sps-h-card-val {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: #1a2340;
}
.sps-h-card-sub { font-size: 0.72rem; font-weight: 700; }

/* ════════════════════════════════════════
   HIDE OLD SECTIONS (prevents old + new double render)
   Applied globally so old markup from original theme
   doesn't show if any page still uses it.
════════════════════════════════════════ */
.header-wrap,
.our-course-categories-two,
.about-wrap,
.class-wrap,
.choice-wrap,
.video-wrap,
.gallery-wrap,
.testimonials-wrap,
.enroll-wrap,
.teachers-area-three,
.blog-wrap,
.footer-wrap,
.footer-bottom:not(.sps-footer-bottom) {
  display: none !important;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  .sps-footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .sps-pillars-inner { grid-template-columns: repeat(2, 1fr); transform: translateY(-28px); }
  .sps-teachers-grid { grid-template-columns: repeat(2, 1fr); }
  .sps-beehive-wrap { grid-template-columns: repeat(4, 1fr); }
  .sps-gallery-layout { grid-template-columns: 1fr; gap: 2rem; }
  .sps-gallery-info { text-align: center; }
  .sps-gallery-info .sps-eyebrow { justify-content: center; }
  .sps-gallery-info .sps-eyebrow::after { display: inline-block; }
}
@media (max-width: 992px) {
  .sps-nav-links { display: none; }
  .sps-enroll-btn { display: none; }
  .sps-hamburger { display: flex; }
  .sps-topbar-left { display: none; }
  .sps-hero-cards { display: none; }
  .sps-about-grid { grid-template-columns: 1fr; }
  .sps-classes-grid { grid-template-columns: repeat(2, 1fr); }
  .sps-testi-grid { grid-template-columns: 1fr; }
  .sps-stats-inner { grid-template-columns: repeat(3, 1fr); }
  .sps-beehive-wrap { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .sps-hero { height: 75vw; min-height: 380px; }
  .sps-pillars-inner {
    grid-template-columns: 1fr;
    transform: none;
    padding: 2rem 5%;
  }
  .sps-pillars { padding: 0; }
  .sps-classes-grid,
  .sps-teachers-grid { grid-template-columns: 1fr; }
  .sps-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .sps-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sps-gallery-grid6 { grid-template-columns: repeat(2, 1fr); }
  .sps-gal-item:first-child { grid-column: span 2; }
  .sps-beehive-wrap { grid-template-columns: repeat(2, 1fr); }
  .sps-hexagon { width: 100px; height: 100px; }
  .sps-slide-title { font-size: 1.7rem; }
  .sps-video-thumb { height: 240px; }
}
@media (max-width: 480px) {
  .sps-beehive-wrap { grid-template-columns: repeat(2, 1fr); }
  .sps-footer-bottom-inner { flex-direction: column; text-align: center; }
  .sps-enroll-phones { flex-direction: column; }
  .sps-choice-btns { flex-direction: column; }
}