#home { position: relative; }

/* ── Bar container ── */
#jobs-marquee-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100% !important;
    z-index: 999;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.90);
    border-top: 2px solid #F17E01;
    height: 52px !important;
    overflow: hidden;
}

/* ── Edge fade masks ── */
#jobs-marquee-bar::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.9));
    z-index: 2;
    pointer-events: none;
}

/* ── NOW HIRING label ── */
.marquee-label {
    flex-shrink: 0;
    background: #F17E01;
    color: #000;
    font-weight: 800;
    font-size: 10px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    box-shadow: 4px 0 12px rgba(241, 126, 1, 0.5);
}

/* pulsing dot on label */
.marquee-label::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
    animation: pulse-dot 1.4s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.6); }
}

/* ── Scrolling track ── */
.marquee-track-wrapper {
    flex: 1;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 55s linear infinite;
    height: 100%;
    will-change: transform;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

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

@keyframes jobsMarquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Individual job item ── */
.marquee-item {
    color: #d8d8d8;
    font-size: 13px;
    padding: 0 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* "We have openings" badge */
.marquee-item .vacancies {
    color: #000;
    font-weight: 700;
    font-size: 10px;
    background: #F17E01;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: badge-glow 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 0 0px rgba(241,126,1,0); }
    50%       { box-shadow: 0 0 8px rgba(241,126,1,0.7); }
}

.marquee-item .role {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.marquee-item .role span {
    color: #F17E01;
}

.marquee-item .desc {
    color: #aaa;
    font-size: 12px;
}

/* ── CTA button ── */
.marquee-cta {
    color: #F17E01;
    font-weight: 700;
    text-decoration: none;
    border: 1.5px solid #F17E01;
    padding: 3px 14px;
    border-radius: 4px;
    margin-left: 4px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    white-space: nowrap;
    flex-shrink: 0;
}

.marquee-cta:hover {
    background: #F17E01;
    color: #000;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(241,126,1,0.55);
}

/* ── Separator dot ── */
.marquee-sep {
    color: #F17E01;
    font-size: 20px;
    opacity: 0.35;
    padding: 0 8px;
    flex-shrink: 0;
    line-height: 1;
}
