/* ================================
   الأساسيات العامة
================================ */

body {
    font-family: "Tajawal", sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.8;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0d6efd;
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* ================================
   Navbar
================================ */

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
}

.nav-link {
    font-size: 16px;
    margin-left: 15px;
}

.nav-link.active,
.nav-link:hover {
    color: #0d6efd !important;
}

/* ================================
   الأزرار
================================ */

.btn-primary {
    background-color: #0d6efd;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

/* ================================
   البطاقات (Cards)
================================ */

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card img {
    height: 220px;
    object-fit: cover;
}

.card-body h5 {
    font-size: 18px;
    font-weight: 700;
}

/* ================================
   Footer
================================ */

.footer {
    background: #fff;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #ddd;
}

.footer p {
    margin: 0;
    color: #555;
}

/* ================================
   صفحة 404
================================ */

.error-box h1 {
    font-size: 120px;
    font-weight: bold;
    color: #0d6efd;
}

/* ================================
   صفحة Contact
================================ */

form .form-control {
    height: 48px;
    border-radius: 8px;
}

form textarea.form-control {
    height: auto;
}

/* ================================
   تحسينات عامة
================================ */

img {
    max-width: 100%;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
}