.navbar {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(30px);
    background-color: #9a6add;
    height: 70px;
    color: #ffff ;
}

.navbar-nav .nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 10px 15px;
}

.navbar-nav .nav-item::before {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background-color: #9a6add;
    bottom: 0;
    left: 50%;
    transition: all 0.4s ease-in-out;
}

