.wpmrb-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpmrb-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.wpmrb-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.wpmrb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.wpmrb-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

/* ✅ Mobile optimization */
@media (max-width: 768px) {
    .wpmrb-video {
        display: none;
    }

    .wpmrb-section {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}