

/* --- Global / Utility Styles --- */
.utility-bar {
    background-color: #f8f8f8;
    padding: 5px 0;
    font-size: 0.85rem;
}
.dropdown-menu .dropdown-item {
    background-color: #f5f5f5;
    color: #383838;
    font-size: 12px;
}

.nav-item {
    width: 100%;
}
/* --- DESKTOP Styles (Applies to screen sizes >= 992px) --- */

/* Hover functionality and side positioning for nested dropdowns on desktop */
@media (min-width: 992px) {
    
    /* 1. Ensure the first level menu stays open on hover */
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    
    /* 2. Position the second level menu to the right of the first level item */
    .dropdown-menu .dropdown-menu {
        margin-left: 0;
        margin-right: 0;
        top: 0;
        left: 100%; /* Position to the right */
        margin-top: -1px;
    }
    
    /* 3. Hide all nested menus by default (rely on hover to show) */
    .dropdown-menu .dropdown-menu {
        display: none;
    }

    /* 4. Show the nested menu when hovering over its parent list item */
    .dropdown-menu .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

.dropdown-menu .dropdown-item {
    background-color: #f5f5f5;
    color: #383838;
    font-size: 12px;
}

@media (max-width: 767px) {
    .nav-item{
    
        text-align:left;
    }
    }
/* --- MOBILE/TABLET Styles (max-width: 991.98px) --- */
@media (max-width: 991.98px) {
    
    /* Add vertical scrolling to the collapsed menu if content is too long */
    .navbar-collapse {
        max-height: 85vh; /* Limit height to 85% of viewport height */
        overflow-y: auto;
    }
    
    /* Force nested menus to stack vertically on mobile */
    .dropdown-menu .dropdown-menu {
        /* Reset desktop positioning */
        left: 0; 
        top: 100%; 
        position: static !important; /* Force to flow in the document */
        box-shadow: none !important;
        
        /* Add slight padding/border for visual clarity of nesting */
        padding-left: 0px;
        border-left: 3px solid #eee;
    }
}

/* Standard Dropdown Item Hover Styles */
.dropdown-menu .dropdown-item {
    background-color: #f5f5f5;
    color: #383838;
    font-size: 12px;
}


.nav-link-btn {
    /* **Pill Shape** */
    border-radius:10px !important;

    /* Spacing */
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 6px;

    width: 100px;
    /* Color and Display */
    background-color: #15b1ee;
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;

    /* **Shadow** for a 3D effect: (x-offset, y-offset, blur, spread, color) */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* **Transition** for smooth effects */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.nav-link-btn:hover {
    /* Darker blue on hover */
    background-color: #0d8bc5;

    /* **Lifting Effect:** Move the button up 2px and increase the shadow */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px); 
}

.nav-item {
    width: 100%;
}

.nav-link,
.navbar-email,
.navbar-phone {
color: #666 !important;
}
.navbar .nav-item .nav-link {
color: #666;
text-decoration: none;
padding-top: 0.625rem;
padding-bottom: 0.625rem;
transition: all 0.2s ease;
}

