.consultum-creative-slider-container {
    width: 100%;
    overflow: hidden !important;
    padding: 60px 0;
    position: relative;
    background: transparent;
    margin: 0 auto;
}

.creative-slider-title-wrapper {
    text-align: center;
    transition: transform 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    transform: scale(0.8);
    opacity: 0.7;
}

.swiper-slide-active .creative-slider-title-wrapper {
    transform: scale(1);
    opacity: 1;
}

.creative-slide-title {
    margin: 0;
    padding: 0;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.creative-slide-subtitle {
    display: block;
    margin-top: 8px;
    transition: opacity 0.3s ease;
}

.consultum-creative-slider-container .swiper-slide {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
    transform: scale(0.7);
    opacity: 1;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform, opacity;
}

.consultum-creative-slider-container .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
}

.creative-slide-image-wrapper {
    width: 100%;
    overflow: hidden;
    background: #f0f0f0;
}

.creative-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.consultum-creative-slider-container .swiper-scrollbar {
    margin-top: 30px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    width: calc(100% - 100px);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 10px;
}

.consultum-creative-slider-container .swiper-scrollbar-drag {
    background: #8b5e3c;
}

/* Responsiveness for Mobile */
@media (max-width: 767px) {
    .consultum-creative-slider-container .swiper-scrollbar {
        width: calc(100% - 60px);
        left: 5px;
    }
}