.marquee-wrapper-horizontal {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
}

.marquee-row {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: auto;
}

.marquee-track-horizontal {
    display: flex;
    width: max-content;
    gap: 20px;
}

.marquee-item-horizontal {
    flex: 0 0 auto;
    min-width: 100px;
    transition: transform 0.3s ease-in-out;
}
.marquee-track-horizontal.offset-half-card {
    transform: translateX(-110px);
}

@keyframes marquee-left-offset {
    0% {
        transform: translateX(-110px);
    }
    100% {
        transform: translateX(calc(-50% - 110px));
    }
}
@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.marquee-track-horizontal:hover {
    animation-play-state: paused !important;
}

.marquee-item-horizontal .rounded-pill {
    border-radius: 1rem !important;
}
@media (max-width: 768px) {
    .marquee-row {
        height: 65px;
    }
}

.popular-jobs-fixed-card .popular-jobs-slider-img img {
    height: auto;
    width: 130px;
    max-width: 100%;
    display: block;
    object-position: center;
    margin: 0 auto;
    border-radius: 35px;
    background: #f3f3f3;
    padding: 5px;
    overflow: hidden;
}


.popular-jobs-fixed-card.border-primary:hover {
    background: linear-gradient(135deg, #e3e7ee, #c1d1e9);
}

.popular-jobs-fixed-card.border-success:hover {
    background: linear-gradient(135deg, #ddece6, #b8e2cf); 
}

.popular-jobs-fixed-card.border-warning:hover {
    background: linear-gradient(135deg, #f0ece0, #f5de9b);
}
.popular-jobs-fixed-card i {
    transition: transform 0.3s ease-in-out;
}

.popular-jobs-fixed-card:hover i {
    transform: translateX(4px);
}