﻿

.dropdown-item.dropdown-more-btn {
    font-weight: bold;
    color: #007bff;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #1D1D1D;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-logo {
    margin-right: auto;
    margin-left: 15px;
}

    .mobile-logo img {
        height: 30px;
    }

.hamburger {
    width: 25px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100%;
    background-color: #1D1D1D;
    z-index: 1100;
    transition: right 0.4s ease;
    overflow-y: auto;
}

    .mobile-menu-overlay.active {
        right: 0;
    }

.mobile-menu-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.mobile-close-btn {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
}

    .mobile-close-btn span {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        transform-origin: center;
    }

        .mobile-close-btn span:first-child {
            transform: rotate(45deg);
        }

        .mobile-close-btn span:last-child {
            transform: rotate(-45deg);
        }

.mobile-menu-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-main-menu > li > a {
        display: block;
        padding: 12px 0;
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        border-bottom: 1px solid #333;
    }

.mobile-menu-item {
    border-bottom: 1px solid #333;
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #fff;
    cursor: pointer;
}

    .mobile-submenu-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-submenu-toggle.active i {
        transform: rotate(-90deg);
    }

.mobile-submenu {
    list-style: none;
    padding: 0 0 0 15px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

    .mobile-submenu.active {
        max-height: 1000px;
    }

    .mobile-submenu li a {
        display: block;
        padding: 10px 0;
        color: #ccc;
        text-decoration: none;
        font-size: 14px;
    }

.mobile-more-btn {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #4CAF50;
    cursor: pointer;
    font-size: 14px;
}

    .mobile-more-btn i {
        margin-left: 5px;
    }

.mobile-social-links {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .mobile-social-links a {
        color: #fff;
        font-size: 20px;
    }

/* Mobile Custom Modal Styles */
.mobile-custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
    display: none;
    justify-content: center;
    align-items: center;
}

.mobile-custom-modal-container {
    width: 90%;
    max-width: 400px;
    background-color: #1D1D1D;
    border-radius: 10px;
    overflow: hidden;
}

.mobile-custom-modal-header {
    padding: 15px;
    background-color: #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: bold;
}

.mobile-modal-close-btn {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

    .mobile-modal-close-btn span {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
    }

        .mobile-modal-close-btn span:first-child {
            transform: rotate(45deg);
        }

        .mobile-modal-close-btn span:last-child {
            transform: rotate(-45deg);
        }

.mobile-custom-modal-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

    .mobile-custom-modal-body a {
        padding: 12px 10px;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #333;
    }

        .mobile-custom-modal-body a i {
            margin-left: 10px;
            width: 20px;
            text-align: center;
        }

/* Animation for hamburger to close */
.mobile-menu-btn.active .hamburger span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive */
@media (min-width: 992px) {
    .mobile-menu-btn,
    .mobile-menu-overlay {
        display: none !important;
    }
}


