/**
 * Frontend styles for Industries We Serve Block - Pill/Tag Style
 */

.industries-block {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 30px -8px rgba(0, 20, 30, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.industries-header {
    text-align: center;
    margin-bottom: 2rem;
}

.industries-tag {
    display: inline-block;
    background: #0b2a3c;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.2rem 1rem;
    border-radius: 40px;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.industries-tag i {
    margin-right: 4px;
}

.industries-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0b2a3c;
    letter-spacing: -0.02em;
    margin: 0;
}

.industries-description {
    font-size: 1.05rem;
    color: #2c4b5e;
    max-width: 600px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

/* Pill/Tag Style Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.industry-tag {
    background: #f0f4f9;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
    font-size: 0.9rem;
    color: #0b2a3c;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-decoration: none;
    display: inline-block;
    cursor: default;
}

.industry-tag:hover {
    background: #a03136;
    color: #ffffff;
    transform: translateY(-2px);
    text-decoration: none;
}

.industry-tag i {
    color: #a03136;
    margin-right: 6px;
}

.industry-tag:hover i {
    color: #ffffff;
}

/* Link style for clickable tags */
a.industry-tag {
    cursor: pointer;
}

.industries-button-wrap {
    text-align: center;
    margin-top: 2rem;
}

.industries-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0b2a3c;
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.industries-btn:hover {
    background: #b38b5e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(179, 139, 94, 0.3);
    text-decoration: none;
}

.industries-btn i {
    transition: transform 0.3s ease;
}

.industries-btn:hover i {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .industries-block {
        padding: 2rem 1.5rem;
    }
    .industries-title {
        font-size: 1.6rem;
    }
    .industries-description {
        font-size: 0.95rem;
    }
    .industry-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .industries-block {
        padding: 1.5rem 1rem;
    }
    .industries-title {
        font-size: 1.3rem;
    }
    .industry-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

.icon-wrap {
    background: #a03136 !important;
}