.vxr_hero51_main_box {
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    background: #0a0a0a;
}

.vxr_hero51_slider .owl-stage-outer,
.vxr_hero51_slider .owl-stage,
.vxr_hero51_slider .owl-item {
    height: 100%;
}

.vxr_hero51_slide {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.vxr_hero51_slide_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vxr_hero51_slide_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transform: scale(1.05);
    transition: transform 8s ease;
}

.vxr_hero51_slider .owl-item.active .vxr_hero51_slide_bg img {
    transform: scale(1);
}

.vxr_hero51_slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 100%);
    z-index: 2;
}

.vxr_hero51_slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(10,10,10,0.65) 0%, transparent 100%);
    z-index: 2;
}

.vxr_hero51_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 3;
}

.vxr_hero51_content {
    max-width: 650px;
    padding: 40px 0;
}

.vxr_hero51_badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(227,30,36,0.15);
    border: 1px solid rgba(227,30,36,0.3);
    border-radius: 30px;
    color: #e31e24;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.vxr_hero51_slider .owl-item.active .vxr_hero51_badge {
    opacity: 1;
    transform: translateY(0);
}

.vxr_hero51_title {
    font-family: 'Manrope', sans-serif;
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.35s;
}

.vxr_hero51_slider .owl-item.active .vxr_hero51_title {
    opacity: 1;
    transform: translateY(0);
}

.vxr_hero51_text {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin: 0 0 32px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}

.vxr_hero51_slider .owl-item.active .vxr_hero51_text {
    opacity: 1;
    transform: translateY(0);
}

.vxr_hero51_buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.65s;
}

.vxr_hero51_slider .owl-item.active .vxr_hero51_buttons {
    opacity: 1;
    transform: translateY(0);
}

.vxr_hero51_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 34px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.vxr_hero51_btn_primary {
    background: #e31e24;
    color: #fff;
}

.vxr_hero51_btn_primary:hover {
    background: #c41a1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227,30,36,0.4);
}

.vxr_hero51_btn_outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.vxr_hero51_btn_outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.vxr_hero51_stats {
    display: flex;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.8s;
}

.vxr_hero51_slider .owl-item.active .vxr_hero51_stats {
    opacity: 1;
    transform: translateY(0);
}

.vxr_hero51_stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vxr_hero51_stat_num {
    font-size: 22px;
    font-weight: 800;
    color: #e31e24;
}

.vxr_hero51_stat_label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

.vxr_hero51_nav_arrows {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
}

.vxr_hero51_prev,
.vxr_hero51_next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(8px);
}

.vxr_hero51_prev:hover,
.vxr_hero51_next:hover {
    background: #e31e24;
    border-color: #e31e24;
    transform: scale(1.1);
}

.vxr_hero51_scroll_hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.vxr_hero51_scroll_hint span {
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    position: relative;
}

.vxr_hero51_scroll_hint span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #e31e24;
    border-radius: 4px;
    animation: vxr_hero51_scrollAnim 1.8s ease-in-out infinite;
}

@keyframes vxr_hero51_scrollAnim {
    0%, 100% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 22px; }
}

.vxr_hero51_slider .owl-dots {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 8px;
}

.vxr_hero51_slider .owl-dot span {
    display: block;
    width: 12px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.vxr_hero51_slider .owl-dot.active span {
    width: 30px;
    background: #e31e24;
}

@media(max-width: 1024px) {
    .vxr_hero51_slide {
        min-height: 75vh;
    }
    .vxr_hero51_title {
        font-size: 42px;
    }
    .vxr_hero51_nav_arrows {
        display: none;
    }
}

@media(max-width: 768px) {
    .vxr_hero51_slide {
        min-height: 85vh;
        align-items: flex-end;
        padding-bottom: 80px;
    }
    .vxr_hero51_title {
        font-size: 34px;
    }
    .vxr_hero51_text {
        font-size: 16px;
    }
    .vxr_hero51_btn {
        padding: 12px 26px;
        font-size: 14px;
    }
    .vxr_hero51_stats {
        gap: 24px;
    }
    .vxr_hero51_stat_num {
        font-size: 18px;
    }
    .vxr_hero51_scroll_hint {
        bottom: 16px;
    }
    .vxr_hero51_slider .owl-dots {
        right: 20px;
        bottom: 20px;
    }
}