/* إعدادات عامة */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
}

/* رأس الموقع */
.main-header {
    background-color: #0078d4;
    color: white;
    padding: 20px;
    position: relative;
}

.main-header .logo h1 {
    margin: 0;
    text-align: center;
    font-size: 24px;
}

.menu-toggle {
    display: none;
    background: none;
    color: white;
    font-size: 24px;
    border: none;
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

.navbar {
    text-align: center;
    margin-top: 15px;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar ul li {
    display: inline-block;
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

/* قسم الترحيب */
.hero {
    background: url('IMG-20241219-WA0008.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero .btn {
    background-color: #ff5722;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* الخدمات */
.services {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

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

.service-item {
    background: #f0f8ff;
    border: 2px solid #0078d4;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-title {
    color: #0078d4;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-description {
    color: #555;
    margin-bottom: 15px;
}

.service-link {
    text-decoration: none;
    color: white;
    background-color: #ff5722;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

/* القائمة الجانبية */
.menu-toggle {
    display: none;
}

/* الهواتف المحمولة */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .navbar {
        display: none;
        text-align: center;
    }
    .navbar.active {
        display: block;
    }
}