.indexing-section{
    background:#f8fafc;
}

/* TITLE */

.section-title h2{
    font-size:38px;
    font-weight:800;
    color:#111827;
    margin-bottom:12px;
}

.section-title p{
    color:#6b7280;
    font-size:16px;
}

/* GRID */

.indexing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:22px;
}

/* CARD */

.index-box{
    background:#ffffff;
    border-radius: 0px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #edf0f4;
    transition:all .3s ease;
    position:relative;
    overflow:hidden;
    min-height:220px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

/* TOP GLOW */

.index-box::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background: #024d8f;
}

/* HOVER */

.index-box:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE */

.index-box img{
    width:90px;
    height:90px;
    object-fit:contain;
    margin-bottom:20px;
    transition:.3s ease;
}

.index-box:hover img{
    transform:scale(1.1);
}

/* TEXT */

.index-box h6{
    font-size:16px;
    font-weight:700;
    color:#111827;
    line-height:1.5;
    margin:0;
}

/* MOBILE */

@media(max-width:768px){

    .indexing-grid{
        grid-template-columns:repeat(2,1fr);
        gap:15px;
    }

    .index-box{
        min-height:180px;
        padding:20px 15px;
        border-radius: 0px;
    }

    .index-box img{
        width:65px;
        height:65px;
        margin-bottom:15px;
    }

    .index-box h6{
        font-size:14px;
    }

    .section-title h2{
        font-size:28px;
    }
}