/* About Carousel Block CSS */
.about-carousel-block {
    position: relative;
    overflow: hidden;
}

.about-carousel-subheadline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-carousel-headline {
    color: var(--primary-color);
    font-size: 2.2rem;
    line-height: 1.3;
}

.about-carousel-badges {
    margin-top: 2rem;
}

.stat-item {
    background: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-carousel-swiper {
    width: 100%;
    padding-bottom: 2.5rem !important;
}

.slide-card {
    position: relative;
    height: 380px;
    background: #eaeaea;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-card:hover {
    transform: translateY(-5px);
}

.slide-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    color: #fff;
    padding: 1.5rem 1rem;
}

.slide-title-overlay h4 {
    font-size: 1.25rem;
    color: #fff;
}

/* Swiper Pagination Styling */
.about-carousel-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}