﻿/* wwwroot/css/responsive.css */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .btn-lg {
        width: 100%;
        margin-bottom: 1rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
    }

    .col-md-4 {
        margin-top: 2rem;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .footer .row {
        text-align: center;
    }

    .footer .col-md-4 {
        margin-bottom: 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .team-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-card {
        text-align: center;
    }

    .course-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}
