.track-package-section {
    position: relative;
    padding: 120px 0px 90px;
    background-color: #2a2c30;
    background-image: url(../images/icons/cta-bg-1-1.png);
    color: #ffffff;
    z-index: 1;
}

.track-package-section.alternate {
    background: var(--thm-base);
    background-image: url(../images/background/cta-2-bg-1-1.png);
}

.track-package-section .inner {
    position: relative;
    display: block;
}

.track-package-section h2 {
    position: relative;
    float: left;
    display: block;
    font-size: 70px;
    line-height: 0.85em;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 400;
    margin: 0px 0px 25px;
    z-index: 1;
}

.track-package-section.alternate h2 {
    color: var(--thm-black);
}

.track-package-section .link-box {
    position: relative;
    float: right;
    z-index: 1;
}


.body-dark .track-package-section h2 {
    color: #ffffff;
}

.body-dark .track-package-section {
    background-color: #222429;
    background-image: url(../images/background/we-do-section-bg-dark.jpg);
}

.btn-track {
    padding: 24px 50px 16px !important;
}



.tracking-container {
    margin-top: 50px;
}

.delivery-icon {
    font-size: 30px;
    color: #f84d21;
    margin-bottom: 10px;
}

.tracking-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.tracking-step {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.tracking-step .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-step .icon {
    font-size: 18px;
    color: white;
}

.tracking-step.completed .circle,
.tracking-step.active .circle {
    background-color: #f84d21;
}

.tracking-step .label {
    margin-top: 10px;
    font-size: 14px;
}

/* Line between steps for larger screens */
@media (min-width: 576px) {
    .tracking-steps {
        flex-wrap: nowrap;
    }

    .tracking-step {
        flex: 1;
        margin-bottom: 0;
    }

    .tracking-steps::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        height: 4px;
        background: #e0e0e0;
        z-index: 0;
    }

    .tracking-step::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 50%;
        height: 4px;
        width: 100%;
        background-color: #f84d21;
        z-index: -1;
        transform: translateX(-50%);
    }

    .tracking-step:not(:first-child)::before {
        left: 0;
        width: 100%;
    }

    .tracking-step:not(.completed):not(.active)::before {
        background-color: #e0e0e0;
    }
}
