
body{
background-image: url(images/Alepp1.jpg);
  background-size: cover;
  background-attachment: fixed;
  padding-top: 80px; /* لتجنب تداخل الـ navbar */
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* لون فاتح عام */
}
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background-color: #ddd;
    }

    ::-webkit-scrollbar-thumb {
background-color: #988561;
border-radius: 20px;
transition: all 0.5S ease-in-out;
    }

    ::-webkit-scrollbar-thumb:hover {
background-color: #136902;
    }

.B1{
  color: aliceblue !important;
}    

.count{
display: flex;
height: 100dvh;
width: 100%;
align-items: center;
justify-content: center;
}
.text-success {
  color: #48ff00 !important; /* أبيض فاتح */
}
.form-control {
  background: rgba(158, 158, 158, 0.1); /* شفاف فاتح */
  color: rgb(255, 255, 255);
  -webkit-text-fill-color: rgb(149, 158, 19);
  border: 1px solid rgba(255, 255, 255, 0.3);
  direction: rtl;
}
.login-card{
width: 400px;
height: auto;
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
background: rgba(0, 10, 0, 0.6) !important;
border: 2px solid #EEE;
}

form{
width: 70%;

}
.form-control{
direction: rtl;
}
@media (max-width: 768px) {
  .login-card {
    width: 90%;
    margin: 20px;
  }
}

* إضافات جديدة للشفافية والألوان */
.heading {
  color: #e0e0e0; /* رمادي فاتح */
  font-weight: bold;
}

.glass-btn {
  background: rgba(19, 105, 2, 0.2); /* أخضر شفاف */
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: background 0.3s;
}

.glass-btn:hover {
  background: rgba(19, 105, 2, 0.4);
}

/* Navbar شفاف */
.glass-navbar {
  background: rgba(0, 0, 0, 0.3); /* أغمق قليلاً عند التمرير */
  backdrop-filter: blur(10px); /* زجاجي */
  border-bottom: 1px solid  rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
   padding-top: 2rem;
  padding-bottom: 2.1rem;
}

.glass-navbar.scrolled {
  background: rgba(0, 0, 0, 0.3); /* أغمق قليلاً عند التمرير */
}

.brand-text {
  color: #ffffff !important;
  font-weight: bold;
}

.nav-light .nav-link {
  color: rgba(255, 255, 255,); /* رمادي فاتح */
  transition: color 0.3s;
}

.nav-light .nav-link:hover {
  color: #ffffff; /* أبيض كامل */
}

.glass-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

/* Navbar زجاجي */
.navbar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px); /* تأثير الزجاج */
  padding: 20px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* ظل أعمق */
  position: fixed;
  top: 0;
  z-index: 100%;
  transition: background 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navbar Brand */
.navbar-brand {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;    
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

.navbar-brand:hover {
  color: #b9a779;
  transform: scale(1.05);
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b9a779, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar-brand:hover::after {
  opacity: 1;
}

/* Navbar Links */
.navbar-nav {
  display: flex;
  align-items: center;
}

.navbar-nav a {
  color: #EEE;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.5s ease;
  position: relative;
  padding: 6px 16px;
  border: 2px solid transparent;
  border-radius: 12px;
}

.navbar-nav a:hover {
  color: gold;
  transform: translateY(-2px);
  background: rgba(185, 167, 121, 0.1); /* ذهبي شفاف */
  box-shadow: 0 4px 12px rgba(185, 167, 121, 0.3);
  border-color: #b9a779;
}

/* Glow effect */
.navbar-nav a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(185, 167, 121, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.navbar-nav a:hover::after {
  opacity: 1;
  animation: glowPulse 1.5s infinite alternate;
}

/* Toggle Button */
.navbar-toggler {
  background-color: #B9A772;
  border: none;
  border-radius: 6px;
}

/* Glow Animation */
@keyframes glowPulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 10px;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  
  .navbar-nav a {
    margin: 6px 0;
    font-size: 1rem;
  }
}
