.neural-network-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
    overflow: hidden;
}

.neural-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Optional: For hero section */
.csa-hero .neural-network-container {
    z-index: 0;
}

/* Animation effects */
@keyframes neural-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.neural-node.pulse {
    animation: neural-pulse 2s ease-in-out infinite;
}

.neural-node.float {
    animation: neural-float 4s ease-in-out infinite;
}