/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 07 2025 | 04:44:43 */
/* --- Align Main Navigation Menu Items (FINAL FIX) --- */

/* This rule targets your main menu container (the <ul>) */
ul#menu-home-page-menu-1 {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
}

/* This rule specifically resets the position of the "CONTACT US" item */
ul#menu-home-page-menu-1 > li.menu-item-26911 {
    position: static !important;
    margin-top: 0 !important;
}

/* This targets the links directly and stops their text from wrapping */
ul#menu-home-page-menu-1 > li > a {
    white-space: nowrap !important;
}

/* --- NEW RULE for items with dropdowns --- */
/* This makes the menu text and its dropdown arrow align horizontally. */
ul#menu-home-page-menu-1 > li.menu-item-has-children {
    display: inline-flex !important; /* Aligns the text and arrow inside */
    align-items: center !important;
    gap: 5px !important; /* Adds a small space between text and arrow */
}