.indexing-wrapper {
    height: 520px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f8fafc;
    padding: 12px;
}

.indexing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    animation: autoScroll 30s linear infinite;
}

.index-card {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 8px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.index-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 5px 14px rgba(0,0,0,0.14);
}

.index-card img {
    max-width: 90%;
    max-height: 80px;
    object-fit: contain;
}

.indexing-wrapper:hover .indexing-grid {
    animation-play-state: paused;
}

@keyframes autoScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

@media (max-width: 992px) {
    .indexing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .indexing-grid {
        grid-template-columns: 1fr;
    }
}

Template file css
.unique-template-box{
    background: linear-gradient(135deg,#ffffff,#f4f7ff);
    border: 1px solid #dbe3ff;
    border-radius: 16px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    overflow: hidden;
}

.unique-template-box:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.template-image{
    margin-bottom: 12px;
}

.template-image img{
    width: 85px;
    height: 85px;
    object-fit: contain;
}

.template-content h3{
    font-size: 18px;
    color: #1f3c88;
    margin-bottom: 8px;
    font-weight: 700;
}

.template-content p{
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.download-template-btn{
    display: inline-block;
    background: linear-gradient(135deg,#1f3c88,#3458c1);
    color: #fff;
    text-decoration: none;
    padding: 11px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(31,60,136,0.25);
}

.download-template-btn:hover{
    background: linear-gradient(135deg,#162c63,#2747a5);
    transform: scale(1.05);
}