/* Basic RTL styling */
body {
    direction: rtl;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #222;
}

/* Navbar */
.navbar {
    background: #333;
    padding: 10px 20px;
}
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}
.navbar li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* Hero section */
.hero {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}
.hero .btn {
    background: #ffd700;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* Services */
.services {
    text-align: center;
    margin: 40px 0;
}
.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.service-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    width: 45%;
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: #222;
    color: #ddd;
    text-align: center;
    padding: 20px;
}
.footer .socials a {
    margin: 0 10px;
    color: #ffd700;
    text-decoration: none;
}
