.parallax-video-container {
    position: relative;
    width: 100vw;
    height: 51vh;
    overflow: hidden;
}
.parallax-video-container video {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 60vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.9);
    pointer-events: none;
}
.parallax-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    /* Start the content off-screen and invisible */
    opacity: 0;
    transform: translateY(100%);
    animation: slideUpFadeIn 1.5s cubic-bezier(.61,-0.17,.43,1.31) 0.3s forwards;
}
@keyframes slideUpFadeIn {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    60% {
        opacity: 1;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.after-parallax {
    min-height: 30vh;
    background: #f6f6f6;
    padding: 60px 0;
}
@media (max-width: 767px) {
    .parallax-video-container,
    .parallax-video-container video { height: 32vh; }
    .parallax-content h1 { font-size: 1.5rem; }
    .parallax-content p { font-size: 1rem; }
}