/* Add custom CSS styles below */ 
.navbar-brand img {
    max-height: 200px;
    max-width: 300px;
}

element.style {
    height: 70px;
}

/* إضافة مسافة علوية للفوتر */
footer {
    position: relative;
    padding-top: 180px; /* هذه المساحة عشان الشعار */
}

/* إضافة الشعار الجديد */
footer:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;   /* حجم الشعار */
    height: 140px;
    background-image: url("https://cdn.salla.sa/qQappD/products/KYUP0yqOXFmvr9tUtVxVacCnpG5fbsmoMY4AvmBM.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* إخفاء أي شعار قديم */
footer img[alt="Abaq Darin"] {
    display: none !important;
}