    /* Top Strip */
.top-strip {
    height: 43px;
    z-index: 1031;
    position: fixed;
    width: 100%;
    font-size: 18px;

    background: linear-gradient(to right, #022640, #5786AB);
    color: white; /* Set text color to contrast the gradient background */
}

    .top-rotating-word {
        display: inline-block;
        min-width: 78px;
        width: 35px;
        text-align: left;
        transition: opacity 0.4s, transform 0.4s;
   color: #ffffff;
    }
    .rotating-word {
        display: inline-block;
        min-width: 120px;
        width: 255px;
        text-align: left;
        transition: opacity 0.4s, transform 0.4s;
        background: linear-gradient(to right, #022640, #5786AB);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* For Firefox */
        background-clip: text;
        color: black;
    }

    .navbar {
        height: 84px;
    }

    .ms-logo {
        height: 52px;
        width: auto;
    }

    /* .navbar-left {
        margin-left: -5rem;
    }

    .navbar-right {
        margin-right: -5rem;
    } */

    .navbar-left a,
    .navbar-right a {
        display: flex;
        align-items: center;
        font-family: "Work Sans", sans-serif;
        font-weight: 500 !important;
        color: #131313;
    }

    .black-btn {
        background-color: #000;
        color: #fff !important;
        border: none;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 200px;
        padding: 0.5rem 2rem;
        font-weight: 600;
        overflow: hidden;
        transition: all 0.4s ease;
        border-radius: 12px;
        height: 44px;
        width: 205px;
        font-size: 16px;
    }

    /* Text */
    .black-btn span {
        display: inline-block;
        transition: all 0.4s ease;
        position: relative;
        z-index: 2;
    }

    /* Arrow */
    /* .black-btn::after {
        content: "→";
        position: absolute;
        right: 1.5rem;
        opacity: 0;
        transform: translateX(15px);
        transition: all 0.4s ease 0.1s;
    } */

    /* Hover effect */
    /* .black-btn:hover {
        justify-content: flex-start;
        padding-left: 1.5rem;
    } */

    .black-btn:hover span {
        transform: translateX(0);
    }

    .black-btn:hover::after {
        opacity: 1;
        transform: translateX(0);
    }

    /* Glassmorphism Navbar */
    .navbar-glass {
        top: 42px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    }

    /* Navbar links inside glass */
    .navbar-glass .nav-link {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        color: #fff !important;
        transition: color 0.3s ease;
    }

    .navbar-glass .nav-link:hover {
        color: #ffd700 !important;
        /* golden hover */
    }

    .menu__link {
        display: block;
        /* padding: 6px 30px 3px; */
        border-right: 2px dotted var(--border);
        text-decoration: none;

        overflow: hidden;
        height: 1em;
        line-height: 1.5em;
    }

    .lang-btn img {
        vertical-align: middle;
        margin-right: 4px;
        /* optional spacing */
    }



    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeOutDown {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(-100%);
        }
    }

    /* Navbar links */
    .navbar .nav-link {
        font-weight: bold;
        color: #000 !important;
    }

    .navbar .nav-link:hover {
        color: #555 !important;
    }

    @media only screen and (min-width: 992px) and (max-width: 1367px) {
        .navbar-left, .navbar-right {
            margin-left: -2rem;
        }

        .navbar-right {
            margin-right: -2rem;
        }
    }

    @media only screen and (min-width: 1200px) and (max-width: 1400px) {

        .top-strip{
            height: 40px;
        }

        .navbar {
            height: 72px;
        }

        .navbar-glass {
            top: 40px;
        }
    }

    
