/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

/* --- 1. BLUE MARQUEE BAR --- */
.authority-marquee-bar {
    width: 100%;
    background-color: #1C2E5A;
    padding: 15px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Container */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* 🔥 CORE ANIMATION */
.marquee-content {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeScroll linear infinite;
    will-change: transform;
}

/* Individual Logo */
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

/* Text Logos */
.logo-item span {
    font-family: 'Montserrat', sans-serif;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Image Logos */
.logo-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* --- SMOOTH INFINITE LOOP --- */
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Pause on Hover */
.hover-pause:hover .marquee-content {
    animation-play-state: paused;
}

/* Grayscale Effect */
.grayscale img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.grayscale img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- 2. GRAY CONTAINER WITH NOTCH --- */
.notch-container-gray {
    width: 100%;
    background-color: #ccd3db;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
}

.featured-notch {
    position: absolute;
    top: 0;
    background-color: #1C2E5A;
    padding: 6px 35px;
    border-radius: 0 0 14px 14px;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-notch span {
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .authority-marquee-bar {
        padding: 10px 0;
    }

    .logo-item span {
        font-size: 13px;
    }
}