.ind-wrapper-a9f9511a {
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
    box-sizing: border-box;
    padding: 80px 20px;
    background: radial-gradient(circle at 10% 20%, rgba(241, 245, 249, 0.6) 0%, rgba(248, 250, 252, 0.6) 90%);
}

.ind-header-a9f9511a {
    text-align: center;
    margin-bottom: 65px;
}

.ind-subtitle-a9f9511a {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: inline-block;
}

.ind-title-a9f9511a {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 18px 0;
}

.ind-desc-a9f9511a {
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Grid Layout */
.ind-grid-a9f9511a {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Enterprise Large Card Styling */
.ind-card-a9f9511a {
    position: relative;
    border-radius: 24px;
    height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Card Background Image & Subtle Zoom */
.ind-card-bg-img-a9f9511a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Elegant Dark/Brand Overlay */
.ind-card-a9f9511a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 2;
    transition: opacity 0.5s ease;
}

.ind-card-content-a9f9511a {
    position: relative;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hover States */
.ind-card-a9f9511a:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15);
}

.ind-card-a9f9511a:hover .ind-card-bg-img-a9f9511a {
    transform: scale(1.08);
}

.ind-card-title-a9f9511a {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.ind-card-desc-a9f9511a {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Tablet Layout */
@media (max-width: 1024px) {
    .ind-grid-a9f9511a {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .ind-title-a9f9511a {
        font-size: 34px;
    }
    .ind-card-a9f9511a {
        height: 350px;
        padding: 30px;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .ind-grid-a9f9511a {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ind-header-a9f9511a {
        margin-bottom: 45px;
    }
    .ind-card-a9f9511a {
        height: 320px;
        padding: 25px;
    }
}
