/* Custom Styles for Imageicon Project Flow */

.work-flow-area {
    padding: 100px 0;
    background: #0a0a0a;
    overflow: hidden;
}

.work-flow-area .section-title {
    color: #ffffff;
    font-size: 60px;
    margin-bottom: 20px;
}

.work-flow-area .text {
    color: #999999;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* Swiper Flow Styles */
.work-flow-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.work-flow-slider .swiper-slide {
    width: auto;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.work-flow-slider .swiper-slide img {
    width: auto;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.8s ease;
    transform: scale(1.1);
}

.work-flow-slider .swiper-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1);
}

@media (max-width: 991px) {
    .work-flow-area .section-title {
        font-size: 40px;
    }
    .work-flow-slider .swiper-slide {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .work-flow-area {
        padding: 60px 0;
    }
    .work-flow-slider .swiper-slide {
        height: 250px;
    }
}
