/* إعدادات عامة */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
}

/* القائمة العلوية */
nav {
    padding: 20px 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: 500;
}

/* القسم الرئيسي (Hero) */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    height: 80vh; /* ارتفاع تقريبي للشاشة */
}

.hero-text h1 {
    font-size: 4rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #000;
    max-width: 500px;
}

/* الأزرار */
.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    color: white;
}

.btn-blue {
    background-color: #4a90e2; /* لون أزرق فاتح */
}

.btn-dark {
    background-color: #1a1a2e; /* لون كحلي غامق */
}

/* الصورة والمعلومات الشخصية */
.hero-image {
    text-align: center;
}

.hero-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* لجعل الصورة دائرية */
    object-fit: cover;
    margin-bottom: 15px;
}

.desktop-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.mobile-info {
    display: none; /* إخفاء في الشاشات الكبيرة */
}

/* قسم الخدمات */
.services {
    text-align: center;
    padding: 50px 10%;
}

.services h2, .projects h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: #1a1a2e;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background-color: #f5f5f5; /* لون رمادي فاتح */
    padding: 30px;
    border-radius: 8px;
    width: 250px;
    text-align: center;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
}

.projects {
    text-align: center;
    padding: 20px;
} 