/* ===== الأساسيات ===== */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f7f9fc;
    margin: 0;
    padding: 0;
    color: #333;
    direction: rtl;
}

h1, h2, h3, h4, h5 {
    font-weight: bold;
}

a {
    text-decoration: none;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #0a58ca;
    text-align: center;
    margin-bottom: 30px;
}

/* ===== البطاقات ===== */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.card-title {
    font-size: 18px;
    font-weight: 700;
}

.card-text {
    font-size: 15px;
    color: #555;
}

/* ===== الأزرار ===== */
.btn-primary {
    background-color: #0a58ca;
    border-color: #0a58ca;
    font-weight: 600;
    border-radius: 25px;
}

.btn-primary:hover {
    background-color: #084298;
    border-color: #084298;
}

.btn-outline-primary {
    color: #0a58ca;
    border-color: #0a58ca;
    font-weight: 600;
    border-radius: 25px;
}

.btn-outline-primary:hover {
    background-color: #0a58ca;
    color: #fff;
}

.btn-purple {
    background-color: #5a2a83;
    border-color: #5a2a83;
    color: white;
    font-weight: 600;
    border-radius: 25px;
}

.btn-purple:hover {
    background-color: #431a61;
}

/* ===== سلايدر Swiper ===== */
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    text-align: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.swiper-slide img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

/* ===== الأخبار / مركز المعرفة ===== */
.news-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.news-card .card-body {
    padding: 20px;
}

.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* ===== الفوتر ===== */
footer {
    background-color: #0a58ca;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    font-weight: 500;
}
