.subject-checkbox:checked + .card {
    border-color: var(--primary-color) !important;
    background-color: rgba(13, 110, 253, 0.02) !important;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.15) !important;
    transform: translateY(-2px);
}

.cursor-pointer {
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.cursor-pointer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}



 .small-text { font-size: 13px !important; color: var(--secondary-color) !important; }
    .transition-card {
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .transition-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.06)!important;
    }

    .premium-glowing-card {
        box-shadow: 0 1rem 3rem rgba(13, 110, 253, 0.08) !important;
        outline: 1px solid rgba(13, 110, 253, 0.15);
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .premium-glowing-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 1.5rem 3.5rem rgba(13, 110, 253, 0.14) !important;
        outline: 1px solid rgba(13, 110, 253, 0.35);
    }
.premium-glow-gradient {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(13,110,253,0.04) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
}
.transition-button {
    transition: all 0.2s ease;
}
.transition-button:hover {
    letter-spacing: 0.6px !important;
}
.subject-card-box {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    background: var(--white-color);
    transition: all 0.25s ease-in-out;
}
.subject-card-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05) !important;
}
.subject-card-box.selected-card {
    border-color: var(--primary-color);
    background-color: var(--light-color);
}
.subject-card-box.selected-card .fw-semibold {
    color: var(--primary-color) !important;
}

.mentor-card {
            border-left: 3px solid transparent !important;
            transition: all 0.2s ease-in-out;
        }
        .mentor-card:hover {
            transform: translateY(-2px);
            border-left-color: var(--primary-color) !important;
            box-shadow: 0 .5rem 1rem rgba(0,0,0,.08)!important;
        }
        .text-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .fs-7 { font-size: 12px !important; }

.balance-card {
            background: linear-gradient(135deg, var(--primary, #0d6efd) 0%, #003bb3 100%);
            color: var(--white-color);
        }
        .topup-card {
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .topup-card:hover {
            transform: translateY(-3px);
            border-color: var(--primary-color) !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
        }

        .mobile-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
        .mobile-card:hover { transform: translateY(-2px); box-shadow: 0 .5rem 1rem rgba(0,0,0,.08)!important; }