/* ══════════════════════════════════════════
   Gandhi Immigration – Top Announcement Bar
   ══════════════════════════════════════════ */

.gandhi-topbar {
    position: relative;
    width: 100%;
    height: 40px;
    background: #01559E;
    overflow: hidden;
    z-index: 1003;
}

.gandhi-topbar.gandhi-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.admin-bar .gandhi-topbar.gandhi-sticky {
    top: 32px;
}

.gandhi-topbar-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: gandhi-topbar-scroll 28s linear infinite;
}

.gandhi-topbar:hover .gandhi-topbar-track {
    animation-play-state: paused;
}

.gandhi-topbar-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.gandhi-topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.gandhi-topbar-item i {
    font-size: 14px;
    color: #ffffff;
    flex-shrink: 0;
}

.gandhi-topbar-btn {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-left: 2px;
    transition: color 0.2s ease;
}

.gandhi-topbar-btn:hover {
    color: #F57D26;
}

@keyframes gandhi-topbar-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 992px) {
    .admin-bar .gandhi-topbar.gandhi-sticky {
        top: 46px;
    }
}

@media (max-width: 600px) {
    .gandhi-topbar {
        height: 34px;
    }

    .gandhi-topbar-item {
        padding: 0 22px;
        height: 34px;
        font-size: 12px;
        gap: 6px;
    }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .gandhi-topbar-track {
        animation: none;
    }
}
