.elementor-1560 .elementor-element.elementor-element-799b905{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1560 .elementor-element.elementor-element-2b4430c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-1560 .elementor-element.elementor-element-2b4430c{--content-width:1228px;}}/* Start custom CSS for html, class: .elementor-element-ea0fc21 *//* ========================================================================
   Complete Navigation Section - Strictly Scoped CSS
   ======================================================================== */
#gmb-nav-section {
    --gmb-nav-orange: #ff6b00;
    --gmb-nav-orange-hover: #e65c00;
    --gmb-nav-text-gray: #4b5563;
    --gmb-nav-bg: #ffffff;
    
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    width: 100%;
}

#gmb-nav-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Top Orange Banner */
#gmb-nav-section .gmb-nav-top-banner {
    background-color: var(--gmb-nav-orange);
    color: white;
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Main Header */
#gmb-nav-section .gmb-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--gmb-nav-bg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 999; /* Critical: keeps dropdown above the hero section */
}

#gmb-nav-section .gmb-nav-logo img {
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 4px;
    display: block;
}

/* Navigation Links */
#gmb-nav-section .gmb-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

#gmb-nav-section .gmb-nav-links a {
    text-decoration: none;
    color: var(--gmb-nav-text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

#gmb-nav-section .gmb-nav-links > li > a:hover {
    color: var(--gmb-nav-orange);
}

/* =========================================================
   Dropdown Menu Mechanics
   ========================================================= */
#gmb-nav-section .gmb-dropdown {
    position: relative;
    /* This padding creates an invisible bridge so the hover doesn't break */
    padding: 20px 0; 
    margin: -20px 0;
}

#gmb-nav-section .gmb-dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px; /* Aligns visually with the text */
    background-color: var(--gmb-nav-bg);
    min-width: 260px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 0;
    list-style: none;
    
    /* Animation defaults (Hidden) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #f1f5f9;
}

/* Hover State: Shows the menu */
#gmb-nav-section .gmb-dropdown:hover .gmb-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#gmb-nav-section .gmb-dropdown-menu li {
    width: 100%;
}

#gmb-nav-section .gmb-dropdown-menu a {
    display: block;
    padding: 10px 25px;
    color: var(--gmb-nav-text-gray);
    font-size: 0.9rem;
    font-weight: 600;
}

#gmb-nav-section .gmb-dropdown-menu a:hover {
    background-color: #f8fafc;
    color: var(--gmb-nav-orange);
}

/* Call to Action Button */
#gmb-nav-section .gmb-nav-btn {
    padding: 12px 26px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
    display: inline-block;
    background-color: var(--gmb-nav-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

#gmb-nav-section .gmb-nav-btn:hover {
    background-color: var(--gmb-nav-orange-hover);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    #gmb-nav-section .gmb-nav-links { 
        display: none; 
    } 
}/* End custom CSS */