﻿/* ============================================================
   MCQ STATS – RESPONSIVE GRID
============================================================ */

.mcq-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #fafafa;
    font-family: "Segoe UI", sans-serif;
    margin-top: 20px;
}

.mcq-card {
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 18px;
    transition: transform .3s ease;
}

    .mcq-card:hover {
        transform: translateY(-6px);
    }

    .mcq-card .icon {
        font-size: 34px;
        margin-bottom: 12px;
    }

/* Left Border Colors */
.red-card {
    border-left: 6px solid #e53935;
}

.orange-card {
    border-left: 6px solid #fb8c00;
}

.blue-card {
    border-left: 6px solid #1e88e5;
}

.green-card {
    border-left: 6px solid #43a047;
}

/* Counter Colors */
.mcq-card.red h2 {
    color: #e53935;
}

.mcq-card.orange h2 {
    color: #fb8c00;
}

.mcq-card.blue h2 {
    color: #1e88e5;
}

.mcq-card.green h2 {
    color: #43a047;
}

.mcq-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 992px) {
    .mcq-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mcq-stats {
        grid-template-columns: 1fr;
    }
}
/* ============================================================
   CTA PRICING – RESPONSIVE
============================================================ */

.cta-pricing-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    padding: 20px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* Popular Plan */
.popular-plan {
    position: relative;
    padding: 18px 20px;
    border-radius: 12px;
    background: #f8f5ff;
    text-align: center;
    flex: 1 1 220px;
}

    .popular-plan h4 {
        margin-bottom: 6px;
        font-size: 16px;
        font-weight: 600;
    }

.price {
    font-size: 26px;
    font-weight: 700;
    color: #6a1b9a;
}

    .price small {
        font-size: 14px;
    }

.per-day {
    font-size: 13px;
    color: #555;
}

/* Badge */
.badge_home {
    position: absolute;
    top: -10px;
    left: 14px;
    background: #6a1b9a;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Features */
.plan-features {
    flex: 2 1 260px;
    font-size: 14px;
    color: #444;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}

/* CTA */
.cta-action {
    flex: 1 1 100%;
    text-align: center;
}

.cta-btn-small {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    background: linear-gradient(90deg, #c2188b, #8e24aa);
    color: #fff;
    cursor: pointer;
}

/* Mobile */
@media (max-width: 576px) {
    .plan-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .cta-btn-small {
        width: 100%;
    }

}

