.footer {
    background-color: #222; /* خلفية داكنة */
    color: white; /* لون النص */
    padding: 30px 15px; /* مسافة داخلية أكبر */
    text-align: center; /* محاذاة النصوص */
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap; /* لضمان استجابة العناصر */
    justify-content: space-around; /* توزيع العناصر بالتساوي */
    gap: 20px; /* مسافة بين العناصر */
    margin-bottom: 30px;
}

.footer h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Tahoma', sans-serif; /* خط مختلف للعناوين */
}

.footer ul {
    list-style: none; /* إزالة نقاط القائمة */
    padding: 0;
}

.footer ul li {
    margin: 8px 0; /* مسافة أكبر بين عناصر القائمة */
}

.footer ul li a {
    color: #f2f2f2; /* لون الروابط */
    text-decoration: none;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #ffcc00; /* لون عند تمرير الماوس */
}

.footer p {
    margin: 0;
    font-size: 12px;
    color: #ccc; /* لون النص الصغير */
}

.footer-text {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin: 10px 0;
  /*  font-family: 'Arial', sans-serif;*/
    line-height: 1.8;
    direction: rtl;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icons a img:hover {
    transform: scale(1.2); /* تكبير الأيقونة عند تمرير الماوس */
}

/* شعار الشركة */
.company-logo {

    width: 100%; /* عرض الصورة بالنسبة لحاويتها */
    max-width: 150px; /* أقصى عرض للصورة */
    height: auto; /* الحفاظ على التناسب بين العرض والارتفاع */
    border-radius: 10px; /* حواف مستديرة لجمالية */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* ظل خفيف */
    transition: transform 0.3s ease;
    
    
}

/* تأثير على الشعار عند التمرير */
.company-logo:hover {
    transform: scale(1.1); /* تكبير الشعار عند التمرير */
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer ul {
        text-align: center;
    }
}
