/* Top Bar Styles */
.top-bar {
    font-size: 0.9rem;
}

/* Marquee Animation */
.marquee-container {
    position: relative;
    height: 20px;
}

.marquee-content {
    position: relative;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

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

/* Main Header Styles */
.main-header {
    position: relative;
    z-index: 1030;
}

/* Mega Menu Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.dropdown-header {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
}

.dropdown-item {
    color: #555;
    transition: all 0.2s ease;
    border-radius: 25px;
}

.dropdown-item:hover {
    color: var(--primary-color);
    background-color: rgba(1, 58, 103, 0.05);
}

.dropdown-menu i {
    background: #e2af2b;
    padding: 10px;
    border-radius: 6px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .dropdown-menu {
        box-shadow: none;
    }
}
