/* Industries We Serve Section - Premium Design */
.industries-we-serve {
    position: relative;
    padding: 100px 0;
    background: #f4f7fa;
    overflow: hidden;
}

/* Background Texture Effect */
.industries-we-serve::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(0, 117, 188, 0.05) 1px, transparent 0);
    background-size: 30px 30px;
    z-index: 0;
}

.industries-we-serve .container {
    position: relative;
    z-index: 1;
}

.industries-we-serve .section-head h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--title);
    margin-bottom: 50px;
    position: relative;
}

.industries-we-serve .section-head h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.industry-card-wrapper {
    margin-bottom: 30px;
}

.industry-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 117, 188, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 117, 188, 0.2);
    border-color: transparent;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card .icon-wrapper {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s ease;
    box-shadow: inset 0 0 0 1px rgba(0, 117, 188, 0.1);
    position: relative;
    z-index: 2;
}

.industry-card:hover .icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) rotate(8deg);
    box-shadow: none;
}

.industry-card .icon-wrapper i {
    font-size: 36px;
    color: var(--primary);
    transition: all 0.5s ease;
}

.industry-card:hover .icon-wrapper i {
    color: #fff;
}

.industry-card h6 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--title);
    margin: 0;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.industry-card:hover h6 {
    color: #fff;
}

/* Floating Animation for icons */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}

.industry-card:hover .icon-wrapper {
    animation: float 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .industries-we-serve {
        padding: 70px 0;
    }

    .industries-we-serve .section-head h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 575px) {
    .industry-card {
        padding: 35px 20px;
    }
}