.industry-cards-carousel {
    padding: 10px 0;
}

.industry-cards-carousel .swiper-slide {
    width: auto;
}

.industry-card-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    width: 260px;
}

.industry-icon-wrapper {
    background: linear-gradient(135deg, #2d5be3, #04145c);
    border-radius: 12px;
    width: 250px;
    height: 140px;
}

.industry-icon {
    height: 80px;
    width: 80px;
    filter: brightness(0) invert(1);
}

.industry-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2d5be3;
    margin-top: 0.5rem;
}

.industry-desc {
    font-size: 0.875rem;
    color: #333;
    line-height: 1.4;
    white-space: normal;
    margin-top: 0.3rem;
}

.swiper-button-prev,
.swiper-button-next {
    color: #2d5be3;
    filter: drop-shadow(0 0 2px #fff);
}


.swiper-wrapper{
    height: auto;
}


.position-relative {
    position: relative;
}

.swiper-button-prev.custom-swiper-btn {
    left: -60px;
}

.swiper-button-next.custom-swiper-btn {
    right: -60px;
}

@media (max-width: 767px) {
    .custom-swiper-btn {
        display: none;
    }
}