/* CSS Custom Properties for Cyberpunk Theme */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
:root {
    --primary-cyan: #00ffff;
    --electric-blue: #0080ff;
    --neon-purple: #8000ff;
    --neon-green: #00ff80;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(16, 16, 32, 0.8);
    --border-glow: rgba(0, 255, 255, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Rajdhani', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.4;
    /* overflow-x: hidden !important; */
}
html, body {
    margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* height: 100%;
   margin: 0;
  padding: 0;
  width: 100%; */
}

/* Background Animations */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(128, 0, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 90%, rgba(0, 255, 128, 0.1) 1px, transparent 1px);
    animation: neuralPulse 4s ease-in-out infinite;
}

.data-stream {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 255, 255, 0.05) 50%,
        transparent 100%
    );
    animation: dataFlow 6s linear infinite;
}

.circuit-board {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: circuitGlow 8s ease-in-out infinite;
}

.brainwave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 100 Q300 50 600 100 T1200 100' stroke='%23008080' stroke-width='2' fill='none' opacity='0.3'/%3E%3C/svg%3E");
    animation: brainwaveFlow 3s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes neuralPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

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

@keyframes circuitGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

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

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes scanlines {
    0% { background-position: 0 0; }
    100% { background-position: 0 50px; }
}

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

@keyframes heartbeat {
    0% { transform: scaleX(1); }
    10% { transform: scaleX(1.2); }
    20% { transform: scaleX(1); }
    30% { transform: scaleX(1.5); }
    40% { transform: scaleX(1); }
    100% { transform: scaleX(1); }
}

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

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

@keyframes hologramFlicker {
    0%, 100% { opacity: 1; }
    5% { opacity: 0.8; }
    10% { opacity: 1; }
    15% { opacity: 0.9; }
    20% { opacity: 1; }
}

/* Navigation */
.navbar {
    /* background-color: red; */
    /* position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glow);
    z-index: 1000;
    padding: 1rem 0; */

    /* position: absolute; */
    position: fixed;
    top: 10px;
    width: 90%;
    left: 5%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    z-index: 999;
    padding: 1rem 0;
    margin-top: 20px;
    border-radius: 20px;
}

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

.nav-logo span {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-link {
    color: var(--text-secondary);
    font-family: var(--font-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    margin: 3px 0;
    transition: 0.3s;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--primary-cyan);
    font-family: var(--font-primary);
    animation: glitch 0.3s ease-in-out infinite;
}

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

.glitch::before {
    animation: glitch 0.3s ease-in-out infinite reverse;
    color: var(--neon-purple);
    z-index: -1;
}

.glitch::after {
    animation: glitch 0.3s ease-in-out infinite;
    color: var(--neon-green);
    z-index: -2;
}

.scanlines {
    background: linear-gradient(
        transparent 0%,
        rgba(0, 255, 255, 0.1) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    animation: scanlines 2s linear infinite;
}

/* College Name  */
.clg-name {
    text-align: center;

}

/* .clg-name img {
    width: 60px;
    height: 60px;
} */
.clg-name h3 {
    /* color: var(--primary-cyan); */
    margin-top: 8.5rem;
    font-size: 1.2rem;
    font-family: var(--font-primary);

}
.clg-name p {
    /* color: var(--primary-cyan); */
    font-size: 0.9rem;
    font-family: var(--font-primary);

}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    /* overflow: hidden; */
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-family: var(--font-primary);
    font-weight: 900;
    margin-bottom: 1rem;
    /* line-height: 1; */
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    position: relative;
}

.pulse-text {
    animation: pulse 2s ease-in-out infinite;
    color: var(--electric-blue);
    font-family: "Orbitron", sans-serif;
}

.heartbeat-line {
    width: 100%;
    height: 4px;
    background: var(--neon-green);
    margin-top: 1rem;
    animation: heartbeat 2s ease-in-out infinite;
    transform-origin: left;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cyber-btn {
    position: relative;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyber-btn:hover {
    color: var(--primary-cyan);
    box-shadow: 0 0 20px var(--primary-cyan);
}

.cyber-btn.primary {
    border-color: var(--primary-cyan);
}

.cyber-btn.secondary {
    border-color: var(--neon-purple);
    color: var(--neon-purple);
}

.cyber-btn.secondary:hover {
    box-shadow: 0 0 20px var(--neon-purple);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), transparent);
    transition: left 0.5s ease;
}

.cyber-btn:hover .btn-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hologram-container {
    width: 400px;
    height: 400px;
    position: relative;
}

.hologram-brain {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Each brain-layer will orbit around the center */
.brain-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    transform-origin: center -150px; /* radius of rotation */
    opacity: 0.6;
}

.brain-layer:nth-child(1) {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-color: var(--primary-cyan);
    animation: rotateCircle 6s linear infinite;
}

.brain-layer:nth-child(2) {
    width: 70px;
    height: 70px;
    margin: -60px 0 0 -60px;
    border-color: var(--neon-purple);
    animation: rotateCircleReverse 10s linear infinite;
}

.brain-layer:nth-child(3) {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-color: var(--neon-green);
    animation: rotateCircle 8s linear infinite;
}

.brain-layer:nth-child(4) {
    width: 110px;
    height: 110px;
    margin: 90px 0 0 50px;
    border-color: var(--neon-purple);
    animation: rotateCircleReverse 7s linear infinite;

}
.brain-layer:nth-child(5) {
    width: 60px;
    height: 60px;
    margin: -90px 10px 0 80px;
    border-color: var(--electric-blue);
    animation: rotateCircleReverse 6s linear infinite;
}
.brain-layer:nth-child(6) {
    width: 40px;
    height: 40px;
    margin: 60px 0 -90px -80px;
    border-color: var(--primary-cyan);
    animation: rotateCircle 4s linear infinite;
}


/* Rotation keyframes */
@keyframes rotateCircle {
    0% {
        transform: rotate(0deg) translateY(-150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateY(-150px) rotate(-360deg);
    }
}

@keyframes rotateCircleReverse {
    0% {
        transform: rotate(0deg) translateY(-150px) rotate(0deg);
    }
    100% {
        transform: rotate(-360deg) translateY(-150px) rotate(360deg);
    }
}

/* .hologram-brain {
    width: 100%;
    height: 100%;
    position: relative;
    animation: hologramFlicker 3s ease-in-out infinite;
}

.brain-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatPanel 4s ease-in-out infinite;
}

.brain-layer:nth-child(1) {
    animation-delay: 0s;
    border-color: var(--primary-cyan);
}

.brain-layer:nth-child(2) {
    animation-delay: 1s;
    border-color: var(--neon-purple);
    transform: scale(0.8);
}

.brain-layer:nth-child(3) {
    animation-delay: 2s;
    border-color: var(--neon-green);
    transform: scale(0.6);
} */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-family: var(--font-primary);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
}

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

.dashboard-panel {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.floating-panel {
    animation: floatPanel 6s ease-in-out infinite;
}

.floating-panel[data-panel="2"] {
    animation-delay: 2s;
}

.floating-panel[data-panel="3"] {
    animation-delay: 4s;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
    font-size: 1.2rem;
    font-weight: 600;
}

.panel-header i {
    font-size: 1.5rem;
}

.panel-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
}

/* Events Section */
.events {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.5), rgba(8, 8, 16, 0.8));
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
    /* height: 500px; */
}

.event-card {
    perspective: 1000px;
    overflow: visible;
    height: 100%;
}

.events-grid,
.event-card {
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: visible;
}

.hologram-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 15px;
    box-shadow: 0 0 15px var(--primary-cyan);
    will-change: transform;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* ensures no extra space at bottom */
    padding-bottom: 0
}

.hologram-card:hover {
    transform: rotateY(180deg);
    
}

.hologram-card:hover {
    box-shadow: inset 0 0 12px var(--neon-purple); /* ✅ glow inside only */
}


.card-front,
.card-back {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    backface-visibility: hidden;
    padding: 2rem;
    border-radius: 15px;
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: opacity 0.3s ease;
    padding:2rem 2rem 1rem;
}


.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 255, 255, 0.1));

}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--primary-cyan);
}

.card-header i {
    font-size: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-list li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.3rem;
}

.event-list li:last-child {
    border-bottom: none;
}

.event-list li::before {
    content: '▶';
    color: var(--primary-cyan);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-size: 0.8rem;
}

.view-more-btn {
    background: transparent;
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.8rem 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-more-btn:hover {
    background: var(--neon-green);
    color: var(--dark-bg);
    box-shadow: 0 0 15px var(--neon-green);
}
.event-description {
    display: none;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
    padding-left: 1.5rem;
    line-height: 1.4;
    animation: fadeIn 0.3s ease-in-out;
}

.event-item.active .event-description {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Schedule Section */
.schedule {
    padding: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-cyan);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: center;
    padding-right: 3rem;
    /* margin-left: 50%; */
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: center;
    padding-left: 3rem;
    /* margin-right: 50%; */
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: -0.5rem;
    width: 20px;
    height: 20px;
    background: var(--primary-cyan);
    border: 4px solid var(--dark-bg);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--primary-cyan);
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
}

.timeline-content h3 {
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.time-badge {
    display: inline-block;
    background: var(--neon-purple);
    color: var(--text-primary);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-columns {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.timeline-column {
    flex: 1;
    min-width: 300px;
}

/* Add this media query */
@media (max-width: 768px) {
  .timeline-columns {
    flex-direction: column;
    align-items: center;
  }

  .timeline-column {
    flex: none; /* remove flex shrink behavior */
    width: 100%; /* or 90% for padding */
    max-width: 600px;
  }
}
.timeline-column h3 {
    font-family: var(--font-primary);
    text-align: center;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
}

/* Optional: Adjust timeline vertical line only inside each timeline */
.timeline {
    max-width: 100%;
}

.timeline::before {
    left: 50%;
    transform: translateX(-50%);
}


/* Speakers Section */
.speakers {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.5), rgba(8, 8, 16, 0.8));
}

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

.speaker-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.holographic-id {
    background: linear-gradient(135deg, var(--card-bg), rgba(128, 0, 255, 0.1));
}

.id-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-cyan);
    text-transform: uppercase;
}

.speaker-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--dark-bg);
}

.hologram-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.speaker-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.speaker-info .title {
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.speaker-info .company {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.expertise-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.expertise-tags span {
    background: rgba(0, 255, 255, 0.2);
    color: var(--primary-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--primary-cyan);
}

/* Registration Section */
.registration {
    padding: 6rem 0;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
}

.cyber-form {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
    animation: dataFlow 3s linear infinite;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glow);
}

.form-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.form-id {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-glow);
    color: var(--text-primary);
    padding: 1rem 0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-cyan);
}

.input-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: width 0.3s ease;
}

.form-group input:focus + .input-underline,
.form-group select:focus + .input-underline,
.form-group textarea:focus + .input-underline {
    width: 100%;
}

.submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-cyan), var(--neon-purple));
    border: none;
    color: var(--dark-bg);
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-scanner {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-scanner {
    left: 100%;
}

.processing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.processing-text {
    color: var(--primary-cyan);
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: pulse 1s ease-in-out infinite;
}

.processing-bar {
    width: 200px;
    height: 4px;
    background: rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.processing-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-cyan);
    animation: dataFlow 1.5s linear infinite;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 16, 32, 0.5), rgba(8, 8, 16, 0.8));
}

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

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.access-card {
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 255, 128, 0.1));
}

.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}
.card-header span {
    font-family: var(--font-primary);
}

.clearance-level {
    color: var(--neon-green);
}

.card-id {
    color: var(--text-secondary);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--neon-green), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-bg);
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-info .role {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.team-info .department {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-link {
    color: var(--primary-cyan);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}
/*-----------------------------------*\
#OUR College Seniors Reviews
\*-----------------------------------*/
/* .our-senior {
  padding-top: 50px;
  background: #f5f5f5;
} */

.slider {
  overflow: hidden;
  position: relative;
  padding: 2em 0;
}

.slide-track {
  display: flex;
  /* width: calc(300px * 10);  */
  gap: 2em;
  width: fit-content;
  animation: scroll 10s linear infinite;
  gap: 2em;
}

.card {
  min-width: 300px;
  max-width: 300px;
  /* background: white; */
  display: flex;
  align-items: center;
  padding: 1em;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  flex-shrink: 0;
  border: 1px solid var(--primary-cyan);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1em;
}

.review p {
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.4;
  font-family: var(--font-secondary);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* move left by half if you duplicated */
  }
}



/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-glow);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.neural-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    animation: circuitGlow 10s ease-in-out infinite;
    /* pointer-events: none; */
    z-index: -1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: var(--font-primary);
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 10;
}

.footer-section h4 {
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    z-index: 30;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.glow-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.glow-link:hover {
    color: var(--primary-cyan);
    text-shadow: 0 0 10px var(--primary-cyan);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: var(--primary-cyan);
    width: 20px;
}

.event-date .date-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.event-date .time-text {
    color: var(--neon-green);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid var(--border-glow);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tech-badge {
    color: var(--text-primary);
    font-size: 1.3rem;
}

.tech-badge .zenlo {
    color: var(--primary-cyan);
    text-decoration: none;
    /* transition: all 0.3s ease; */
    transition: transform 0.3s ease;

}

.tech-badge a {
    color: var(--text-primary);
    text-decoration: none;
}   

.tech-badge .zenlo:hover {
    color: var(--neon-purple);
    text-shadow: 0 0 10px var(--neon-purple);
    transform: scale(1.05);
}   

.footer-section li::before {
    content: "\f101";
    font-family: FontAwesome;
    color: var(--primary-cyan);
    /* padding: 0px 3px; */
} 

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--border-glow);
    border-radius: 15px;
    margin: 10% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: fadeInUp 0.3s ease;
}

.cyber-modal {
    background: linear-gradient(135deg, var(--card-bg), rgba(0, 255, 255, 0.1));
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-glow);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--primary-cyan);
    font-family: var(--font-primary);
}

.close-modal {
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-cyan);
}

.modal-body {
    padding: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -150%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        order: 1px solid var(--border-glow);

    }

    .nav-menu.active {
        left: 0;
    }

    /* .clg-name {
    margin-top: 30%;
} */

    .hamburger {
        display: flex;
    }
    .hero {
        display: flex;
        flex-direction: column; /* Stack vertically */
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
        /* overflow: hidden; */
        width: 100%;
        min-height: 68vh; /* Full height view */
    }

  
    .hero-content {
        /* grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem; */
         gap: 2rem;
        position: static;
        width: 100%;
        max-width: 600px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
     
    }

     .hero-content > * {
        width: 100%;
        max-width: 600px;
        text-align: center;
  }

    .hero-visual {
        position: absolute;
        margin-top: 2rem;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: -1;
  }

  .hologram-container {
        max-width: 300px;
        width: 100%;
  }

  .heartbeat-line {
    width: 70%;
  }

    .hero-buttons {
        /* justify-content: center; */
        display: flex;
        flex-direction: column;
        align-items: center; /* Ensures buttons are centered too */
        gap: 1rem;
    }


    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-left: 3rem;
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .dashboard,
    .events-grid,
    .speakers-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .hologram-container {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .cyber-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .dashboard-panel,
    /* .event-card, */
    .speaker-card,
    .team-card {
        padding: 1.5rem;
    }

    .cyber-form {
        padding: 2rem;
    }
}

/* Utility Classes */
.text-glow {
    text-shadow: 0 0 10px currentColor;
}

.border-glow {
    box-shadow: 0 0 20px var(--border-glow);
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Additional Hover Effects */
.dashboard-panel:hover {
    border-color: var(--primary-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.speaker-card:hover,
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(128, 0, 255, 0.3);
}

