/* ── Controls Overlay ── */
.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    opacity: 0;
    transition: opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.video-wrapper:hover .custom-video-controls,
.zoom-modal-box:hover .custom-video-controls {
    opacity: 1;
}

/* ── Zoom IN button (top right) ── */
.zoom-in-btn,
.zoom-out-btn {
    position: absolute !important;
    top: -25px;
    right: 10px;
    width: 36px !important;
    height: 36px !important;
    background: #a51d30;
    border-color: transparent !important;
    color: #fff !important;
}

.zoom-in-btn:hover,
.zoom-out-btn:hover {
    background: #f5c400 !important;
    transform: scale(1.1);
}

.zoom-in-btn svg,
.zoom-out-btn svg {
    stroke: #fff !important;
}

/* ── Bottom Controls Bar ── */
.ctrl-bar {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Control Buttons ── */
.ctrl-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s, transform 0.15s;
    padding: 0;
}

.ctrl-btn svg {
    width: 15px;
    height: 15px;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ── Progress Bar ── */
.ctrl-progress-wrap {
    flex: 1;
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
}

.ctrl-progress {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    margin: 0;
}

.ctrl-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #f5c400;
    border-radius: 2px;
    width: 0%;
    pointer-events: none;
    transition: width 0.1s linear;
}

/* ── Time ── */
.ctrl-time {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    min-width: 32px;
    font-family: monospace;
}

/* ══ ZOOM MODAL ══ */
.zoom-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    backdrop-filter: blur(4px);
}

.zoom-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.zoom-modal-box {
    width: 80%;
    /* max-width: 860px; */
    background: #111;
    border-radius: 14px;
    border: 1px solid rgba(245, 196, 0, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.92);
    transition: transform 0.25s ease;
    position: relative;
    overflow: hidden;
}

.zoom-modal-overlay.active .zoom-modal-box {
    transform: scale(1);
}


.zoom-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #f5c400;
}

.zoom-close-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    padding: 0;
}

.zoom-close-btn svg {
    width: 14px;
    height: 14px;
}

.zoom-close-btn:hover {
    background: rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

/* Esc key hint */
.zoom-modal-overlay.active::after {
    content: 'Press ESC to close';
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}





/* Section */
.mv-section {
    padding: 60px 20px;
    background: #fff;
    font-family: sans-serif;
}

/* Container */
.mv-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* LEFT */
.mv-left {
    flex: 1;
}

.mv-left h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
}

/* Box */
.mv-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

/* Icon */
.mv-icon {
    min-width: 60px;
    height: 60px;
    background: #b21f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Content */
.mv-content h3 {
    margin: 0;
    font-size: 20px;
}

.mv-content p {
    margin-top: 8px;
    color: #555;
    line-height: 1.7;
}

/* Divider */
hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

/* RIGHT */
.mv-right {
    flex: 1;
    position: relative;
}

.mv-right img {
    width: 100%;
    border-radius: 8px;
}

/* Quote overlay */
.mv-quote {
    position: absolute;
    bottom: 20px;
    /* right: -20px; */
    right: 0px;
    /* background: rgba(0, 0, 0, 0.6); */
    background: #fff;
    color: #000;
    padding: 15px;
    font-size: 14px;
    border-radius: 6px;
    width: 400px;
    /* transform: translateX(100px); */
}