/*=========================================
            COURSES SECTION
=========================================*/

.courses{

    background:#081522;

    padding:120px 0;

}

.section-title span{

    color:#FF7A00;

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    font-family:"Poppins",sans-serif;

    color:#fff;

    font-size:46px;

    margin:20px 0;

}

.section-title p{

    color:#C7D1DB;

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

.course-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px 30px;

    transition:.4s;

    backdrop-filter:blur(20px);

    height:100%;

}

.course-card:hover{

    transform:translateY(-12px);

    border-color:#FF7A00;

    box-shadow:0 25px 50px rgba(0,0,0,.25);

}

.course-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,#FF7A00,#FFA500);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.course-icon i{

    color:white;

    font-size:34px;

}

.course-card h4{

    color:white;

    margin-bottom:18px;

    font-family:"Poppins",sans-serif;

}

.course-card p{

    color:#C7D1DB;

    line-height:1.8;

}

.course-card a{

    color:#FF7A00;

    text-decoration:none;

    font-weight:600;

}