@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap') !important;

body {
    background-color: #fff !important;
    font-family: "Tajawal", sans-serif !important;
}

/* Logo Styling */
.logo {
    width: 120px !important;
    height: auto !important;
}

/* Navigation Cards */
.nav-card {
    border-radius: 15px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    cursor: pointer !important;
}

.nav-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1) !important;
}

/* Icon Container */
.icon-container {
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.nav-icon {
    width: 40px !important;
    height: 40px !important;
}

/* Typography */
h1 {
    font-size: 2.5rem !important;
    font-weight: bold !important;
    color: #333 !important;
}

h2 {
    font-size: 1.5rem !important;
    color: #666 !important;
}

.card-title {
    font-size: 19px !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    color: #333 !important;
}

.nav-card a {
    text-decoration: none !important;
}

.w-20 {
    width: 20px !important;
}

.box-card {
    padding: 100px 50px 150px !important;
    border-radius: 30px !important;
    background: linear-gradient(180deg, #E8F8EF 0%, #FFFFFF 100%) !important;
    background-image: url('/modeem_custom_website/static/src/img/bg-card.png') !important;
    width: 100% !important;
    height: 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.box-card h2 {
    color: #000 !important;
    font-size: 22px !important;
    margin: 25px 0 !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logo {
        width: 100px !important;
    }

    h1 {
        font-size: 2rem !important;
    }

    h2 {
        font-size: 1.2rem !important;
    }

    .card-title {
        font-size: 1rem !important;
    }

    .icon-container {
        width: 50px !important;
        height: 50px !important;
    }

    .nav-icon {
        width: 30px !important;
        height: 30px !important;
    }
}