/* Top Header Styles */
.top-header {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #e1e1e1;
    display: flex;;
}
.top-header{
    height: 40px !important;
}

.top-header .container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Icon styling */
.nav-social-icons {
    display: flex;
    align-items: center;
}

.nav-social-icons a {
    text-decoration: none;
    color: #333;
}

.nav-social-icons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header svg {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    fill: white;
}
.top-header a{
    color:white;
}

.nav-social-icons a:hover svg {
    transform: scale(1.1);
    color: #0072b1;
}

/* Responsive styles */
@media (max-width: 768px) {
    .top-header {
        padding: 8px 0;
        font-size: 12px;
    }
}
