/* Fade animation classes */
.ps_fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 1s;
    transition-timing-function: ease-in-out;
}
.ps_fade .carousel-inner .active {
    opacity: 1;
    z-index: 2;
}

/* Carousel arrow positions */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    width: 4rem;
    height: 4rem;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.6);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    width: 1.5rem;
    height: 1.5rem;
}

/* Carousel indicators */
.carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin: 0;
    list-style: none;
}
.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.carousel-indicators .active {
    background-color: #fff;
    transform: scale(1.2);
}

/* .item image handling */
#slider-1 .item,
#slider-1 .item img {
    background: transparent !important;
    border-radius: 2rem;
}
#slider-1 .item img {
    width: 100%;
    height: 30rem !important;
    opacity: 1 !important;
}

/* Slide content wrapper */
.fw_al_003_slide {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
}
.fw_al_003_slide_right {
    left: auto;
    right: 5%;
}
