.airdav-industrial-tabs-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.9);
    min-height: 400px;
    font-family: 'Roboto', sans-serif;
}

.airdav-tabs-nav {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.airdav-tab-item {
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
    margin-bottom: 2px;
    position: relative;
    opacity: 0.8;
}

.airdav-tab-item.active {
    opacity: 1;
    z-index: 10;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}

.airdav-tab-title {
    font-weight: 400;
    font-size: 14px;
}

.airdav-tab-icon i, .airdav-tab-icon svg {
    width: 40px;
    height: 40px;
    fill: currentColor;
}

.airdav-tabs-content {
    width: 70%;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.airdav-tab-content-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.airdav-tab-content-item.active {
    display: block;
}

.airdav-content-title {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 500;
}

.airdav-title-accent {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid transparent;
    margin-right: 15px;
}

.airdav-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.airdav-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.3s ease;
}

.airdav-button:hover {
    filter: brightness(1.1);
}

.airdav-content-footer {
    margin-top: 30px;
}

.airdav-content-footer img {
    width: 100%;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .airdav-industrial-tabs-wrapper {
        flex-direction: column;
    }
    .airdav-tabs-nav, .airdav-tabs-content {
        width: 100%;
    }
}
