.j-new-host-asia-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0a0a2d;
    color: #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    z-index: 101;
    font-family: Arial, sans-serif;
    font-size: 15px;
    box-sizing: border-box;
}
.topbar-left {
  display :flex;
  gap: 15px;
}

.topbar-left a {
    margin-right: 20px;
    color: white;
}

.topbar-left i {
    color: #c50808;
    margin-right: 5px;
}

.topbar-right a {
    color: #e2e8f0;
    text-decoration: none;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.topbar-right a:hover {
    color: #c50808;
}

@media (max-width: 768px) {
    .j-new-host-asia-topbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px;
    }

    .topbar-left a {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

.navbar {
    transition: top 0.3s ease-in-out;
}

.hide-topbar {
    display: none !important;
}

.nav-scrolled {
    top: 0 !important;
}

.services>.dropdown {
        display: none;
    }

    @media (max-width: 991px) {
        .services.active>.dropdown {
            display: block;
        }
    }

    @media (min-width: 992px) {
        .services:hover>.dropdown {
            display: block;
            box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
            border: 1px solid #ebebeb;
        }
    }