/* Theme color */
:root {
    --swiper-theme-color: #ffd700; /* Bright Yellow */
}

/* Swiper container positioning */
.slider__active {
    position: relative;
}

/* Pagination container */
.custom-swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 83%;
    /* bottom: 70px; */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    gap: 10px;
}

/* Pagination bullet default */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ffd700;
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Active bullet = pill style */
.swiper-pagination-bullet-active {
    width: 40px;
    height: 12px;
    border-radius: 12px;
}

/* Arrows style */
.custom-swiper-button {
    color: #ffd700;
    font-size: 14px;
    top: 80%;
    /* bottom: 80px; */
    z-index: 11;
    background: none !important;
}

/* Position left & right arrows near pagination */
.swiper-button-prev {
    left: calc(50% - 100px); /* Adjust for spacing */
}

.swiper-button-next {
    right: calc(50% - 100px); /* Adjust for spacing */
}
.slider__single {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.slider__area {
    height: 80vh !important;
    overflow: hidden;
}
.slider__area .swiper-container {
    height: 100%;
}
.slider__area .swiper-container .slider__content {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}
.slider__bg {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: none;
}
