/* SECTION */
.courses {
    padding: 70px 20px;
    background: #f5f7fb;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.section-header{
    text-align: center;
    margin-bottom: 50px;
    color:#fff;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 600;
}

.section-header h2 span {
    color: #fd7e14;
} 

.section-header p {
    color: #ccc;
    text-align: center;
}

/* GRID */
.course-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CARD */
.course-card {
    background: #fff;
    width: 320px;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* ICON */
.icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg,#ff9800,#ff6a00);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

/* TEXT */
.course-card h3 {
    margin-bottom: 5px;
}

.subjects {
    font-size: 13px;
    color: #777;
}

.desc {
    margin: 12px 0;
    font-size: 14px;
    color: #555;
}

/* TAGS */
.tags span {
    background: #eaf2ff;
    color: #2b7cff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 6px;
}

/* FOOTER */
.course-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 13px;
}

.price {
    color: #ff6a00;
    font-weight: 600;
}

/* BUTTON */
.btn {
    display: block;
    margin-top: 18px;
    text-align: center;
    background: linear-gradient(45deg,#ff9800,#ff6a00);
    color: #fff;
    padding: 11px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }

    .course-card {
        width: 100%;
        max-width: 350px;
    }
}