/* 3D Animation Styles for ProSchool360 SAAS Homepage */
#proschool-3d-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

#proschool-3d-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Ensure hero content stays above 3D animation */
.hero-area .container {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #proschool-3d-container {
        display: none;
    }
}