        .glass-effect {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        .hide-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .hide-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        /* Page Transition Utility */
        .page-section {
            display: none;
            animation: fadeIn 0.4s ease-in-out;
        }
        .page-section.active {
            display: block;
        }
        /* Hero Video Overlay */
        .video-overlay {
            background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
        }
