/* Custom Carousel Styles */
.clean-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.clean-carousel .carousel-inner {
    position: relative;
    width: 100%;
    height: 500px;
}

.clean-carousel .carousel-item {
    position: relative;
    width: 100%;
    height: 500px;
    background: transparent;
}

.clean-carousel .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.clean-carousel .carousel-caption {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
    text-align: left;
    background: transparent;
    padding: 0;
    bottom: auto;
    right: auto;
}

.clean-carousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.clean-carousel .carousel-caption p {
    font-size: 1.25rem;
    color: #fff;
    margin: 0 0 1.5rem;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Remove any background or filter effects */
.clean-carousel::before,
.clean-carousel::after,
.clean-carousel *::before,
.clean-carousel *::after {
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}
