/*==================================
            SSC PAGE
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#faf7f5;
    font-family:Arial, Helvetica, sans-serif;
}

/*==================================
        Main Section
==================================*/

.exam-page{

    max-width:1400px;
    margin:70px auto;
    padding:0 20px;

}

/*==================================
          Heading
==================================*/

.section-title{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    margin-bottom:18px;

}

.section-title span{

    width:170px;
    height:4px;
    background:#d4af37;
    border-radius:30px;

}

.section-title h1{

    font-size:56px;
    color:#800000;
    font-weight:700;

}

.page-subtitle{

    text-align:center;
    color:#666;
    font-size:20px;
    margin-bottom:60px;

}

/*==================================
          Grid
==================================*/

.exam-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

/*==================================
            Card
==================================*/

.exam-box{

    background:#fff;

    border-radius:24px;

    text-decoration:none;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.35s;

    border-top:6px solid #800000;

}

.exam-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(128,0,0,.15);

}

/*==================================
          Image
==================================*/

.exam-icon{
    width:100%;
    height:250px;
    background:#f8f8f8;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
    border-radius:20px 20px 0 0;
}

.exam-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.exam-box:hover img{

    transform:scale(1.06);

}

/*==================================
        Content
==================================*/

.exam-content{
    padding:20px 28px 24px;
}

.exam-content h3{

    font-size:34px;

    color:#800000;

    margin-bottom:12px;

    text-align:center;

}

.exam-content p{

    text-align:center;

    color:#666;

    font-size:19px;

    margin-bottom:15px;

    line-height:1.6;

}

/*==================================
        Quick Links
==================================*/

.exam-links{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:18px;

}

.exam-links span{

    background:#f5f5f5;

    color:#555;

    padding:8px 16px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

}

/*==================================
        Explore Button
==================================*/

.explore-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    width:220px;

    margin:auto;

    padding:15px 0;

    border-radius:50px;

    background:#800000;

    color:white;

    text-decoration:none;

    font-size:18px;

    font-weight:700;

    transition:.35s;

}

.explore-btn:hover{

    background:#a00000;

    transform:translateY(-3px);

}

.explore-btn i{

    transition:.3s;

}

.explore-btn:hover i{

    transform:translateX(6px);

}

/*==================================
        Responsive
==================================*/

@media(max-width:992px){

.section-title h1{

font-size:46px;

}

.section-title span{

width:100px;

}

}

@media(max-width:768px){

.exam-grid{

grid-template-columns:1fr;

}

.exam-icon{

height:220px;

}

.section-title h1{

font-size:40px;

}

.page-subtitle{

font-size:17px;

}

}

@media(max-width:480px){

.section-title{

gap:15px;

}

.section-title span{

width:55px;

}

.section-title h1{

font-size:32px;

}

.exam-content h3{

font-size:28px;

}

.exam-content p{

font-size:17px;

}

.explore-btn{

width:100%;

}

}