/* Styles used by application-industries.html. */
.page-title-section {
    padding: 40px 0 20px;
    text-align: center;
}

.section-header {
    margin-bottom: 30px;
    color: var(--deep-blue);
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

.industry-section {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto 60px;
}

.industry-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5%;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
    margin-bottom: 20px;
    color: var(--black);
    text-decoration: none;
}

.industry-img-container {
    width: 100%;
    height: 250px;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-item:hover .industry-img-container {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.industry-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-caption {
    color: #555;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

