/* ////////////////////////////////navbar ////////////////////////////////// */
.nav-header-section {
    z-index: 111;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
    padding: 10px 40px;
    position: sticky;
    top: 0;
}

.new-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.new-logonav {
    height: 60px;
}

.new-nav-menu {
    display: flex;
    align-items: center;
    gap: 3px;
}

.new-nav-link {
    text-decoration: none;
    color: #3d0043;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 15px;
    white-space: nowrap;
}

.new-nav-link:hover,
.new-nav-link.active {
    background-color: var(--light-gray);
}

.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: #3d0043;
    text-decoration: none;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #3d0043;
    border-radius: 2px;
}

/* RESPONSIVE: Tablet & Mobile */
@media (max-width: 500px) {
    .theme-button-wrap {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
    }


    .new-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px 0;
        border-bottom: 1px solid #eee;
        display: none;
    }

    .new-nav-menu.active {
        display: flex;
    }

    .new-nav-link {
        width: 80%;
        text-align: center;
        border-radius: 10px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        width: 100%;
        text-align: center;
        display: none;
    }

    .nav-item-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 600px) {
    .nav-header-section {
        padding: 10px 20px;
    }

    .new-logonav {
        height: 45px;
    }
}

@media (max-width: 1180px) {
    .theme-button-wrap {
        display: none !important;
    }
}

/*/////////////////////////////////////////////Botton//////////////////////////////////////////  */
.theme-button-wrap {
    display: inline-flex;
    background-color: #3C0145;
    border-radius: 63px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    /* transition: transform 0.3s ease; */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(60, 1, 69, 0.2)
}
.theme-button-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transform: skewX(-25deg);
    transition: 0.7s;
    z-index: 1;
}

.theme-button-wrap:hover::before {
    left: 125%; /* Moves the shine across the button */
}

.theme-button-wrap:hover {
    transform: translateY(-2px);
}

.btn-link-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 4px 4px 4px 32px;
    text-decoration: none;
    color: #fff;
    z-index: 2;
}

.btn-text-wrap {
    position: relative;
    height: 24px;
    overflow: hidden;
}

.btn-text-box {
    transition: transform 0.3s ease;
    font-family: sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    white-space: nowrap;
}

.btn-link-wrap:hover .btn-text-box {
    transform: translateY(-100%);
}

.arrow-wrap {
    /* width: 50px;
    height: 50px; */
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.arrow-wrap img {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.btn-link-wrap:hover .arrow-wrap {
    /* transform: rotate(-45deg); */
}
/* ///////////// */