/* Start custom CSS for html, class: .elementor-element-ed45217 */.andaman-gallery {
  padding: 60px 20px;
  text-align: center;
  background: #f0faff;
  font-family: 'Segoe UI', sans-serif;
}

.andaman-gallery h2 {
  font-size: 34px;
  color: #023047;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.03);
}

/* Popup Style */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}

#close-btn {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}/* End custom CSS */