.exam-card {
        position: relative;
        color: #fff;
        text-align: center;
        padding: 30px 20px;
        border-radius: 4px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow: visible;
        z-index: 1;
        height: 170px;
        text-transform: uppercase;
    }

    /* Bottom + Right Border Effect */
    .exam-card::before {
        content: '';
        position: absolute;
        bottom: -8px;
        right: -8px;
        width: 100%;
        height: 100%;
        border-right: 2px solid var(--border-color);
        border-bottom: 2px solid var(--border-color);
        border-radius: 4px;
        z-index: -1;
    }

    /* Hover Effect */
    .exam-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    /* Anchor inside card */
    .exam-card a {
        color: #fff;
        text-decoration: none;
        display: block;
        width: 100%;
    }

    /* Exam icon (optional) */
    .exam-icon {
        font-size: 40px;
        margin-bottom: 10px;
        color: #fff;
    }

    /* Exam title */
    .exam-title {
        font-size: 16px;
        line-height: 1.3;
        font-weight: 600;
        font-size: 13px;
    }
     .exam-title:hover {
        color: #fff;
    }

    /* Mobile spacing */
    @media (max-width: 768px) {
        .exam-card {
            margin-bottom: 20px;
            height: 150px;
            padding: 20px 15px;
        }

        .exam-title {
            font-size: 14px;
        }
    }

    