/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #009fe3;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.logo img {
    height: 40px;
    width: auto;
    position: relative;
}

.logo img:first-child {
    clip-path: inset(0 38% 0 0);
    filter: brightness(0) invert(1);
}

.logo img:last-child {
    clip-path: inset(0 0 0 62%);
    position: absolute;
    left: 0;
    top: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #009fe3;
}

.cta-button {
    background: linear-gradient(135deg, #009fe3, #0077b3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0088cc, #006699);
    transform: translateY(-2px);
}
