/* Mobile Menu Toggle Button */
/* @media (min-width: 272px) and (max-width: 991px){ */
.navbar{
    padding: 0 !important;
    text-align: center !important;
}
.navbar-toggler {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: 2px solid var(--theme-color);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
    margin-top: 10px;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--theme-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100%;
    background-color: #fff;
    z-index: 10000000;
    transition: all 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--theme-color);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-logo img {
    max-height: 80px;
    width: auto;
    background-color: white;
    padding: 0px 10px !important;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.mobile-close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Navigation */
.mobile-nav {
    padding: 20px 0;
    margin: 0;
    list-style: none;
}

.mobile-nav > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    background-color: #f9f9f9;
    color: var(--theme-color);
}

.mobile-nav .fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.mobile-nav .fa-chevron-down.rotate {
    transform: rotate(180deg);
}

/* Submenu */
.mobile-nav .sub-menu {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.mobile-nav .sub-menu a {
    padding: 10px 20px 10px 30px;
    font-size: 14px;
}

.mobile-nav .sub-menu a:hover {
    background-color: #f0f0f0;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid #f0f0f0;
    background-color: #f9f9f9;
}

.mobile-phone,
.mobile-email {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.mobile-phone i,
.mobile-email i {
    margin-right: 10px;
    color: var(--theme-color);
    width: 20px;
    text-align: center;
}

/* Body class when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}
/* } */
/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }
    .navbar-right{
        display: none;
    }
    
    /* Hide desktop navigation on mobile */
    .navbar-links {
        display: none;
    }
    
    /* Adjust header for mobile */
    .navbar {
        padding: 10px 0;
    }
    
    .notification {
        margin: 0 10px;
        font-size: 12px;
        text-align: center;
    }
}

/* Animation for menu toggle */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav > li {
    animation: fadeIn 0.3s ease forwards;
    opacity: 0;
}

/* Staggered animation for menu items */
.mobile-nav > li:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav > li:nth-child(2) { animation-delay: 0.15s; }
.mobile-nav > li:nth-child(3) { animation-delay: 0.2s; }
.mobile-nav > li:nth-child(4) { animation-delay: 0.25s; }
.mobile-nav > li:nth-child(5) { animation-delay: 0.3s; }
.mobile-nav > li:nth-child(6) { animation-delay: 0.35s; }
.mobile-nav > li:nth-child(7) { animation-delay: 0.4s; }
.mobile-nav > li:nth-child(8) { animation-delay: 0.45s; }
.mobile-nav > li:nth-child(9) { animation-delay: 0.5s; }
