.btn-orange {
    background-color: #f28c28;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: white;
    color: #f28c28;
}


.custom-navbar {
  padding-top: 5px;
  padding-bottom: 5px;
  /* width: 77%; */
  margin-top: 5px;
    height: 70px;
     /* background-color: #FF6600 !important; برتقالي – غيّره حسب رغبتك */
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}
.navbar .nav-link {
    color: #333;
    position: relative;
    transition: all 0.3s ease;
    padding: 24px 12px !important;
    font-weight: 500;
}


.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #f28c28 !important; /* لون برتقالي ذهبي */
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #f28c28;
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}


