.industries-section {
    background: linear-gradient(135deg, #0a192f 0%, #172a45 100%);
    color: #fff;
    position: relative;
}

.industries-section .section-header h2 {
    color: #fff !important;
}

.section-divider {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(100, 255, 218, 0.1), rgba(0, 188, 212, 0.1));
    opacity: 0;
    transition: all 0.3s ease;
}

.industry-card:hover .card-overlay {
    opacity: 1;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.industry-icon i {
    font-size: 1.75rem;
    color: #0a192f;
}

.industry-content {
    position: relative;
    z-index: 1;
}

.industry-content h3 {
    color: #64ffda;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #ccd6f6;
}

.feature-list li i {
    color: #64ffda;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.industry-link {
    color: #64ffda;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.industry-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.industry-link:hover {
    color: #00bcd4;
}

.industry-link:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .industry-card {
        padding: 1.5rem;
    }
    
    .industry-icon {
        width: 50px;
        height: 50px;
    }
    
    .industry-content h3 {
        font-size: 1.25rem;
    }
}