/* ============================================
   WHAT YOU WILL LEARN — GLASSMORPHIC SECTION
============================================ */

.learning-outcomes-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(0, 10, 40, 0.25), rgba(0, 0, 0, 0.4));
}

.section-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #d2d7ff;
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.outcome-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 30px 22px;
    color: #ffffff;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
    position: relative;
}


.outcome-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.35);
}

.outcome-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px auto;
    display: block;
    filter: brightness(0) invert(1); /* turns any SVG to white */
}


.outcome-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.outcome-card p {
    font-size: 15px;
    color: #e3e8ff;
    margin: 0;
}

/* CTA Buttons */
.outcomes-cta .btn {
    margin: 6px;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 992px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 576px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcome-card {
        padding: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}
