/* Start custom CSS for html, class: .elementor-element-23f1014 *//* --- DESKTOP HORIZONTAL NAVBAR STYLING --- */
.desktop-dashboard-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 25px;
    box-sizing: border-box;
    border-radius: 20px;
    background: linear-gradient(145deg, #141418, #0d0d11);
    border: 1.5px solid rgba(255, 140, 0, 0.5);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

/* Logo Styling (75px on Desktop) */
.desktop-nav-logo img {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

/* Menus Container (Horizontal Flow with wrapping if needed) */
.desktop-nav-menu-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    flex: 1;
}

/* Individual Menu Item Card Style */
.d-menu-item {
    text-decoration: none !important;
    border-radius: 12px !important;
    background: rgba(25, 25, 35, 0.7) !important;
    border: 1px solid rgba(255, 140, 0, 0.3) !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

/* Hover Animation */
.d-menu-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 165, 0, 1) !important;
    background: rgba(40, 40, 55, 0.9) !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3) !important;
    color: #ffa500 !important;
}

/* Logout Special Highlight */
.d-menu-item.logout-btn {
    border-color: rgba(255, 68, 68, 0.4) !important;
    color: #ff6b6b !important;
}
.d-menu-item.logout-btn:hover {
    border-color: rgba(255, 68, 68, 1) !important;
    background: rgba(55, 25, 25, 0.8) !important;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3) !important;
    color: #ff4444 !important;
}

/* --- RESPONSIVE VISIBILITY RULE --- */
/* Yeh menu sirf Desktop/Laptop par dikhega, Mobile par automatic hide rahega */
@media screen and (max-width: 767px) {
    .desktop-dashboard-navbar {
        display: none !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-32f3ccb *//* --- MOBILE TOGGLE NAVBAR STYLING --- */
.mobile-dashboard-navbar {
    display: none;
    width: 100%;
    max-width: 767px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 16px;
    background: linear-gradient(145deg, #141418, #0d0d11);
    border: 1.5px solid rgba(255, 140, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Top Bar Layout */
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    box-sizing: border-box;
}

/* Logo Styling (65px on Mobile) */
.mobile-nav-logo img {
    width: 65px !important;
    height: 65px !important;
    max-width: 65px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.mobile-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Custom 3-Line Hamburger Icon */
.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffa500;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Dropdown Menu Container (Initially Hidden) */
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease;
    background: rgba(15, 15, 20, 0.95);
    gap: 8px;
    padding: 0 12px;
    border-top: 0px solid rgba(255, 140, 0, 0.2);
}

/* When JavaScript toggles the class, show menu */
.mobile-nav-dropdown.active-menu {
    max-height: 800px;
    padding: 12px 12px 16px 12px;
    border-top: 1.5px solid rgba(255, 140, 0, 0.3);
}

/* Animate Hamburger to 'X' Mark when active */
.mobile-menu-icon.active-icon span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.mobile-menu-icon.active-icon span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-icon.active-icon span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Individual Menu Item inside Mobile Dropdown */
.m-menu-item {
    text-decoration: none !important;
    border-radius: 10px !important;
    background: rgba(25, 25, 35, 0.7) !important;
    border: 1px solid rgba(255, 140, 0, 0.25) !important;
    padding: 11px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    transition: all 0.25s ease-in-out;
}

.m-menu-item:hover, .m-menu-item:active {
    border-color: rgba(255, 165, 0, 1) !important;
    background: rgba(40, 40, 55, 0.9) !important;
    color: #ffa500 !important;
}

/* Logout Special Style */
.m-menu-item.logout-btn {
    border-color: rgba(255, 68, 68, 0.4) !important;
    color: #ff6b6b !important;
}
.m-menu-item.logout-btn:hover {
    border-color: rgba(255, 68, 68, 1) !important;
    background: rgba(55, 25, 25, 0.8) !important;
    color: #ff4444 !important;
}

/* --- RESPONSIVE VISIBILITY RULE --- */
@media screen and (max-width: 767px) {
    .mobile-dashboard-navbar {
        display: block !important;
    }
}/* End custom CSS */