
:root {
    --primary-blue: #007bff;
    --dark-navy: #1a1a2e;
    --bg-light-gray: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light-gray);
    padding-top: 80px; 
}

nav{
    z-index: 1000;
    top: 0px !important;
}
/* --- Navbar Styles --- */
.custom-navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

/* Active Nav Links */
.navbar-nav .nav-link {
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    border-bottom: 2px solid var(--primary-blue);
}

/* Custom Primary Button */
.btn-primary-custom {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-2px);
}

.nav-badge-custom {
    display: none; 
    position: absolute;
    top: -6px;
    right: -10px;
    background-color: #007bff; 
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
}