#navbar {
    background-color: #050203; /* Dark Blue */
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    position: fixed; /* Changed to fixed for better functionality */
    z-index: 1000; /* Keeps the navbar on top of other content */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); 
}

.nav-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.nav-links {
    width: calc(-100px + 100%);
    list-style: none;
    display: flex;
    gap: 20px; /* Spacing between links */
}

.nav-links li:nth-last-child(1) {
    margin-left: auto; /* Push last item to the end */
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

.nav-links li a:hover {
    color: #00aaff; /* Change color on hover */
}

#content {
    margin-top: 90px;
}