/* إعدادات عامة */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f8f9fa;
    direction: rtl;
}

/* الرأس */
header {
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

header .logo img {
    max-width: 150px;
}

/* القائمة الرئيسية */
main {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bank-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 أعمدة على الشاشات الكبيرة */
    grid-template-rows: auto;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bank-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.bank-item img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* التذييل */
footer {
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    direction: rtl;
    z-index: 100; /* لضمان عدم التداخل مع المحتوى */
}

footer .footer-logo {
    max-width: 100px;
    height: auto;
    margin-right: 20px;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

footer .social-icons {
    margin: 10px 0;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

footer .social-icons a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #d12f36;
}

footer .footer-text {
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
}

/* تعديل لإصلاح الصور الأخيرة */
main {
    margin-bottom: 200px; /* لإفساح مجال للتذييل */
}

/* تحسين التجاوب باستخدام Media Queries */
@media (max-width: 768px) {
    .bank-list {
        grid-template-columns: repeat(2, 1fr); /* عمودان فقط على الشاشات المتوسطة */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .bank-list {
        grid-template-columns: repeat(2, 1fr); /* عمود واحد على الشاشات الصغيرة */
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-content {
        align-items: center;
    }
}