/* ZENITH 2K25 - Main Stylesheet */

:root {
    --primary-color: #3a0ca3;
    --secondary-color: #4cc9f0;
    --accent-color: #f72585;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --tech-gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --neon-glow: 0 0 10px rgba(76, 201, 240, 0.8), 0 0 20px rgba(76, 201, 240, 0.5);
    --hologram-glow: 0 0 15px rgba(76, 201, 240, 0.7), 0 0 30px rgba(76, 201, 240, 0.4);
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --primary: #00f5ff;
    --secondary: #4d3aff;
    --accent: #ff006e;
    --success: #00ff88;
    --dark: #0a0e17;
    --dark-light: #141b2d;
    --cyber-glow: 0 0 20px var(--primary);
    --btn-gradient: linear-gradient(45deg, var(--primary), var(--secondary));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-color);
    color: var(--light-color);
    overflow-x: hidden;
    line-height: 1.6;
}

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

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection Styling */
::selection {
    background: var(--accent-color);
    color: var(--light-color);
}

/* Event Brand Styles */
.event-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--light-color);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
    position: relative;
    transition: var(--transition);
}

.brand-year {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-left: 5px;
    position: relative;
    animation: pulse 2s infinite;
}

.brand-link:hover .brand-text {
    color: var(--secondary-color);
}

.brand-link:hover .brand-year {
    color: var(--accent-color);
}

/* Navbar Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 201, 240, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    animation: pulse 2s infinite;
}

.round-logo {
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--light-color);
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--secondary-color);
}

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

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-right: 2rem;
    margin-bottom: 0;
    padding: 0;
}

.nav-register {
    display: flex;
    align-items: center;
}

.register-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.3);
    border: 1px solid rgba(247, 37, 133, 0.3);
    min-width: 160px;
    text-align: center;
    letter-spacing: 0.5px;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(247, 37, 133, 0.5);
    color: var(--light-color);
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
    background-color: rgba(76, 201, 240, 0.1);
}

/* Submit button in navbar */
.nav-links a.submit-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(247, 37, 133, 0.3);
    border: 1px solid rgba(247, 37, 133, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.5);
    color: var(--light-color);
    background-color: transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 70%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--light-color);
}

/* Hamburger menu animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile responsive styles */
@media (max-width: 992px) {
    .navbar {
        padding: 0 1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        transition: 0.5s ease;
        z-index: 999;
        backdrop-filter: blur(10px);
        border-right: 1px solid rgba(76, 201, 240, 0.2);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        width: 100%;
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .nav-links ul li {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .nav-links ul li a {
        display: block;
        width: 100%;
        padding: 0.8rem 1rem;
    }
    
    .nav-register {
        width: 100%;
    }
    
    .register-btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-color), #000);
    padding-top: 80px; /* Added space between navbar and content */
}

/* Technical Background Elements */
.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48cGF0aCBkPSJNMTIuNSAxMmgxdjI2aC0xek0yNSAxMmgxdjI2aC0xek0zNy41IDEyaDF2MjZoLTF6IiBmaWxsPSJyZ2JhKDc2LCAyMDEsIDI0MCwgMC4wNSkiLz48cGF0aCBkPSJNMTIgMTIuNXYxaDI2di0xek0xMiAyNXYxaDI2di0xek0xMiAzNy41djFoMjZ2LTF6IiBmaWxsPSJyZ2JhKDc2LCAyMDEsIDI0MCwgMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.2;
    z-index: 0;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.3), transparent);
    animation: circuit-pulse 3s infinite;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color);
    animation: node-pulse 2s infinite;
}

.glitch-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.glitch-item {
    position: absolute;
    background-color: var(--secondary-color);
    z-index: 1;
    mix-blend-mode: overlay;
}

.matrix-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* College Name with Tech Badge */
.college-name {
    margin-bottom: 1.5rem;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: rgba(58, 12, 163, 0.2);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(76, 201, 240, 0.2);
    margin-bottom: 0.5rem;
}

.tech-badge i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

#typing-text {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--light-color);
}

.cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background-color: var(--secondary-color);
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

/* College Name Styles */
.college-name {
    margin-bottom: 1.5rem;
    position: relative;
    padding: 1rem 0;
}

.institution-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.5);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.institution-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.autonomous {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0.8rem;
    background-color: rgba(76, 201, 240, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(76, 201, 240, 0.3);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    display: inline-block;
}

/* Department Styles */
.department {
    margin-bottom: 2.5rem;
    position: relative;
}

.department-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    padding: 0.5rem 2rem;
    background: rgba(247, 37, 133, 0.1);
    border-radius: 4px;
    border-left: 3px solid var(--accent-color);
    border-right: 3px solid var(--accent-color);
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.2);
}

/* Event Title with Digital Frame */
.event-title {
    margin-bottom: 2.5rem;
}

.digital-frame {
    position: relative;
    padding: 1.5rem;
    border: 1px solid rgba(76, 201, 240, 0.3);
    background: rgba(26, 26, 46, 0.5);
    box-shadow: 0 0 20px rgba(76, 201, 240, 0.2);
    overflow: hidden;
    border-radius: 5px;
    margin-top: 1rem;
}

.digital-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 201, 240, 0.1), transparent);
    animation: digital-scan 3s linear infinite;
}

.tech-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(76, 201, 240, 0.3);
    margin: 0;
}

/* Event Name with Hologram Effect */
.event-name {
    margin-bottom: 3rem;
}

.hologram-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.zenith-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 5px;
    color: var(--light-color);
    text-shadow: var(--hologram-glow);
    position: relative;
    display: inline-block;
    transform-style: preserve-3d;
    animation: float 3s ease-in-out infinite;
}

.zenith-text::before {
    content: 'TechXplore 2K25';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-color);
    z-index: -1;
    animation: pulse 2s infinite;
}

.hologram-reflection {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(to bottom, var(--secondary-color), transparent);
    opacity: 0.2;
    transform: scaleY(-1);
    filter: blur(5px);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

/* Event Details with Tech Cards */
.event-details {
    margin-bottom: 3rem;
}

.tech-card {
    background: rgba(26, 26, 46, 0.7);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(76, 201, 240, 0.2);
}

.tech-card-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: rgba(247, 37, 133, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px dashed rgba(247, 37, 133, 0.3);
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.2);
    animation: icon-pulse 2s infinite;
}

.tech-card-content {
    text-align: center;
}

.tech-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.tech-card-content p {
    font-size: 1rem;
    color: var(--light-color);
    font-family: 'Roboto Mono', monospace;
}

/* Important Notice */
.important-notice {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(247, 37, 133, 0.1);
    border: 1px solid rgba(247, 37, 133, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submission-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(58, 12, 163, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(76, 201, 240, 0.2);
}

.submission-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    min-width: 80px;
    text-align: center;
}

.submission-step i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.submission-step.email-step {
    flex: 1;
    min-width: 200px;
}

.email-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.submission-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-color);
    opacity: 0.8;
}

.submission-note i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* Submit button in main area */
.submit-button-container {
    margin-top: 1.5rem;
    text-align: center;
}

.submit-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--light-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.3);
    border: 1px solid rgba(247, 37, 133, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(247, 37, 133, 0.5);
    color: var(--light-color);
}

.form-step {
    background-color: rgba(247, 37, 133, 0.1);
    border: 1px solid rgba(247, 37, 133, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.form-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.time-block {
    text-align: center;
    min-width: 100px;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(10, 14, 23, 0.9), rgba(16, 20, 35, 0.9));
    border-radius: 12px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.1);
    animation: pulse 2s infinite;
}

.time-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
    margin-bottom: 0.5rem;
}

.time-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2.5rem;
    color: var(--primary);
    animation: blink 1s infinite;
}

.deadline-header {
    text-align: center;
    margin-bottom: 1rem;
}

.deadline-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 1rem;
}

.deadline-footer {
    text-align: center;
    margin-top: 1rem;
}

.deadline-date {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-weight: 600;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .time-block {
        min-width: 80px;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

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

@keyframes circuit-pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes node-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes bracket-pulse {
    0% {
        color: var(--accent-color);
    }
    50% {
        color: var(--secondary-color);
    }
    100% {
        color: var(--accent-color);
    }
}

@keyframes digital-scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes icon-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

@keyframes scan-line {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes value-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes neon-btn-1 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes neon-btn-2 {
    0% {
        top: -100%;
    }
    50%, 100% {
        top: 100%;
    }
}

@keyframes neon-btn-3 {
    0% {
        right: -100%;
    }
    50%, 100% {
        right: 100%;
    }
}

@keyframes neon-btn-4 {
    0% {
        bottom: -100%;
    }
    50%, 100% {
        bottom: 100%;
    }
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes scroll-arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Responsive Styles */
/* 14-inch laptop and normal laptop screens */
@media (min-width: 1367px) and (max-width: 1920px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 80px;
    }
    
    .tech-text {
        font-size: 2.5rem;
    }
    
    .zenith-text {
        font-size: 4.5rem;
    }
    
    .countdown-container {
        margin-top: 2rem;
    }
    
    .countdown-item {
        min-width: 120px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
        padding: 1rem 0;
    }
    
    .digital-frame {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .tech-badge {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Small laptops and large tablets (14-inch laptops) */
@media (min-width: 1201px) and (max-width: 1366px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }
    
    .institution-name {
        font-size: 2.2rem;
    }
    
    .department-name {
        font-size: 1.3rem;
        padding: 0.4rem 1.5rem;
    }
    
    .tech-text {
        font-size: 1.6rem;
    }
    
    .zenith-text {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-container {
        margin-top: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.2rem;
        padding: 0.8rem 0;
    }
    
    .digital-frame {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-buttons {
        margin-top: 2rem;
    }
}

/* Tablets and small laptops */
@media (min-width: 993px) and (max-width: 1200px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 90px 0 50px;
    }
    
    .institution-name {
        font-size: 2rem;
    }
    
    .department-name {
        font-size: 1.2rem;
        padding: 0.4rem 1.2rem;
    }
    
    .tech-text {
        font-size: 1.5rem;
    }
    
    .zenith-text {
        font-size: 3.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-container {
        margin-top: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.2rem;
        padding: 0.8rem 0;
    }
    
    .digital-frame {
        padding: 1.2rem;
        margin: 1.8rem 0;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
    }
}

/* Small tablets and landscape phones */
@media (min-width: 769px) and (max-width: 992px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }
    
    .institution-name {
        font-size: 1.8rem;
    }
    
    .department-name {
        font-size: 1.1rem;
        padding: 0.3rem 1rem;
    }
    
    .tech-text {
        font-size: 1.4rem;
    }
    
    .zenith-text {
        font-size: 3.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .countdown-container {
        gap: 1rem;
        margin-top: 1.2rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
        padding: 0.7rem 0;
    }
    
    .digital-frame {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .autonomous {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
        gap: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 2.2rem;
    }
}

/* Tablets and small laptops */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px; /* Start off-screen from right */
        width: 300px; /* Smaller width */
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column; /* Stack items vertically */
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px; /* Space for the header */
        transition: var(--transition);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0; /* Slide in from right */
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        width: 100%;
    }
    
    .nav-register {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }
     .institution-name {
        font-size: 1rem;
    }
    
    .department-name {
        font-size: 0.8rem;
    }
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links {
        width: 250px; /* Even smaller for mobile */
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--secondary-color);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--secondary-color);
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .tech-text {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .zenith-text {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        margin: 0 0.5rem 1rem;
    }
    
    .countdown-value {
        font-size: 1.8rem;
        padding: 0.6rem 0;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .digital-frame {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .tech-badge {
        max-width: 100%;
        overflow: hidden;
        margin: 0.5rem 0;
    }
    
    #typing-text {
        margin: 1.5rem 0;
    }
    
    .autonomous {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
        gap: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 2.2rem;
    }
}

/* Tablets and small laptops */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px; /* Start off-screen from right */
        width: 300px; /* Smaller width */
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column; /* Stack items vertically */
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px; /* Space for the header */
        transition: var(--transition);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0; /* Slide in from right */
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        letter-spacing: 1px;
    }
    
    .zenith-text::before {
        -webkit-text-stroke: 1px var(--accent-color);
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .tech-badge {
        padding: 0.3rem 1rem;
        margin: 0.5rem 0;
        max-width: 90%;
    }
    
    #typing-text {
        font-size: 0.8rem;
        min-height: 2.5rem;
    }
    
    .tech-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
        border-width: 2px;
    }
    
    .scroll-arrows span {
        width: 8px;
        height: 8px;
    }
    
    .particles-container {
        opacity: 0.4;
    }
    
    .circuit-pattern {
        opacity: 0.25;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .hero {
        padding: 60px 0 20px;
    }
    
    .navbar {
        padding: 0.4rem 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 30px;
        margin-right: 0.4rem;
    }
    
    .zenith-text {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .tech-text {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 0.8rem;
    }
    
    .countdown-section {
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        margin: 0 0.2rem 0.6rem;
    }
    
    .countdown-value {
        font-size: 1.4rem;
        padding: 0.5rem 0;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .digital-frame {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .tech-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .tech-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-right: 0.6rem;
    }
    
    .tech-card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .tech-card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .important-notice {
    display: flex;
    flex-direction: column;
}
    .mouse {
        width: 25px;
        height: 40px;
        border-width: 2px;
    }
    
    .scroll-arrows span {
        width: 8px;
        height: 8px;
    }
    
    .particles-container {
        opacity: 0.4;
    }
    
    .circuit-pattern {
        opacity: 0.25;
    }
}

/* Cyber Container & Card Styles */
.cyber-container {
    margin: 2rem 0;
    padding: 1rem;
}

.cyber-card {
    background: linear-gradient(165deg, rgba(10, 14, 23, 0.95), rgba(16, 20, 35, 0.95));
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.cyber-pulse {
    animation: cyber-pulse 2s infinite;
    color: var(--primary);
    font-size: 2.5rem;
}

.submission-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.submission-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cyber-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 245, 255, 0.05);
}

.cyber-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    background: var(--primary);
    color: var(--dark);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: glow-sweep 3s linear infinite;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.portal-footer {
    padding: 1.5rem;
    background: rgba(255, 0, 110, 0.1);
    text-align: center;
}

.deadline-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.deadline-alert i {
    animation: pulse 2s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Print Styles */
@media print {
    .hero {
        height: auto;
    }
    
    .navbar, .scroll-down, .particles-container, .tech-overlay, .circuit-pattern, .glitch-effect {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .zenith-text, .tech-text, .tagline, .countdown-title, .countdown-value, .countdown-label {
        color: black;
        text-shadow: none;
    }
    
    .tech-card, .countdown-section, .digital-frame {
        border: 1px solid #ddd;
        box-shadow: none;
        background: white;
    }
}
.timeline-item .content p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 0.9rem;
}

/* Project Themes Section */
.project-themes {
    padding: 6rem 0;
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.95)), url('images/circuit-bg.png');
    background-size: cover;
    background-attachment: fixed;
}

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

.theme-card {
    background: rgba(58, 12, 163, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
    border-color: var(--secondary-color);
}

.theme-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.theme-card h3 {
    font-size: 1.1rem;
    color: var(--light-color);
    margin: 0;
}

/* Guidelines Section */
.guidelines {
    padding: 6rem 0;
    background: var(--dark-color);
}

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

.guideline-card {
    background: rgba(58, 12, 163, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.guideline-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: rgba(76, 201, 240, 0.1);
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 700;
    line-height: 1;
}

.guideline-card p {
    font-size: 1rem;
    color: var(--light-color);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.95)), url('images/contact-bg.png');
    background-size: cover;
    background-attachment: fixed;
}

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

.contact-card {
    background: rgba(58, 12, 163, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent-color);
}

.coordinator {
    margin-bottom: 1rem;
}

.coordinator:last-child {
    margin-bottom: 0;
}

.coordinator p {
    margin-bottom: 0.3rem;
    color: var(--light-color);
}

/* Footer */
.site-footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(76, 201, 240, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 201, 240, 0.1);
}

.footer-bottom p {
    color: rgba(248, 249, 250, 0.5);
    margin: 0;
}

/* Project Submission Section Styles */
.submission-section {
    margin: 2rem 0;
    background: rgba(10, 14, 23, 0.95);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.submission-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.submission-header .pulse-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.submission-header h3 {
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.cyber-alert {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.submission-process {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-num {
    display: inline-block;
    width:  40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.template-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cyber-btn {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 1rem 2rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--btn-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-btn:hover {
    color: var(--dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--cyber-glow);
}

.cyber-btn:hover::before {
    opacity: 1;
}

/* New Eligibility Styles */
.cyber-grid {
    padding: 2rem 0;
}

.cyber-card-large {
    background: linear-gradient(165deg, rgba(10, 14, 23, 0.95), rgba(16, 20, 35, 0.95));
    border: 1px solid var(--primary);
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.1);
}

.cyber-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cyber-icon {
    font-size: 2.5rem;
    color: var(--primary);
    animation: pulse 2s infinite;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.category-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.category-item h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.category-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.fee-badge {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    max-width: 200px;
    margin: 2rem auto 0;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
}

.fee-text {
    color: var(--dark);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* New Compact Timeline Styles */
.dates-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.date-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 245, 255, 0.05);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.date-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.date-icon {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.date-info {
    min-width: 120px;
}

.date-info h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.date-info time {
    color: var(--primary);
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
}

.date-connector {
    height: 2px;
    width: 30px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.date-item.active {
    border-color: var(--accent);
    background: rgba(255, 0, 110, 0.1);
}

.date-item.active .date-icon {
    border-color: var(--accent);
    color: var(--accent);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .dates-grid {
        flex-direction: column;
        gap: 1rem;
    }
    
    .date-connector {
        width: 2px;
        height: 20px;
        background: linear-gradient(180deg, var(--primary), transparent);
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cyber-card-large {
        margin: 0 1rem;
        padding: 1.5rem;
    }
      
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .tech-text {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .zenith-text {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        margin: 0 0.5rem 1rem;
    }
    
    .countdown-value {
        font-size: 1.8rem;
        padding: 0.6rem 0;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .digital-frame {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .tech-badge {
        max-width: 100%;
        overflow: hidden;
        margin: 0.5rem 0;
    }
    
    #typing-text {
        font-size: 1rem;
        min-height: 3rem;
    }
    
    .tech-card {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .circuit-pattern {
        opacity: 0.3;
    }
}

/* Mobile devices (portrait) */
@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 70px 0 30px;
    }
    
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 35px;
        margin-right: 0.5rem;
    }
    
    .bar {
        width: 22px;
        height: 3px;
        margin: 4px 0;
    }
    
    .hero-content {
        padding: 0 0.8rem;
    }
    
    .tech-text {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .zenith-text {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
        letter-spacing: 1px;
    }
    
    .zenith-text::before {
        -webkit-text-stroke: 1px var(--accent-color);
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .tech-badge {
        padding: 0.3rem 1rem;
        margin: 0.5rem 0;
        max-width: 90%;
    }
    
    #typing-text {
        font-size: 0.8rem;
        min-height: 2.5rem;
    }
    
    .tech-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
        border-width: 2px;
    }
    
    .scroll-arrows span {
        width: 8px;
        height: 8px;
    }
    
    .particles-container {
        opacity: 0.4;
    }
    
    .circuit-pattern {
        opacity: 0.25;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .hero {
        padding: 60px 0 20px;
    }
    
    .navbar {
        padding: 0.4rem 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 30px;
        margin-right: 0.4rem;
    }
    
    .zenith-text {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .tech-text {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 0.8rem;
    }
    
    .countdown-section {
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        margin: 0 0.2rem 0.6rem;
    }
    
    .countdown-value {
        font-size: 1.4rem;
        padding: 0.5rem 0;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .digital-frame {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .tech-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .tech-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-right: 0.6rem;
    }
    
    .tech-card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .tech-card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .important-notice {
    display: flex;
    flex-direction: column;
}
    .mouse {
        width: 25px;
        height: 40px;
        border-width: 2px;
    }
    
    .scroll-arrows span {
        width: 8px;
        height: 8px;
    }
    
    .particles-container {
        opacity: 0.4;
    }
    
    .circuit-pattern {
        opacity: 0.25;
    }
}

/* Horizontal Timeline Styles */
.timeline-wrapper {
    padding: 2rem 0;
    overflow-x: auto;
    margin: 2rem 0;
}

.horizontal-timeline {
    display: flex;
    min-width: max-content;
    padding: 2rem 1rem;
    position: relative;
}

.horizontal-timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary) 10%,
        var(--primary) 90%,
        transparent
    );
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-event {
    position: relative;
    padding: 0 2rem;
    width: 300px;
    z-index: 2;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.timeline-content {
    background: linear-gradient(145deg, rgba(10, 14, 23, 0.95), rgba(16, 20, 35, 0.95));
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--primary);
}

.timeline-content .date {
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.timeline-event:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.timeline-event:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.timeline-event.active .timeline-icon {
    border-color: var(--accent);
}

.timeline-event.active .timeline-icon i {
    color: var(--accent);
}

.timeline-event.active .timeline-content {
    border-color: var(--accent);
}

.timeline-event.active .timeline-content::before {
    border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
    .timeline-event {
        width: 250px;
        padding: 0 1rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .timeline-icon i {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

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

@keyframes circuit-pulse {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 0.3;
    }
}

@keyframes node-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes bracket-pulse {
    0% {
        color: var(--accent-color);
    }
    50% {
        color: var(--secondary-color);
    }
    100% {
        color: var(--accent-color);
    }
}

@keyframes digital-scan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes icon-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

@keyframes scan-line {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes value-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes neon-btn-1 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes neon-btn-2 {
    0% {
        top: -100%;
    }
    50%, 100% {
        top: 100%;
    }
}

@keyframes neon-btn-3 {
    0% {
        right: -100%;
    }
    50%, 100% {
        right: 100%;
    }
}

@keyframes neon-btn-4 {
    0% {
        bottom: -100%;
    }
    50%, 100% {
        bottom: 100%;
    }
}

@keyframes mouse-wheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes scroll-arrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Responsive Styles */
/* 14-inch laptop and normal laptop screens */
@media (min-width: 1367px) and (max-width: 1920px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 80px;
    }
    
    .tech-text {
        font-size: 2.5rem;
    }
    
    .zenith-text {
        font-size: 4.5rem;
    }
    
    .countdown-container {
        margin-top: 2rem;
    }
    
    .countdown-item {
        min-width: 120px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
        padding: 1rem 0;
    }
    
    .digital-frame {
        padding: 2rem;
        margin: 3rem 0;
    }
    
    .tech-badge {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Small laptops and large tablets (14-inch laptops) */
@media (min-width: 1201px) and (max-width: 1366px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }
    
    .institution-name {
        font-size: 2.2rem;
    }
    
    .department-name {
        font-size: 1.3rem;
        padding: 0.4rem 1.5rem;
    }
    
    .tech-text {
        font-size: 1.6rem;
    }
    
    .zenith-text {
        font-size: 4rem;
    }
    
    .tagline {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-container {
        margin-top: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.2rem;
        padding: 0.8rem 0;
    }
    
    .digital-frame {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .cta-buttons {
        margin-top: 2rem;
    }
}

/* Tablets and small laptops */
@media (min-width: 993px) and (max-width: 1200px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 90px 0 50px;
    }
    
    .institution-name {
        font-size: 2rem;
    }
    
    .department-name {
        font-size: 1.2rem;
        padding: 0.4rem 1.2rem;
    }
    
    .tech-text {
        font-size: 1.5rem;
    }
    
    .zenith-text {
        font-size: 3.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .countdown-container {
        margin-top: 1.5rem;
    }
    
    .countdown-value {
        font-size: 2.2rem;
        padding: 0.8rem 0;
    }
    
    .digital-frame {
        padding: 1.2rem;
        margin: 1.8rem 0;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
    }
}

/* Small tablets and landscape phones */
@media (min-width: 769px) and (max-width: 992px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }
    
    .institution-name {
        font-size: 1.8rem;
    }
    
    .department-name {
        font-size: 1.1rem;
        padding: 0.3rem 1rem;
    }
    
    .tech-text {
        font-size: 1.4rem;
    }
    
    .zenith-text {
        font-size: 3.2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .countdown-container {
        gap: 1rem;
        margin-top: 1.2rem;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-value {
        font-size: 2rem;
        padding: 0.7rem 0;
    }
    
    .digital-frame {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .autonomous {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }
    
    .cta-buttons {
        margin-top: 1.5rem;
        gap: 1.2rem;
    }
    
    .btn {
        padding: 0.8rem 2.2rem;
    }
}

/* Tablets and small laptops */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        position: relative;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -300px; /* Start off-screen from right */
        width: 300px; /* Smaller width */
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column; /* Stack items vertically */
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px; /* Space for the header */
        transition: var(--transition);
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0; /* Slide in from right */
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        width: 100%;
    }
    
    .nav-register {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Mobile phones */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 80px 0 40px;
    }
     .institution-name {
        font-size: 1rem;
    }
    
    .department-name {
        font-size: 0.8rem;
    }
    .navbar {
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links {
        width: 250px; /* Even smaller for mobile */
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--secondary-color);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--secondary-color);
    }
    
    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }
    
    .tech-text {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .zenith-text {
        font-size: 3rem;
        margin-bottom: 0.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .countdown-item {
        min-width: 80px;
        margin: 0 0.5rem 1rem;
    }
    
    .countdown-value {
        font-size: 1.8rem;
        padding: 0.6rem 0;
    }
    
    .countdown-label {
        font-size: 0.9rem;
    }
    
    .digital-frame {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .tech-badge {
        max-width: 100%;
        overflow: hidden;
        margin: 0.5rem 0;
    }
    
    #typing-text {
        font-size: 1rem;
        min-height: 3rem;
    }
    
    .tech-card {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
    }
    
    .scroll-down {
        bottom: 20px;
    }
    
    .circuit-pattern {
        opacity: 0.3;
    }
}

/* Mobile devices (portrait) */
@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 70px 0 30px;
    }
    
    
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-img {
        height: 35px;
        margin-right: 0.5rem;
    }
    
    .bar {
        width: 22px;
        height: 3px;
        margin: 4px 0;
    }
    
    .hero-content {
        padding: 0 0.8rem;
    }
    
    .tech-text {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    
    .zenith-text {
        font-size: 2.5rem;
        margin-bottom: 0.6rem;
        letter-spacing: 1px;
    }
    
    .zenith-text::before {
        -webkit-text-stroke: 1px var(--accent-color);
    }
    
    .tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0 0.5rem;
    }
    
    .tech-badge {
        padding: 0.3rem 1rem;
        margin: 0.5rem 0;
        max-width: 90%;
    }
    
    #typing-text {
        font-size: 0.8rem;
        min-height: 2.5rem;
    }
    
    .tech-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .mouse {
        width: 25px;
        height: 40px;
        border-width: 2px;
    }
    
    .scroll-arrows span {
        width: 8px;
        height: 8px;
    }
    
    .particles-container {
        opacity: 0.4;
    }
    
    .circuit-pattern {
        opacity: 0.25;
    }
}

/* Extra small mobile devices */
@media (max-width: 400px) {
    .hero {
        padding: 60px 0 20px;
    }
    
    .navbar {
        padding: 0.4rem 0.8rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 30px;
        margin-right: 0.4rem;
    }
    
    .zenith-text {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .tech-text {
        font-size: 1.3rem;
    }
    
    .tagline {
        font-size: 0.9rem;
        padding: 0;
        margin-bottom: 0.8rem;
    }
    
    .countdown-section {
        padding: 0.8rem 0.5rem;
    }
    
    .countdown-title {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .countdown-container {
        gap: 0.5rem;
    }
    
    .countdown-item {
        min-width: 60px;
        margin: 0 0.2rem 0.6rem;
    }
    
    .countdown-value {
        font-size: 1.4rem;
        padding: 0.5rem 0;
    }
    
    .countdown-label {
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
        min-width: 150px;
    }
    
    .digital-frame {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .tech-card {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .tech-card-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-right: 0.6rem;
    }
    
    .tech-card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .tech-card-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .important-notice {
    display: flex;
    flex-direction: column;
}
    .mouse {
        width: 25px;
        height: 40px;
        border-width: 2px;
    }
    
    .scroll-arrows span {
        width: 8px;
        height: 8px;
    }
    
    .particles-container {
        opacity: 0.4;
    }
    
    .circuit-pattern {
        opacity: 0.25;
    }
}

/* Cyber Container & Card Styles */
.cyber-container {
    margin: 2rem 0;
    padding: 1rem;
}

.cyber-card {
    background: linear-gradient(165deg, rgba(10, 14, 23, 0.95), rgba(16, 20, 35, 0.95));
    border: 1px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.cyber-pulse {
    animation: cyber-pulse 2s infinite;
    color: var(--primary);
    font-size: 2.5rem;
}

.submission-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.submission-step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 245, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 245, 255, 0.1);
    transition: all 0.3s ease;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.cyber-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    border: 1px solid var(--primary);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(0, 245, 255, 0.05);
}

.cyber-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    background: var(--primary);
    color: var(--dark);
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: glow-sweep 3s linear infinite;
}

.submit-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

.portal-footer {
    padding: 1.5rem;
    background: rgba(255, 0, 110, 0.1);
    text-align: center;
}

.deadline-alert {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.deadline-alert i {
    animation: pulse 2s infinite;
}
@media (max-width: 770px){
    .submission-grid {
        flex-direction: column;
        align-items: center;
    }
    .cyber-card{
        padding: 1rem;
    }
}
@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Print Styles */
@media print {
    .hero {
        height: auto;
    }
    
    .navbar, .scroll-down, .particles-container, .tech-overlay, .circuit-pattern, .glitch-effect {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .zenith-text, .tech-text, .tagline, .countdown-title, .countdown-value, .countdown-label {
        color: black;
        text-shadow: none;
    }
    
    .tech-card, .countdown-section, .digital-frame {
        border: 1px solid #ddd;
        box-shadow: none;
        background: white;
    }
}
.timeline-item .content p {
    color: rgba(248, 249, 250, 0.7);
    font-size: 0.9rem;
}

/* Project Themes Section */
.project-themes {
    padding: 6rem 0;
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.95)), url('images/circuit-bg.png');
    background-size: cover;
    background-attachment: fixed;
}

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

.theme-card {
    background: rgba(58, 12, 163, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
    border-color: var(--secondary-color);
}

.theme-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.theme-card h3 {
    font-size: 1.1rem;
    color: var(--light-color);
    margin: 0;
}

/* Guidelines Section */
.guidelines {
    padding: 6rem 0;
    background: var(--dark-color);
}

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

.guideline-card {
    background: rgba(58, 12, 163, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.guideline-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: rgba(76, 201, 240, 0.1);
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: 700;
    line-height: 1;
}

.guideline-card p {
    font-size: 1rem;
    color: var(--light-color);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.95)), url('images/contact-bg.png');
    background-size: cover;
    background-attachment: fixed;
}

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

.contact-card {
    background: rgba(58, 12, 163, 0.1);
    border: 1px solid rgba(76, 201, 240, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--light-color);
    margin-bottom: 1.5rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--accent-color);
}

.coordinator {
    margin-bottom: 1rem;
}

.coordinator:last-child {
    margin-bottom: 0;
}

.coordinator p {
    margin-bottom: 0.3rem;
    color: var(--light-color);
}

/* Footer */
.site-footer {
    background: rgba(26, 26, 46, 0.95);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(76, 201, 240, 0.3);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-nav a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 201, 240, 0.1);
}

.footer-bottom p {
    color: rgba(248, 249, 250, 0.5);
    margin: 0;
}
@media (max-width: 770px){
    .footer-content{
        display: flex;
        flex-direction: column;
    }
    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }
    .time-block{
        width: 100%;
        text-align: center;
    }
}

/* Project Submission Section Styles */
.submission-section {
    margin: 2rem 0;
    background: rgba(10, 14, 23, 0.95);
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
}

.submission-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.submission-header .pulse-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.submission-header h3 {
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.cyber-alert {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.submission-process {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.step-num {
    display: inline-block;
    width:  40px;
    height: 40px;
    line-height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    margin-bottom: 1rem;
}

.template-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cyber-btn {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary);
    padding: 1rem 2rem;
    color: var(--primary);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.cyber-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--btn-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cyber-btn:hover {
    color: var(--dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--cyber-glow);
}

.cyber-btn:hover::before {
    opacity: 1;
}

/* Print Styles */
@media print {
    .hero {
        height: auto;
    }
    
    .navbar, .scroll-down, .particles-container, .tech-overlay, .circuit-pattern, .glitch-effect {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .zenith-text, .tech-text, .tagline, .countdown-title, .countdown-value, .countdown-label {
        color: black;
        text-shadow: none;
    }
    
    .tech-card, .countdown-section, .digital-frame {
        border: 1px solid #ddd;
        box-shadow: none;
        background: white;
    }
}
