/* Exam Categories Section */
.it-exam-categories-area {
    background-color: #f9f9f9;
    padding-top: 100px;
    padding-bottom: 70px;
    position: relative;
    z-index: 5;
}

.it-exam-title-box {
    margin-bottom: 50px;
}

.it-exam-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0e1133;
}

.it-exam-subtitle {
    font-size: 16px;
    color: #6e707e;
    max-width: 700px;
    margin: 0 auto;
}

.it-exam-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 25px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease-out 0s;
    height: 100%;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.it-exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

/* Yellow circular decoration in background */
.it-exam-card::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background-color: rgba(255, 235, 205, 0.4);
    /* Light yellow */
    border-radius: 50%;
    z-index: 0;
}

.it-exam-card:hover::after {
    background-color: rgba(255, 235, 205, 0.7);
}

.it-exam-top {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.it-exam-title-sm {
    font-size: 20px;
    font-weight: 700;
    color: #0e1133;
    margin-bottom: 15px;
}

.it-exam-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.it-exam-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #575757;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 4px 12px;
    border-radius: 20px;
    line-height: 1.5;
}

.it-exam-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.it-exam-icon img {
    max-width: 60px;
}

.it-exam-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.it-exam-link {
    font-size: 14px;
    font-weight: 500;
    color: #575757;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.it-exam-link:hover {
    color: #ff9b2f;
    /* Using theme color based on the context */
}

.it-exam-link i {
    font-size: 16px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.it-exam-link:hover i {
    transform: rotate(0deg);
}

@media (max-width: 767px) {
    .it-exam-card {
        padding: 20px;
    }

    .it-exam-title-sm {
        font-size: 18px;
    }
}