.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: rgba(32, 32, 32, 0.2); /* light translucent background */
    backdrop-filter: blur(10px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* optional glassy border */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* subtle shadow for depth */
}
.Navbar-navbar.scrolled {
    background-color: #0E323D !important;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: none; /* Remove the blur effect */
    -webkit-backdrop-filter: none;
    border-bottom: none; /* Optional: remove border */
    transition: background 0.3s ease; /* Smooth transition */
}



/* 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: 500;
    cursor: pointer;
    transition: 0.3s;
}

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

/* 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: 20px;
    right: 20px;
    z-index: 100;
    color: rgb(255, 255, 255);
}

/* 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: 999;
}

/* 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;
}
@media(max-width:480px) {
    .Navbar-nav-links div a {
        font-size: 5vw;
    }
}z

.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;
    }
}
@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 */
