/* Custom Logo Styles */
.header-logo {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 130px;
    overflow: hidden;
    position: relative;
    margin-right: 30px;
}

/* إخفاء الخلفية الإضافية تحت اللوجو */
.header-logo .logo-bg {
    display: none !important;
}

/* التأكد من عدم وجود خلفيات إضافية */
.header-logo a {
    background: transparent !important;
    display: block;
}

.header-logo img {
    max-width: 320px !important;
    max-height: 110px !important;
    /* حجم أكبر وأوضح للوجو */
    height: auto !important;
    width: auto !important;
    object-fit: contain !important;
    transition: all 0.3s ease;
    border-radius: 0;
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none;
    filter: none;
}

.footer-logo,
.about-logo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

.footer-logo img,
.about-logo img {
    max-width: 650px;
    max-height: 250px;
    /* حجم أكبر وأوضح */
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    filter: none;
}

.mobile-logo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

.mobile-logo img {
    max-width: 220px;
    max-height: 75px;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    filter: none;
}

/* تحسين ظهور اللوجو في الشاشات الصغيرة */
@media (max-width: 768px) {
    .header-logo {
        padding: 0 !important;
    }

    .header-logo img {
        max-width: 160px !important;
        max-height: 55px !important;
        padding: 0 !important;
    }

    .footer-logo,
    .about-logo {
        padding: 0;
    }

    .footer-logo img,
    .about-logo img {
        max-width: 300px;
        max-height: 120px;
        padding: 0;
    }

    .mobile-logo {
        padding: 0;
    }

    .mobile-logo img {
        max-width: 160px;
        max-height: 55px;
        padding: 0;
    }
}

/* إضافة تأثير حركي بسيط عند التحويم */
.header-logo img:hover {
    opacity: 0.95;
    transform: scale(1.05);
    box-shadow: none;
}

/* تنسيق اللوجو في الـ Side Menu */
.sidemenu-wrapper .about-logo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 20px;
}

.sidemenu-wrapper .about-logo img {
    max-width: 240px;
    max-height: 85px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
    filter: none;
}


.about-logo,
.mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* التأكد من عرض اللوجو بشكل صحيح */
.header-logo img,
.footer-logo img,
.about-logo img,
.mobile-logo img {
    display: block;
}

/* تنسيق اللوجو في الفوتر للنسخة الإنجليزية */
[dir="ltr"] .footer-logo,
[dir="ltr"] .about-logo {
    background: transparent;
    padding: 0;
    border-radius: 0;
    display: inline-block;
}

[dir="ltr"] .footer-logo img,
[dir="ltr"] .about-logo img {
    max-width: 650px;
    max-height: 250px;
    height: auto;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
    filter: none;
}

/* تنسيق اللوجو في الفوتر للشاشات الصغيرة - النسخة الإنجليزية */
@media (max-width: 768px) {

    [dir="ltr"] .footer-logo img,
    [dir="ltr"] .about-logo img {
        max-width: 300px;
        max-height: 120px;
        padding: 0;
    }
}