:root {
    --primary-color: #ff6600;
    /* Team Orange */
    --secondary-color: #ff8c00;
    /* Lighter Orange */
    --accent-color: #ffaa00;
    /* Golden Orange */
    --success-color: #ff6600;
    /* Orange for success */
    --warning-color: #ff8800;
    /* Warning Orange */
    --dark-bg: #000000;
    /* Pure Black */
    --darker-bg: #0a0a0a;
    /* Very dark */
    --light-bg: rgba(20, 20, 20, 0.9);
    --glass-bg: rgba(255, 102, 0, 0.05);
    --text-color: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
    --header-font: 'Orbitron', sans-serif;
    --body-font: 'Exo', sans-serif;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    --gradient-accent: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    --orange-glow: rgba(255, 102, 0, 0.3);
    --black-accent: rgba(0, 0, 0, 0.8);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-color);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--header-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.loading-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    animation: logoRotate 3s linear infinite;
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.loading-logo-text {
    font-family: var(--header-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 30px var(--primary-color);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    font-family: var(--body-font);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.loading-bar {
    width: 300px;
    height: 4px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: loadingProgress 3s ease-in-out forwards;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes loadingProgress {
    0% {
        width: 0%;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

/* Particle Background */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, var(--darker-bg) 0%, #000000 100%);
}

/* Animated Background Grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 102, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 102, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(255, 102, 0, 0.1);
}

nav {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
}

.logo {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    flex: 0 0 auto;
    transition: all 0.3s ease;
    user-select: none;
}

.logo:hover {
    transform: scale(1.02);
}

.logo:active {
    transform: scale(0.98);
}

.team-logo {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--primary-color));
    transition: all 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 0 20px var(--primary-color));
}

.logo-text {
    font-family: var(--header-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    text-shadow: 0 0 25px var(--primary-color), 0 0 35px var(--primary-color);
}

.logo-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo:hover .logo-glow {
    opacity: 0.2;
}

.nav-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    position: relative;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: var(--text-color);
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid transparent;
    white-space: nowrap;
    font-size: 0.9rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    background: rgba(255, 102, 0, 0.1);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 102, 0, 0.6);
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    z-index: -1;
    opacity: 0.3;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--secondary-color);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--header-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

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

/* Holog
raphic Display */
.hologram-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.8s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 3D Hologram Base */
.hologram-base {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 50px;
    perspective: 1000px;
}

.base-ring {
    position: absolute;
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 50%;
    animation: baseRotate 8s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: -75px;
    left: 0;
    animation-duration: 8s;
}

.ring-2 {
    width: 150px;
    height: 150px;
    top: -50px;
    left: 25px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.ring-3 {
    width: 100px;
    height: 100px;
    top: -25px;
    left: 50px;
    animation-duration: 6s;
}

.base-projector {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--primary-color);
}

.projector-beam {
    position: absolute;
    top: -500px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 500px;
    background: linear-gradient(to top, var(--primary-color), transparent);
    opacity: 0.3;
    animation: beamPulse 2s ease-in-out infinite alternate;
}

.holographic-display {
    position: relative;
    width: 400px;
    height: 550px;
    background: rgba(0, 0, 0, 0.85);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow:
        0 0 60px rgba(255, 102, 0, 0.4),
        inset 0 0 60px rgba(255, 102, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    cursor: default;
    transform-style: preserve-3d;
    animation: hologramFloat 6s ease-in-out infinite;
}

.holographic-display:hover {
    box-shadow:
        0 0 100px rgba(255, 102, 0, 0.6),
        inset 0 0 100px rgba(255, 102, 0, 0.2),
        0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Mouse tracking will be handled by JavaScript */
.holographic-display.mouse-tracking {
    transition: transform 0.1s ease-out;
}

/* Hologram Frame */
.hologram-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.frame-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    animation: cornerPulse 3s ease-in-out infinite alternate;
}

.corner-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.3), transparent);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite alternate;
}

.frame-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.frame-line {
    position: absolute;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0.7;
}

.frame-line.horizontal {
    height: 2px;
    left: 30px;
    right: 30px;
}

.frame-line.horizontal.top {
    top: 10px;
}

.frame-line.horizontal.bottom {
    bottom: 10px;
}

.frame-line.vertical {
    width: 2px;
    top: 30px;
    bottom: 30px;
}

.frame-line.vertical.left {
    left: 10px;
}

.frame-line.vertical.right {
    right: 10px;
}

/* 3D Depth Layers */
.depth-layer {
    position: absolute;
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 15px;
    pointer-events: none;
}

.layer-1 {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    transform: translateZ(10px);
    animation: depthFloat 4s ease-in-out infinite;
}

.layer-2 {
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    transform: translateZ(20px);
    animation: depthFloat 4s ease-in-out infinite 0.5s;
}

.layer-3 {
    top: 35px;
    left: 35px;
    right: 35px;
    bottom: 35px;
    transform: translateZ(30px);
    animation: depthFloat 4s ease-in-out infinite 1s;
}

/* Enhanced Particle Effects */
.particle.floating {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle.orbiting {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 140, 0, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.8);
    animation: particleOrbit 6s linear infinite;
}

/* 3D Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    transform-style: preserve-3d;
}

.float-cube {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 102, 0, 0.4);
    transform-style: preserve-3d;
}

.cube-1 {
    top: 20%;
    left: 10%;
    animation: cubeFloat 5s ease-in-out infinite, cubeRotate 8s linear infinite;
}

.cube-2 {
    top: 60%;
    right: 15%;
    animation: cubeFloat 4s ease-in-out infinite 1s, cubeRotate 6s linear infinite reverse;
}

.cube-3 {
    bottom: 25%;
    left: 20%;
    animation: cubeFloat 6s ease-in-out infinite 2s, cubeRotate 10s linear infinite;
}

.float-ring {
    position: absolute;
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 50%;
}

.float-ring.ring-1 {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 20%;
    animation: ringFloat 7s ease-in-out infinite, ringRotate 12s linear infinite;
}

.float-ring.ring-2 {
    width: 25px;
    height: 25px;
    bottom: 40%;
    left: 15%;
    animation: ringFloat 5s ease-in-out infinite 1.5s, ringRotate 8s linear infinite reverse;
}

/* Energy Field Effects */
.energy-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.energy-wave {
    position: absolute;
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 50%;
    animation: energyPulse 3s ease-out infinite;
}

.wave-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.wave-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.wave-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

/* Enhanced Scan Lines */
.scan-line-vertical {
    position: absolute;
    top: 0;
    left: 20%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    animation: scanVertical 4s linear infinite;
    opacity: 0.6;
}

.interference-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 102, 0, 0.03) 2px,
            rgba(255, 102, 0, 0.03) 4px
        );
    animation: interferenceMove 8s linear infinite;
}

/* Animations */
@keyframes hologramFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(2deg); }
}

@keyframes baseRotate {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes beamPulse {
    0% { opacity: 0.2; width: 2px; }
    100% { opacity: 0.5; width: 4px; }
}

@keyframes cornerPulse {
    0% { box-shadow: 0 0 20px var(--primary-color); }
    100% { box-shadow: 0 0 35px var(--primary-color); }
}

@keyframes glowPulse {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes depthFloat {
    0%, 100% { transform: translateZ(10px) translateY(0px); }
    50% { transform: translateZ(15px) translateY(-5px); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.5; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    50% { transform: translateY(-10px) translateX(-5px); opacity: 0.7; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

@keyframes particleOrbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

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

@keyframes cubeRotate {
    0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes ringFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-20px) rotateX(180deg); }
}

@keyframes ringRotate {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes energyPulse {
    0% { 
        width: 0px; 
        height: 0px; 
        opacity: 1; 
    }
    100% { 
        width: 300px; 
        height: 300px; 
        opacity: 0; 
    }
}

@keyframes scanVertical {
    0% { left: 0%; }
    100% { left: 100%; }
}

@keyframes interferenceMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(20px); }
}

/* Hologram Content */
.hologram-content {
    position: relative;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

/* Header */
.hologram-header {
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.3);
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scanMove 3s linear infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.hologram-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--header-font);
    letter-spacing: 2px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Data Grid */
.data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.data-item {
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-item:hover {
    background: rgba(255, 102, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.data-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.data-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
    margin-bottom: 0.5rem;
}

.data-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 102, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.data-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    width: 0%;
    animation: dataFill 2s ease-out forwards;
    box-shadow: 0 0 10px var(--primary-color);
}

.data-item[data-value="13"] .data-fill {
    animation-delay: 0.2s;
    animation-duration: 2s;
}

.data-item[data-value="100"] .data-fill {
    animation-delay: 0.4s;
    animation-duration: 2.5s;
}

.data-item[data-value="50"] .data-fill {
    animation-delay: 0.6s;
    animation-duration: 2.2s;
}

.data-item[data-value="8"] .data-fill {
    animation-delay: 0.8s;
    animation-duration: 1.5s;
}

@keyframes dataFill {
    to {
        width: 100%;
    }
}

/* Achievement Stream */
/* Achievement Section Container */
.achievement-section {
    margin-top: 1rem;
}

.stream-header {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem;
    border-radius: 5px;
    text-align: center;
}

.achievement-stream {
    height: 120px;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    overflow: hidden;
    position: relative;
}

.achievement-stream::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.9));
    pointer-events: none;
    z-index: 2;
}

@keyframes scrollStream {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-50%);
    }
}

.stream-items {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    animation: scrollStream 30s linear infinite;
    width: 100%;
}

.stream-item {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.5rem 0.8rem;
    border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    width: 100%;
    opacity: 1;
    background: linear-gradient(90deg, rgba(255, 102, 0, 0.05), rgba(255, 102, 0, 0.1));
    backdrop-filter: blur(2px);
    margin-bottom: 0.5rem;
    border-radius: 5px;
}

.stream-item:last-child {
    border-bottom: none;
}

/* Holographic Effects */
.hologram-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.scan-line-animated {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: scanLine 4s linear infinite;
    opacity: 0.6;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.glitch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 102, 0, 0.1) 49%, rgba(255, 102, 0, 0.1) 51%, transparent 52%);
    animation: glitch 8s ease-in-out infinite;
    opacity: 0;
}

@keyframes glitch {

    0%,
    95%,
    100% {
        opacity: 0;
    }

    96%,
    98% {
        opacity: 1;
    }
}

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--primary-color);
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    right: 20%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 60%;
    right: 40%;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    bottom: 20%;
    right: 30%;
    animation-delay: 4s;
}

.particle:nth-child(6) {
    top: 30%;
    left: 60%;
    animation-delay: 5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-10px) translateX(5px);
        opacity: 1;
    }

    50% {
        transform: translateY(-5px) translateX(-5px);
        opacity: 0.7;
    }

    75% {
        transform: translateY(5px) translateX(10px);
        opacity: 0.5;
    }
}

/* Dynamic Background Effects */
#mouse-trail-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

#dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    z-index: -3;
    transition: all 0.3s ease;
    pointer-events: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-color);
    margin: 0 auto 0.5rem;
    position: relative;
    box-shadow: 0 0 10px var(--primary-color);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* S
ection Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.02) 0%, rgba(255, 0, 255, 0.02) 100%);
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
}

.card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

/* Teams Section */
.teams-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.02) 0%, rgba(255, 255, 0, 0.02) 100%);
}

.teams-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-shadow: 0 0 20px var(--secondary-color);
}

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

.team-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.3);
    background: rgba(255, 102, 0, 0.08);
}

.team-card:hover .team-icon {
    transform: scale(1.1);
}

.team-card:hover h4 {
    text-shadow: 0 0 15px var(--primary-color);
}

/* Hover Tooltip for Clickable Cards */
.team-card::after {
    content: 'Click';
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(255, 69, 0, 0.95);
    color: var(--text-color);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 69, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-2px);
}

.team-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Override team-icon styles when it contains a leader image */
.team-icon:has(.leader-image) {
    width: 120px;
    height: 120px;
    display: block;
}

/* Fallback for browsers that don't support :has() */
.leadership-card .team-icon {
    width: 120px;
    height: 120px;
    display: block;
}

.gear-icon,
.circuit-icon,
.wrench-icon,
.social-icon,
.doc-icon,
.sponsorship-icon,
.audit-icon,
.lab-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    position: relative;
    animation: iconRotate 4s linear infinite;
}

@keyframes iconRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.team-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.skill-tag {
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Leadersh
ip Section */
.leadership-subheader {
    margin-top: 4rem;
}

.leadership-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.leadership-card:hover::before {
    transform: scaleX(1);
}

.leadership-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

.leader-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.3));
    /* Ensure perfect circle */
    min-width: 120px;
    min-height: 120px;
    max-width: 120px;
    max-height: 120px;
}

.leadership-card:hover .leader-image {
    border-color: var(--primary-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.6));
}

.leadership-card h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.leadership-card:hover h4 {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.leadership-card p {
    color: var(--text-muted);
    margin: 0.3rem 0;
    font-size: 0.9rem;
}

.leader-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Achievements Section */
.achievements-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="trophy" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,102,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23trophy)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.achievement-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.achievement-stats .stat-item {
    background: var(--glass-bg);
    border: 2px solid rgba(255, 102, 0, 0.3);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-stats .stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.achievement-stats .stat-item:hover::before {
    left: 100%;
}

.achievement-stats .stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

.achievement-stats .stat-number {
    font-family: var(--header-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-stats .stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.achievement-categories {
    max-width: 1400px;
    margin: 4rem auto 0;
}

.achievement-category {
    margin-bottom: 4rem;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.category-header h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

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

.achievement-card {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.achievement-card:hover::before {
    transform: scaleX(1);
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

.achievement-card.major {
    border: 2px solid rgba(255, 102, 0, 0.4);
    background: rgba(255, 102, 0, 0.05);
}

.achievement-card.legendary {
    border: 2px solid rgba(255, 170, 0, 0.5);
    background: rgba(255, 170, 0, 0.08);
    position: relative;
}

.achievement-card.legendary::after {
    content: '⭐';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.achievement-card.special {
    border: 2px solid rgba(255, 140, 0, 0.4);
    background: rgba(255, 140, 0, 0.05);
}

.achievement-icon1 {
    width: 80px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 0;
    box-shadow: none;
    animation: none;
}

.achievement-icon1 img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: none;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.3));
    transition: transform 0.3s ease;
}

.achievement-icon1 img:hover {
    transform: scale(1.05);
}

.achievement-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.achievement-date {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.achievement-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Galler
y Section */
.gallery-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.02) 0%, rgba(0, 255, 255, 0.02) 100%);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--success-color);
    color: var(--dark-bg);
    border-color: var(--success-color);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
    border-color: var(--success-color);
    box-shadow: 0 20px 40px rgba(0, 255, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.95));
    backdrop-filter: blur(4px);
}

.gallery-overlay h4 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 15px var(--success-color);
    font-weight: 600;
}

.gallery-overlay p {
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.4;
}

/* Robocon Section */
.robocon-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.robocon-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.robocon-year {
    margin-bottom: 4rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.robocon-year:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.robocon-year-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    margin-bottom: 2rem;
    letter-spacing: 1.5px;
}

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

.robocon-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.robocon-grid img:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.4);
}

/* Tech Stack Section */
.tech-stack-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.02) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.tech-stack-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 140, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.tech-stack-main-interactive {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 3rem;
    background: var(--glass-bg);
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tech-stack-main-interactive::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
            rgba(255, 102, 0, 0.3),
            rgba(255, 140, 0, 0.2),
            rgba(255, 170, 0, 0.2),
            rgba(255, 102, 0, 0.3));
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: borderGlow 3s linear infinite;
}

.tech-stack-main-interactive:hover::before {
    opacity: 0.4;
}

.tech-stack-main-interactive:hover {
    border-color: rgba(255, 102, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.15);
    transform: translateY(-3px);
}

.tech-stack-hover-text {
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
    transition: all 0.5s ease;
}

.tech-stack-hover-text::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.5s ease;
}

.tech-stack-main-interactive:hover .tech-stack-hover-text {
    color: var(--text-color);
    text-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
    transform: scale(1.02);
}

.tech-stack-main-interactive:hover .tech-stack-hover-text::after {
    width: 100px;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    opacity: 0.4;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(10px);
}

.tech-stack-main-interactive:hover .tech-stack-grid {
    opacity: 1;
    transform: translateY(0);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 102, 0, 0.15);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(255, 102, 0, 0.5);
    box-shadow: 0 12px 25px rgba(255, 102, 0, 0.2);
    background: rgba(255, 102, 0, 0.08);
}

.tech-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px rgba(255, 102, 0, 0.2));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover img {
    filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.4));
    transform: scale(1.1) rotateZ(5deg);
}

.tech-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tech-item:hover span {
    color: var(--text-color);
    text-shadow: 0 0 5px rgba(255, 102, 0, 0.3);
    transform: scale(1.05);
}

/* Staggered Animation for Tech Items */
.tech-stack-main-interactive:hover .tech-item:nth-child(1) {
    transition-delay: 0.1s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(2) {
    transition-delay: 0.15s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(3) {
    transition-delay: 0.2s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(4) {
    transition-delay: 0.25s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(5) {
    transition-delay: 0.3s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(6) {
    transition-delay: 0.35s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(7) {
    transition-delay: 0.4s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(8) {
    transition-delay: 0.45s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(9) {
    transition-delay: 0.5s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(10) {
    transition-delay: 0.55s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(11) {
    transition-delay: 0.6s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(12) {
    transition-delay: 0.65s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(13) {
    transition-delay: 0.7s;
}

.tech-stack-main-interactive:hover .tech-item:nth-child(14) {
    transition-delay: 0.75s;
}

/* Animations */
@keyframes borderGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Removed overwhelming pulse animation */
}

/* FAQ Section */
.faq-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.03) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 102, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.faq-arrow {
    fill: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Lightbox */
#lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 50px rgba(255, 102, 0, 0.5);
}

.lightbox-info {
    margin-top: 1rem;
    color: var(--text-color);
}

.lightbox-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* View All Button */
.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.view-all-btn:hover::before {
    left: 100%;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

/* Back to Home Button (used for View All and Back buttons) */
.back-to-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    background: var(--accent-color);
    color: var(--text-color);
    box-shadow: 0 0 20px var(--accent-color);
}

/* Tooltip for View All Button - Removed as not needed for gallery area */

/* Achievement Timeline */
.achievement-timeline-container {
    margin-top: 4rem;
    padding: 3rem 0;
}

.achievement-timeline-container h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.achievement-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.achievement-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 3rem 0;
    width: 100%;
}

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

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

.timeline-content {
    position: relative;
    width: 50%;
    animation: slideInTimeline 0.6s ease-out;
}

.timeline-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
    border-color: var(--secondary-color);
}

.timeline-card h4 {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid var(--bg-color);
    z-index: 10;
}

.timeline-marker.legendary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.timeline-marker.major {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .achievement-timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        left: 0;
        width: 100%;
        text-align: left;
        padding-left: 4rem;
        padding-right: 1rem;
    }

    .timeline-marker {
        left: 30px;
    }
}

/* Team Pages Styling */
.team-page-section {
    padding: 8rem 5% 6rem;
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.02) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
}

.team-page-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="circuit" patternUnits="userSpaceOnUse" width="40" height="40"><circle cx="20" cy="20" r="1" fill="rgba(255,102,0,0.1)"/><line x1="0" y1="20" x2="40" y2="20" stroke="rgba(255,102,0,0.05)" stroke-width="0.5"/><line x1="20" y1="0" x2="20" y2="40" stroke="rgba(255,102,0,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23circuit)"/></svg>');
    opacity: 0.3;
    z-index: -1;
}

.team-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: var(--glass-bg);
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.team-hero h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 102, 0, 0.5);
}

.team-hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.team-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 120px;
}

.team-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(255, 102, 0, 0.3);
}

.team-stat-number {
    display: block;
    font-family: var(--header-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.team-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.team-members-container {
    max-width: 1400px;
    margin: 0 auto;
}

.member-category {
    margin-bottom: 4rem;
    background: var(--glass-bg);
    border: 1px solid rgba(255, 102, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.member-category:hover::before {
    transform: scaleX(1);
}

.member-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.2);
}

.member-category h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--primary-color);
    position: relative;
}

.member-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.member {
    background: rgba(255, 102, 0, 0.05);
    border: 2px solid rgba(255, 102, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.member::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.member:hover::before {
    left: 100%;
}

.member:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(255, 102, 0, 0.4);
    background: rgba(255, 102, 0, 0.1);
}

.member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 102, 0, 0.3);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(255, 102, 0, 0.3));
}

.member:hover img {
    border-color: var(--primary-color);
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 102, 0, 0.6));
}

.member h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    line-height: 1.3;
    word-wrap: break-word;
}

.member:hover h4 {
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--primary-color);
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.member-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.member-info p:first-child {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    word-wrap: break-word;
}

.member:hover .member-info p {
    color: var(--text-color);
}

.member-role {
    display: inline-block;
    background: var(--gradient-primary);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.skill-badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    border: 1px solid rgba(255, 102, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.member:hover .skill-badge {
    background: rgba(255, 102, 0, 0.2);
    border-color: var(--primary-color);
}

/* Department Head Special Styling */
.member-category:first-child .member {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 170, 0, 0.1) 100%);
    border: 2px solid rgba(255, 102, 0, 0.4);
    position: relative;
}

.member-category:first-child .member::after {
    content: '👑';
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    animation: crownGlow 2s ease-in-out infinite;
}

@keyframes crownGlow {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Contact Section */
.contact-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.02) 0%, rgba(0, 255, 255, 0.02) 100%);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 4rem;
}

/* Leadership Contact */
.contact-leadership h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
    border-color: var(--secondary-color);
}

.contact-avatar {
    flex-shrink: 0;
}

.contact-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.contact-info h4 {
    color: var(--success-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-role {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Lab Locations */
.lab-locations h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.lab-card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 255, 0, 0.2);
    border-color: var(--secondary-color);
}

.lab-info h4 {
    color: var(--success-color);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.lab-address {
    margin-bottom: 1.5rem;
}

.lab-address p:first-child {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lab-address p:last-child {
    color: var(--text-color);
    line-height: 1.6;
}

.lab-details {
    margin-bottom: 1.5rem;
}

.lab-details p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.lab-details strong {
    color: var(--primary-color);
}

.lab-map {
    margin-top: 1.5rem;
}

.lab-map iframe {
    filter: grayscale(20%) contrast(1.2);
    transition: filter 0.3s ease;
}

.lab-card:hover .lab-map iframe {
    filter: grayscale(0%) contrast(1);
}

/* Quick Contact */
.quick-contact {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 0, 0.2);
}

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

.quick-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.quick-item:hover {
    background: rgba(0, 255, 0, 0.1);
    transform: translateY(-2px);
}

.quick-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quick-icon-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 15px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 15px rgba(255, 102, 0, 0.4));
    transition: all 0.3s ease;
}

.quick-icon-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(255, 102, 0, 0.7));
}

.quick-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

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

/* Easter Egg Modal */
.easter-egg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    animation: easterEggFadeIn 0.5s ease-out;
}

.easter-egg-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 
        0 0 50px rgba(255, 102, 0, 0.5),
        inset 0 0 30px rgba(255, 102, 0, 0.1);
    animation: easterEggBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.easter-egg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 102, 0, 0.3);
    padding-bottom: 1rem;
}

.easter-egg-header h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    text-shadow: 0 0 15px var(--primary-color);
    margin: 0;
}

.easter-egg-close {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.easter-egg-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.easter-egg-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.robot-ascii {
    text-align: center;
}

.robot-ascii pre {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--primary-color);
    animation: robotGlow 2s ease-in-out infinite alternate;
}

.easter-egg-message {
    text-align: center;
}

.easter-egg-message p {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.easter-egg-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.easter-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 102, 0, 0.1);
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.easter-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

.easter-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

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

/* Easter Egg Animations */
@keyframes easterEggFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes easterEggBounce {
    0% { 
        transform: translate(-50%, -50%) scale(0.3) rotateY(180deg);
        opacity: 0;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.05) rotateY(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes robotGlow {
    0% { 
        text-shadow: 0 0 10px var(--primary-color);
        filter: brightness(1);
    }
    100% { 
        text-shadow: 0 0 20px var(--primary-color), 0 0 30px var(--secondary-color);
        filter: brightness(1.2);
    }
}

/* Easter Egg Responsive */
@media (max-width: 768px) {
    .easter-egg-content {
        width: 95%;
        padding: 1.5rem;
    }
    
    .easter-egg-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .robot-ascii pre {
        font-size: 0.6rem;
    }
    
    .easter-egg-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
}

/* Contact Responsive */
@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .labs-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .lab-map iframe {
        height: 150px;
    }
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 3rem 5% 2rem;
    text-align: center;
    border-top: 2px solid rgba(255, 102, 0, 0.3);
    backdrop-filter: blur(20px);
}

.main__socials {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.main__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 2px solid rgba(255, 102, 0, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.main__socials a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
    background: rgba(255, 102, 0, 0.1);
}

.main__socials svg {
    fill: var(--primary-color);
    transition: all 0.3s ease;
}

.main__socials a:hover svg {
    fill: var(--secondary-color);
    filter: drop-shadow(0 0 10px var(--primary-color));
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }

    .holographic-display {
        width: 350px;
        height: 480px;
    }
}

@media (max-width: 1200px) {
    nav {
        gap: 2rem;
    }

    .nav-menu {
        gap: 0.8rem;
    }

    .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid rgba(255, 102, 0, 0.2);
        margin: 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 200px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .holographic-display {
        width: 320px;
        height: 420px;
    }
}

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

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

    .hero-stats {
        gap: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
        min-width: 120px;
    }

    .holographic-display {
        width: 280px;
        height: 380px;
    }

    .hologram-content {
        padding: 1.5rem;
    }

    .data-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .achievement-stream {
        height: 100px;
    }
    
    .stream-header {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
        padding: 0.4rem;
    }

    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .team-page-section {
        padding: 6rem 3% 4rem;
    }

    .team-hero h1 {
        font-size: 2.5rem;
    }

    .team-hero p {
        font-size: 1.1rem;
    }

    .team-stats {
        gap: 1.5rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .member {
        padding: 1.5rem;
    }

    .member img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.8rem 3%;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .team-logo {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding: 0 3%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .holographic-display {
        width: 250px;
        height: 320px;
    }

    .hologram-content {
        padding: 1rem;
        gap: 1rem;
    }

    .achievement-stream {
        height: 80px;
    }
    
    .stream-header {
        font-size: 0.75rem;
        padding: 0.3rem;
        margin-bottom: 0.5rem;
    }
    
    .stream-item {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }

    .about-section,
    .teams-section,
    .achievements-section {
        padding: 4rem 3%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .team-hero h1 {
        font-size: 2rem;
    }

    .member-category {
        padding: 1.5rem;
    }

    .member {
        padding: 1rem;
    }

    .member img {
        width: 80px;
        height: 80px;
    }
}/
* Secret Easter Egg Hint Animation */
@keyframes secretHint {
    0%, 90%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 10px var(--primary-color));
    }
    95% { 
        transform: scale(1.02); 
        filter: drop-shadow(0 0 20px var(--primary-color));
    }
}

.logo {
    animation: secretHint 8s ease-in-out infinite;
}

/* Click indicator styles */
@keyframes slideUp {
    from { transform: translateX(-50%) translateY(0); opacity: 1; }
    to { transform: translateX(-50%) translateY(-20px); opacity: 0; }
}/* F
orce Robocon section to stay visible */
.robocon-year {
    opacity: 1 !important;
    transform: none !important;
}/* Simp
le Robocon Image Styles */
.robocon-grid img {
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 2px solid transparent !important;
}

.robocon-grid img:hover {
    transform: scale(1.05) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.3) !important;
}

/* METEOR SECTION */
.meteor-section {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #0b0f1a, #000);
  padding: 100px 20px;
  text-align: center;
  color: #00d4ff;
  overflow: hidden;
}

.meteor-section .section-header h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  text-shadow: 0 0 15px #00d4ff, 0 0 30px #005eff;
}

.meteor-section .section-header p {
  color: #a8e4ff;
  font-size: 1.2rem;
  margin-top: 10px;
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from { text-shadow: 0 0 10px #00d4ff; }
  to { text-shadow: 0 0 25px #005eff, 0 0 50px #00d4ff; }
}

.meteor-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(0, 0, 0, 0.9) 100%);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#meteor-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.meteor-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 50px rgba(65, 123, 205, 0.5);
}

.meteor-teaser h3 {
    font-size: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    animation: comingSoonPulse 2s ease-in-out infinite;
}

.meteor-teaser p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.6;
}

.meteor-cta {
    margin-top: 2rem;
}

.meteor-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: var(--dark-bg);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(65, 123, 205, 0.5);
}

.meteor-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(65, 123, 205, 0.8);
}

.meteor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 102, 0, 0.1), transparent);
    opacity: 0.5;
    pointer-events: none;
    animation: meteorGlow 4s ease-in-out infinite alternate;
}

/* Animations */
@keyframes comingSoonPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes meteorGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes meteorFall {
    0% {
        transform: translateY(-100vh) translateX(0) rotate(45deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(50vw) rotate(45deg);
        opacity: 0;
    }
}

/* Responsive for METEOR */
@media (max-width: 768px) {
    .meteor-teaser h3 {
        font-size: 2rem;
    }
    .meteor-teaser p {
        font-size: 1rem;
    }
    .meteor-content {
        padding: 1.5rem;
    }
}
/* FAQ Section Styles */
.faq-section {
    padding: 8rem 5% 6rem;
    background: var(--dark-bg);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 102, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 102, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 102, 0, 0.05);
}

.faq-question h3 {
    font-family: var(--header-font);
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
}

.faq-arrow {
    fill: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding-top: 1rem;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 6rem 5% 4rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}