
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300&family=Farsan&family=Noto+Kufi+Arabic:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Readex+Pro:wght@400;500;700&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:wght@200;300;400;500;600;700;800&display=swap');

* {
  font-family: 'Poppins', sans-serif;
  
}
.image-container {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* لون أسود شفاف */
}
 
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.search-popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 400px;
  text-align: center;
}

.search-popup .close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.search-popup input {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  width: calc(100% - 50px);
  margin-right: 10px;
}

.search-popup button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 15px;
  cursor: pointer;
}

.search-popup button:hover {
  background-color: #0056b3;
}
.nav-link {
  color: black;
  transition: color 0.3s ease-in-out;
  font-weight: 600;
}


.icons-nav:hover {
  color: orange !important;

}
.nav-link:hover {
  color: orange !important;
}
.card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(-8px);
}




