.custom-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.custom-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.custom-card-parent {
    flex: 0 0 33.33%;
}

.custom-card {
    padding: 20px;
    background: #f8f1f1;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.custom-card img {
    width: 125px;
    margin-bottom: 15px;
}

.custom-card h3 {
    color: #5a2d82;
    margin-bottom: 10px;
}

/* Tablet (2 cards per row) */
@media (max-width: 1023px) {
    .custom-card-parent {
        flex: 0 0 50%;
    }
}

/* Mobile (1 card per row) */
@media (max-width: 767px) {
    .custom-card-parent {
        flex: 0 0 100%;
    }
}

.custom-dots {
    text-align: center;
    margin-top: 15px;
}

.custom-dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-dot.custom-active {
    background-color: #5a2d82;
}