/* Premium Industry Section Styles */
.industry-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.industry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(212, 165, 116, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.industry-pretitle {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 165, 116, 0.1);
    color: #b88a58;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.industry-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.industry-section h2 span {
    color: #d4a574;
}

.industry-section .subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.industry-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: rgba(212, 165, 116, 0.3);
}

.industry-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.industry-icon-wrapper i {
    font-size: 28px;
    color: #0f172a;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon-wrapper {
    background: linear-gradient(135deg, #d4a574 0%, #b88a58 100%);
}

.industry-card:hover .industry-icon-wrapper i {
    color: white;
    transform: scale(1.1);
}

.industry-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.industry-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

.card-arrow {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.industry-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: #d4a574;
    color: white;
}

.industry-footer {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 50px;
}

.eval-counter {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

.eval-counter span {
    color: #0f172a;
    font-weight: 700;
    background: linear-gradient(to bottom, transparent 60%, rgba(212, 165, 116, 0.2) 60%);
}

.btn-industry-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #0f172a;
    color: white !important;
    padding: 18px 40px;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-industry-all:hover {
    background: #d4a574;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(212, 165, 116, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .industry-section {
        padding: 50px 0;
    }

    .industry-section h2 {
        font-size: 28px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .industry-section .subtitle {
        font-size: 15px;
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .industry-card {
        padding: 20px 15px;
        border-radius: 16px;
    }

    .industry-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .industry-icon-wrapper i {
        font-size: 20px;
    }

    .industry-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .industry-card p {
        font-size: 12px;
        display: none;
    }

    .card-arrow {
        display: none;
    }

    .industry-footer {
        padding-top: 30px;
    }

    .eval-counter {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .btn-industry-all {
        padding: 14px 30px;
        font-size: 14px;
    }
}