.projects-section {
    background: #fff;
    padding: 70px 0 35px;
    overflow: hidden;
}

.projects-header {
    margin-bottom: 28px;
}

.projects-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b42b3b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.projects-eyebrow i {
    font-size: 12px;
}

.projects-title {
    margin: 0;
    color: #111;
    font-size: 35px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.featured-project {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 0;
}

.featured-image-wrap {
    width: 280px;
}

.featured-image {
    width: 100%;
    height: 205px;
    object-fit: cover;
    display: block;
}
 

.slider-controls {
    display: flex;
    gap: 16px;
    padding-top: 25px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #555;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.slider-btn:hover {
    background: #f7f7f7;
    color: #111;
}

.projects-track-wrap {
    position: relative;
    margin-top: 30px;
    overflow: hidden;
}

.projects-track {
    display: flex;
    gap: 5px;
    width: max-content;
    transition: transform .45s ease;
}

.project-card {
    width: 100%;
    padding: 0 10px;
    margin: 0;
    overflow: hidden;
} 

.project-card:hover .project-image {
    transform: scale(1.01);
    filter: brightness(0.8);
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 230px;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-title {
    margin: 7px auto 0;
    width: fit-content;
    min-width: 170px;
    max-width: 95%;
    padding: 5px 18px 7px;
    border-radius: 50% / 65%;
    background: #dce2fb;
    color: #fff;
    font-size: 21px;
    line-height: 1;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

@media (max-width: 1199.98px) {
    .featured-project {
        justify-content: flex-start;
    }

    .featured-image-wrap {
        width: 235px;
    }

    .featured-image {
        height: 175px;
    }

    .project-card {
        width: 235px;
        flex-basis: 235px;
    }

    .project-image {
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .projects-section {
        padding: 55px 0 30px;
    }

    .featured-project {
        margin-top: 25px;
        justify-content: flex-start;
    }

    .projects-track-wrap {
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .projects-section {
        padding-top: 40px;
    }

    .projects-title {
        font-size: 30px;
    }

    .featured-project {
        gap: 8px;
    }

    .featured-image-wrap {
        width: 190px;
    }

    .featured-image {
        height: 135px;
    }

    .project-card {
        width: 82vw;
        flex-basis: 82vw;
    }

    .project-image {
        height: 220px;
    }

    .project-title {
        font-size: 18px;
    }
} 

.projects-carousel .owl-item {
    padding: 0 1px;
    margin-right: 0 !important;
} 
 
        .workflow-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        /* Heading */

        .workflow-subtitle {
            display: inline-block;
            color: #c40000;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .workflow-main-title {
            font-size: 42px;
            font-weight: 700;
            color: #c40000;
            margin-bottom: 15px;
        }

        .workflow-intro {
            max-width: 700px;
            margin: auto;
            color: #666;
            font-size: 16px;
            line-height: 1.7;
        }


        /* Timeline */

        .workflow-timeline {
            position: relative;
            padding-left: 70px;
        }

        .workflow-timeline::before {
            content: "";
            position: absolute;
            left: 25px;
            top: 15px;
            bottom: 15px;
            width: 2px;
            background: #d9d9d9;
        }


        /* Step */

        .workflow-step {
            position: relative;
            display: flex;
            gap: 25px;
            margin-bottom: 32px;
        }

        .workflow-number {
            position: absolute;
            left: -70px;
            top: 0;

            width: 52px;
            height: 52px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #c40000;
            color: #fff;

            border-radius: 50%;

            font-size: 15px;
            font-weight: 700;

            box-shadow: 0 5px 15px rgba(196, 0, 0, 0.20);
            z-index: 2;
        }


        /* Content Card */

        .workflow-content {
            background: #fff;
            padding: 22px 25px;

            border-radius: 8px;

            border-left: 4px solid #c40000;

            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);

            transition: all 0.3s ease;
        }

        .workflow-content:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
        }

        .workflow-content h4 {
            font-size: 19px;
            font-weight: 700;
            color: #111;
            margin-bottom: 8px;
        }

        .workflow-content p {
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
            color: #555;
        }


        /* Image */

        .workflow-image-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;

            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .workflow-image-card img {
            width: 100%;
            height: 650px;
            object-fit: cover;
            display: block;

            transition: transform 0.5s ease;
        }

        .workflow-image-card:hover img {
            transform: scale(1.04);
        }


        /* Image overlay */

        .workflow-image-overlay {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;

            padding: 30px 25px;

            color: #fff;

            background: linear-gradient(
                to top,
                rgba(0, 0, 0, 0.75),
                rgba(0, 0, 0, 0)
            );
        }

        .workflow-image-overlay h4 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .workflow-image-overlay p {
            margin: 0;
            font-size: 14px;
            line-height: 1.6;
        }  