.conference-solutions {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  color: #555;
}

.solutions-description {
  max-width: 800px;
  margin: 0 auto;
}

.solutions-showcase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}
.solutions-showcase > div {
  flex: 1;
}

.room-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.pulse-indicators {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 400px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.pulse-point {
  position: absolute;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.pulse-point.active {
  display: none;
}

.pulse-center {
  width: 12px;
  height: 12px;
  background-color: #007bff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: 2;
}

.pulse-ring {
  border: 2px solid #007bff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  opacity: 0.6;
  animation: pulse-ring 2s infinite;
}

.pulse-ring.ring-2 {
  animation-delay: 0.4s;
}
.pulse-ring.ring-3 {
  animation-delay: 0.8s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

/* 📍 Specific positions mapped from image (adjust as needed) */
.pulse-1 {
  top: 25%;
  left: 32%;
} /* Top left room */
.pulse-2 {
  top: 40%;
  left: 10%;
} /* Top middle room */
.pulse-3 {
  top: 34%;
  left: 58%;
} /* Top right room */
.pulse-4 {
  top: 48%;
  left: 82%;
} /* Large training room */
.pulse-5 {
  top: 56%;
  left: 30%;
} /* Bottom blue room */
.pulse-6 {
  top: 67%;
  left: 55%;
} /* Circular table room */

.room-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  background: #fcf7ec;
  border-radius: 8px;
}

.room-images img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  display: none;
}

.room-image.active {
  display: block;
}

.features-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 20px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.feature-icon i {
  font-size: 4rem;
  color: #333;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.room-tabs {
  width: 100%;
}

.tab-navigation {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 1rem 1.5rem;
  gap: 10px;
  width: 100%;
}

.room-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.room-tab.active {
  opacity: 1;
}

.room-tab:hover {
  opacity: 1;
}
.room-tab img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.room-tab span {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
 
  .room-details-inner {
    flex-direction: column;
  }
}

@media (max-width: 468px) {
  .solutions-title, .room-title {
    font-size: 2.5rem;
  }

  .solutions-showcase {
    flex-direction: column;
  }

  .room-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 20px;
  }

  .room-tab {
    flex: 1 0 100%;
    max-width: 80%;
  }

}
