.tp-mobile-menu-active ul li a {
    color: #fff;
    width: 100%;
    text-decoration: none;
    font-size: 16px;
    min-width: 100%;
    transition: opacity 0.3s;
    display: block;
}



/* Mobile Menu Styles */
.mobile-header {
    display: none;
    background-color: #000;

    padding: 0px 30px 0px;
    transition: all 0.3s ease;
    overflow: hidden;
}
.mobile-header.active {
    border-radius: 25px;
    padding-bottom: 30px;
}


.mobile-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    width: 36px;
    height: 36px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    background-color: rgb(20, 20, 20);
border-radius: 8px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 9px;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 23px;
}

.hamburger span:nth-child(2) {
    top: 15px;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}



.hamburger.active span:nth-child(2) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu-content.active {
    max-height: 500px;
    margin-top: 20px;
    overflow: scroll;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.mobile-menu-content ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 6px 0;
    opacity: 0.75;
}

.mobile-menu-content .btn {

    text-align: center;
    margin-top: 20px;
}

/* Responsive Breakpoints */
@media (min-width: 1200px) {
    .top-black-container {
        display: block !important;
    }

    .mobile-header {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .top-black-container {
        display: none !important;
    }

    .mobile-header {
        display: block !important;
    }

    .tp-header-area>.mt-20 {
        margin-top: 0px;
    }
}