body {
    font-family: "Arial", sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
}
.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 300px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.service-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}
.service-card .desc {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}
.service-card .price {
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
}
.btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
}



main {
    direction: rtl;
}
.main-header {
    background-color: #2c2c2c;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.lang-switch {
    text-align: center;
    margin-top: 10px;
}

.lang-btn {
    background-color: #00d084;
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.lang-btn:hover {
    background-color: #00b373;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.logo h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.logo span {
    font-weight: normal;
    color: #bbb;
    font-size: 16px;
    display: block;
}

.main-nav a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.main-nav a:hover {
    color: #00d084;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .main-nav a {
        display: block;
        margin: 8px 0;
    }
}
img {
    max-width: 100%;
    height: auto;
}

.fixed-icons img {
    border-radius: 50%;
    border: 1px solid #ddd;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

header nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

header nav a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    margin-top: 40px;
}

#slider {
    width: 100vw;
    height: 500px;
    margin: 0;
}

.slides {
    display: flex;
    width: 300vw;
    height: 500px;
    animation: slide 12s infinite;
}

.slide {
    width: 100vw;
    height: 500px;
    object-fit: cover;
}

@keyframes slide {
    0%   { margin-left: 0vw; }
    33%  { margin-left: 0vw; }
    34%  { margin-left: -100vw; }
    66%  { margin-left: -100vw; }
    67%  { margin-left: -200vw; }
    100% { margin-left: -200vw; }
}
