
body {
    font-family: 'Cairo', sans-serif;
    background-color: #381b1b;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
    direction: rtl;
}

header {
    background-image: url('image.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: #FFD700;
}

nav ul {
    display: flex;
    justify-content: center;
    background-color: #424242;
    list-style: none;
    padding: 10px;
    margin: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

section {
    padding: 40px 20px;
    text-align: center;
}

.about, .contact {
    background-color: #424242;
    margin: 20px 0;
    border-radius: 10px;
}

.services .service-grid, .team .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item, .team-member {
    background-color: #800000;
    padding: 20px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    transition: transform 0.3s;
}

.service-item:hover, .team-member:hover {
    transform: scale(1.1);
    background-color: #a52a2a;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

form input, form textarea {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

form button {
    background-color: #FFD700;
    color: #381b1b;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    background-color: #424242;
    text-align: center;
    padding: 20px;
    color: #FFD700;
}
