/* ===== Industries We Serve Section ===== */
.industries-section {
    position: relative;
}

.industry-card {
    /* Glassmorphism Base */
    background: #22293b;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.02);

    border-radius: 30px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--theme), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    /* Glassmorphism Hover */
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-6px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(59, 130, 246, 0.05); */
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(59, 130, 246, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.industry-icon i {
    font-size: 22px;
    color: var(--theme);
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    background: var(--theme);
}

.industry-card:hover .industry-icon i {
    color: #fff;
}

.industry-card h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.industry-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.industry-link {
    color: var(--theme);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.industry-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.industry-link:hover {
    color: #fff;
    gap: 10px;
}

.industry-link:hover i {
    transform: translate(2px, -2px);
}


