@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;900&family=Rajdhani:wght@300;600;700&display=swap');

:root {
  --neon-blue: #00f2ff;
  --neon-purple: #bc13fe;
  --bg-black: #050508;
}

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

/* BODY */
body {
  background:
    radial-gradient(circle at 20% 20%, rgba(0,242,255,0.12), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(188,19,254,0.12), transparent 40%),
    var(--bg-black);
  animation: energyPulse 14s ease-in-out infinite;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

/* CUSTOM SCROLLBAR */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--neon-blue) rgba(10, 10, 15, 0.8);
}

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 8, 0.9),
    rgba(10, 10, 15, 0.8)
  );
  border-radius: 10px;
  border: 1px solid rgba(0, 242, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    var(--neon-blue),
    var(--neon-purple)
  );
  border-radius: 10px;
  border: 2px solid rgba(5, 5, 8, 0.5);
  box-shadow: 
    0 0 10px rgba(0, 242, 255, 0.5),
    inset 0 0 10px rgba(0, 242, 255, 0.3);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(0, 242, 255, 0.9),
    rgba(188, 19, 254, 0.9)
  );
  box-shadow: 
    0 0 15px rgba(0, 242, 255, 0.8),
    inset 0 0 15px rgba(0, 242, 255, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(
    180deg,
    var(--neon-blue),
    var(--neon-purple)
  );
  box-shadow: 
    0 0 20px rgba(0, 242, 255, 1),
    inset 0 0 20px rgba(0, 242, 255, 0.6);
}

/* CYBER GRID */
.cyber-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(0,242,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,242,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 30s linear infinite;
  z-index: -3;
}

/* NAVBAR */
.cyber-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    135deg,
    rgba(5,5,8,0.95) 0%,
    rgba(10,10,15,0.9) 50%,
    rgba(5,5,8,0.95) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,242,255,0.5) 25%,
    rgba(188,19,254,0.5) 50%,
    rgba(0,242,255,0.5) 75%,
    transparent 100%
  ) 1;
  box-shadow: 
    0 4px 30px rgba(0,242,255,0.1),
    0 0 0 1px rgba(0,242,255,0.1) inset;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  font-family: 'Orbitron';
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--neon-blue);
  text-shadow: 
    0 0 10px rgba(0,242,255,0.6),
    0 0 20px rgba(0,242,255,0.3),
    0 0 30px rgba(0,242,255,0.1);
  position: relative;
  transition: all 0.3s ease;
}

.logo:hover {
  text-shadow: 
    0 0 15px rgba(0,242,255,0.8),
    0 0 25px rgba(0,242,255,0.5),
    0 0 35px rgba(0,242,255,0.3);
  transform: scale(1.05);
}

.logo span {
  color: var(--neon-purple);
  text-shadow: 
    0 0 10px rgba(188,19,254,0.6),
    0 0 20px rgba(188,19,254,0.3);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: 'Orbitron';
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 8px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0,242,255,0.5);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--neon-blue);
  text-shadow: 0 0 10px rgba(0,242,255,0.6);
}

.nav-links a.active::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--neon-blue);
}

/* HERO */
.hero-section {
  min-height: 70vh;
  padding: 110px 6% 40px;
  display: flex;
  align-items: flex;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 1400px;
  width: 100%;
}

.college-name {
  font-family: 'Orbitron';
  font-size: clamp(0.85rem, 3vw, 1.2rem);
  letter-spacing: 4px;
  color: var(--neon-blue);
  margin-bottom: 0.6rem;
  animation: neonBreathe 3s infinite;
}

/* Title with Sponsors Wrapper */
.title-sponsor-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  margin-bottom: 0.6rem;
  flex-wrap: wrap;
}

/* Inline Sponsors */
.inline-sponsor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.6),
    rgba(5, 5, 8, 0.8)
  );
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: all 0.4s ease;
  min-width: 140px;
}

.inline-sponsor::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(6px);
  transition: opacity 0.4s ease;
}

.inline-sponsor:hover::before {
  opacity: 0.6;
}

.inline-sponsor:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.inline-sponsor-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

.inline-sponsor:hover .inline-sponsor-img {
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
  transform: scale(1.1);
}

.inline-sponsor-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.sponsor-badge {
  font-family: 'Orbitron';
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.inline-sponsor-name {
  font-family: 'Orbitron';
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Remove Title Sponsor Specific Colors */
.title-sponsor-inline {
  border-color: rgba(255, 255, 255, 0.2);
}

.title-sponsor-inline::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.title-sponsor-inline:hover {
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Remove Co-Sponsor Specific Colors */
.co-sponsor-inline {
  border-color: rgba(255, 255, 255, 0.2);
}

.co-sponsor-inline::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.glitch-text {
  font-family: 'Orbitron';
  font-size: clamp(2rem, 10vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 5px;
  margin-bottom: 0.6rem;
  color: #fff;
  position: relative;
  text-shadow: 
    0 0 10px rgba(0,242,255,0.8),
    0 0 20px rgba(0,242,255,0.6),
    0 0 30px rgba(0,242,255,0.4);
  animation: glitch-main 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}

.glitch-text::before {
  color: #ff00ff;
  z-index: -1;
  animation: glitch-before 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  text-shadow: 
    2px 0 rgba(255,0,255,0.8),
    -2px 0 rgba(0,255,255,0.8);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch-text::after {
  color: #00ffff;
  z-index: -2;
  animation: glitch-after 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite reverse;
  text-shadow: 
    -2px 0 rgba(255,0,255,0.8),
    2px 0 rgba(0,255,255,0.8);
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

/* HERO QUOTE */
.hero-quote {
  font-family: 'Rajdhani';
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.85);
  margin: 18px auto 0;
  max-width: 610px;
  line-height: 2;
  font-style: italic;
  opacity: 0;
  animation: fadeInQuote 1s ease-out 0.5s forwards;
}

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

/* DATE BADGE */
.date-badge {
  display: inline-block;
  margin: 10px auto 14px;
  padding: 18px 22px;
  font-family: 'Orbitron';
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  color: var(--neon-blue);
  background: rgba(0,242,255,0.1);
  border: 1px solid rgba(0,242,255,0.5);
  border-radius: 30px;
  box-shadow: 0 0 18px rgba(0,242,255,0.5);
  animation: badgePulse 3s infinite;
}

.btn-unicorn {
  position: relative;
  padding: 14px 34px;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: #00fff7;
  background: rgba(0, 255, 247, 0.08);
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 247, 0.35);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
}

/* Unicorn Gradient Border */
.btn-unicorn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    #00fff7,
    #8f00ff,
    #ff00c8,
    #00fff7
  );
  background-size: 300% 300%;
  animation: unicornFlow 6s linear infinite;
  border-radius: 16px;
  z-index: -1;
}

/* Inner Dark Layer */
.btn-unicorn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: radial-gradient(
    circle at top left,
    rgba(0, 255, 247, 0.15),
    rgba(0, 0, 0, 0.9)
  );
  border-radius: 12px;
  z-index: -1;
}

/* Hover Effect */
.btn-unicorn:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 20px rgba(0, 255, 247, 0.7),
    0 0 40px rgba(143, 0, 255, 0.6),
    0 0 60px rgba(255, 0, 200, 0.4);
}

/* Glow Pulse Animation */
@keyframes unicornFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* SPONSOR CAROUSEL */
.sponsor-carousel-container {
  margin: 35px auto 0;
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.sponsor-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 5%,
    black 95%,
    transparent
  );
}

.sponsor-track {
  display: flex;
  gap: 40px;
  animation: scrollSponsor 25s linear infinite;
  width: max-content;
}

.sponsor-track:hover {
  animation-play-state: paused;
}

.sponsor-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Orbitron';
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.sponsor-carousel-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.sponsor-carousel-name {
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.sponsor-item.gold {
  border: 3px solid rgba(255, 215, 0, 0.3);
  box-shadow: 
    0 0 15px rgba(255, 215, 0, 0.1),
    inset 0 0 20px rgba(255, 215, 0, 0.05);
}

.sponsor-item.gold .sponsor-carousel-logo {
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.sponsor-item.gold .sponsor-carousel-name {
  color: rgba(255, 215, 0, 0.9);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.sponsor-item.gold:hover {
  transform: translateY(-3px);
  border: 3px solid rgba(255, 215, 0, 0.7);
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.4),
    0 8px 20px rgba(255, 215, 0, 0.25),
    inset 0 0 35px rgba(255, 215, 0, 0.15);
}

.sponsor-item.gold:hover .sponsor-carousel-logo {
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
  transform: scale(1.1);
}

.sponsor-item.silver {
  border: 3px solid rgba(192, 192, 192, 0.3);
  box-shadow: 
    0 0 15px rgba(192, 192, 192, 0.1),
    inset 0 0 20px rgba(192, 192, 192, 0.05);
}

.sponsor-item.silver .sponsor-carousel-logo {
  filter: drop-shadow(0 0 10px rgba(192, 192, 192, 0.4));
}

.sponsor-item.silver .sponsor-carousel-name {
  color: rgba(192, 192, 192, 0.9);
  text-shadow: 0 0 12px rgba(192, 192, 192, 0.4);
}

.sponsor-item.silver:hover {
  transform: translateY(-3px);
  border: 3px solid rgba(192, 192, 192, 0.7);
  box-shadow: 
    0 0 30px rgba(192, 192, 192, 0.4),
    0 8px 20px rgba(192, 192, 192, 0.25),
    inset 0 0 35px rgba(192, 192, 192, 0.15);
}

.sponsor-item.silver:hover .sponsor-carousel-logo {
  filter: drop-shadow(0 0 15px rgba(192, 192, 192, 0.6));
  transform: scale(1.1);
}

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

/* Hover Effect */
.btn-unicorn:hover {
  color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 20px rgba(0, 255, 247, 0.7),
    0 0 40px rgba(143, 0, 255, 0.6),
    0 0 60px rgba(255, 0, 200, 0.4);
}

/* Glow Pulse Animation */
@keyframes unicornFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* CONTENT */
.content-section {
  padding: 80px 6%;
}

/* ABOUT */
.mission-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-title {
  font-family: 'Orbitron';
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  letter-spacing: 4px;
  color: var(--neon-blue);
  margin-bottom: 16px;
}

.mission-text p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* VISION */
.vision-box {
  padding: 30px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(0,242,255,0.1),
    rgba(188,19,254,0.06)
  );
  border: 1px solid rgba(0,242,255,0.35);
  animation: visionFloat 7s ease-in-out infinite;
}

.vision-title {
  font-family: 'Orbitron';
  font-size: 1.3rem;
  letter-spacing: 3px;
  color: var(--neon-blue);
  margin-bottom: 14px;
}

.vision-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* INNOVATION */
.innovation-section {
  text-align: center;
  position: relative;
  padding: 80px 6%;
}

.innovation-tagline {
  max-width: 800px;
  margin: 0 auto 60px;
  font-family: 'Orbitron';
  font-size: clamp(0.95rem, 3vw, 1.2rem);
  letter-spacing: 2px;
  color: var(--neon-purple);
  opacity: 0.9;
  text-shadow: 0 0 12px rgba(188,19,254,0.6);
}

.innovation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.innovation-card {
  position: relative;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 32px 24px;
  border: 2px solid rgba(188,19,254,0.6);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.innovation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, 
    rgba(188,19,254,0.08), 
    transparent 70%
  );
  opacity: 0.4;
  z-index: -2;
  border-radius: 12px;
}

.innovation-card h3 {
  font-family: 'Orbitron';
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 0 8px rgba(0,242,255,0.5);
}

.innovation-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.innovation-card.highlight {
  border-color: rgba(188,19,254,0.8);
}

.innovation-card.highlight::after {
  background: radial-gradient(circle at 50% 50%, 
    rgba(188,19,254,0.12), 
    transparent 70%
  );
  opacity: 0.5;
}

.innovation-card.highlight:hover {
  border-color: rgba(188,19,254,0.9);
  box-shadow: 
    0 8px 32px rgba(188,19,254,0.25),
    0 0 0 1px rgba(188,19,254,0.6) inset;
}

/* ================= FOOTER (STABLE + CLEAN) ================= */

footer {
  background: linear-gradient(180deg, #050508 0%, #020205 100%);
  border-top: 1px solid rgba(0,242,255,0.25);
}

.footer {
  max-width: 1200px;
  margin: auto;
  padding: 80px 6% 40px;
}

/* ---------- TOP ---------- */
.footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-logo {
  width: 90px;
  opacity: 0.95;
  filter: drop-shadow(0 0 12px rgba(0,242,255,0.45));
}

.footer-text {
  text-align: center;
}

.footer-title {
  font-family: 'Orbitron';
  font-size: 2.2rem;
  letter-spacing: 6px;
  color: var(--neon-blue);
  margin-bottom: 8px;
}

.footer-date-badge {
  display: inline-block;
  margin: 12px auto;
  padding: 8px 26px;
  font-family: 'Orbitron';
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  color: var(--neon-blue);
  border-radius: 30px;
  background: rgba(0,242,255,0.1);
  border: 1px solid rgba(0,242,255,0.45);
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  letter-spacing: 1px;
  opacity: 0.85;
}

/* ---------- DESCRIPTION ---------- */
.description-event {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* ---------- MID ---------- */
.footer .mid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.mid-footer-titles {
  font-family: 'Orbitron';
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--neon-blue);
  margin-bottom: 10px;
}

.mid-footer-content {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 360px;
}

/* ---------- SOCIAL ---------- */
.footer-social-icon {
  display: flex;
  gap: 16px;
}

.footer-social-icon a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--neon-blue);
  font-size: 1.1rem;
  text-decoration: none;
  border: 1px solid rgba(0,242,255,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-icon a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 18px rgba(0,242,255,0.8);
}

/* ---------- BOTTOM ---------- */
.footer .bottom {
  border-top: 1px solid rgba(0,242,255,0.25);
  padding-top: 20px;
  text-align: center;
}

.footer .designers {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 6px;
}

.footer .disclaimer {
  font-size: 0.75rem;
  opacity: 0.65;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {

  .footer {
    padding: 65px 6% 35px;
  }

  .footer .top {
    flex-direction: column;
    gap: 25px;
  }

  .footer .mid {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 35px;
  }

  .mid-footer-content {
    max-width: 100%;
  }

  .footer-social-icon {
    justify-content: center;
  }

  .footer-title {
    font-size: 1.9rem;
  }
}


/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5,5,8,0.95);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.open { display: flex; }

  .footer .top,
  .footer .mid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Sponsor Carousel Mobile */
  .sponsor-carousel-container {
    margin-top: 25px;
    padding: 15px 0;
  }

  .sponsor-item {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  /* Inline Sponsors Mobile
  /* Mobile Order: Sponsors -> College Name -> Title */
 /* .hero-content {
    display: flex;
    flex-direction: column;
  }

  .title-sponsor-wrapper {
    order: 1;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
  }

  .inline-sponsor {
    min-width: 120px;
    padding: 14px 18px;
  }

  .inline-sponsor-img {
    width: 50px;
    height: 50px;
  }

  .sponsor-badge {
    font-size: 0.6rem;
  }

  .inline-sponsor-name {
    font-size: 0.75rem;
  }

  .college-name {
    order: 2;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .glitch-text {
    order: 3;
    margin-bottom: 15px;
  }

  .hero-quote {
    order: 4;
  }

  .date-badge {
    order: 5;
  }

  .sponsor-carousel-container {
    order: 6;
  }
 */
}
/* DESKTOP ABOUT FIX */
@media (min-width: 769px) {
  .mission-container {
    flex-direction: row;
    gap: 60px;
  }

  .mission-text,
  .vision-box {
    flex: 1;
  }
}

/* ANIMATIONS */
@keyframes gridMove {
  to { background-position: 800px 800px; }
}

@keyframes energyPulse {
  50% { background-position: 30% 30%, 70% 70%; }
}

@keyframes neonBreathe {
  50% { text-shadow: 0 0 22px rgba(0,242,255,0.9); }
}

@keyframes visionFloat {
  50% { transform: translateY(-10px); }
}

@keyframes badgePulse {
  50% { box-shadow: 0 0 26px rgba(0,242,255,0.9); }
}

@keyframes glitch-main {
  0%, 100% {
    text-shadow: 
      0 0 10px rgba(0,242,255,0.8),
      0 0 20px rgba(0,242,255,0.6),
      0 0 30px rgba(0,242,255,0.4);
  }
  20% {
    text-shadow: 
      0 0 15px rgba(0,242,255,1),
      0 0 25px rgba(0,242,255,0.7),
      0 0 35px rgba(0,242,255,0.5);
  }
  50% {
    text-shadow: 
      0 0 12px rgba(188,19,254,0.8),
      0 0 22px rgba(188,19,254,0.6),
      0 0 32px rgba(188,19,254,0.4);
  }
  80% {
    text-shadow: 
      0 0 18px rgba(0,242,255,0.9),
      0 0 28px rgba(0,242,255,0.6),
      0 0 38px rgba(0,242,255,0.3);
  }
}

@keyframes glitch-before {
  0% {
    transform: translate(0) skew(0deg);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  }
  5% {
    transform: translate(-8px, -3px) skew(-10deg);
    clip-path: polygon(0 10%, 100% 5%, 100% 60%, 0 50%);
  }
  10% {
    transform: translate(6px, 4px) skew(8deg);
    clip-path: polygon(0 20%, 100% 15%, 100% 65%, 0 55%);
  }
  15% {
    transform: translate(-5px, 2px) skew(-5deg);
    clip-path: polygon(0 5%, 100% 10%, 100% 50%, 0 45%);
  }
  20% {
    transform: translate(0) skew(0deg);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  }
  100% {
    transform: translate(0) skew(0deg);
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  }
}

@keyframes glitch-after {
  0% {
    transform: translate(0) skew(0deg);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  }
  5% {
    transform: translate(8px, 3px) skew(12deg);
    clip-path: polygon(0 45%, 100% 50%, 100% 95%, 0 90%);
  }
  10% {
    transform: translate(-6px, -4px) skew(-9deg);
    clip-path: polygon(0 35%, 100% 40%, 100% 85%, 0 80%);
  }
  15% {
    transform: translate(5px, -2px) skew(6deg);
    clip-path: polygon(0 50%, 100% 55%, 100% 100%, 0 95%);
  }
  20% {
    transform: translate(0) skew(0deg);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  }
  100% {
    transform: translate(0) skew(0deg);
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  }
}


/* ========== INNOVATION – CYBER NEON GLASS STYLE ========== */

/* Subtle ambient glow behind section */
.innovation-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, 
    rgba(188,19,254,0.08), 
    transparent 70%
  );
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}

/* Border light sweep animation */
@keyframes borderSweep {
  0% {
    transform: translateX(-100%) rotate(0deg);
  }
  100% {
    transform: translateX(100%) rotate(0deg);
  }
}
/* Container for the Quick Links */
.hero-action-container {
  margin-top: 35px;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quick-link-title {
  color: #00f2ff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.8;
}

/* Flexbox Grid */
.action-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 10px;
}

/* Individual Button Style */
.action-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0, 242, 255, 0.05);
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  min-width: 160px;
}

.action-item i {
  font-size: 1.1rem;
  color: #00f2ff;
}

.action-item span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hover States */
.action-item:hover {
  background: rgba(0, 242, 255, 0.2);
  transform: translateY(-3px);
  border-color: #00f2ff;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Highlighted 'All Events' Button */
.action-item.highlight {
  border-color: #ff00ff; /* Neon Pink/Purple */
  background: rgba(255, 0, 255, 0.05);
}

.action-item.highlight i {
  color: #ff00ff;
}

.action-item.highlight:hover {
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

/* Responsive: 2 buttons per row on small screens */
@media (max-width: 600px) {
  .action-item {
    flex: 1 1 45%;
    padding: 10px;
    min-width: 140px;
  }
}

/* Container Box */
.hero-event-dashboard {
  margin: 40px auto;
  max-width: 900px;
  background: rgba(0, 10, 20, 0.7);
  border: 1px solid rgba(0, 242, 255, 0.3);
  padding: 20px;
  backdrop-filter: blur(15px);
  position: relative;
  clip-path: polygon(0 0, 95% 0, 100% 5%, 100% 100%, 5% 100%, 0 95%); /* Cut corners look */
}

/* Header with blinker */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 242, 255, 0.1);
  margin-bottom: 20px;
}

.status-text, .terminal-id {
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: #00f2ff;
  letter-spacing: 1px;
}

.blink-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  margin-right: 10px;
  animation: pulse 1s infinite alternate;
}

/* The Grid */
.event-grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Terminal Button Design */
.event-terminal {
  display: flex;
  flex-direction: column;
  padding: 15px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.event-code {
  font-size: 0.6rem;
  color: rgba(0, 242, 255, 0.5);
  margin-bottom: 5px;
  font-weight: bold;
}

.event-name {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Interaction */
.event-terminal:hover {
  background: rgba(0, 242, 255, 0.1);
  border-color: #00f2ff;
  transform: scale(1.02);
}

/* Special Colors */
.highlight-gold { border-left: 3px solid #ffd700; }
.highlight-cyan { border-left: 3px solid #00f2ff; }

/* Mobile View: 2 columns */
@media (max-width: 768px) {
  .event-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .event-terminal {
    padding: 14px 8px;
  }

  .event-name {
    font-size: 0.8rem;
    text-align: center;
  }

  .event-code {
    font-size: 0.55rem;
    text-align: center;
  }
}

@keyframes pulse {
  from { opacity: 1; transform: scale(1); }
  to { opacity: 0.4; transform: scale(1.2); }
}

/* FIX: Hero collapsing on mobile */
.hero-section {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 120px; /* clears fixed navbar */
    padding-bottom: 40px;
  }

  footer {
    position: relative;
    z-index: 1;
  }
}
/* ===== FIX: HERO HEIGHT COLLAPSING ===== */
.hero-section {
  min-height: 100vh;          /* ensures hero never collapses */
  position: relative;
  z-index: 2;
}
/* ===== FIX: EVENT DASHBOARD VISIBILITY ===== */
.hero-event-dashboard {
  margin-top: 60px;
  position: relative;
  z-index: 3;
}
/* ===== MOBILE HERO FIX ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 130px;   /* clears fixed navbar */
    padding-bottom: 60px;
  }

  footer {
    position: relative;
    z-index: 1;
  }
}
