#node-web-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.hero {
    position: relative;
    background-color: transparent;
}

.hero-container {
    position: relative;
    z-index: 1;
}

/* Ensure content sections have proper backgrounds */
.projects,
.contact {
    position: relative;
    z-index: 1;
}

/* Optional: Add a subtle overlay to improve readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 0;
}
