.map-container {
  position: relative;
  margin: 40px auto;
}

.map-image {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #0d6efd;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.6);
  /* approximate position over India; tweak these % values to align precisely */
  top: 50%;
  left: 67%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite ease-in-out;
}

/* pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .dot {
    width: 10px;
    height: 10px;
  }
}
