/* =========================================
   STUDENTS CORNER SECTION
========================================= */

.hlc-student-corner{
    background:#f5f9ff;
    padding-bottom:70px;
}

/* =========================================
   BANNER
========================================= */

.hlc-student-banner{
    position:relative;
    width:100%;
    height:420px;
    overflow:hidden;
}

.hlc-student-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.hlc-student-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;
    color:#fff;
    padding:20px;
}

.hlc-student-overlay h1{
    font-size:52px;
    margin-bottom:18px;
    font-weight:700;
}

.hlc-student-overlay p{
    font-size:20px;
    max-width:750px;
    line-height:1.8;
}

/* =========================================
   CONTAINER
========================================= */

.hlc-student-container{
    max-width:1200px;
    margin:auto;
    margin-top:-80px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

    padding:0 20px;
    position:relative;
    z-index:10;
}

/* =========================================
   CARD
========================================= */

.hlc-student-card{
    background:#fff;
    border-radius:22px;
    padding:35px 30px;

    box-shadow:0 10px 35px rgba(0,0,0,0.08);

    transition:0.4s ease;
}

.hlc-student-card:hover{
    transform:translateY(-10px);
}

/* =========================================
   ICON
========================================= */

.hlc-student-icon{
    width:75px;
    height:75px;
    border-radius:50%;

    background:linear-gradient(135deg,#ff6a3d,#ff934d);

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:20px;
}

.hlc-student-icon.exam{
    background:linear-gradient(135deg,#3f51b5,#5b6eff);
}

.hlc-student-icon i{
    font-size:30px;
    color:#fff;
}

/* =========================================
   CONTENT
========================================= */

.hlc-student-card h2{
    font-size:28px;
    margin-bottom:15px;
    color:#0a2a5e;
}

.hlc-student-card p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}

/* =========================================
   LIST
========================================= */

.hlc-student-card ul{
    padding-left:20px;
    margin-bottom:25px;
}

.hlc-student-card ul li{
    margin-bottom:12px;
    color:#333;
    line-height:1.7;
}

/* =========================================
   BUTTON
========================================= */

.hlc-student-btn{
    display:inline-block;
    background:#ff6a3d;
    color:#fff;

    padding:14px 28px;
    border-radius:40px;

    text-decoration:none;
    font-weight:700;

    transition:0.3s ease;
}

.hlc-student-btn:hover{
    background:#e85320;
    transform:scale(1.05);
}

.exam-btn{
    background:#3f51b5;
}

.exam-btn:hover{
    background:#273a99;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

    .hlc-student-banner{
        height:300px;
    }

    .hlc-student-overlay h1{
        font-size:34px;
    }

    .hlc-student-overlay p{
        font-size:15px;
    }

    .hlc-student-container{
        margin-top:-50px;
    }

    .hlc-student-card{
        padding:25px;
    }

    .hlc-student-card h2{
        font-size:24px;
    }

}