/* Vanta.js Globe Effect Styles */
.vanta-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    overflow: hidden;
}

/* Ensure content remains visible over the effect */
.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Adjust opacity for better text readability */
.vanta-canvas {
    opacity: 0.8 !important;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .vanta-canvas {
        opacity: 0.6 !important;
    }
}