.swiper-container {
    width: 100%;
    /* height: 300px; */
    position: relative;
    /* background: #ddd; */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    /* background: #ccc; */
}

/* Override Swiper's navigation size */
:root {
    --swiper-navigation-size: 0px !important;
}

/* Center controls and pagination */
.swiper-controls-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between each item */
}

.swiper-autoplay-button,
.swiper-button-prev,
.swiper-button-next {
    background: none;
    border: none;
    color: black;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center; /* Ensures the icons are centered */
}

.swiper-autoplay-button:hover,
.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #007bff; /* Hover color */
    background: none;
    /* border: dashed; */
}

/* Pagination Styling */
.swiper-pagination {
    display: flex;
    gap: 8px;
    align-items: center; /* Align bullets with icons */
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: black;
    border-radius: 50%;
    opacity: 1; /* Fully visible */
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: #007bff; /* Highlight active bullet */
}

/* Remove default Swiper navigation styles */
.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
}

/* Prevent Swiper's JS from applying default navigation styles */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination {
    position: static !important; /* Override absolute positioning */
}

.carousel-caption{
    position: absolute;
    right: none;
    left: 10%;
    bottom: 5rem;
    padding-top: 0rem;
    padding-bottom: 1.25rem;

}