.industries-section {
    position: relative;
    background: #fdfdfd;
}

.industry-block {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.industry-block:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.1);
}

.industry-block .image-box {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin: 0;
}

.industry-block .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.industry-block:hover .image-box img {
    transform: scale(1.15);
}

.industry-block .content-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #d9dfe7 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

/* Background Number Indicator */
.industry-block .content-box::before {
    content: attr(data-number);
    position: absolute;
    right: 30px;
    top: 25px;
    font-size: 40px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.02);
    line-height: 1;
    font-family: var(--manjari);
    transition: all 0.5s ease;
}

.industry-block:hover .content-box::before {
    color: rgba(59, 130, 246, 0.05);
}

.industry-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--title-color);
    font-family: var(--manjari);
}

.industry-block h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--primary-color);
    margin-top: 10px;
    transition: width 0.3s ease;
}

.industry-block:hover h3::after {
    width: 70px;
}

.industry-block p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--paragraph-color);
    margin-bottom: 25px;
    flex-grow: 1;
}

.industry-block .link-btn a {
    font-size: 13px;
    font-weight: 700;
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.industry-block .link-btn a i {
    margin-left: 10px;
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.industry-block:hover .link-btn a {
    color: var(--primary-color);
}

.industry-block:hover .link-btn a i {
    transform: translateX(5px);
}

/* Responsiveness */
@media only screen and (max-width: 1199px) {
    .industry-block .image-box {
        height: 180px;
    }
}

@media only screen and (max-width: 991px) {
    .industry-block .content-box {
        padding: 25px;
    }

    .industry-block h3 {
        font-size: 20px;
    }
}