@font-face {
    font-family: 'Cairo';
    src: url('/asset/font/static/Cairo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Cairo';
    src: url('/asset/font/static/Cairo-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }
  
  body {
    font-family: 'Cairo', sans-serif;
    
}

#map {
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 10;
  margin-bottom: 20px;
  
  
}

.image-gallery {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.image-gallery.visible {
  opacity: 1;
}

.image-gallery img {
  position: absolute;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  #map {
      height: 400px;
  }

  .image-gallery {
      width: 180px;
      height: 180px;
  }

  .image-gallery img {
      width: 50px;
      height: 50px;
  }
}