.Navbar-navbar {
    display: flex;
    position: fixed;
    top: 0;
    width: 100%; 
    justify-content: space-between;
    align-items: center;
    padding: 1vw 3vw; /* Optional: more horizontal padding */
    z-index: 1000;
    background-color: #0E323D;
}


/* Navbar Nav Left */
.Navbar-Nav-Left {
    display: flex;
    gap: 25px;
    flex: 1;
}

.Navbar-Contact-a {
    font-family: 'Poppins';
    font-size: 1.2rem;
    text-decoration: none;
    color:white;
    transition: 0.5s;
}

.Navbar-Contact-a:hover {
    transform: scale(1.05);
    transition: 0.5s;
}

.Navbar-Nav-Left a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-family: 'Poppins';
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.Navbar-Nav-Left a:hover {
    font-weight: 400;
}

/* Navbar Nav Center */
.Navbar-Nav-Center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Navbar-Nav-Center-img {
    height: 5rem;
}

/* Navbar Nav Right */
.Navbar-Nav-Right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.Phone-icon-nav{
    height: 25px;
    width: 25px;
}
.Navbar-Nav-Right button {
    background: transparent;
    color: rgb(0, 0, 0);
    border: 1px solid black;
    padding: 0.5vw 1.5vw;
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.5s ease-in-out;
}

.Navbar-Nav-Right button:hover {
    background: white;
    color: black;
}

/* Navbar Menu */
.Navbar-hamburger {
    font-size: 30px;
    cursor: pointer;
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 100;
    color: white;
}

/* Full-Screen Navigation */
.Navbar-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 9999;
}

/* Navigation Links */
.Navbar-nav-links {
    text-align: center;
}

.Navbar-nav-links div {
    margin: 20px 0;
}

.Navbar-nav-links div a {
    font-family: 'Poppins';
    color: white;
    text-decoration: none;
    font-size: 3vw;
    font-weight: 200;
    transition: color 0.5s;
}
.Phone-nav-compass-Logo{
    display: none;
}
@media(max-width:480px) {
    .Navbar-nav-links div a {
        font-size: 5vw;
    }
    .Phone-navbar-container{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 80px;
        background-color: #0E323D;
    }
    .Phone-nav-compass-Logo{
        display: flex;
        height: 50px;
    }
}

.Navbar-nav-links div a:hover {
    color: #ff9800;
}

/* Close Button */
.Navbar-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    z-index: 2000;
}

.Navbar-nav-menu.active {
    transform: translateY(0);
}
@media (min-width:481px) {
    .Navbar-hamburger {
        display: none;
    }
}
@media (max-width: 1024px) and (orientation: portrait) {
    .Navbar-nav-Container {
        display: none;
    }
    .Navbar-hamburger {
        display: flex;
    }
        .Phone-navbar-container{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 80px;
        background-color: #0E323D;
    }
    .Phone-nav-compass-Logo{
        display: flex;
        height: 50px;
        z-index: 9;
    }
}
@media(max-width:1550px){
    .Navbar-Nav-Left a{
        font-size: 1.2rem;
    }
    .Navbar-Nav-Center-img{
        height: 4rem;
    }
    .Navbar-Nav-Right button{
        font-size: 1.3rem;
    }
    .Navbar-Contact-a{
        font-size: 1.2rem;
    }
}
@media(max-width:1350px){
    .Navbar-Nav-Left a{
        font-size: 1.1rem;
    }
    .Navbar-Nav-Center-img{
        height: 3rem;
    }
    .Navbar-Nav-Right button{
        font-size: 1.1rem;
    }
    .Navbar-Contact-a{
        font-size: 1.1rem;
    }
}
@media(max-width:1132px){
    .Navbar-Nav-Left a{
        font-size: 0.9rem;
    }
    .Navbar-Nav-Center-img{
        height: 2rem;
    }
    .Navbar-Nav-Right button{
        font-size: 0.9rem;
    }
    .Navbar-Contact-a{
        font-size: 0.9rem;
    }
}


/* navbar ends */
