*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

body{

    background:
    linear-gradient(
        to right,
        #031433,
        #071d45
    );

    color:white;

    font-family:'Poppins',sans-serif;

}


/* EXAMS */

.exam-section{

    width:90%;

    max-width:1400px;

    margin:auto;

    padding-bottom:120px;

}

.exam-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.exam-card{

    background:
    rgba(20,35,75,0.82);

    border-radius:28px;

    padding:45px 35px;

    border:
    1px solid rgba(255,255,255,0.05);

    transition:0.35s ease;

    cursor:pointer;

}

.exam-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(56,182,255,0.4);

    box-shadow:
    0 15px 40px rgba(56,182,255,0.15);

}

.exam-card i{

    font-size:42px;

    color:#38b6ff;

    margin-bottom:25px;

}

.exam-card h2{

    font-size:34px;

    margin-bottom:18px;

}

.exam-card p{

    color:#c9d4f1;

    line-height:1.8;

}

/* RESPONSIVE */

@media(max-width:768px){

    .hero{

        padding:
        140px 25px 80px;

    }

    .hero h1{

        font-size:42px;

    }

}