/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: #0a0a14;
    color: #e0e0ff;
    overflow-x: hidden;
    position: relative;
}

/* ============ Banner Container ============ */
.running-banner {
  width: 100%;
  overflow: hidden;
  background-color: #0a0a14;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
  border-top: 2px solid #00f5ff;
  border-bottom: 2px solid #00f5ff;
  position: relative;
  padding: 16px 0;
  box-shadow: inset 0 0 20px rgba(0, 245, 255, 0.2);
}

/* ============ Track ============ */
.banner-track {
  display: flex;
  gap: 6rem;
  width: max-content;
  animation: scrollLoop 6s linear infinite;   /* ⏩ faster for desktop */
  will-change: transform;
}

/* ============ Text Items ============ */
.banner-item {
  font-family: "Cinzel Decorative", "Georgia", serif;
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
  color: #00f5ff;
  letter-spacing: 1px;
}

/* Highlight for OPEN NOW */
.banner-item.register {
  color: #ffd700;
  background: rgba(0, 245, 255, 0.05);
  padding: 4px 14px;
  border: 2px solid #ffd700;
  border-radius: 40px;
  box-shadow: 0 0 14px #ffd700, inset 0 0 6px rgba(255, 215, 0, 0.3);
  animation: glowPulse 1.5s ease-in-out infinite alternate;
}

/* ============ Animations ============ */
@keyframes scrollLoop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 10px #ffd700, inset 0 0 6px rgba(255,215,0,0.4); }
  100% { box-shadow: 0 0 20px #fff480, inset 0 0 8px rgba(255,255,255,0.5); }
}

@keyframes gentleWave {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}

/* ============ Mobile Optimization ============ */
@media (max-width: 768px) {
  .banner-track {
    animation: scrollLoop 12s linear infinite;
    gap: 3rem;
  }
  .banner-item {
    font-size: 1rem;
  }

  .running-banner {
    border: none;
    padding-top: 10px;
    position: fixed;
    top: 0; /* ✅ Add this */
    left: 0; /* ✅ Add this */
    z-index: 9999; /* ✅ Higher than scroll navbar */
    width: 100%; /* ✅ Ensure full width */
  }
}


/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a14;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 15px #00f5ff);
    transform: scale(1); /* ✅ start state */
    opacity: 1;
    transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.splash-screen.hidden .splash-logo {
    transform: scale(5.0); /* ✅ zoom out */
    opacity: 0;
}

/* Mobile view - pulse animation */
@media (max-width: 768px) {
    .splash-logo {
        animation: pulse 1.5s infinite;
    }
    
    .splash-screen.hidden .splash-logo {
        transform: scale(1.5);
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
}


/* Mobile view - keep the pulse animation */
@media (max-width: 768px) {
    .splash-logo {
        animation: pulse 1.5s infinite;
    }
    
    .splash-screen.hidden .splash-logo {
        transform: scale(1.5); /* Original mobile zoom */
    }
    
    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 245, 255, 0.3);
    border: 2px solid #00f5ff;
    border-radius: 50%;
    color: #00f5ff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: rgba(0, 245, 255, 0.5);
    transform: translateY(-5px);
}

/* Desktop Navbar */
.desktop-only { 
    display: flex; 
    position: relative;
    z-index: 9999;
}
.neon-nav { padding: 1rem; }

/* Scroll Navbar */
.scroll-navbar {
    position: fixed;
    top: -80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 20, 0.303);
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    transition: top 0.4s ease-in-out;
    z-index: 10000;
    backdrop-filter: blur(10px);
    justify-content: center;
}

.scroll-navbar.show { top: 0; }
.scroll-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.scroll-logo { 
    height: 40px;
    filter: drop-shadow(0 0 5px #00f5ff);
}

.menu-toggle {
    display: none; /* Hide by default on all screens */
    position: relative;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    color: #00f5ff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
}

.menu-toggle .fa-bars,
.menu-toggle .fa-times {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.menu-toggle .fa-times {
    opacity: 0;
}

.menu-toggle.active .fa-bars {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.menu-toggle.active .fa-times {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(10,10,20,0.95);
    padding: 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    align-items: center;
    width: 100%;
}

.mobile-menu a {
    padding: 0.8rem;
    color: #b0b0ff;
    text-decoration: none;
    font-family: 'Noto Sans Multani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.mobile-menu a:hover {
    color: #00f5ff;
    background: rgba(0, 245, 255, 0.1);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu.show { 
    display: flex;
}

/* Offline Message */
.offline-message {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a14;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.offline-message h2 {
    color: #ff0000;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.offline-message p {
    color: #b0b0ff;
    font-family: 'Noto Sans Multani', sans-serif;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Dragon Icon */
.dragon-icon {
    width: 100px;
    height: 100px;
    margin-top: 1rem;
    background: url('https://i.ibb.co/wRVfM5g/dragon.png') no-repeat center/contain;
    animation: floatDragon 3s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatDragon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #0a0a14;
    pointer-events: none;
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
}

/* College Information */
.college-info {
    text-align: center;
    padding-top: 10px;
    transition: transform 0.4s ease-in-out;
    background-color: #0a0a1484;
    border-radius: 12px;
}

.college-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.college-logo-left,
.college-logo-right {
    width: 70px;
    height:70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
}

.college-logo-left img,
.college-logo-right img {
    max-width: 100%;
    max-height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 245, 255, 0.5));
    border-radius: 50%;
}

.college-details {
    flex: 1;
    max-width: 800px;
}

.college-details h2 {
    color: #00f5ff;
    font-size: 1.7rem !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    font-weight: 500;
}

.college-details p {
    font-family: 'Noto Sans Multani', sans-serif;
    color: #b0b0ff;
    margin-bottom: 0.3rem;
    font-size: 0.7rem;
    font-weight: 300;
}

.department-name {
    color: #00f5ff;
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    font-weight: 500;
}

.subtitle-two {
    font-family: 'Noto Sans Multani', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.3rem;
    color: #b0b0ff;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Glitch Header */
.glitch-header {
    text-align: center;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.common-register-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.common-registernow a {
    color: #00f5ff;
    text-decoration: none;
    padding: 18px 36px;
    margin: 80px 40px 40px 40px;
    border: 1px solid #00f5ff;
    border-radius: 50px;
    transition: transform 0.3s ease-in-out;
    background: linear-gradient(45deg, #000000, #00f7ff38 , #000000 );
    box-shadow: 0px 0px 8px #00f5ff;
}

.common-registernow a:hover {
    transform: scale(2.1);
    box-shadow: 0px 0px 14px #00f5ff;
    background: linear-gradient(45deg, #00f7ff38 , #000000, #00f7ff38 );
}

.common-registernow-mobile  {
    display: none;
}

.logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 3rem auto 1.5rem;
}

.holographic-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px #00f5ff);
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
    background: url('image/logo.png') no-repeat center center;
    background-size: contain;
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, #00f5ff, transparent 70%);
    opacity: 0.3;
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.glitch {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: #00f5ff;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px #00f5ff;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.glitch::before {
    animation: glitch-left 3s infinite;
    color: #00f5ff;
    text-shadow: 2px 0 #00f5ff;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    animation: glitch-right 4s infinite;
    color: #00f5ff;
    text-shadow: -2px 0 #00f5ff;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitch-left {
    0%, 20%, 24%, 28%, 80%, 84%, 88%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    22% {
        transform: translateX(-8px);
        opacity: 0.7;
    }
    26% {
        transform: translateX(-12px);
        opacity: 0.5;
    }
    82% {
        transform: translateX(-10px);
        opacity: 0.6;
    }
    86% {
        transform: translateX(-6px);
        opacity: 0.8;
    }
}

@keyframes glitch-right {
    0%, 15%, 19%, 23%, 75%, 79%, 83%, 100% {
        transform: translateX(0);
        opacity: 0;
    }
    17% {
        transform: translateX(10px);
        opacity: 0.6;
    }
    21% {
        transform: translateX(14px);
        opacity: 0.4;
    }
    77% {
        transform: translateX(8px);
        opacity: 0.7;
    }
    81% {
        transform: translateX(12px);
        opacity: 0.5;
    }
}

.subtitle {
    font-family: 'Noto Sans Multani', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.3rem;
    color: #b0b0ff;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.glitch-header h2 {
    font-size: 2.5rem;
    color: #00f5ff;
    letter-spacing: 1px;
}

.presents {
    font-size: 1rem;
    font-weight: normal;
    color: #b0b0ff;
}

/* Neon Navigation */
.neon-nav {
    margin: 2rem 0 0 0;
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: center; 
    gap: 2rem;
    position: relative;
    margin: 0 auto; 
    width: fit-content; 
    padding: 0 1rem; 
}

.nav-link {
    position: relative;
    color: #b0b0ff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1rem;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.7);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-indicator {
    position: absolute;
    bottom: -10px;
    height: 2px;
    background: #00f5ff;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 245, 255, 0.7), 
                0 0 20px rgba(0, 245, 255, 0.5), 
                0 0 30px rgba(0, 245, 255, 0.3);
}

.menu-button.desktop-only {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 245, 255, 0.3);
    border: 2px solid #00f5ff;
    border-radius: 50%;
    color: #00f5ff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex; /* Changed from display: none */
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1; /* Changed from opacity: 0 */
    visibility: visible; /* Changed from visibility: hidden */
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.menu-button.desktop-only:hover {
    background: rgba(0, 245, 255, 0.5);
    transform: translateY(-5px);
}

/* Desktop Menu */
/* Ensure desktop menu starts hidden */
.desktop-menu {
    display: none;
    position: fixed;
    top: 90px;
    right: 30px;
    border-radius: 12px;
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.desktop-menu.show {
    display: flex;
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(10,10,20,0.95);
    padding: 1rem;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    text-align: center;
    align-items: center;
    width: 100%;
}

.mobile-menu.show {
    display: flex;
}

.desktop-menu a {
    color: #b0b0ff;
    text-decoration: none;
    font-family: 'Noto Sans Multani', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    background: linear-gradient(45deg, #0a0a14, #004a4d , #0a0a14 );
    box-shadow: 0px 0px 10px #00f5ff;
}

.desktop-menu a:hover {
    color: #00f5ff;
    background: linear-gradient(45deg, #004a4d , #0a0a14, #004a4d);
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0 2rem;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.scanline-text {
    text-align: left;
    font-size: 3rem;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: scanline 8s linear infinite;
}

.text-gradient {
    background: linear-gradient(90deg, #00ff9d, #9d00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.typewriter-text {
    font-family: 'Noto Sans Multani', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #b0b0ff;
    margin-bottom: 2rem;
    border-left: 3px solid #00f5ff;
    padding-left: 1rem;
    position: relative;
    overflow: hidden;
    text-align: justify;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.date-venue {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 6rem;
    margin: 5rem 2rem;
    text-align: center;
}

.date p, .time p, .venue p {
    color: #b0b0ff;
    background: linear-gradient(45deg, #000000, #00f7ff35 , #000000 );
    box-shadow: 0px 0px 10px #00f5ff;
    border-radius: 25px;
    padding: 12px 20px;
    border: 1px solid #00f5ff;
    font-family: 'Noto Sans Multani', sans-serif;
}

.date p span, .time p span, .venue p span {
    font-family: 'Orbitron', sans-serif;
}

.countdown-title {
    font-family: 'Noto Sans Multani', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    color: #b0b0ff;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cyber-countdown {
    margin: 2rem 0 5rem;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.countdown-display {
    display: flex;
    gap: 1rem;
    justify-content: center; 
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(15, 15, 30, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 5px;
    padding: 1rem;
    min-width: 200px;
    min-height: 150px;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.countdown-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
}

.countdown-number {
    font-size: 4rem;
    font-weight: 700;
    color: #00f5ff;
    margin-bottom: 0.3rem;
    font-family: "Bungee", sans-serif;
}

.countdown-label {
    font-family: 'Noto Sans Multani', sans-serif;
    font-size: 0.8rem;
    color: #b0b0ff;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.hero-image {
    position: relative;
    height: 500px;
}

.hologram-container {
    position: absolute;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    perspective: 1000px;
    z-index: 1;
}

.hologram {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(157, 0, 255, 0.2));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hologram::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 50%;
}

.hologram-icon {
    font-size: 8rem;
    color: rgba(0, 245, 255, 0.5);
    display: block;
}

.hologram-reflection {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to top, rgba(0, 245, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(10px);
}

/* Events Section */
.events-section {
    margin: 1rem 0;
    position: relative;
}

.events-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    text-align: center;
    text-decoration: overline #00f5ff 0.5px;
}

.title-number {
    display: none;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.event-card {
    position: relative;
    background: rgba(10, 10, 20, 0.9);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0, 245, 255, 0.1);
}

.card-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, 
                rgba(0, 245, 255, 0.3) 0%, 
                rgba(157, 0, 255, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.event-card:hover {
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
    border-color: rgba(0, 245, 255, 0.3);
}

.event-card:hover .card-border {
    opacity: 1;
}

.event-icon {
    width: auto;
    height: auto;
}

.nd-yellow-logo {
    display: none;
}

.event-icon img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.event-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.event-card p {
    font-family: 'Noto Sans Multani', sans-serif;
    color: #c0c0ff;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
}

.event-card .neon-button {
    margin-top: auto;
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    padding-bottom: 1.5rem;
    border: none;
    background: linear-gradient(90deg, 
                rgba(0, 245, 255, 0.2) 0%, 
                rgba(157, 0, 255, 0.2) 100%);
    color: #e0e0ff;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3),
                0 0 30px rgba(157, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 12px;
}

.event-card .neon-button.details-button {
    background: linear-gradient(90deg, 
                rgba(157, 0, 255, 0.2) 0%, 
                rgba(255, 0, 200, 0.2) 100%);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.3),
                0 0 30px rgba(255, 0, 200, 0.2);
}

.event-card .neon-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.2), 
                transparent);
    transition: all 0.6s ease;
    z-index: -1;
    box-shadow: 12px;
}

.event-card .neon-button:hover {
    background: linear-gradient(90deg, 
                rgba(0, 245, 255, 0.3) 0%, 
                rgba(157, 0, 255, 0.3) 100%);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5),
                0 0 40px rgba(157, 0, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.event-card .neon-button.details-button:hover {
    background: linear-gradient(90deg, 
                rgba(157, 0, 255, 0.3) 0%, 
                rgba(255, 0, 200, 0.3) 100%);
    box-shadow: 0 0 20px rgba(157, 0, 255, 0.5),
                0 0 40px rgba(255, 0, 200, 0.3);
}

.event-card .neon-button:hover::before {
    left: 100%;
}

.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, 
                rgba(0, 245, 255, 0.15) 0%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(20px);
}

.event-card:hover .card-glow {
    opacity: 1;
}

.workshop {
    font-size: 1rem;
}

.event-card:nth-child(7) {
        grid-column: 2; 
        margin: 0 auto; 
        max-width: 400px; 
}

/* Coordinators Section */
.coordinators-section {
    margin: 5rem 0;
    position: relative;
    padding: 0;
    width: 100%;
}

.coordinators-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
}

/* Coordinators Rows Layout */
.coordinators-rows {
    display: flex;
    flex-direction: column;
    gap: 10rem;
    width: 100%;
    align-items: center;
}

.coordinator-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10rem;
    width: 100%;
    max-width: 1800px;
}

/* Coordinator Cards */
.coordinator-card {
    background: rgba(10, 10, 20, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
    margin-left: -2rem;
}

.coordinator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: fit-content;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 245, 255, 0.1) 0%, 
                rgba(157, 0, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.coordinator-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.coordinator-card:hover::before {
    opacity: 1;
}

.coordinator-img {
    width: 400px;
    height: 400px;
    margin: 0 auto 1.8rem;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 2;
    flex-shrink: 0;
}

.coordinator-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.coordinator-card:hover .coordinator-img img {
    filter: grayscale(0%);
}

.coordinator-card h3 {
    color: #00f5ff;
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
    position: relative;
    z-index: 2;
    width: 100%;
}

.coordinator-card p {
    font-family: 'Noto Sans Multani', sans-serif;
    color: #c0c0ff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.6rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.coordinator-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-family: 'Noto Sans Multani', sans-serif;
    font-size: 1.4rem;
    color: #b0b0ff;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
}

.coordinator-contact a {
    color: #b0b0ff;
}

.coordinator-contact span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    font-weight: 400;
}

.coordinator-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle at center, 
                rgba(157, 0, 255, 0.15) 0%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(20px);
}

.coordinator-card:hover .coordinator-glow {
    opacity: 0.8;
}

/* Location Section */
.contact-section {
    margin: 5rem 0;
    position: relative;
    padding: 0;
    width: 100%;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 2rem;
    width: 100%;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
}

.contact-cards img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease-in-out;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.contact-cards img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
    border: 1px solid rgba(0, 245, 255, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(0, 245, 255, 0.1) 0%, 
                transparent 50%);
    pointer-events: none;
    border-radius: 12px;
}

/* Footer */
.cyber-footer {
    margin-top: 0px;
    padding: 4rem 2rem 0;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    position: relative;
    overflow: hidden;
    background-color: #0a0a14;
}

/* Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin: 0 auto 3rem;
    max-width: 1200px;
    padding: 0 2rem;
    align-items: start;
}

/* Brand */
.footer-brand {
    text-align: center;
    margin-left: -80px;
}

.footer-brand img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    animation: float 6s ease-in-out infinite;
    transition: all 0.4s ease;
    display: block;
}

.footer-brand h3 {
    color: #00f5ff;
    margin-bottom: 0.8rem;
    font-size: 2rem;
    text-shadow: 0 0 8px rgba(0, 245, 255, 0.4);
    letter-spacing: 1px;
}

.footer-brand p {
    font-family: 'Noto Sans Multani', sans-serif;
    color: #b0b0ff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
}

.footer-brand .social-links a {
    color: #00f5ff;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.footer-brand .social-links a:hover {
    color: #00f5ff;
    transform: scale(1.2);
}

/* Section Titles */
.footer-links h4, 
.footer-contact h4 {
    color: #00f5ff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 6px rgba(0, 245, 255, 0.3);
    position: relative;
    display: inline-block;
}

/* Quick Links */
.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1rem;
}

.footer-links li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-weight: bold;
}

.footer-links a {
    color: #b0b0ff;
    text-decoration: none;
    font-family: 'Noto Sans Multani', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00f5ff;
    padding-left: 5px;
}

/* Contact */
.footer-contact p {
    font-family: 'Noto Sans Multani', sans-serif;
    color: #b0b0ff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.2rem;
}

.footer-contact a {
    color: #b0b0ff;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scanline {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.credits p {
    text-align: center;
    color: #b0b0ff;
    border-top: 1px solid #004a4d;
    padding: 20px;
    font-size: 1rem;
    font-family: "Press Start 2P", system-ui;
}

.credits p a {
    color: #9d00ff;
    font-size: 0.8rem;
    text-decoration: none;
}

.credits p a:hover {
    color: #00f5ff;
}

.credits p span {
    font-weight: 700;
}

.credits-mobile {
    display: none;
}

/* Hide scroll navbar in desktop view */
@media (min-width: 769px) {
    .scroll-navbar {
        display: none;
    }
    
    .menu-button.desktop-only {
        display: flex;
    }
    
    .desktop-menu {
        display: none; /* Initially hidden, will be toggled by button */
    }
}

/* ============================= */
/* CYBORG 2K25 TABLET VIEW (max-width: 768px) */
/* ============================= */
@media (max-width: 768px) {
    /* General */
    body {
        font-size: 15px;
        padding: 0;
        overflow-x: hidden;
    }

    .scroll-navbar {
        top: 50px;
        padding: 0.5rem 1rem;
        display: flex;
        border-top: 1px solid #004a4d;
        border-bottom: 1px solid #004a4d;
    }
    
    .scroll-navbar.show {
        top: 0;
    }

    .common-register-container-mobile {
        display: flex;
        justify-content: center;
    }

    .common-registernow-mobile {
        display: contents;

    }

    .common-registernow-mobile a{
        text-align: center;
        position: relative;
        color: #00f5ff;
        text-decoration: none;
        margin: 0px 0px 0px 0px;
        background: linear-gradient(45deg, #000000, #00f7ff4c , #000000 );
        box-shadow: 0px 0px 10px #00f5ff;
        border-radius: 25px;
        padding: 12px 22px;
    }
    
    .menu-toggle {
        display: block;
        position: relative;
        width: 30px;
        height: 30px;
    }
    
    .menu-toggle .fa-bars,
    .menu-toggle .fa-times {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 0.3s ease;
    }
    
    .menu-toggle .fa-times {
        opacity: 0;
    }
    
    .menu-toggle.active .fa-bars {
        opacity: 0;
        transform: translate(-50%, -50%) rotate(90deg);
    }
    
    .menu-toggle.active .fa-times {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .desktop-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    .desktop-menu.show {
        display: none !important;
    }

    .mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        z-index: 99999;
    }
    
    .mobile-menu.show {
        max-height: 500px;
        display: flex;
    }

    .logo-container {
        margin-top: 0px;
    }

    .nd-yellow-logo {
        display: block;
    }

    /* College Information */
    .college-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .college-logo-left {
        display: none;
    }

    .college-logo-right {
        display: none;
    }

    .college-details {
        margin-top: 90px;
    }
    
    .college-details h2 {
        font-size: 1.1rem !important;
        margin-top: 10px;
    }
    
    .college-details p {
        font-size: 0.6rem !important;
        margin-top: -10px;
    }

    .college-details h4 {
        font-size: 0.95rem !important;
    }

    .date-venue {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    /* Navigation */
    .nav-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }

    /* Hero Section */
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        margin-top: 30px;
    }

    .glitch {
        font-size: 2.5rem;
        margin-top: -40px;
    }

    .holographic-logo {
        width: 90px;
        margin-bottom: -20px;
    }

    .glitch-header h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .common-register-container {
        display: none;
    }

    .hero-image {
        height: 350px;
    }

    .hologram-container {
        display: none;
        width: 250px;
        height: 250px;
    }

    .scanline-text {
        font-size: 2.2rem;
    }

    .typewriter-text {
        font-size: 1rem;
        white-space: normal;
        margin-right: 0px;
    }

    .events-section {
        margin-top: 0px;
    }

    .cyber-countdown {
        margin: 2rem 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: -300px;
    }

    .countdown-display {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.8rem;
        width: 100%;
        max-width: 360px;
    }
    
    .countdown-segment {
        min-width: 70px;
        min-height: 70px;
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .countdown-number {
        font-size: 1.8rem !important;
        margin-bottom: 0.2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem !important;
        text-align: center;
        line-height: 1.2;
    }

    /* Events Section */
    .event-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        width: 280px !important;
        margin: 1rem auto 1rem;
    }

    .events-section {
        padding: 0 1rem;
    }
    
    .event-cards {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }
    
    .event-card {
        width: 100%;
        margin: 0 auto;
        padding: 1.5rem;
    }
    
    .event-card:nth-child(7) {
        grid-column: 1;
        margin: 0 auto;
        max-width: 100%;
    }

    .coordinators-section {
        margin: 1rem 0;
        padding: 0 1rem;
        width: 100%;
    }
    
    .section-title {
        margin: 0 0px 2.5rem -30px;
        position: relative;
    }
    
    .title-number {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: 3.5rem;
        width: 100%;
        opacity: 0.1;
        z-index: -1;
    }
    
    .coordinators-rows {
        gap: 2rem;
        width: 100%;
    }
    
    .coordinator-row {
        grid-template-columns: 1fr !important; /* Single column on tablet */
        gap: 2rem !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .coordinator-card {
        border: none;
        width: calc(100% - 20px) !important; /* 10px gap on each side */
        margin: 0 10px !important; /* Add the 10px gap */
        padding: 1rem;
        box-sizing: border-box;
    }
    
    .coordinator-img {
        max-width: 280px !important; /* Slightly smaller on tablet */
        margin: 0 auto 1rem !important;
    }
    
    .coordinator-img img {
        width: 100% !important;
        height: auto !important;
        max-height: 300px;
        object-fit: cover;
    }
    
    .coordinator-card h3 {
        font-size: 1.3rem;
    }
    
    .coordinator-card p {
        font-size: 1rem;
    }
    
    .coordinator-contact {
        font-size: 0.9rem;
    }
    

    /* Contact Section */
    .contact-section {
        margin: 3rem 0;
        padding: 0 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-cards {
        gap: 1.5rem;
        order: 2; /* Images after map on mobile */
    }
    
    .map-container {
        order: 1; /* Map first on mobile */
        height: 300px;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .contact-cards img {
        max-height: 250px;
        object-fit: cover;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-content h2 { 
        font-size: 1.4rem; 
    }

    .typewriter-text { 
        font-size: 0.85rem; 
    }

    .cyber-countdown span { 
        font-size: 1.2rem; 
    }

    .event-card h3 { 
        font-size: 1rem; 
    }

    
    .footer-brand {
        align-items: center; /* Changed from center to flex-start */
        text-align: center; /* Changed from center to left */
        margin-left: 0px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-links ul li a {
        font-size: 1rem;
    }

    .footer-contact p {
        font-size: 1rem;
    }

    .footer-links {
        margin-left: 0; /* Removed the left margin */
        text-align: left; /* Align text to left */
    }

    .footer-contact {
        margin-left: 0; /* Removed the left margin */
        text-align: left; /* Align text to left */
    }

    .footer-links ul {
        padding-left: 1rem; /* Add some padding for the bullet points */
    }

    .footer-contact p {
        justify-content: flex-start; /* Align contact items to left */
    }

    .credits p {
        display: none;
    }

    .credits-mobile {
        display: contents;
        padding: 10px;
        width: 200px;
    }

    .credits-mobile p {
        text-align: center;
        color: #b0b0ff;
        border-top: 1px solid #004a4d;
        padding: 20px;
        font-size: 1rem;
    }

    .credits-mobile p span {
        font-size: 1rem;
        font-family: "Press Start 2P", system-ui;
        padding: 10px 0 10px 0;
    }

}

/* ============================= */
/* CYBORG 2K25 MOBILE VIEW (max-width: 480px) */
/* ============================= */
@media (max-width: 480px) {
    /* General */
    body {
        font-size: 14px;
        padding: 0;
        margin: 0;
        overflow-x: hidden;
        width: 100%;
    }

    .main-container {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-menu {
        width: 100vw;
        position: relative;
        left: 0;
        right: 0;
    }

    /* College Information */
    .college-logos {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .college-logo-left,
    .college-logo-right {
        width: 60px;
        height: 60px;
    }
    
    .college-details h2 {
        font-size: 1.2rem;
    }
    
    .college-details p {
        font-size: 0.7rem;
    }
    
    .department-name {
        font-size: 1rem;
    }

    /* Navigation */
    .nav-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        display: block;
        text-align: center;
        width: 100%;
    }

    .glitch {
        font-size: 2rem;
        letter-spacing: 0.2rem;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 0.1rem;
    }

    .presents {
        font-size: 0.7rem;
    }

    .subtitle-two {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .hero-image {
        height: 250px;
    }

    .hologram-container {
        width: 200px;
        height: 200px;
    }

    .hologram-icon {
        display: none;
    }

    .scanline-text {
        font-size: 1.8rem;
    }

    .typewriter-text {
        font-size: 1.2rem;
        animation: none;
        white-space: normal;
    }

    .countdown-display {
        gap: 0.5rem;
    }

    .countdown-segment {
        min-width: 60px;
        padding: 0.8rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    /* Events Section */
    .event-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-card {
        padding: 1.2rem;
    }

    .event-card h3 {
        font-size: 1.3rem;
    }

    .coordinators-section {
        margin: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding-left: 3rem;
        margin-bottom: 2.5rem;
    }
    
    .title-number {
        font-size: 2.5rem;
    }
    
    .coordinator-img {
        max-width: 220px;
        height: 220px;
    }

    .coordinator-img {
        max-width: 250px !important; /* Smaller on mobile */
        max-height: 250px !important;
    }
    
    .coordinator-img img {
        max-height: 250px !important;
    }
    
    .coordinator-card {
        padding: 0.8rem;
    }
    
    .coordinator-card h3 {
        font-size: 1.3rem;
    }
    
    .coordinator-card p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .coordinator-contact {
        font-size: 0.9rem;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .coordinator-contact span {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .president-card .coordinator-img {
        width: 200px;
        height: 200px;
    }

    /* Contact Section */
    .contact-section {
        margin: 2rem 0;
    }
    
    .contact-container {
        gap: 1.5rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .contact-cards img {
        max-height: 200px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 1.2rem; 
    }

    .typewriter-text { 
        font-size: 0.8rem; 
    }

    .cyber-countdown { 
        gap: 0.3rem; 
    }

    .cyber-countdown span { 
        font-size: 1rem; 
    }
}

/* Animation */
.hero-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation */
.event-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation */
.coordinator-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.coordinator-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation */
.contact-container {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.contact-container.visible {
  opacity: 1;
  transform: translateY(0);
}