/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 17 2025 | 11:35:17 */
/* ========================================
   MOBILE MENU STYLING - CENTER OF EXCELLENCE
   YooTheme PRO Mobile Menu Enhancement
======================================== */

/* Brand Colors */
:root {
    --excellence-blue: #1B358A;
    --excellence-yellow: #FECA0A;
    --dark-blue: #112657;
    --light-blue: #D1D9F0;
    --mobile-shadow: 0 4px 20px rgba(27, 53, 138, 0.15);
}

/* ========================================
   MOBILE HEADER STYLING
======================================== */

/* Mobile header container */
.tm-header-mobile .uk-navbar-container {
    background-color: var(--excellence-blue) !important;
    border-bottom: 3px solid var(--excellence-yellow) !important;
    box-shadow: var(--mobile-shadow) !important;
}

/* Mobile menu toggle button */
.tm-header-mobile .uk-navbar-toggle {
    color: white !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
}

.tm-header-mobile .uk-navbar-toggle:hover {
    color: var(--excellence-yellow) !important;
}

/* Menu text styling */
.tm-header-mobile .uk-navbar-toggle .uk-text-middle {
    color: white !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

/* ========================================
   MOBILE DROPDOWN CONTAINER
======================================== */

/* Main mobile menu dropdown - simplified */
#tm-dialog-mobile.uk-dropbar {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%) !important;
    border: none !important;
    box-shadow: var(--mobile-shadow) !important;
    /* Let YooTheme handle all positioning and animations */
}

/* Mobile menu panel */
#tm-dialog-mobile .uk-panel {
    background: none !important;
    padding: 20px !important;
}

/* ========================================
   MOBILE NAVIGATION STYLING
======================================== */

/* Main navigation list */
#tm-dialog-mobile .uk-nav.uk-nav-default {
    margin: 0 !important;
    padding: 0 !important;
}

/* Main navigation items */
#tm-dialog-mobile .uk-nav.uk-nav-default > li {
    margin: 0 !important;
    border-bottom: 1px solid rgba(27, 53, 138, 0.08) !important;
}

#tm-dialog-mobile .uk-nav.uk-nav-default > li:last-child {
    border-bottom: none !important;
}

/* Main navigation links */
#tm-dialog-mobile .uk-nav.uk-nav-default > li > a {
    display: block !important;
    color: var(--excellence-blue) !important;
    padding: 15px 20px !important;
    text-decoration: none !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    transition: all 0.3s ease !important;
    background: none !important;
    border: none !important;
    position: relative !important;
}

/* Active state for main items */
#tm-dialog-mobile .uk-nav.uk-nav-default > li.uk-active > a {
    color: white !important;
    background: linear-gradient(135deg, var(--excellence-blue) 0%, var(--dark-blue) 100%) !important;
    border-radius: 8px !important;
    margin: 0 10px !important;
}

/* Hover effect for main items - simplified to avoid layout shifts */
#tm-dialog-mobile .uk-nav.uk-nav-default > li > a:hover {
    color: white !important;
    background: linear-gradient(135deg, var(--excellence-blue) 0%, var(--dark-blue) 100%) !important;
    border-radius: 8px !important;
    margin: 0 10px !important;
    /* Removed transform to prevent layout shifts */
}

/* ========================================
   MOBILE SUBMENU STYLING
======================================== */

/* Submenu container */
#tm-dialog-mobile .uk-nav-sub {
    background: rgba(27, 53, 138, 0.03) !important;
    margin: 10px 0 0 0 !important;
    padding: 10px 0 !important;
    border-radius: 8px !important;
    border-left: 3px solid var(--excellence-yellow) !important;
}

/* Submenu items */
#tm-dialog-mobile .uk-nav-sub > li {
    margin: 0 !important;
    padding: 0 !important;
}

/* Submenu links */
#tm-dialog-mobile .uk-nav-sub > li > a {
    display: block !important;
    color: var(--excellence-blue) !important;
    padding: 8px 20px 8px 30px !important;
    text-decoration: none !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    transition: all 0.2s ease !important;
    background: none !important;
    border: none !important;
    position: relative !important;
}

/* Submenu link indicators */
#tm-dialog-mobile .uk-nav-sub > li > a::before {
    content: '→';
    position: absolute;
    left: 15px;
    color: var(--excellence-yellow);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Submenu hover effects */
#tm-dialog-mobile .uk-nav-sub > li > a:hover {
    color: var(--dark-blue) !important;
    background: rgba(254, 202, 10, 0.1) !important;
    padding-left: 35px !important;
    border-radius: 5px !important;
    margin: 0 10px !important;
}

#tm-dialog-mobile .uk-nav-sub > li > a:hover::before {
    opacity: 1;
}

/* ========================================
   DROPDOWN PARENT INDICATOR
======================================== */

/* Add arrow to dropdown parents in mobile */
#tm-dialog-mobile .uk-nav.uk-nav-default > li.dynamicdropdown > a::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
}

/* Rotate arrow when submenu is visible */
#tm-dialog-mobile .uk-nav.uk-nav-default > li.dynamicdropdown.uk-open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* ========================================
   MOBILE MENU ENHANCEMENTS - NO CONFLICTS
======================================== */

/* Remove conflicting animations - let YooTheme handle menu toggle */
#tm-dialog-mobile .uk-nav.uk-nav-default > li {
    /* Remove custom animations that conflict with YooTheme */
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
}

/* Remove individual animation delays */
/* Commented out to prevent conflicts:
#tm-dialog-mobile .uk-nav.uk-nav-default > li:nth-child(1) { animation-delay: 0.1s; }
#tm-dialog-mobile .uk-nav.uk-nav-default > li:nth-child(2) { animation-delay: 0.15s; }
#tm-dialog-mobile .uk-nav.uk-nav-default > li:nth-child(3) { animation-delay: 0.2s; }
#tm-dialog-mobile .uk-nav.uk-nav-default > li:nth-child(4) { animation-delay: 0.25s; }
#tm-dialog-mobile .uk-nav.uk-nav-default > li:nth-child(5) { animation-delay: 0.3s; }
#tm-dialog-mobile .uk-nav.uk-nav-default > li:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInMobile {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
*/

/* ========================================
   MOBILE RESPONSIVE CONTROLS
======================================== */

/* Ensure these styles only apply on mobile */
@media (min-width: 960px) {
    /* Hide mobile menu completely on desktop */
    .tm-header-mobile {
        display: none !important;
    }
}

/* Fine-tune for smaller mobile screens */
@media (max-width: 479px) {
    #tm-dialog-mobile .uk-panel {
        padding: 15px !important;
    }
    
    #tm-dialog-mobile .uk-nav.uk-nav-default > li > a {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
    }
    
    #tm-dialog-mobile .uk-nav-sub > li > a {
        padding: 6px 15px 6px 25px !important;
        font-size: 0.8rem !important;
    }
}