/* ملف CSS الرئيسي للمنصة */

/* إعدادات عامة */
body {
    font-family: "Tajawal", sans-serif;
    background-color: #f8f9fa;
}
.row {
    font-family: "Tajawal", sans-serif;
}
/* تنسيق الروابط */
a {
    color: #1d2a53;
    text-decoration: none;
}

a:hover {
    color: #1d2a53;
    text-decoration: underline;
}

/* تنسيق الأزرار */
.btn-primary {
    background-color: #1d2a53;
    border-color: #1d2a53;
}

.btn-primary:hover {
    background-color: #1d2a53;
    border-color: #1d2a53;
}

/* تنسيق البطاقات */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
    font-weight: 600;
}

/* تنسيق النماذج */
.form-control {
    border-radius: 0.375rem;
}

.form-control:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* تنسيق الرسائل */
.alert {
    border-radius: 0.375rem;
}

/* تنسيق القسم الرئيسي */
header {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

/* تنسيق الميزات */
.feature {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* تنسيق التذييل */
footer {
    padding: 1.5rem 0;
    background-color: #212529;
    color: white;
}