/* تحسين شكل عناصر الناف بار */

.navbar ul li {
    border-left: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.navbar ul li a {
    display: block;
    padding: 15px 10px;
    text-align: center;
    color: #fff !important;
    transition: 0.3s;
    position: relative;
}

/* العنوان الكبير */
.navbar ul li a br {
    display: none;
}

.navbar ul li a {
    font-size: 18px;
    font-weight: bold;
}

/* السطر الصغير */
.navbar ul li a span {
    display: block;
    font-size: 12px;
    color: #bbb;
    margin-top: 5px;
}

/* Hover جامد ?? */
.navbar ul li a:hover {
    background: linear-gradient(45deg, #c13222, #6a1414);
    color: #fff !important;
    transform: translateY(-5px);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Active */
.navbar ul li a.nav-link-active {
    background: linear-gradient(45deg, #c13222, #6a1414);
    border-radius: 8px;
}

/* حركة تحت اللينك */
.navbar ul li a::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #fff;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.navbar ul li a:hover::after {
    width: 60%;
}
/* NAV BUTTONS نفس FB */
.nav-buttons .btn-nav {
  background: linear-gradient(45deg, #1877f2, #4fc3ff);
  color: #fff !important;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 0 10px #4fc3ff;
  text-align: center;
}

/* HOVER */
.nav-buttons .btn-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px #4fc3ff;
}

/* المسافات */
.nav-buttons .nav-item {
  margin: 0 5px;
}

/* الصفحة الحالية */
.nav-link-active {
  box-shadow: 0 0 25px #00f2fe;
}