/* ============================================================
   Slider Component — IndexSlider/Default.cshtml
   ============================================================ */

.hero-video-wrap {
    position: relative;
}

.hero-video {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    background: #383E42;
    margin-top: 100px;
}

.hero-mute-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    transition: background 0.3s;
}

.hero-mute-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.mute-icon {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 991px) {
    .hero-video { height: 400px; }
}

@media (max-width: 768px) {
    .hero-video { height: 300px; }
}

@media (max-width: 480px) {
    .hero-video { height: 220px; margin-top: 70px; }
}
