.navbar-brand img {
  width: 50px; /* يمكنك تعديل هذه القيمة حسب الحجم المطلوب للعرض */
  height: 500px; /* يمكنك تعديل هذه القيمة حسب الحجم المطلوب للارتفاع */
}
@media only screen and (max-width: 100px) {
  .navbar-brand {

  
    margin-right: 12px;

  }
}
/*.bg-white {
  background-color: #e5decc; /* استبدل هذا بلون الخلفية الجديد الذي ترغب في استخدامه */
}
.popup {
  padding: 30px 40px;
  background-color: #ffffff;
  width: 450px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  text-align: center;
  color: #333333;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  z-index: 9999; /* تعديل هنا */
}

.popup.show {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.popup h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.popup p {
  font-size: 16px;
  margin-bottom: 10px;
}

.popup button {
  background-color: red;
  color: black;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #999999;
}

/* تأكد من تعديل الاحتمالات الخاصة بصورك أيضًا */
img {
  position: relative;
  z-index: 1; /* تعديل هنا */
}