.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: block;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.marquee-content {
    display: flex;
    gap: 3rem; /* Tighter gap for stable loop sizing */
    align-items: center;
    width: max-content;
    flex-shrink: 0;
    animation: marquee-scroll 40s linear infinite; /* Smooth slower pace */
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Crucial: Translate exactly half the width of the duplicated content */
    }
}

/* Recruiter Logo Styles */
.marquee-logo-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    background: #ffffff;
    border: 1px solid rgba(10, 31, 92, 0.06);
    border-radius: 16px;
    box-shadow: 0 4px 12px -3px rgba(10, 31, 92, 0.03);
    transition: all 300ms ease;
    cursor: default;
    height: 75px;
    min-width: 150px;
}
.marquee-logo-card img {
    height: 42px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: none;
    transition: transform 300ms ease;
}
.marquee-logo-card:hover {
    border-color: rgba(243, 111, 33, 0.4);
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(243, 111, 33, 0.18);
    cursor: pointer;
}
.marquee-logo-card:hover img {
    transform: scale(1.08);
}

/* Stat strip modifications to balance styling */
.stats-number-highlight {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0A1F5C, #1e3c8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.orange-theme-text {
    background: linear-gradient(135deg, #F36F21, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* Play Icon Pulse Animation for Video Cards */
@keyframes play-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(243, 111, 33, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(243, 111, 33, 0);
    }
}

.play-btn-pulse {
    animation: play-pulse 2s infinite ease-in-out;
}

