.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 60px;
    background: linear-gradient(90deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    background-size: 200% 100%;
    animation: gradientShift 15s ease-in-out infinite;

    border-bottom: 2px solid #125267;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

/* LOGO */
.nav-logo img {
    height: 70px;
    width: 300px;
}

/* LINKS */
.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ACTION BUTTONS */
.nav-actions {
    display: flex;
    gap: 12px;
}

/* Ensure in-page anchors scroll below sticky navbar */
section {
    scroll-margin-top: 110px;
}

/* Elegant gradient animation for navbar background */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}