.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li .dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-top: 4px;
}

/* ================================================================
       COMPANIES STRIP
    ================================================================ */
.companies-track {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideLeft 20s linear infinite;
    width: max-content;
}

.companies-track:hover {
    animation-play-state: paused;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.companies-track .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: var(--white);
    box-shadow: var(--shadow);
}

/* ================================================================
       SECTION 2 — JOB ROLES
    ================================================================ */

.job-roles-section .role-cards {
    padding-bottom: 30px;
}

.job-roles-section .role-cards .col-lg-6:nth-child(even) {
    position: relative;
    top: 30px;
}

.role-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--rounded-lg);
    padding: var(--space-4);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-md);
}

.role-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.role-card-icon {
    margin-bottom: var(--space-4);
}

.role-card-icon i {
    font-size: var(--text-4xl);
    display: flex;
    justify-content: center;
    background-image: var(--bg-gradient);
    background-clip: text;
    color: transparent !important;
}

@media (max-width: 991px) {
    .job-roles-section .role-cards {
        padding-bottom: 0;
    }

    .job-roles-section .role-cards .col-lg-6:nth-child(even) {
        top: 0px;
    }
}

/* ================================================================
       SECTION 3 — HOW IT WORKS
    ================================================================ */
.how_work_step {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto !important;
    padding: 0;
}

.how_work_step li {
    display: flex;
    padding: 40px 0;
    position: relative;
}

.how_work_step li:last-of-type {
    padding-bottom: 0;
}

.how_work_step li:after {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 50px;
    left: calc(50% - 1px);
    border-left: 2px dashed var(--gray-300);
    z-index: -1;
}

.how_work_step li:last-of-type:after {
    display: none;
}

.how_work_step li:nth-child(odd) .step_img,
.how_work_step li:nth-child(even) .step_content {
    text-align: right;
}

.step_img,
.step_content {
    max-width: calc(50% - 30px);
    width: 100%;
    padding: 0 15px;
    margin: 0 15px;
}

.step_cont span {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    display: block;
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 100px;
}

@media (max-width: 767px) {
    .how_work_step li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-left: 50px;
        padding-top: 20px;
        padding-bottom: 20px
    }

    .how_work_step li:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .how_work_step li:after {
        left: 20px;
        top: 40px
    }

    .how_work_step li:nth-child(even) .step_cont {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .step_img,
    .step_content {
        max-width: 100%;
        text-align: left !important;
        padding: 0;
        margin: 0
    }

    .step_cont {
        margin-left: -45px;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .step_cont span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .step_img {
        margin-bottom: 15px;
        margin-top: -30px
    }

    .step_img img {
        max-width: 100px;
        max-height: 100px
    }
}