/**
 * Smooth Marquee Widget CSS
 */

 .marquee-container {
    width: 100%;
    height: 80px;
    background-color: #0c2461;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 0 50px;
    display: flex;
    align-items: center;
}