/* START: Index Standard Conveyors Section CSS */
.index-std-conveyor-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.index-std-badge {
    background-color: rgba(230, 83, 196, 0.12);
    color: #e653c4;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.index-std-main-title {
    font-size: 2.1rem;
    letter-spacing: -0.5px;
}

.index-std-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e653c4 0%, #d445b2 100%);
    border-radius: 3px;
}

.index-std-card {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease;
}

.index-std-card:hover {
    box-shadow: 0 1rem 2.5rem rgba(230, 83, 196, 0.1) !important;
    border-color: rgba(230, 83, 196, 0.25) !important;
}

.index-std-img {
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.index-std-card:hover .index-std-img {
    transform: scale(1.03);
}

@media (max-width: 991.98px) {
    .index-std-main-title {
        font-size: 1.6rem;
    }
    
    .index-std-img {
        height: auto;
    }
}
/* END: Index Standard Conveyors Section CSS */