/* Navigation */
.navbar {
    padding: 20px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 21px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1;
}

.logo-subtext {
    font-size: 9px;
    color: var(--dark-blue);
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--nav-text);
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--royal-blue);
    border-bottom: 2px solid var(--royal-blue);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.icon-btn {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--nav-text);
    transition: background 0.3s;
}

.icon-btn:hover {
    background: #e5e7eb;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-family: var(--font-inter);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background-color: var(--dark-blue);
    color: white;
    font-weight: 600;
    font-size: 21px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(16, 42, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 42, 106, 0.4);
}

