.mitr-light {
    font-family: "Mitr", serif;
    font-weight: 300;
    font-style: normal;
}

/* =======================================================
   Global Styles (global.css)
   ======================================================= */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f4f3;
    color: white;
}

html {
    scroll-behavior: smooth;
}

/* =======================================================
   Animations (animations.css)
   ======================================================= */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes moveBg {
    from {
        transform: rotate(45deg) translateX(0);
    }
    to {
        transform: rotate(45deg) translateX(-100px);
    }
}

/* =======================================================
   Responsive Design (responsive.css)
   ======================================================= */
@media (max-width: 1024px) {
    .features-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 10px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }
}