.carousel {
    position: relative;
    height: 100%;
    border-radius: 0.9375rem;
    overflow: hidden;
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    display: none;
}

.custom-pagination-overlay {
    position: absolute;
    bottom: 1.875rem;
    right: 1.875rem;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-bullet {
    height: 0.25rem;
    border-radius: 0.125rem;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.4s ease;
}

.pagination-bullet:nth-child(1) {
    width: 1.875rem;
}

.pagination-bullet:nth-child(2) {
    width: 1.5625rem;
}

.pagination-bullet:nth-child(3) {
    width: 1.25rem;
}

.pagination-bullet:nth-child(4) {
    width: 0.9375rem;
}

.pagination-bullet:nth-child(5) {
    width: 0.625rem;
}

.pagination-bullet.active {
    background: #FFD700;
    box-shadow: 0 0 0.625rem rgba(255, 215, 0, 0.6);
}

.pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}