/* ============================================
   DAV PUBLIC SCHOOL, HAPUR - Premium CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables / Design Tokens ---- */
:root {
  /* Primary Colors */
  --primary: #1a3a7a;
  --primary-light: #2a5aaa;
  --primary-dark: #0d1f4a;
  --primary-gradient: linear-gradient(135deg, #1a3a7a 0%, #2a5aaa 50%, #3b6fd4 100%);

  /* Accent Colors */
  --accent-red: #c0392b;
  --accent-red-light: #e74c3c;
  --accent-gold: #f39c12;
  --accent-gold-light: #f1c40f;
  --accent-green: #27ae60;
  --accent-green-light: #2ecc71;
  --accent-orange: #e67e22;

  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --gray: #adb5bd;
  --dark-gray: #495057;
  --charcoal: #2c3e50;
  --dark: #1a1a2e;
  --darker: #0f0f1a;

  /* Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1280px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --shadow-glow-blue: 0 0 30px rgba(26, 58, 122, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(243, 156, 18, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

/* ---- Global Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--off-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-gold);
  animation: pulse 1.5s ease-in-out infinite;
  box-shadow: var(--shadow-glow-blue);
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent-gold-light);
  border-radius: 4px;
  transition: width 0.3s ease;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow-blue); }
  50% { transform: scale(1.08); box-shadow: 0 0 50px rgba(26, 58, 122, 0.5); }
}

/* ---- Custom Cursor ---- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius-full);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99997;
  opacity: 0.5;
  mix-blend-mode: difference;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1000;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.top-bar-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  font-family: var(--font-accent);
}

.top-bar-links a:hover {
  color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.05);
}

.top-bar-social {
  display: flex;
  gap: 8px;
}

.top-bar-social a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  transition: var(--transition-smooth);
}

.top-bar-social a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* ---- Main Header ---- */
.main-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.main-header::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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.header-logo::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-gold);
}

.header-logo img {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-full);
  object-fit: contain;
}

.header-logo-placeholder {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  line-height: 1.1;
}

.header-info h1 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-info .subtitle {
  font-family: var(--font-accent);
  font-size: clamp(12px, 1.5vw, 15px);
  color: var(--accent-gold-light);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.header-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-gold-light);
}

.header-contact-text span {
  display: block;
  font-size: 11px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-contact-text strong {
  font-size: 14px;
  font-weight: 600;
}

/* ---- Navigation ---- */
.main-nav {
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: var(--transition-smooth);
}

.main-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  display: flex;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 16px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--charcoal);
  font-family: var(--font-accent);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px 3px 0 0;
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link .arrow {
  font-size: 10px;
  transition: var(--transition-fast);
}

.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  border-top: 3px solid var(--primary);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light-gray);
  transition: var(--transition-fast);
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  background: var(--primary);
  color: var(--white);
  padding-left: 28px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: none;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Admission CTA */
.nav-cta {
  padding: 10px 24px;
  background: var(--accent-red);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-red-light), var(--accent-red));
  transform: translateX(-100%);
  transition: var(--transition-smooth);
}

.nav-cta:hover::before {
  transform: translateX(0);
}

.nav-cta span {
  position: relative;
  z-index: 1;
}

.nav-cta::after {
  display: none !important;
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  padding: 30px 0;
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  color: var(--white);
}

.hero-slide-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.hero-slide-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
  font-size: 15px;
  opacity: 0.9;
  max-width: 500px;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.slider-nav:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.slider-dot.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  width: 32px;
  border-radius: 12px;
}

/* Notice Board */
.notice-board {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.notice-board-header {
  background: var(--accent-red);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.notice-board-header::before {
  content: '';
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.notice-board-header i {
  font-size: 24px;
  color: var(--white);
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(0deg); }
}

.notice-board-header h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.notice-board-body {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.notice-list {
  padding: 8px 0;
}

.notice-item {
  padding: 14px 24px;
  border-bottom: 1px solid var(--light-gray);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.notice-item:hover {
  background: rgba(26, 58, 122, 0.04);
}

.notice-item:last-child {
  border-bottom: none;
}

.notice-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--accent-red);
  margin-top: 7px;
  flex-shrink: 0;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.notice-item p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--dark-gray);
  font-weight: 500;
}

.notice-item .notice-date {
  font-size: 11px;
  color: var(--gray);
  margin-top: 4px;
  font-weight: 400;
}

.notice-board-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--light-gray);
  text-align: center;
}

.notice-board-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-accent);
  transition: var(--transition-smooth);
}

.notice-board-footer a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-blue);
}

/* ---- Scrolling Ticker ---- */
.ticker-bar {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-orange) 100%);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.ticker-item i {
  color: var(--accent-red);
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Quick Links ---- */
.quick-links {
  padding: 60px 0;
  background: var(--off-white);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.quick-link-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.quick-link-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.quick-link-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.quick-link-card:hover::before {
  transform: scaleX(1);
}

.quick-link-card:nth-child(1) { --card-color: var(--primary); }
.quick-link-card:nth-child(2) { --card-color: var(--accent-green); }
.quick-link-card:nth-child(3) { --card-color: var(--accent-orange); }
.quick-link-card:nth-child(4) { --card-color: var(--accent-red); }
.quick-link-card:nth-child(5) { --card-color: #8e44ad; }

.quick-link-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--card-color) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--card-color);
  margin: 0 auto 16px;
  transition: var(--transition-smooth);
}

.quick-link-card:hover .quick-link-icon {
  background: var(--card-color);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.quick-link-card h4 {
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--charcoal);
}

/* ---- Stats Counter ---- */
.stats-section {
  background: var(--primary-dark);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-dark);
  margin: 0 auto 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--accent-gold);
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

/* ---- About Section ---- */
.about-section {
  padding: var(--section-padding);
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: color-mix(in srgb, var(--primary) 8%, transparent);
  color: var(--primary);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary);
}

.section-subtitle {
  font-size: 16px;
  color: var(--dark-gray);
  max-width: 600px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent-gold);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow-gold);
}

.about-image-badge strong {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.about-image-badge span {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.about-feature:hover {
  background: color-mix(in srgb, var(--primary) 8%, transparent);
}

.about-feature i {
  color: var(--accent-green);
  font-size: 18px;
}

.about-feature span {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ---- Principal Message ---- */
.principal-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
  position: relative;
  overflow: hidden;
}

.principal-section::before {
  content: '"';
  position: absolute;
  top: 40px;
  left: 5%;
  font-family: var(--font-heading);
  font-size: 300px;
  color: rgba(26, 58, 122, 0.04);
  line-height: 1;
}

.principal-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
}

.principal-image-wrapper {
  position: relative;
}

.principal-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.principal-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 4px solid var(--accent-gold);
  border-radius: var(--radius-lg);
  z-index: 1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.principal-image:hover::before {
  opacity: 1;
  inset: -8px;
}

.principal-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.principal-name-plate {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  white-space: nowrap;
}

.principal-name-plate h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.principal-name-plate span {
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.principal-content blockquote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 4px solid var(--accent-gold);
}

.principal-content p {
  font-size: 15px;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

/* ---- Inside School / Activities ---- */
.activities-section {
  padding: var(--section-padding);
  background: var(--white);
}

.tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  background: var(--off-white);
  color: var(--dark-gray);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-blue);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-spring);
  border: 1px solid var(--light-gray);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.event-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event-card:hover .event-card-image img {
  transform: scale(1.08);
}

.event-card-date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-red);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1;
}

.event-card-date strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
}

.event-card-date span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-card-body {
  padding: 24px;
}

.event-card-body h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.event-card-body p {
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* ---- Facilities Section ---- */
.facilities-section {
  padding: var(--section-padding);
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.facilities-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
}

.facilities-section .section-tag {
  background: rgba(243, 156, 18, 0.15);
  color: var(--accent-gold-light);
}

.facilities-section .section-title {
  color: var(--white);
}

.facilities-section .section-title span {
  color: var(--accent-gold-light);
}

.facilities-section .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.facility-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition-spring);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 58, 122, 0.3) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.facility-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(243, 156, 18, 0.3);
}

.facility-card:hover::before {
  opacity: 1;
}

.facility-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(243, 156, 18, 0.15), rgba(231, 76, 60, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--accent-gold-light);
  margin: 0 auto 18px;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.facility-card:hover .facility-icon {
  transform: scale(1.15);
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.facility-card h4 {
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.facility-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
}

/* ---- Gallery Section ---- */
.gallery-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 600;
}

/* ---- Management Message ---- */
.management-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.management-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='m50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zm-40 0c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.management-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.management-content .quote-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-dark);
  margin: 0 auto 24px;
}

.management-content h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--accent-gold-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.management-content blockquote {
  font-family: var(--font-heading);
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
}

.management-content .author {
  font-family: var(--font-accent);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* ---- Fee Structure ---- */
.fee-section {
  padding: var(--section-padding);
  background: var(--white);
}

.fee-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
}

.fee-table thead {
  background: var(--primary);
}

.fee-table th {
  padding: 18px 24px;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}

.fee-table td {
  padding: 16px 24px;
  font-size: 14px;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light-gray);
}

.fee-table tbody tr {
  transition: var(--transition-fast);
}

.fee-table tbody tr:hover {
  background: color-mix(in srgb, var(--primary) 4%, transparent);
}

.fee-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

/* ---- Footer ---- */
.main-footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--dark) 100%);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--accent-red), var(--accent-green));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 55px;
  height: 55px;
  border-radius: var(--radius-full);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-gold);
}

.footer-logo-text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  font-weight: 700;
}

.footer-logo-text span {
  font-size: 12px;
  color: var(--accent-gold-light);
  font-weight: 500;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social a.facebook:hover { background: #1877f2; color: var(--white); }
.footer-social a.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
.footer-social a.youtube:hover { background: #ff0000; color: var(--white); }
.footer-social a.twitter:hover { background: #1da1f2; color: var(--white); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 3px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
  padding-left: 8px;
}

.footer-links a i {
  font-size: 10px;
  color: var(--accent-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-light);
  font-size: 16px;
  flex-shrink: 0;
}

.footer-contact-text span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.footer-contact-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-map {
  margin-top: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  filter: grayscale(30%);
  transition: var(--transition-smooth);
}

.footer-map:hover iframe {
  filter: grayscale(0%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .visitor-count {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-gold-light);
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: var(--white);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  z-index: 990;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ---- GSAP Animation Helpers ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
}

.reveal-rotate {
  opacity: 0;
  transform: rotate(10deg) scale(0.9);
}

.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotate(10deg);
}

/* ---- Responsive Design ---- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .notice-board {
    max-height: 350px;
  }

  .about-grid,
  .principal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .quick-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .top-bar-links {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    overflow-y: auto;
    z-index: 1001;
    gap: 0;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    padding: 14px 16px;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    display: none;
    border-radius: 0;
  }

  .nav-item.dropdown-open .nav-dropdown {
    display: block;
  }

  .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-info h1 {
    font-size: 20px;
  }

  .quick-links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 36px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 180px);
  }

  .gallery-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .tabs-wrapper {
    gap: 6px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: 11px;
  }
}

/* ---- Utility ---- */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}
