body {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: normal !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif', serif;
    font-weight: normal !important;
}
p{
    font-weight: normal !important;
}

/* ===== Sticky Navbar ===== */
.sticky-animate {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    will-change: transform;
}
.sticky-animate.show {
    transform: translateY(0);
}




.nav-link {
    font-weight: 100 !important;
    color: var(--color-primary-700);
    transition: all 0.3s ease-out;
    padding: 0.5rem 1rem;
    background-color: rgba(13, 110, 253, 0.1);


}

.nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    display: block;
    transition: all 0.3s ease-out;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    margin-top: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.mega-menu {
    min-width: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 2rem 3rem;
}

.dropdown-item {
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f3f4f6;
}

.lang-switcher strong {
    color: #0d6efd;
}


/*=======MOBILE MENU========*/
 #navbarMenuMobile .nav-link {
     font-weight: 500;
     color: #212529;
     transition: all 0.3s ease-out;
     border-radius: 0.5rem;
 }

#navbarMenuMobile .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

#navbarMenuMobile .collapse .nav-link {
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

button.btn-link.nav-link {
    font-weight: 500;
    text-decoration: none;
}

button.btn-link.nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

button.btn-link.nav-link i {
    transition: transform 0.3s ease;
}

button[aria-expanded=\"true\"] i {
    transform: rotate(180deg);
}

