/*

Plugin Name: Multi Drop Down Mobile menu
version: 1.0
Author: Abdul Rabby
Desc: 



*/




/*Base css*/

*{
    margin: 0;
    padding: 0;
}
body{
    font-size: 16px;
    font-family: "Figtree", sans-serif;
}

a, a:hover{
    outline: none;
    text-decoration: none;
}

ul, li{
    list-style: none;
}

/*Menu Css*/
.mobile-header {
    position: fixed; /* Changed from absolute to fixed */
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.98); /* Added background */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Added shadow */
}

/* Override conflicting styles from main.css */
.mobile-header.mobile-haeder15 {
    background: rgba(255, 255, 255, 0.98) !important;
    position: fixed !important;
}

.mobile-header-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px; /* Added padding */
}

.mobile-logo {
    height: 40px; /* Added fixed height */
}

.mobile-logo img {
    height: 100%;
    width: auto;
}

.mobile-nav-icon {
    font-size: 20px;
    border: none; /* Removed border */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Made it circular */
    color: #ffffff; /* Changed to white for contrast */
    background: #FF6B35; /* Changed to orange accent color */
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-nav-icon:hover {
    background: #e55a2b; /* Darker orange on hover */
}

.mobile-sidebar {
    position: fixed;
    height: 100%;
    width: 85%; /* Changed from 100% to 85% */
    max-width: 360px; /* Added max-width */
    background: #ffffff; /* Changed to white to match logo background */
    z-index: 999;
    padding: 30px 25px;
    left: -100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
}

/* Override conflicting styles from main.css */
.mobile-sidebar.mobile-sidebar15 {
    background: #ffffff !important;
    overflow-y: auto !important;
}

.mobile-sidebar.mobile-menu-active {
    left: 0;
    visibility: visible;
    opacity: 1;
}

.logosicon-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.logos {
    height: 35px;
}

.logos img {
    height: 100%;
    width: auto;
}

.menu-close {
    position: relative;
    right: 0;
    top: 0;
    font-size: 22px;
    color: #161616; /* Changed back to dark for contrast */
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5; /* Light grey background */
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: #e5e5e5;
}

/* Override conflicting styles from main.css */
.mobile-sidebar.mobile-sidebar15 .menu-close {
    color: #161616 !important;
}

.mobile-nav li a {
    font-size: 16px;
    line-height: 1.5;
    color: #161616; /* Changed back to dark for contrast */
    padding: 12px 0;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav li a:hover {
    color: #FF6B35; /* Orange hover color */
}

/* Override conflicting styles from main.css */
.mobile-sidebar.mobile-sidebar15 .mobile-nav.mobile-nav1 .mobile-nav-list.nav-list1 li a {
    color: #161616 !important;
    font-weight: 500 !important;
}

ul.mobile-nav-list {
    margin-top: 20px;
    padding: 0;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.allmobilesection {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee; /* Light grey border */
}

/* Mobile-specific button styles - only for mobile menu */
.mobile-sidebar .header-btn25 {
    display: inline-block;
    padding: 12px 24px;
    background: #FF6B35; /* Orange background */
    color: #ffffff; /* White text */
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    /* Remove any conflicting styles */
    position: static;
    z-index: auto;
}

.mobile-sidebar .header-btn25:hover {
    background: #e55a2b; /* Darker orange on hover */
    color: #ffffff;
    transform: none; /* Remove transform from desktop styles */
}

.mobile-sidebar .header-btn25::after {
    display: none; /* Remove pseudo-element from desktop styles */
}

/* Override conflicting styles from main.css */
.mobile-sidebar.mobile-sidebar15 .mobile-nav.mobile-nav1 .header-btn25 {
    background: #FF6B35 !important;
    color: #ffffff !important;
    position: static !important;
    z-index: auto !important;
    transform: none !important;
}

.mobile-sidebar.mobile-sidebar15 .mobile-nav.mobile-nav1 .header-btn25::after {
    display: none !important;
}

.single-footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #161616; /* Dark text */
}

/* Override conflicting styles from main.css */
.mobile-sidebar.mobile-sidebar15 .mobile-nav.mobile-nav1 h3 {
    color: #161616 !important;
}

.contact-info-single {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-icon {
    width: 35px;
    height: 35px;
    background: #FF6B35; /* Orange background for icons */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.contact-info-icon i {
    font-size: 14px;
    color: #ffffff; /* White icons for contrast */
}

.contact-info-text a {
    color: #161616; /* Dark text */
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-info-text a:hover {
    color: #FF6B35; /* Orange on hover */
}

/* Override conflicting styles from main.css */
.mobile-sidebar.mobile-sidebar15 .footer1-contact-info .contact-info-single i {
    color: #ffffff !important;
}

.mobile-sidebar.mobile-sidebar15 .footer1-contact-info .contact-info-single .contact-info-text a {
    color: #161616 !important;
}

/* Add overlay when menu is open */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Scrollbar styling */
.mobile-nav-list::-webkit-scrollbar {
    width: 5px;
}

.mobile-nav-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-nav-list::-webkit-scrollbar-thumb {
    background: #FF6B35; /* Orange scrollbar */
    border-radius: 10px;
}

.mobile-nav-list::-webkit-scrollbar-thumb:hover {
    background: #e55a2b; /* Darker orange on hover */
}