/* Responsive Moving Ticker Banner */
.ticker-banner {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.ticker-wrap {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
}

.ticker-wrap:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 50px;
    font-size: 14px;
    font-weight: 500;
}

.ticker-item span {
    margin-right: 15px;
}

.ticker-link {
    color: #ffd700;
    text-decoration: underline;
    margin-left: 5px;
    margin-right: 15px;
    font-weight: 600;
}

.ticker-link:hover {
    color: #ffffff;
}

.ticker-btn {
    background-color: #ffffff;
    color: #1e3c72;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: background-color 0.2s, color 0.2s;
    display: inline-block;
}

.ticker-btn:hover {
    background-color: #ffd700;
    color: #1e3c72;
}

@keyframes ticker {
            0% {
                transform: translate3d(0, 0, 0);
            }
            100% {
                transform: translate3d(-50%, 0, 0);
            }
        }
