/* Banner Container */
.banner {
    position: relative;
    width: 100%;
    float: left;
    overflow: hidden;
}

/* Slider Container */
.callbacks_container {
    position: relative;
    width: 100%;
    float: left;
}

/* Slider List */
.rslides,
.callbacks {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

.rslides li,
.callbacks li {
    position: relative;
    display: block;
    float: left;
    width: 100%;
}

.rslides img,
.callbacks img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    z-index: 1;
}

/* Caption (Optional if using text overlay) */
.callbacks .caption {
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    padding: 10px 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    z-index: 2;
}

/* Navigation Arrows */
.callbacks_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: transparent url("../images/arrows.png") no-repeat;
    opacity: 0.6;
    text-indent: -9999px;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.callbacks_nav:hover {
    opacity: 0.3;
}

.callbacks_nav.prev {
    left: 2%;
    background-position: left top;
}

.callbacks_nav.next {
    right: 2%;
    background-position: right top;
}

/* Pagination Dots */
.callbacks_tabs {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    z-index: 999;
    display: flex;
    gap: 10px;
}

.callbacks_tabs li {
    display: inline-block;
}

.callbacks_tabs a {
    visibility: hidden;
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
}

.callbacks_tabs a:after {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    top: 0;
    left: 0;
    visibility: visible;
    transition: background 0.3s ease, border 0.3s ease;
}

.callbacks_here a:after {
    background: #000;
    border-color: #000;
}

/* Banner Arrows Decoration */
.arrows {
    position: relative;
    color: #554bb9;
    font-size: 2em;
    text-align: center;
}

.arrows:before,
.arrows:after {
    content: '';
    position: absolute;
    bottom: 48%;
    width: 22%;
    height: 3px;
    background: #fff;
}

.arrows:before {
    left: 22.5%;
}

.arrows:after {
    right: 22.5%;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .callbacks_nav {
        top: 45%;
        width: 40px;
        height: 40px;
        background-size: contain;
    }

    .callbacks .caption {
        font-size: 16px;
        padding: 5px 10px;
    }

    .callbacks_tabs {
        bottom: 3%;
    }

    .arrows {
        font-size: 1.5em;
    }

    .callbacks_tabs {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    margin: 0;
    z-index: 999;
    display: flex;
    gap: 10px;
}
}

@media screen and (max-width: 480px) {
    .callbacks_nav {
        top: 40%;
    }

    .callbacks_tabs {
        bottom: 2%;
    }

    .callbacks_tabs a:after {
        width: 10px;
        height: 10px;
    }
}
