/* إعدادات عامة */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: center;
    background-color: #f4f4f4;
}

/* الشريط العلوي */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    color: white;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
}

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

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

nav ul li {
    margin: 0 15px;
}

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

nav ul li a:hover {
    text-decoration: underline;
}

/* القسم الرئيسي */
.hero {
    background: url('https://source.unsplash.com/1600x900/?technology') center/cover no-repeat;
    color: white;
    padding: 100px 20px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 40px;
}

.hero p {
    font-size: 20px;
}

/* زر بإطار بسيط */
.btn {
    display: inline-block;
    border: 2px solid #ff5722;
    color: #ff5722;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 20px;
    margin-top: 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.btn:hover {
    background: #ff5722;
    color: white;
}

/* تأثير الظهور التدريجي للأقسام */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.show {
    opacity: 1;
    transform: translateY(0);
}

/* أقسام أخرى */
section {
    padding: 60px 20px;
    background: white;
    margin: 20px auto;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* الخدمات */
.services {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-box {
    background: #ddd;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    margin: 10px;
}

/* قسم الاتصال */
.contact form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: auto;
}

.contact input, .contact textarea {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    padding: 10px;
    border: 2px solid #333;
    color: #333;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact button:hover {
    background: #333;
    color: white;
}

/* التذييل */
footer {
    background: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}
