.airdav-industrial-menu-wrapper {
    font-family: 'Roboto', sans-serif;
}

.airdav-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.airdav-menu-item {
    position: relative;
}

.airdav-menu-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.airdav-menu-item.has-dropdown:hover > .airdav-menu-link {
    border-bottom-color: currentColor;
}

/* Dropdown Styles */
.airdav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 2px solid #0099bc;
}

.airdav-menu-item:hover .airdav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.airdav-dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease;
}

.airdav-dropdown-item:last-child {
    border-bottom: none;
}

.airdav-dropdown-item:hover {
    background: #f9f9f9;
}

.airdav-dropdown-text {
    font-size: 13px;
}

.airdav-dropdown-icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-left: 15px;
}

.airdav-dropdown-icon-box i, .airdav-dropdown-icon-box svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Mobile */
@media (max-width: 768px) {
    .airdav-menu-list {
        flex-direction: column;
        align-items: flex-start;
    }
    .airdav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        display: none;
    }
    .airdav-menu-item.active .airdav-dropdown {
        display: block;
    }
}
