.experience-hero-section {
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

.gallery-filters {
  font-weight: 600;
  background: var(--gray-color) !important;
  padding: 6px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-bottom: 1rem !important;
  box-shadow: inset 0 1px 2px #00000008;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filters .nav-link {
  border: none !important;
  background: transparent !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  color: var(--primary-color) !important;
  cursor: pointer;
  font-weight: 600;
  flex-shrink: 0;
}

.gallery-filters .nav-link.active {
  background: var(--primary-color) !important;
  color: var(--light-color) !important;
}

.tag-rail-wrapper {
  background-color: var(--gray-color);
  width: 97%;
  margin: auto;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px var(--shadow-lg);
  margin-bottom: 1rem;
}

.tag-rail {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  padding: 5px;
  border-radius: 999px;
}
.tag-rail::-webkit-scrollbar {
  display: none;
}

.tag-btn {
  flex: 0 0 auto;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
}

.tag-btn.active {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

.tag-arrow {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  color: var(--primary-color);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0;
}

@media (max-width: 768px) {
  #region-nav-sec {
    display: none;
  }
}

.grid-gallery {
  column-count: 2;    
  column-gap: 10px;     
}


@media (min-width: 1200px) {
  .grid-gallery {
    column-count: 5;
  }
}

@media ((min-width: 768px) and (max-width: 1400px)) {
  .grid-gallery {
    column-count: 3;
  }
}

.grid-item {
  display: inline-block;
  margin: 0 0 5px;
  width: 100%;
  break-inside: avoid;
  border-radius: 12px;
  overflow: visible;
  box-shadow: 0px 15px 18px rgba(66, 60, 60, 0.317); 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.grid-item img:hover {
  transform: scale(1.02);
}