/* Industries Served Section */
.industries-section {
    background-color: #1a1a1a;
    padding: 50px 0;
    text-align: center;
}

.industries-heading {
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 40px !important;
    letter-spacing: 0.5px;
}

.industries-heading span {
    color: #ff5773;
}

.industries-container {
    /* Styles removed, replaced by Bootstrap grid */
    display: none;
}

.industry-card {
    background-color: #111111;
    border-radius: 12px;
    width: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.industry-icon-box {
    width: 48px;
    height: 48px;
    background-color: #ffdce2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.industry-icon-box svg {
    width: 24px;
    height: 24px;
    fill: #ff5773;
    stroke: #ff5773;
}

.industry-title {
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    max-width: 100%;
}

/* Responsive adjustments if needed, though Bootstrap handles most */
@media (max-width: 768px) {
    .industry-card {
        padding: 15px;
        min-height: 140px;
    }
}