.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar {
    transition: all 0.1s ease-in-out;
}

.navbar.scrolled {
    background: radial-gradient(circle, rgba(237, 218, 195, 1) 0%, rgba(213, 223, 242, 1) 84%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-nav .nav-link {
    margin: 0px 12px;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 18px;
}

.navbar-nav .nav-link.active {
    background-color: var(--blue);
    color: white;
    border-radius: 22px;
    padding: 6px 18px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-brand img {
    height: 75px;
    width: auto;
}
.navbar-expand-lg .navbar-nav .dropdown-menu {
    /* position: absolute; */
    background: radial-gradient(reactanlge, rgba(237,218,195,1) 0%, rgba(213,223,242,1) 84%);

    border: none;
    background-color: transparent;
.dropdown-item {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 5px;

}
.dropdown-menu{
    margin-top: 30px;
    /* background-color: transparent; */
    border-radius: 12px;
}
.dropdown-item:hover {
    color: #ffffff;
    background-color: #577abd;
    padding: 5px;
    border-radius: 22px;
}

/*  */
/* Mega Menu Styles */
.mega-menu {
    position: relative;
}

.mega-menu .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* background-color: #fff; */
    z-index: 1000;
}

.mega-menu-content {
    background: linear-gradient(360deg, rgb(58 103 187) 0%, rgba(221, 221, 226, 1) 52%);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    padding: 10px;
    border-radius: 10px!important;
}
}

.mega-menu:hover .dropdown-menu {
    display: flex;
}

.mega-menu-content {
    display: flex;
    justify-content: space-between;
}

.mega-menu-column {
    flex: 1;
    margin: 0 1rem;
}

.mega-menu-column h5 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.mega-menu-column .dropdown-item {
    display: block;
    padding: 0.5rem 0;
}

.mega-menu-column .dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mega-menu-content {
        flex-direction: column;
    }

    .mega-menu-column {
        margin-bottom: 1rem;
    }

    .navbar-expand-lg .offcanvas .offcanvas-body {
        float: right !important;
        left: 100px !important;
        position: relative !important;
        /* align-items: center!important; */
    }
}

.mega-menu-column h5 {
    font-size: 17px;
    font-weight: 600;
}

.offcanvas {
    align-items: end !important;
}

.offcanvas-body {
    align-items: center;
}

/* Mobile */
@media only screen and (max-width: 600px) {
    .offcanvas{
        align-items: start!important;
    }
    .navbar-expand-lg .offcanvas .offcanvas-body{
        left: 0px!important;
    }
    .navbar-expand-lg .navbar-nav .dropdown-menu{
        position: relative;
    }
    .offcanvas-body{
        width: 100%;
    }
}
.navbar-expand-lg .offcanvas .offcanvas-body{
    align-items: baseline!important;
}