/* Industries We Serve Enhanced Styles */

.industries-section-modern {
    background: #f8fafc;
    position: relative;
    z-index: 1;
}

.industry-card-modern {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industry-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Background Shine Effect */
.industry-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

/* Icon Box */
.industry-icon-box {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.industry-icon-box i {
    font-size: 2rem;
    transition: all 0.4s ease;
}

/* Specific Colors for Icons (Dynamic via CSS classes if needed, or just default) */
.industry-card-modern:hover .industry-icon-box {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Text Styling */
.industry-card-modern h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    transition: color 0.3s ease;
}

.industry-card-modern:hover h4 {
    color: #3b82f6;
}

/* Section Subtitle Style */
.industries-subtitle-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
