* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
      font-family: 'Cairo', sans-serif;

}

/* /// Header /// */
/* Header Button */
::-webkit-scrollbar {
  width: 8px;
  height: 0px !important;
}

/* تغيير لون شريط التمرير */
::-webkit-scrollbar-thumb {
  background-color: #221bff;
  border-radius: 20px;
}

::-webkit-scrollbar-track {
  background-color: #c9c6c6;
  border-radius: 20px;
}
/* تهيئة أزرار الـ toggle بشكل أفضل */
.navbar-toggler {
  color: #fff !important;
  border: none !important;
  outline: none !important;
}

/* شكل أيقونة الـ toggle */
.navbar-toggler i {
  font-size: 30px;
  color: white !important;
}

/* تنسيق خاص للقائمة المنسدلة */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  border-radius: 5px;
}

.nav-item .dropdown-menu a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
}

/* تصميم الـ mobile view */
@media (max-width: 767px) {
  .logo-img {
    width: 80px;
  }

  header nav ul li a {
    padding: 10px;
  }

  .navbar-toggler i {
    font-size: 28px;
  }
}

/* /// Footer /// */
footer {
  background-color: rgb(37, 37, 37);
  color: #ffd700;
  padding: 0;
  font-family: "Arial", sans-serif;
  text-align: right;
}

footer h5 {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer ul li {
  list-style: none;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

footer ul li i {
  font-size: 1.8rem;
  margin-right: 10px;
  color: #ffd700;
}

footer ul li span,
footer ul li a {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

footer ul li a:hover {
  color: #ffd700;
  text-decoration: underline;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
}

footer ul li a:hover {
  color: black;
}

footer .row div {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  footer ul {
    text-align: center;
  }
}

@media (max-width: 768px) {
  header {
    text-align: center !important;
  }
  header .nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  header .nav ul li a {
    font-size: 14px;
    border-right: none;
    padding: 5px 0 !important;
    margin: 10px;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 5px 0 !important;
    font-size: 20px;
  }
}
/* ////////////////////////////////////// */
h1 {
  font-size: 2.5rem;
}

.progress-bar {
  font-size: 1rem;
  line-height: 25px;
}

button {
  margin: 0 10px;
}
.title {
  line-height: 35px;
  font-size: 48px;
  font-weight: 600;
  color: #eeb600;
  text-transform: uppercase;
  position: relative;
}
.btn_success {
  background-color: #d1a209 !important;
  box-shadow: unset !important;
  color: #fff !important;
  font-size: 16px !important;
  line-height: 36px !important;
  display: inline-block !important;
  padding: 0 35px !important;
}
.btn_success:hover {
  background-color: #eeb600 !important;
}

/* //////// Progress In user BAge /////////// */
.progress-bar-fill {
  animation: fill-progress 2s ease-out forwards;
}

.fill2 {
  animation: move-dot2 2s ease-out forwards;
}

.fill3 {
  animation: move-dot3 2s ease-out forwards;
}

/* Animation for progress bar */
@keyframes fill-progress {
  from {
    width: 0%;
  }
  to {
    width: 50%;
  }
}

/* Animation for .fill2 */
@keyframes move-dot2 {
  from {
    left: 0%;
  }
  to {
    left: 25%;
  }
}

/* Animation for fade-in */
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Apply animation to logo and text */
.logo {
  animation: fade-in 1.5s ease-in-out forwards;
  animation-delay: 2s; /* Start after the progress bar finishes */
  margin-left: 10px !important;
}

.fade-in-text {
  animation: fade-in 1.5s ease-in-out forwards;
  animation-delay: 2.5s; /* Start slightly after the logo */
  margin-top: 35px !important;
  margin-left: 10px !important;
}

/* /////// USer Login Bage ////////*/
.login-card {
  max-width: 400px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(48, 48, 48, 0.253);
  padding: 20px;
}

.login-card .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  box-shadow: none;
}
