.image_Map_container {
  display: flex;  
  margin-top: 30px; 
}

/* Map Section */
.image_Map_container .map-section {
  width: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.image_Map_container .map-container {
  /* background: white; */
  /* border-radius: 1rem; */
  /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
  /* padding: 2rem; */
  max-width: 500px;
  width: 100%;
}

.image_Map_container .map-wrapper {
  position: relative;
  width: 100%;
  /* max-width: 400px; */
  margin: 0 auto;
}

.image_Map_container .base-map {
  width: 100%;
  height: auto;
  display: block;
}

.image_Map_container .region-area {
  cursor: pointer;
  transition: all 0.2s ease;
}

.image_Map_container .region-area:hover {
  filter: brightness(1.1);
}

.image_Map_container .region-area:focus {
  outline: 3px solid #f97316;
  outline-offset: 2px;
}

/* Visual feedback canvas overlay */
.image_Map_container .hover-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 0.5rem;
}

.image_Map_container .map-instructions {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.image_Map_container .active-region {
  font-weight: 600;
  color: #f97316;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.image_Map_container{
flex-direction:column;}
  .image_Map_container .map-section {
    width: 100%;
  }

  .image_Map_container .map-container {
    max-width: 100%;
  }
}

.image_Map_container .ie_map_name,
.image_Map_container .ie_map_photo {
  max-width: 500px;
}

/* Slider Section */
.image_Map_container .slider-section {
  width: 50%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image_Map_container .slider-container {
  position: relative;

  overflow: hidden;
  /* height: 600px; */
}

.image_Map_container .slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.image_Map_container .slide {
  width: 100%;
  flex-shrink: 0;
  padding: 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image_Map_container .profile-description {
  color: #012596;
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 32rem;margin-top:5px;
}
.image_Map_container span.profile-tite {
    margin-top: 5px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    color: grey;
}
.image_Map_container span.profile-tite span{
color:#012596
}

/* Navigation Buttons */
.image_Map_container .nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image_Map_container .nav-button:hover {
  background: #888;
  transform: translateY(-50%) scale(1.1);
}

.image_Map_container .nav-button.prev {
  left: 1rem;
}

.image_Map_container .nav-button.next {
  right: 1rem;
}

/* Slide Indicators */
.image_Map_container .indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.image_Map_container .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.image_Map_container .indicator.active {
  background: #000;
  transform: scale(1.25);
}

.image_Map_container .indicator:hover {
  background: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
  .image_Map_container .image_Map_container {
    flex-direction: column;
  }

  .image_Map_container .map-section,
  .image_Map_container .slider-section {
    width: 100%;
  }

  .image_Map_container .slider-container {
    height: 500px;
  }

  .image_Map_container .slide {
    padding: 2rem;
  }

  .image_Map_container .profile-description {
    font-size: 1rem;
  }
}
