html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    direction: rtl;
}

.allcontent {
    background: #fffefa;
    min-height: 100%;
    text-align: center;
}

/* الشعار */
.logo span {
    font-size: 50px;
    font-weight: 900;
    color: transparent;
}

/* الهيدر */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

/* معلومات الشركة */
.company-info {
    background: green;
    color: white;
    padding: 15px;
    font-size: 20px;
    text-align: right;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* الأربعة أعمدة */
.infoshow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 10px;
}

.info-box {
    background: #f2f2f2;
    padding: 15px;
    border-radius: 10px;
    text-align: right;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

.info-box h3 {
    margin-bottom: 10px;
    color: green;
    font-size: 22px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 8px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box ul li i {
    color: green;
    font-size: 20px;
}

/* أيقونات التواصل */
.contact-icons {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.contact-icons .icon i {
    font-size: 28px;
    color: green;
    transition: 0.3s;
}

.contact-icons .icon:hover i {
    transform: scale(1.2);
}

/* ناف بار */
.mnav {
    background: green;
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 15px 0;
    color: white;
    margin-bottom: 20px;
}

.mnav a {
    text-decoration: none;
    color: white;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mnav a:hover {
    color: cyan;
    background: rgba(255,255,255,0.1);
}

/* أقسام المحتوى */
.section-content {
    display: none;
    background: white;
    color: black;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    text-align: right;
}

/* خدماتنا */
.services-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 20px;
    align-items: start;
}

.services-list {
    text-align: right;
}
.services-list li {
    margin-bottom: 8px;
    font-size: 18px; /* نفس حجم الخط */
    display: flex;
    align-items: center;
    gap: 8px; /* نفس المسافة بين الأيقونة والنص */
    cursor: pointer;
}

.services-list li i {
    color: green; /* نفس لون الأيقونات */
    font-size: 20px; /* نفس حجم الأيقونة */
}

.services-list li:hover {
    color: green;
}
.service-image img {
    width: 90%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.service-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    text-align: right;
    padding: 10px;
    border-right: 3px solid green;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    .service-desc {
        border-right: none;
        border-top: 3px solid green;
    }
}

@media (max-width: 768px) {
    .services-wrapper {
        grid-template-columns: 1fr;
    }
    .service-image, .service-desc {
        max-width: 100%;
        margin: 0 auto;
        border-right: none;
        border-top: 3px solid green;
    }
}
.slideshow-container {
    width: 100%;
    max-width: 1000px;
    height: 350px;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* كل Slide */
.slide {
    display: none;
    width: 100%;
    height: 100%;
}

/* الصور */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* يمنع تمدد الصورة */
    border-radius: 15px;
}

/* تأثير التلاشي */
.fade {
    animation: fadeEffect 1.5s;
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

/* Responsive */
@media (max-width: 768px) {
    .slideshow-container {
        height: 230px; /* أقل شوية للموبايل */
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 180px;
    }
}
.footer {
    width: 100%;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    background: #111;
    color: white;
    font-size: 14px;
}
.moving-logo {
    position: relative;
    width: 100%;
    height: 80px;
    margin-top: 20px;
    overflow: hidden; /* مهم عشان العربية والنص ما يخرجوش */
}

/* النص */
#movingText {
    position: absolute;
    left: -100%; /* يبدأ برا الشمال */
    top: 20px;
    font-size: 45px;
    font-weight: bold;
    color: green;
    white-space: nowrap;
    animation: textMove 4s ease forwards;
}

/* العربية */
#movingTruck {
    position: absolute;
    left: calc(-50px); /* يبدأ برا الشمال */
    top: 25px;
    font-size: 45px;
    color: green;
    opacity: 0;
    animation: truckMove 4s ease forwards;
    animation-delay: 4s; /* تبدأ بعد ما النص يوصل نص الشاشة */
}

/* حركة النص للوصول للنص منتصف الشاشة */

/* حركة العربية تمشي من نص الشاشة لليمين */


/* Responsive */
@media (max-width: 768px) {
    #movingText {
        font-size: 30px;
        top: 15px;
    }
    #movingTruck {
        font-size: 30px;
        top: 20px;
    }
}

@media (max-width: 480px) {
    #movingText {
        font-size: 22px;
        top: 10px;
    }
    #movingTruck {
        font-size: 22px;
        top: 15px;
    }
}
#movingText {
    position: absolute;
    left: -100%;
    top: 20px;
    font-size: 45px;
    font-weight: bold;
    color: green;
    white-space: nowrap;
}

#movingTruck {
    position: absolute;
    top: 25px;
    font-size: 45px;
    color: green;
    opacity: 1;
}
@keyframes textMove {
    0% { left: -100%; }
    60% { left: 50%; transform: translateX(-50%); }
    100% { left: 50%; transform: translateX(-50%); }
}
@keyframes truckMove {
    0% { left: 50%; opacity: 1; }
    100% { left: 100%; transform: translateX(50px); opacity: 1; }
}
