/* Industries Section */
.industries-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.industry-card {
    height: 100%;
    background: white;
    border-radius: var(--main-radius);
    border: 1px solid #e0e0e0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(23, 162, 184, 0.2);
    border-color: var(--primary-color);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}


.industry-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.4;
}

.collaboration-container {
    max-width: 900px;
}
