:root {
    --neon-cyan: #00f0ff;
    --neon-purple: #7000ff;
    --deep-bg: #050b14;
    --glass: rgba(15, 23, 42, 0.6);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--deep-bg);
    color: #e2e8f0;
    overflow-x: hidden;
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Orbitron', sans-serif;
}

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

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 4px;
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(17, 25, 40, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.125);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-nav {
    background: rgba(5, 11, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

/* Neon Glow Effects */
.neon-text-cyan {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
}

.neon-border-cyan:hover {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    border-color: var(--neon-cyan);
}

/* Chart Container */
.chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 300px;
    max-height: 400px;
}

@media (min-width: 768px) {
    .chart-container {
        height: 350px;
    }
}

/* Particle Canvas Background */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

/* --- About Us Redesign --- */
.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    transition: all 0.1s ease-out;
    background-color: rgba(255, 255, 255, 0.05);
    /* Placeholder bg */
}

.team-card:hover .team-avatar {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    transform: scale(1.05);
}

.skill-card {
    transition: all 0.1s ease-out;
    border-left: 2px solid transparent;
}

.skill-card:hover {
    background: rgba(17, 25, 40, 0.9);
    border-left-color: var(--neon-purple);
    transform: translateX(10px);
}

/* Utility for Physics Elements */
.physics-element {
    cursor: grab;
    transition: transform 0.1s;
}

.physics-element:active {
    cursor: grabbing;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

/* Holographic Service Cards */
.holo-card {
    height: 100%;
    position: relative;
    /* Fixes background bleed issue */
}

.holo-content {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.holo-card:hover .holo-content {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.spin-slow {
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll Animation Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.delay-600 {
    transition-delay: 600ms;
}

.delay-700 {
    transition-delay: 700ms;
}

.delay-800 {
    transition-delay: 800ms;
}