:where([class^="ri-"])::before {
    content: "\f3c2";
  }
  body {
    font-family: 'Inter', sans-serif;
  }
  .map-container {
    position: relative;
  }
  .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  .blurred-image {
    filter: blur(5px);
  }
  .login-modal,
  .register-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 50;
    align-items: center;
    justify-content: center;
  }
  .modal-content {
    background-color: white;
    border-radius: 8px;
    max-width: 90%;
    width: 340px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .hero-section {
    background-image: url("../imgsource/1.jpg");
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative; 
    overflow: hidden; 
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Slightly lighter (50% opacity) */
    z-index: 0; /* Behind text */
}

.hero-text {
    position: relative; /* Bring text above the overlay */
    z-index: 1;
    text-align: left;
    color: #333; /* Dark color for better visibility */
    max-width: 500px;
}
.hero-text p {
    text-shadow: 0px 1px 3px rgba(0,0,0,0.2); /* Soft shadow for better readability */
}

#login-modal {
  display: none; /* Initially hidden */
  /* Add other styles for positioning, background, etc. */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1000; /* Ensure it's on top */
}

#login-modal .modal-content {
  /* Style the inner content of the modal */
  background-color: white;
  margin: 10% auto; /* Center the modal */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.notification {
  display: none; /* Initially hidden */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1001; /* Ensure it's on top of the modal */
}

.notification.show {
  display: block; /* Show when the class 'show' is added */
}

.close-notification {
  float: right;
  cursor: pointer;
  font-size: 30px;
  margin-top: -20px;
  margin-left: 18px;

}