/*
==================================================
GovtJobPreparation.com
Mock Tests Page
Part-1 : Base + Hero + Category Tabs
==================================================
*/


/*================================================
Main Page
================================================*/

.gjp-mock-tests-page{

    background:#f8fafc;

    padding:40px 0 70px;

    min-height:100vh;

}


.gjp-mock-container{

    width:100%;

    max-width:1200px;

    margin:0 auto;

    padding:0 20px;

}


/*================================================
Breadcrumb
================================================*/

.gjp-mock-tests-page .gjp-breadcrumb{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:28px;

    font-size:14px;

}


.gjp-mock-tests-page .gjp-breadcrumb a{

    color:#2563eb;

    text-decoration:none;

    font-weight:600;

}


.gjp-mock-tests-page .gjp-breadcrumb a:hover{

    text-decoration:underline;

}


.gjp-breadcrumb-separator{

    color:#94a3b8;

    font-size:18px;

}


.gjp-breadcrumb-current{

    color:#64748b;

    font-weight:500;

}


/*================================================
Hero Section
================================================*/

.gjp-mock-hero{

    display:grid;

    grid-template-columns:minmax(0,1fr) 300px;

    align-items:center;

    gap:45px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:22px;

    padding:42px 48px;

    margin-bottom:32px;

    box-shadow:0 8px 28px rgba(15,23,42,.05);

    overflow:hidden;

}


.gjp-mock-hero-content{

    padding:10px 0;

}


.gjp-mock-hero-content h1{

    margin:0 0 15px;

    color:#0f172a;

    font-size:42px;

    line-height:1.2;

    font-weight:750;

}


.gjp-mock-hero-content p{

    max-width:650px;

    margin:0;

    color:#64748b;

    font-size:17px;

    line-height:1.8;

}


.gjp-mock-hero-image{

    display:flex;

    align-items:center;

    justify-content:center;

}


.gjp-mock-hero-image img{

    display:block;

    width:100%;

    max-width:270px;

    height:auto;

    object-fit:contain;

}


/*================================================
Category Tabs
================================================*/

.gjp-mock-tabs-section{

    margin-bottom:30px;

}


.gjp-mock-tabs{

    display:flex;

    align-items:stretch;

    gap:10px;

    padding:8px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    box-shadow:0 5px 20px rgba(15,23,42,.04);

    overflow-x:auto;

    scrollbar-width:none;

}


.gjp-mock-tabs::-webkit-scrollbar{

    display:none;

}


.gjp-mock-tab{

    flex:1 0 auto;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:9px;

    min-height:48px;

    padding:11px 18px;

    border:0;

    border-radius:11px;

    background:transparent;

    color:#475569;

    font-family:inherit;

    font-size:14px;

    font-weight:650;

    white-space:nowrap;

    cursor:pointer;

    transition:

        background .25s ease,

        color .25s ease,

        box-shadow .25s ease,

        transform .25s ease;

}


.gjp-mock-tab:hover{

    color:#2563eb;

    background:#eff6ff;

}


.gjp-mock-tab.active{

    background:#2563eb;

    color:#ffffff;

    box-shadow:0 5px 14px rgba(37,99,235,.20);

}


.gjp-mock-tab.active:hover{

    color:#ffffff;

    background:#1d4ed8;

}


.gjp-tab-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:18px;

    height:18px;

    font-size:14px;

    line-height:1;

}


/*================================================
Keyboard / Accessibility
================================================*/

.gjp-mock-tab:focus-visible{

    outline:3px solid rgba(37,99,235,.25);

    outline-offset:2px;

}


/*================================================
Responsive - Tablet
================================================*/

@media (max-width:992px){

    .gjp-mock-hero{

        grid-template-columns:minmax(0,1fr) 230px;

        gap:25px;

        padding:35px;

    }


    .gjp-mock-hero-content h1{

        font-size:36px;

    }


    .gjp-mock-tab{

        padding-left:15px;

        padding-right:15px;

    }

}


/*================================================
Responsive - Mobile
================================================*/

@media (max-width:768px){

    .gjp-mock-tests-page{

        padding:30px 0 55px;

    }


    .gjp-mock-container{

        padding:0 15px;

    }


    .gjp-mock-hero{

        grid-template-columns:1fr;

        text-align:center;

        gap:20px;

        padding:30px 24px;

    }


    .gjp-mock-hero-content{

        order:1;

    }


    .gjp-mock-hero-image{

        order:2;

    }


    .gjp-mock-hero-content h1{

        font-size:32px;

    }


    .gjp-mock-hero-content p{

        font-size:16px;

    }


    .gjp-mock-hero-image img{

        max-width:210px;

    }


    .gjp-mock-tabs{

        justify-content:flex-start;

    }


    .gjp-mock-tab{

        flex:0 0 auto;

    }

}


/*================================================
Responsive - Small Mobile
================================================*/

@media (max-width:480px){

    .gjp-mock-hero{

        border-radius:18px;

        padding:26px 20px;

    }


    .gjp-mock-hero-content h1{

        font-size:28px;

    }


    .gjp-breadcrumb{

        font-size:13px !important;

    }

}
/*
==================================================
Mock Tests Page
Part-2 : Filters
==================================================
*/


/*================================================
Filters Section
================================================*/

.gjp-mock-filters-section{

    margin-bottom:40px;

}


.gjp-mock-filters{

    display:grid;

    grid-template-columns:
        repeat(4,minmax(0,1fr))
        auto;

    align-items:end;

    gap:16px;

    padding:24px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    box-shadow:0 6px 22px rgba(15,23,42,.04);

}


/*================================================
Filter Group
================================================*/

.gjp-filter-group{

    min-width:0;

}


.gjp-filter-group label{

    display:block;

    margin-bottom:8px;

    color:#334155;

    font-size:13px;

    font-weight:650;

}


.gjp-mock-filter{

    width:100%;

    min-height:46px;

    padding:0 38px 0 14px;

    border:1px solid #dbe2ea;

    border-radius:10px;

    background:#ffffff;

    color:#334155;

    font-family:inherit;

    font-size:14px;

    font-weight:500;

    cursor:pointer;

    outline:none;

    transition:

        border-color .25s ease,

        box-shadow .25s ease;

}


.gjp-mock-filter:hover{

    border-color:#94a3b8;

}


.gjp-mock-filter:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 3px rgba(37,99,235,.10);

}


/*================================================
Reset Button
================================================*/

.gjp-filter-reset{

    display:flex;

    align-items:flex-end;

}


.gjp-reset-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:7px;

    min-height:46px;

    padding:0 18px;

    border:1px solid #dbe2ea;

    border-radius:10px;

    background:#ffffff;

    color:#475569;

    font-family:inherit;

    font-size:14px;

    font-weight:650;

    white-space:nowrap;

    cursor:pointer;

    transition:

        background .25s ease,

        color .25s ease,

        border-color .25s ease;

}


.gjp-reset-btn:hover{

    background:#f8fafc;

    border-color:#94a3b8;

    color:#0f172a;

}


.gjp-reset-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    line-height:1;

}


/*================================================
Responsive - Tablet
================================================*/

@media (max-width:992px){

    .gjp-mock-filters{

        grid-template-columns:
            repeat(2,minmax(0,1fr));

    }


    .gjp-filter-reset{

        align-items:stretch;

    }


    .gjp-reset-btn{

        width:100%;

    }

}


/*================================================
Responsive - Mobile
================================================*/

@media (max-width:600px){

    .gjp-mock-filters{

        grid-template-columns:1fr;

        gap:18px;

        padding:20px;

        border-radius:16px;

    }


    .gjp-filter-group{

        width:100%;

    }


    .gjp-mock-filter{

        min-height:48px;

    }


    .gjp-reset-btn{

        min-height:48px;

    }

}
/*
==================================================
Mock Tests Page
Part-3 : Latest Mock Tests + Test Cards
==================================================
*/


/*================================================
Latest Mock Tests Header
================================================*/

.gjp-mock-list-section{

    margin-bottom:35px;

}


.gjp-mock-list-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:22px;

}


.gjp-section-heading{

    display:flex;

    align-items:center;

    gap:14px;

}


.gjp-section-heading h2{

    margin:0;

    color:#0f172a;

    font-size:28px;

    line-height:1.3;

    font-weight:750;

}


.gjp-heading-line{

    width:45px;

    height:4px;

    border-radius:10px;

    background:#2563eb;

}


/*================================================
Sort
================================================*/

.gjp-mock-sort{

    flex-shrink:0;

}


.gjp-sort-select{

    min-width:155px;

    min-height:42px;

    padding:0 34px 0 13px;

    border:1px solid #dbe2ea;

    border-radius:9px;

    background:#ffffff;

    color:#475569;

    font-family:inherit;

    font-size:13px;

    font-weight:600;

    cursor:pointer;

    outline:none;

}


.gjp-sort-select:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 3px rgba(37,99,235,.10);

}


/*================================================
Mock Test Card
================================================*/

.gjp-mock-test-card{

    display:grid;

    grid-template-columns:64px minmax(0,1fr) auto;

    align-items:center;

    gap:22px;

    padding:25px;

    margin-bottom:18px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    box-shadow:0 5px 20px rgba(15,23,42,.04);

    transition:

        transform .25s ease,

        border-color .25s ease,

        box-shadow .25s ease;

}


.gjp-mock-test-card:hover{

    transform:translateY(-3px);

    border-color:#bfdbfe;

    box-shadow:0 12px 30px rgba(15,23,42,.08);

}


/*================================================
Test Icon
================================================*/

.gjp-test-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    font-size:24px;

    font-weight:700;

    flex-shrink:0;

}


.gjp-test-icon.blue{

    background:#eff6ff;

    color:#2563eb;

}


.gjp-test-icon.green{

    background:#ecfdf5;

    color:#059669;

}


.gjp-test-icon.purple{

    background:#f5f3ff;

    color:#7c3aed;

}


.gjp-test-icon.orange{

    background:#fff7ed;

    color:#ea580c;

}


.gjp-test-icon.pink{

    background:#fdf2f8;

    color:#db2777;

}


/*================================================
Test Content
================================================*/

.gjp-test-content{

    min-width:0;

}


.gjp-test-type{

    display:inline-block;

    margin-bottom:7px;

    font-size:12px;

    line-height:1.3;

    font-weight:750;

}


.gjp-test-type.blue{

    color:#2563eb;

}


.gjp-test-type.green{

    color:#059669;

}


.gjp-test-type.purple{

    color:#7c3aed;

}


.gjp-test-type.orange{

    color:#ea580c;

}


.gjp-test-type.pink{

    color:#db2777;

}


.gjp-test-content h3{

    margin:0 0 13px;

    color:#0f172a;

    font-size:18px;

    line-height:1.5;

    font-weight:700;

}


/*================================================
Test Meta
================================================*/

.gjp-test-meta{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:8px 20px;

}


.gjp-test-meta span{

    color:#64748b;

    font-size:13px;

    line-height:1.5;

    white-space:nowrap;

}


/*================================================
Test Action
================================================*/

.gjp-test-action{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    justify-content:center;

    gap:12px;

    min-width:125px;

}


/*================================================
Difficulty
================================================*/

.gjp-difficulty{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:5px 12px;

    border-radius:30px;

    font-size:11px;

    line-height:1.3;

    font-weight:750;

}


.gjp-difficulty.easy{

    background:#dcfce7;

    color:#15803d;

}


.gjp-difficulty.medium{

    background:#fef3c7;

    color:#b45309;

}


.gjp-difficulty.hard{

    background:#fee2e2;

    color:#b91c1c;

}


/*================================================
Start Test Button
================================================*/

.gjp-start-test-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    min-width:120px;

    min-height:42px;

    padding:0 17px;

    border-radius:9px;

    background:#2563eb;

    color:#ffffff;

    text-decoration:none;

    font-family:inherit;

    font-size:13px;

    font-weight:700;

    white-space:nowrap;

    transition:

        background .25s ease,

        transform .25s ease,

        box-shadow .25s ease;

}


.gjp-start-test-btn span{

    font-size:17px;

    line-height:1;

    transition:transform .25s ease;

}


.gjp-start-test-btn:hover{

    background:#1d4ed8;

    color:#ffffff;

    transform:translateY(-2px);

    box-shadow:0 7px 18px rgba(37,99,235,.22);

}


.gjp-start-test-btn:hover span{

    transform:translateX(3px);

}


/*================================================
Tablet
================================================*/

@media (max-width:992px){

    .gjp-mock-test-card{

        grid-template-columns:58px minmax(0,1fr) auto;

        gap:17px;

        padding:21px;

    }


    .gjp-test-meta{

        gap:7px 15px;

    }


    .gjp-test-meta span{

        font-size:12px;

    }

}


/*================================================
Mobile
================================================*/

@media (max-width:700px){

    .gjp-mock-list-header{

        align-items:flex-start;

        flex-direction:column;

    }


    .gjp-mock-list-header .gjp-mock-sort{

        width:100%;

    }


    .gjp-sort-select{

        width:100%;

    }


    .gjp-mock-test-card{

        grid-template-columns:52px minmax(0,1fr);

        gap:15px;

        padding:19px;

    }


    .gjp-test-icon{

        width:52px;

        height:52px;

        border-radius:13px;

        font-size:21px;

    }


    .gjp-test-content h3{

        font-size:16px;

    }


    .gjp-test-action{

        grid-column:1 / -1;

        flex-direction:row;

        align-items:center;

        justify-content:space-between;

        width:100%;

        padding-top:5px;

        border-top:1px solid #eef2f7;

    }


    .gjp-start-test-btn{

        min-width:135px;

    }

}


/*================================================
Small Mobile
================================================*/

@media (max-width:480px){

    .gjp-section-heading h2{

        font-size:24px;

    }


    .gjp-heading-line{

        width:32px;

    }


    .gjp-test-meta{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:7px;

    }


    .gjp-test-meta span{

        white-space:normal;

    }


    .gjp-test-action{

        gap:10px;

    }


    .gjp-start-test-btn{

        flex:1;

    }

}
/*
==================================================
Mock Tests Page
Part-4 : Load More + Newsletter + Final Responsive
==================================================
*/


/*================================================
Load More
================================================*/

.gjp-load-more-wrapper{

    display:flex;

    align-items:center;

    justify-content:center;

    margin:35px 0 55px;

}


.gjp-load-more-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:190px;

    min-height:46px;

    padding:0 22px;

    border:1px solid #dbe2ea;

    border-radius:10px;

    background:#ffffff;

    color:#334155;

    font-family:inherit;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:

        border-color .25s ease,

        background .25s ease,

        color .25s ease,

        transform .25s ease,

        box-shadow .25s ease;

}


.gjp-load-more-btn:hover{

    border-color:#2563eb;

    background:#eff6ff;

    color:#2563eb;

    transform:translateY(-2px);

    box-shadow:0 7px 18px rgba(37,99,235,.10);

}


.gjp-load-more-icon{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:17px;

    line-height:1;

}


/*================================================
Newsletter
================================================*/

.gjp-mock-newsletter{

    display:grid;

    grid-template-columns:auto minmax(0,1fr) minmax(300px,420px);

    align-items:center;

    gap:25px;

    padding:32px 35px;

    margin-top:10px;

    margin-bottom:20px;

    background:#0f172a;

    border-radius:20px;

    color:#ffffff;

}


.gjp-newsletter-icon{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:15px;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    font-size:25px;

}


.gjp-newsletter-content h2{

    margin:0 0 6px;

    color:#ffffff;

    font-size:22px;

    line-height:1.4;

    font-weight:750;

}


.gjp-newsletter-content p{

    margin:0;

    color:#cbd5e1;

    font-size:14px;

    line-height:1.7;

}


.gjp-newsletter-form{

    display:flex;

    align-items:center;

    gap:8px;

}


.gjp-newsletter-form input{

    width:100%;

    min-height:46px;

    padding:0 14px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:9px;

    background:#ffffff;

    color:#0f172a;

    font-family:inherit;

    font-size:14px;

    outline:none;

}


.gjp-newsletter-form input::placeholder{

    color:#94a3b8;

}


.gjp-newsletter-form input:focus{

    border-color:#60a5fa;

    box-shadow:0 0 0 3px rgba(96,165,250,.15);

}


.gjp-newsletter-form button{

    min-height:46px;

    padding:0 20px;

    border:0;

    border-radius:9px;

    background:#2563eb;

    color:#ffffff;

    font-family:inherit;

    font-size:14px;

    font-weight:700;

    white-space:nowrap;

    cursor:pointer;

    transition:

        background .25s ease,

        transform .25s ease;

}


.gjp-newsletter-form button:hover{

    background:#1d4ed8;

    transform:translateY(-1px);

}


/*================================================
Loading State
================================================*/

.gjp-mock-test-card.is-loading{

    opacity:.55;

    pointer-events:none;

}


.gjp-load-more-btn.is-loading{

    opacity:.65;

    pointer-events:none;

    cursor:wait;

}


/*================================================
Tablet
================================================*/

@media (max-width:992px){

    .gjp-mock-newsletter{

        grid-template-columns:auto minmax(0,1fr);

        gap:20px;

    }


    .gjp-newsletter-form{

        grid-column:1 / -1;

        width:100%;

    }

}


/*================================================
Mobile
================================================*/

@media (max-width:600px){

    .gjp-load-more-wrapper{

        margin:28px 0 40px;

    }


    .gjp-load-more-btn{

        width:100%;

        max-width:280px;

    }


    .gjp-mock-newsletter{

        grid-template-columns:1fr;

        text-align:center;

        padding:28px 20px;

        border-radius:18px;

    }


    .gjp-newsletter-icon{

        margin:0 auto;

    }


    .gjp-newsletter-content h2{

        font-size:20px;

    }


    .gjp-newsletter-form{

        grid-column:auto;

        flex-direction:column;

        width:100%;

    }


    .gjp-newsletter-form input,

    .gjp-newsletter-form button{

        width:100%;

    }

}


/*================================================
Small Mobile
================================================*/

@media (max-width:400px){

    .gjp-mock-container{

        padding-left:12px;

        padding-right:12px;

    }


    .gjp-load-more-btn{

        max-width:none;

    }


    .gjp-mock-newsletter{

        padding:25px 17px;

    }

}