/**
 * Page Transition Panels
 */

.page-transition-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    will-change: transform;
    z-index: -1;
}

.page-transition-panel-1 {
    background-color: #508cc8; /* Strive Blue */
    z-index: 9998;
}

.page-transition-panel-2 {
    background-color: #14598C; /* Strive Navy */
    z-index: 9999;
}

/* Ensure smooth performance */
.page-transition-panel {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

