.yh-card {
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.yh-icon-box {
    background: #7C0021;
    border: 1px solid #ccc;
    border: #7C0021;
    /* Fallback color */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.yh-icon-box i {
    font-size: 36px;
    transition: 0.3s;
}

.yh-icon-box svg {
    width: 72px;
    transition: 0.3s;
}

.yh-label {
    font-size: 15px;
    font-weight: 600;
}

/* Hover Effects */
.yh-card:hover .yh-icon-box {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 2. NEW: Flip the Icon on Hover */
.yh-card:hover .yh-icon-box i,
.yh-card:hover .yh-icon-box svg {
    transform: scaleX(-1);
}

/* Dots adjustment */
.swiper-pagination {
    position: relative !important;
    margin-top: 20px !important;
}
.swiper-wrapper{
    padding:20px 0px;
}