/* 1. Variables & Base Styles */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --text-primary: #0d1320;
  --text-secondary: #171313;
  --text-muted: #64748b;
  --accent: #1f4499;
  --accent-hover: #2a5abf;
  --gradient-start: #1f4499;
  --gradient-end: #3b6ef5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}

/* 2. Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* Safari support */
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.navbar-brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.btn-nav-register {
  padding: 0.5rem 1.25rem;
  background: #fff;
  color: #000000;
  border: 2px solid #000;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-nav-register:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* 3. Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: #05070a;
  /* Deep space black */
  color: #ffffff;
}

/* Cyber Grid Background Effect */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(107, 140, 206, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 140, 206, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
  animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 50px;
  }
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
}

.hero-logo-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-logo {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(107, 140, 206, 0.4)) grayscale(0.2);
  transition: all 0.3s ease;
}

.hero-logo:hover {
  filter: drop-shadow(0 0 12px rgba(107, 140, 206, 0.8)) grayscale(0);
  transform: translateY(-2px);
}

.hero-logo-side {
  height: 150px;
  /* Side logos even smaller for hierarchy */
}

/* Futuristic Typography */
.hero-date {
  font-family: 'JetBrains Mono', monospace; 
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  color: #a0c4ff;
  margin-bottom: 1.5rem;
  
  text-shadow: 
    0 0 5px rgba(160, 196, 255, 0.4),
    0 0 15px rgba(107, 140, 206, 0.2);
  
  background: rgba(107, 140, 206, 0.1);
  padding: 4px 12px;
  border-left: 2px solid #6b8cce;
  display: inline-block;
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  95% { opacity: 1; }
  96% { opacity: 0.8; }
  97% { opacity: 1; }
}

.hero-title {
  font-family: 'Inter', sans-serif;
  /* Cleaner font for tech look */
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-title span {
  background: linear-gradient(to bottom, #fff 30%, #6b8cce 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(107, 140, 206, 0.3));
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  /* Allows clicking buttons through the particles */
}

.hero-content {
  position: relative;
  z-index: 2;
  /* Sits above the particles */
}

/* Glowing Buttons */
.btn-primary {
  background: #6b8cce;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 20px rgba(107, 140, 206, 0.4);
  transition: 0.3s;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(107, 140, 206, 0.7);
  transform: translateY(-2px);
}

/* 4. Buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(31, 68, 153, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  /* Very slight white tint */
  color: #ffffff;
  /* Force text to white */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Semi-transparent white border */
  backdrop-filter: blur(5px);
  /* Glassmorphism effect */
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #6b8cce;
  /* Changes to blue on hover to match theme */
  color: #6b8cce;
  transform: translateY(-2px);
}

/* 5. About Section & Image Scroller */
.about-content {
  padding: 2rem;
  max-width: 850px;
}

/* 1. Main Heading: Large, Bold, and Impactful */
.about-heading {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem); /* Significantly larger */
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.01em;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  
  /* Subtle gradient to give it a "machined" look */
  background: linear-gradient(180deg, #0f172a 40%, #4a90e2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 2. Tagline: Smaller, Stylish, and Technical */
.about-content h2 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #4a90e2;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Glowing dot next to the tagline for a "System Active" feel */
.about-content h2::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #4a90e2;
  border-radius: 50%;
  box-shadow: 0 0 12px #4a90e2;
}

/* 3. Description: Keeping your original content body structure */
.about-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

/* Subtle background interaction on hover */
.about-content:hover .about-heading {
  filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.1));
  transition: filter 0.4s ease;
}

.about-card {
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.image-scroller::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.carousel-btn {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: scale(1.1);
}

/* Updated Scroll Hint */
.scroll-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.scroll-target {
  flex: 0 0 100%;
  scroll-snap-align: start;
  width: 100%;
  height: clamp(250px, 40vh, 400px);
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Mobile: Use landscape aspect ratio for better viewing */
@media (max-width: 768px) {
  .scroll-target {
    height: auto;
    aspect-ratio: 16 / 9;
    /* Landscape ratio */
    min-height: 280px;
    /* Larger images on mobile */
  }
}

@media (max-width: 480px) {
  .scroll-target {
    aspect-ratio: 16 / 9;
    min-height: 220px;
    /* Still substantial on small devices */
  }
}

/* 6. Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  padding: 5rem 1rem;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 3px solid #f1f5f9;
  max-width: 1500px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem;
}

.stat-value {
  --accent-color: #7cfc00;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem); 
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 0.75rem;
  background: linear-gradient(180deg, #020617 50%, var(--accent-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap; 
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem; 
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #f8fafc;
  padding: 4px 10px;
  border-radius: 4px;
  border-bottom: 2px solid #7cfc00; /* Matches the new accent color */
}

/* Optional: Add a subtle hover effect that changes the accent color */
.stat-item:hover .stat-value {
  --accent-color: #6366f1; /* Transitions to Indigo on hover */
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* 7. Lightbox Modal */
.lightbox {
  display: none; /* Controlled by JS */
  justify-content: center;
  position: fixed;
  align-items: center;
  padding: 40px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98); /* Modern clean white overlay */
  backdrop-filter: blur(15px); /* Futuristic glass effect */
  z-index: 10000;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  animation: lightboxZoom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: #1a202c;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}

.close-lightbox:hover {
  transform: rotate(90deg) scale(1.2);
  color: #4a90e2;
}

.scroll-hint {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #4a90e2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: rgba(74, 144, 226, 0.05);
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(74, 144, 226, 0.15);
}

/* 8. Responsive Media Queries */
@media (max-width: 1024px) {
  .about-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
}

/* Full-width carousel on mobile for immersive experience */
@media (max-width: 768px) {

  /* Navigation */
  .nav-links {
    display: none;
  }

  /* Stats */
  .stats {
    gap: 2rem;
  }

  .stat-value {
    font-size: 2.2rem;
  }

  /* Hero Section - Smaller logos */
  .hero {
    padding-top: 6rem;
  }

  .hero-logo-cluster {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .hero-logo {
    height: 80px;
    /* Smaller center logo on mobile */
  }

  .hero-logo-side {
    height: 65px;
    /* Smaller side logos */
  }

  /* About Section - Full Width */
  .about-section {
    padding: 3rem 0;
    max-width: 100%;
  }

  .about-card {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 2rem 1.5rem;
  }

  .about-media {
    margin: 0 -1.5rem;
  }

  .image-scroller {
    border-radius: 0;
  }

  .scroll-target {
    border-radius: 0;
  }

  /* Carousel Controls - More prominent on mobile */
  .carousel-controls {
    margin-top: 1rem;
    padding: 0 1.5rem;
  }

  .carousel-btn {
    width: 44px;
    /* Larger touch target */
    height: 44px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .scroll-hint {
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .hero-logo-cluster {
    gap: 0.5rem;
  }

  .hero-logo {
    height: 70px;
  }

  .hero-logo-side {
    height: 55px;
  }
}

.events-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 0 1rem;
}

.section-title {
  font-family: 'Kanit', sans-serif; /* A thick, modern variable font */
  font-size: clamp(2.5rem, 8vw, 4rem); /* Responsive sizing */
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  margin: 0;

    background: linear-gradient(
    135deg, 
    #0f172a 20%, 
    #4a90e2 45%, 
    #a0c4ff 55%, 
    #0f172a 80%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
  /* Animate the gradient to make it look like light is catching it */
  animation: shine 6s linear infinite;
  
  /* Modern "Tight" Typography */
  letter-spacing: 0.02em;
  filter: drop-shadow(0 10px 15px rgba(74, 144, 226, 0.15));
}

@keyframes shine {
  to { background-position: 200% center; }
}

.section-desc {
  max-width: 550px;
  margin: 1.5rem auto 0;
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.5;
  
  /* Create a soft "light leak" behind the text */
  background: radial-gradient(
    circle at center, 
    rgba(74, 144, 226, 0.08) 0%, 
    transparent 70%
  );
  padding: 20px;
}

.text-glow {
  color: #4a90e2;
  font-weight: 600;
  border-bottom: 1px dashed rgba(74, 144, 226, 0.4);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 2rem;
}

.event-card {
  background: #fcfcfd;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: #4a90e2; 
  background: #ffffff;
  
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 
    0 10px 10px -5px rgba(74, 144, 226, 0.1);
}

.event-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #4a90e2, transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.event-card:hover::after {
  transform: translateX(100%);
}

.event-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1);
  transition: filter 0.4s ease;
}

.event-divider {
  height: 1px;
  background-color: #e2e8f0;
  margin: 0;
  position: relative;
  border: none;
}

.event-card:hover img {
  filter: saturate(1.1) contrast(1.1);
}

.event-card h3 {
  text-align: center;
  margin: 1.5rem 0.5rem 0.5rem 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, #1a202c 30%, #4a90e2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: block;
}
.event-card h3::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #4a90e2;
  margin: 5px auto 0 auto;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 4px;
}

.event-card:hover h3::after {
  width: 40px;
}

.event-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  padding: 0 1.5rem;
}

.event-name {
  padding: 0.5rem 1.5rem;
  font-size: 1.5rem;
}

.event-desc {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  text-align: justify;
}

.event-meta {
  padding: 1.2rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  border-top: 1px solid #f1f5f9;
}

.event-meta-item {
  position: relative;
  padding: 0 15px;
  /* Thin vertical bars on the sides to frame the date like a digital readout */
  border-left: 2px solid #e2e8f0;
  border-right: 2px solid #e2e8f0;
}

.meta-value {
  /* Using a clean, wide-set font style */
  font-family: 'Inter', sans-serif;
  font-size: 1.6rem; /* Large and bold */
  font-weight: 800;
  color: #0f172a; /* Deep near-black */
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: flex-start;
}

.meta-suffix {
  font-size: 0.8rem;
  font-weight: 600;
  color: #4a90e2;
  margin-left: 4px;
  margin-top: 4px;
  /* Subtle glow for the suffix to make it look "active" */
  text-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

/* Hover effect for the whole card to change the bar color */
.event-card:hover .event-meta-item {
  border-right-color: #4a90e2;
  border-left-color: #4a90e2;
  transition: border-color 0.4s ease;
}


.footer {
  padding: 3rem 2rem;
  background: #05070a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.footer-text {
  font-size: 0.85rem;
  color: #a0a0a0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #6b8cce;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    order: -1;
  }
}

.cta-section {
  padding: 8rem 2rem;
  background: var(--bg-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  background: #05070a;
  padding: 4rem 3rem;
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(107, 140, 206, 0.2);
  z-index: 1;
}

.cta-content::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #1f4499, #6b8cce, #1f4499);
  z-index: -1;
  border-radius: 26px;
  opacity: 0.3;
  filter: blur(10px);
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-desc {
  color: #a0a0a0;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
}

.cta-section .btn-primary {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
  border-radius: 50px;
  background: #6b8cce;
  border: none;
  box-shadow: 0 10px 25px rgba(107, 140, 206, 0.4);
}

.cta-section .btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(107, 140, 206, 0.6);
  background: #ffffff;
  color: #05070a;
}

.cta-section svg {
  transition: transform 0.3s ease;
}

.cta-section .btn-primary:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .nav-links {
    display: none;
  }

  .stats {
    gap: 2rem;
  }

  .stat-value {
    font-size: 2rem;
  }

  .events-section,
  .schedule-section,
  .cta-section {
    padding: 4rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

}