/* عام */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    direction: rtl;
    text-align: right;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

.btn {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
}

/* الرأس (Header) */
header {
    background-color: #f8f9fa;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

/* القسم الرئيسي (Hero Section) */
.hero {
    background-image: url('assets/images/hero-bg.jpg'); /* استبدل بمسار صورتك */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

/* الخدمات (Services) */
.services {
    padding: 50px 0;
    background-color: #eee;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.service-card h3 {
    margin-bottom: 10px;
}

/* من نحن (About Us) */
.about {
    padding: 50px 0;
}

.about .about-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about img {
    width: 50%;
    border-radius: 5px;
}

.about .about-text {
    width: 50%;
}

/* اتصل بنا (Contact) */
.contact {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    gap: 30px;
}

.contact form {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.contact form input,
.contact form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact .map {
    width: 50%;
}

.contact .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

/* تذييل (Footer) */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* استجابة (Responsive) */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    header nav ul {
        margin-top: 10px;
        flex-direction: column;
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .about .about-content {
        flex-direction: column;
    }

    .about img,
    .about .about-text {
        width: 100%;
    }

    .contact-form {
        flex-direction: column;
    }

    .contact form,
    .contact .map {
        width: 100%;
    }
}