#intro {
    position: relative !important;
    background-color: #050505 !important;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

/* Force the canvas to the background */
#neural-canvas {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important; /* Mesh on layer 1 */
    pointer-events: none;
    display: block !important;
}

/* Force the text and buttons to the front */
.intro-container {
    position: relative !important;
    z-index: 5 !important; /* Content on layer 5 */
    background: transparent !important;
}

/* Make the background image very dark so the mesh shows */
.carousel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0 !important; /* Image on layer 0 */
}

.carousel-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3 !important; /* CRITICAL: If this is 1.0, you won't see the mesh */
}

/* Remove any Bootstrap default backgrounds */
.carousel-item, .carousel-inner {
    background: transparent !important;
}