#desktop-navbar-container {
  display: flex;
  position: fixed;
  top: 0;
  /* left: 0; */
  width: 100%;
  height: 95px;
  background: #B9A0FF;
  border: black 1px solid;
  z-index: 1000;
  align-items: center;
}

    .logo {
        font-size: 2rem;
        margin-right: 55px;
    }

    .logo:hover {
        cursor: default;
    }

    .navbar ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        list-style-type: none;
        padding: 2rem;
    }

    .navbar ul li {
        position: relative;
        margin: 0 1em;
        font-size: 22px;
        font-weight: 600;
        transition: transform var(--transition);
    }


    .navbar ul li a {
        color: rgb(38, 48, 47);
        text-decoration: none;
        padding: 10px 15px;
        display: inline-block;
    }

    .navbar ul li a:hover {
        color: white;
        transition: background-color var(--transition), color var(--transition);
    }

    .nav-links {
        display: flex;
        list-style: none;
        font-size: 1.5rem;
    }

    nav, .nav-links{
        display: flex;
    }

    nav {
        justify-content: space-around;
        align-items: center;
        height: 13vh;
    }

    .nav-links {
        list-style: none;
        font-size: 1.5rem;
    }

    /* ===================== Dropdown Menu ===================== */

    .dropdown {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        min-width: 200px;
        box-shadow: var(--black-shadow);
        z-index: 2000;
        flex-direction: column;
        align-content: left;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .dropdown-parent.open .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown li {
        width: 100%;
    }

    .dropdown li a {
        display: block;
        padding: 12px 16px;
        color: rgb(38, 48, 47);
        text-align: left;
        box-sizing: border-box;
        transition: var(--bg) 0.3s ease, color 0.3s ease, transform 0.2s ease;
    }

    .dropdown li a:hover {
        background-color: var(--primary);
        color: var(--hover-color);
        transform: translateX(4px); /* subtle slide */
        border-radius: 12px;
    }

    /* ===================== Dropdown Toggle Button ===================== */

    .dropdown-toggle {
        background: none;
        border: none;
        font-size: inherit;
        font-weight: inherit;
        color: rgb(38, 48, 47);
        padding: 10px 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
        transition: var(--bg) 0.1s ease, color 0.1s ease;
    }

    .dropdown-toggle:hover {
        color: white;
        /* background-color: var(--theme-color); */
        border-radius: 5px;
    }

    /* ===================== Dropdown Arrow ===================== */

    .dropdown-arrow {
        margin-left: 8px;
        transition: transform 0.1s ease;
        display: inline-block;
    }

    /* Rotate arrow when dropdown is open */
    .dropdown-parent.open .dropdown-arrow {
        transform: rotate(180deg);
    }