 /* Scoped CSS - Sirf is section par asar karega */
    .ca-comparison-section {
        font-family: 'Inter', sans-serif;
        padding: 80px 20px;
        background-color: #f8fafc;
        color: #1e293b;
        line-height: 1.5;
    }

    /* Specific selectors taaki global h2/h3 disturb na hon */
    .ca-comparison-section .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .ca-comparison-section .section-title h2 {
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        color: #64748b !important;
        font-weight: 800 !important;
        margin-bottom: 12px !important;
        border: none !important; /* Global border remove karne ke liye */
    }

    .ca-comparison-section .section-title h3 {
        font-size: 36px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin-bottom: 15px !important;
    }

    .ca-comparison-section .section-description {
        max-width: 650px;
        margin: 0 auto;
        color: #64748b;
        font-size: 16px;
    }

    /* Table Wrapper to prevent overflow issues */
    .ca-comparison-section .ca-table-container {
        max-width: 1050px;
        margin: 0 auto;
        overflow-x: auto;
        background: #ffffff;
        border-radius: 24px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
        border: 1px solid #e2e8f0;
    }

    .ca-comparison-section .ca-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 750px;
        margin: 0 !important; /* Resetting global table margins */
    }

    .ca-comparison-section .ca-table th, 
    .ca-comparison-section .ca-table td {
        padding: 24px 30px;
        text-align: left;
        border-bottom: 1px solid #f1f5f9;
    }

    /* Column Specific Styles */
    .ca-comparison-section .feature-col { width: 30%; font-weight: 600; color: #334155; }
    .ca-comparison-section .dump-col { width: 35%; background-color: #fafafa; color: #94a3b8; }
    .ca-comparison-section .cert-col { width: 35%; background-color: #fffdf5; border-left: 1px solid #fef3c7; }

    /* Heading Styling inside Table */
    .ca-comparison-section .ca-table th {
        background-color: #f8fafc;
        font-weight: 700;
        font-size: 12px;
        text-transform: uppercase;
        color: #475569;
    }

    .ca-comparison-section .cert-header {
        background-color: #fffbeb !important;
        text-align: center !important;
        border-bottom: 2px solid #fbbf24 !important;
    }

    /* Expert Badge */
    .ca-comparison-section .recommended-badge {
        display: inline-block;
        background: #fbbf24;
        color: #000;
        padding: 4px 14px;
        border-radius: 100px;
        font-size: 10px;
        font-weight: 900;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        line-height: 1;
    }

    /* Icon Colors */
    .ca-comparison-section .bi-check-lg { color: #10b981; font-weight: bold; font-size: 1.2rem; margin-right: 10px; vertical-align: middle; }
    .ca-comparison-section .bi-x-lg { color: #f43f5e; font-size: 1rem; margin-right: 10px; vertical-align: middle; }

    /* Hover States */
    .ca-comparison-section .ca-table tr:hover td { background-color: #f1f5f9; transition: 0.2s ease; }
    .ca-comparison-section .ca-table tr:hover .cert-col { background-color: #fefce8; }

/* Part 1 & 2 Styling */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .custom-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-top: 6px solid #004aad;
            height: 100%;
        }

        .custom-card h3 { font-size: 1.2rem; font-weight: 700; color: #002d62; margin-bottom: 15px; }
        .custom-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }
        .percentage { color: #004aad; font-size: 0.9rem; }

        /* Sample Question Dark Box */
        .sample-question-box {
            background-color: #101828;
            color: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .question-text { font-size: 1.1rem; line-height: 1.5; margin-bottom: 20px; }
        .options-list li { margin-bottom: 8px; opacity: 0.9; }

        .rationale-box {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 12px;
            margin-top: 25px;
        }

        /* Verification Footer */
        .verification-footer {
    border: 1px solid #c3e6cb; /* Soft green border */
    padding: 24px;
    border-radius: 12px;
    background: #f8fff9; /* Extremely light green tint */
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.05); /* Subtle professional glow */
}

/* Heading color - Dark Green for readability */
.verification-footer h5 {
    color: #155724; 
    font-size: 1.1rem; 
    font-weight: 700; 
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

/* Text color - Muted Forest Green */
.verification-footer p {
    font-size: 0.9rem; 
    color: #3e5a44;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Image/Icon Styling */
.shield-icon img {
    width: 50px; /* Precise sizing */
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.shield-icon {
    margin-right: 20px;
}

        /* Responsive Fixes */
        @media (max-width: 768px) {
            .sample-question-box { padding: 20px; }
        }

/* Pagination Container */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
    gap: 5px; /* Buttons ke darmiyan space */
}

/* Base Style for Links and Spans */
.pagination li a, 
.pagination li span {
    color: #333;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 14px;
    background-color: #fff;
}

/* Hover Effect */
.pagination li a:hover:not(.active) {
    background-color: #f1f1f1;
    border-color: #007bff;
    color: #007bff;
}

/* Active Page Style */
.pagination li.active a, 
.pagination li.active span {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    font-weight: bold;
}

/* Disabled (Prev/Next) Style */
.pagination li.disabled span {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
    border-color: #eee;
}

/* Round Corners for First and Last */
.pagination li:first-child a, .pagination li:first-child span {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.pagination li:last-child a, .pagination li:last-child span {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.udHead{text-align:center;background-color: #383893 !important;color: white !important;}

.largespacing{ padding:20px 0; display:block; clear:both;}
.spacing{ padding:10px 0; display:block; clear:both;}
.smallspacing{ padding:5px 0; display:block; clear:both;}

.options-list p {display: inline;}

label {
  display: inline-block;
  padding: 4px 0px;
}