    .map {
    position: relative;
    width: 1200px;   /* haritanın boyutu */
    height: auto;
    }


    .map .istanbul {
    position: relative; /* en altta sabit */
    z-index: 1;
    }


    /* 1200 px için koordinatlar */
    .kucukcekmece {

        top: -33px;
        left: -41px;
        width: 85px;
        height: 85px;
    }
    .kagithane {
        scale: 0.29;
        top: -82px;
        left: -89px;
    }
    .fatih {
        scale: 0.27;
        top: -86px;
        left: -82px;
    }

    .besiktas {
        scale: 0.27;
        top: -82px;
        left: -92px;
    }


    /* Marker stili */
    /* Genel marker stili */
.circle-container {
  position: absolute;
  z-index: 3; /* en üstte */
}
.circle-container img {
  position: absolute;
  opacity: 0;
  vertical-align: baseline;
  max-width: none;
}

/* Dış boş çember */
.circle-outline {
  position: absolute;
  top: 1px;
  left: 0px;
  width: 7px;
  height: 7px;
  border: 1px solid #202020; /* renk */
  border-radius: 50%;
}

/* İç dolu daire */
.circle-inner {
  position: absolute;
  top: 3.5px;
  left: 3.5px;
  width: 3px;
  height: 3px;
  background-color: #202020;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulseFade 2s infinite;
}

/* Fade animasyonu */
@keyframes pulseFade {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  50%  { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/* Her marker için ayrı pozisyon */
.marker1 { top: 429px; left: 473px; } /*küçükçekmece */
.marker2 { top: 385px; left: 591px; } /*kağıthane */
.marker3 { top: 441px; left: 572px; } /*fatih */
.marker4 { top: 395px; left: 617px; } /*beşiktaş */



/* Tooltip stili */
/* Tooltip kutusu */
.tooltip {
  position: absolute;
  top: -50px;   /* markerin üstünde çıksın */
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #333;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Hover olduğunda görünür */
.circle-container:hover .tooltip , .circle-container:hover img {
  opacity: 1;
}