/* Arslan Marin — Custom Styles */

/* Navigation Links */
.nav-link {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border-radius: 0.5rem;
    transition: all 0.2s;
}
.nav-link:hover {
    color: #334e68;
    background-color: #f9fafb;
}
.nav-link.active {
    color: #243b53;
    background-color: #f0f4f8;
}
.nav-link-cta {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: #334e68;
    border-radius: 0.5rem;
    transition: all 0.2s;
}
.nav-link-cta:hover {
    background-color: #243b53;
}
.mobile-link {
    display: block;
    padding: 0.625rem 1rem;
    color: #374151;
    border-radius: 0.5rem;
    transition: all 0.2s;
}
.mobile-link:hover {
    background-color: #f9fafb;
}

html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #334e68;
    border-radius: 4px;
}
