
.carousel-control-prev, .carousel-control-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 5%;

}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: transparent;
    border-radius: 0;
    width: 40px;
    height: 40px;
}

.slide-box {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
}

.slide-content {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    border-radius: 0px;
    text-align: center;
    width: 90%; /* Ensure it stays within the slide */
    max-width: 90%;
}

/* Fix overlapping: Ensure each slide contains its own content */
.carousel-item .slide-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Positioning Classes */
.top-left {
    top: 10px;
    left: 10px;
}

.top-right {
    top: 10px;
    right: 10px;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}

.middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bottom-center {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}
