/* Industry Applications Section Styles */
.industry-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.9), rgba(0, 123, 255, 0.7));
    opacity: 0;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-overlay {
    opacity: 1;
}

.industry-content {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.industry-item:hover .industry-content {
    transform: translateY(0);
}

.industry-features small {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .industry-item {
        margin-bottom: 30px;
    }
    
    .industry-overlay {
        opacity: 1;
        background: linear-gradient(45deg, rgba(0, 123, 255, 0.8), rgba(0, 123, 255, 0.6));
    }
    
    .industry-content {
        transform: translateY(0);
    }
}

