/* Top Bar Styles */
.top-bar {
    background-color: #091124;
    color: #FFF;
    font-size: 13px;
    padding: 8px 0;
    position: relative;
    z-index: 101;
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }
}

.top-bar .top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .top-bar-left .top-bar-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

@media (max-width: 600px) {
    .top-bar .top-bar-left .top-bar-text {
        display: none;
    }
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .top-bar .top-bar-right {
        margin-left: auto;
    }
}

.top-bar .top-bar-link {
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.top-bar .top-bar-link i {
    font-size: 14px;
}

.top-bar .top-bar-link:hover {
    color: #3995E4;
}

.top-bar .top-bar-divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.more-dropdown-toggle .dropdown-menu {
    right: 0 !important;
}

.page-website-services header.sticky {
    top: 48px;
}

@media (max-width: 768px) {
    .page-website-services header.sticky {
        top: 44px;
    }
}

@media (max-width: 600px) {
    .page-website-services header.sticky {
        top: 40px;
    }
}
