.map-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-right: 100px;
}

.map-wrapper {
  position: relative;
  width: 500px; /* adjust */
  height: 500px;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.orbit-container {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 -250px; /* distance from center */
}

.orbit img {
  width: 80px;
  height: auto;
  transform: rotate(calc(-1 * var(--angle))); /* keep upright */
}

/* Angle for each orbit */
.orbit1 {
  --angle: 0deg;
  transform: rotate(var(--angle));
}
.orbit2 {
  --angle: 45deg;
  transform: rotate(var(--angle));
}
.orbit3 {
  --angle: 90deg;
  transform: rotate(var(--angle));
}
.orbit4 {
  --angle: 135deg;
  transform: rotate(var(--angle));
}
.orbit5 {
  --angle: 180deg;
  transform: rotate(var(--angle));
}
.orbit6 {
  --angle: 225deg;
  transform: rotate(var(--angle));
}
.orbit7 {
  --angle: 270deg;
  transform: rotate(var(--angle));
}
.orbit8 {
  --angle: 315deg;
  transform: rotate(var(--angle));
}

/*  -------------------- ====================================================================================*/
.chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.messenger-icon {
  position: fixed;
  bottom: 20px;
  right: 30px;
  font-size: 50px;
  cursor: pointer;
  color: #171427;
  transition: transform 0.2s ease-in-out;
}

.messenger-icon:hover {
  transform: scale(1.1);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #171427;
  color: white;
  padding: 8px 12px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
}

.close-icon {
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  margin-right: 5px;
}

.close-icon:hover {
  transform: scale(1.1);
}

.chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;

  word-wrap: break-word;   
  overflow-wrap: break-word;
  white-space: normal; 
}

.chat-message {
  max-width: 75%;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.4;
}

.chat-message.user {
  background: #171427;
  color: white;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.chat-message.bot {
  background: #eee;
  color: black;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.chat-input {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
}

.chat-input button {
  background: #171427;
  color: white;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.2s ease-in-out;
}

.chat-input button:hover {
  background: #211c39;
}

.chat-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
}
