/* exhibition-section */


/* Container adjustment */
.tabs-outer-wrapper {
  position: relative;
  /* padding: 0 0px 0px 50px;  */
}

.exhibition-section {
  padding: 60px 20px 10px;
}

/* Tab Container Styles */
.tabs-container {
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

.tabs-inner-flex {
  display: flex;
  flex-wrap: nowrap;
}

.tab-item {
  flex: 0 0 33.33%;
  padding: 15px;
  cursor: pointer;
  opacity: 0.4;
  transition: 0.3s ease;
  position: relative;
}

.exhibition-title {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}

.exhibition-date {
  font-family: Inter;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;

}

@media (max-width: 768px) {
  .tab-item {
    flex: 0 0 100%;
    padding: 30px 50px 0px;
  }

  .tab-item.active {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .tabs-outer-wrapper {
    /* position: relative; */
    padding: 0 0px 0px 50px;
  }

}

.tab-item.active {
  opacity: 1;
}

.orange-line {
  height: 4px;
  background-color: #FF7A00;
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.tab-item.active .orange-line {
  width: 100%;
}

/* ==== ARROW BUTTONS (Aapki di hui design) ==== */
.exhibition-prev,
.exhibition-next {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50%;
  border: 2px solid #FF7A00 !important;
  background: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex !important;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.exhibition-prev::after,
.exhibition-next::after {
  font-size: 15px !important;
  font-weight: 700;
  color: #FF7A00;
  transition: 0.3s ease;
}

.exhibition-prev {
  left: 0;
}

.exhibition-next {
  right: 0;
}

.exhibition-prev:hover,
.exhibition-next:hover {
  background: #FF7A00;
}

.exhibition-prev:hover::after,
.exhibition-next:hover::after {
  color: #fff;
}

/* Marquee Logic */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 10s linear infinite;
}

.marquee-content img {
  border-radius: 12px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.d-none {
  display: none !important;
}