/**
 * vex_slider_front.css - Slider Frontend Styles
 */
.dynamic-module-inline {
    margin: 0 !important;
}

/* ===== WRAPPER ===== */
.vex-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slider-type-boxed {
    padding: 0;
}

.slider-type-full-width .container-fluid {
    padding: 0;
}

/* ===== SWIPER BASE ===== */
.vex-main-slider {
    width: 100%;
    height: 300px;
    position: relative;
}

/* ===== SLIDE ===== */
.vex-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.vex-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== OVERLAY ===== */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgb(0 0 0 / 82%), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* ===== CONTENT ===== */
.slide-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
}

.slide-caption {
    max-width: 950px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #fff;
}

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #fff;
}

.slide-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.slide-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== NAVIGATION ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #b9b27457 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* ===== PAGINATION ===== */
.swiper-pagination {
    bottom: 20px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #000000;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #c0af6e !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  

    .slide-title {
        font-size: 32px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slide-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}