/* Start custom CSS for html, class: .elementor-element-bddc611 */.courses-section{
    padding:70px 20px;
    background:#f7f9fc;
}

.courses-container{
    max-width:1200px;
    margin:auto;
}

.section-heading{
    text-align:center;
    margin-bottom:50px;
}

.section-heading h2{
    font-size:42px;
    color:#0b2c6a;
    margin-bottom:15px;
    font-weight:700;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.courses-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.course-card{
    background:#fff;
    border-radius:15px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:.4s ease;
    border-top:5px solid #0b2c6a;
}

.course-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.course-icon{
    font-size:50px;
    margin-bottom:15px;
}

.course-card h3{
    font-size:20px;
    color:#222;
    margin-bottom:15px;
    min-height:60px;
}

.course-code{
    display:inline-block;
    background:#0b2c6a;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.intake{
    font-size:18px;
    color:#444;
    margin-top:10px;
}

.intake strong{
    color:#e63946;
    font-size:22px;
}

@media(max-width:768px){

    .section-heading h2{
        font-size:32px;
    }

    .course-card h3{
        min-height:auto;
    }
}/* End custom CSS */