/* Industries Section - Animated Blue Background */
.industries {
    padding: 100px 0;
    background: linear-gradient(45deg, #ffffff, #b6e1ff, #cde0ff, #fde0db, #ffe6d5);
    background-size: 400% 400%;
    animation: blueFlow 8s ease-in-out infinite;
    position: relative;
}

@keyframes blueFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-header h6 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section-header h2 {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-header p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.title-underline {
    width: 60px;
    height: 3px;
    background: #ffffff;
    margin: 0 auto 2rem;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.industry-card-large {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.card-body p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.btn-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #1d4ed8;
    gap: 10px;
}


@media (max-width: 768px) {
    .industries {
        padding: 60px 0;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-body {
        padding: 1.2rem;
    }
}
