/* exhibition-section */


/* Container adjustment */
.tabs-outer-wrapper {
  position: relative;
}

.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, Arial, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}

.exhibition-date {
  font-family: Inter, Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
}

@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 {
    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%);
  }
}

/* ── Exhibition Feedback Form ────────────────────────────── */

.exhibition-feedback-section {
  padding: 60px 20px 80px;
}

.ef-page-title {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #212121;
}

.ef-intro {
  font-size: 15px;
  color: #555;
}

.ef-section-heading {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #212121;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #FF7A00;
  padding-bottom: 6px;
  display: inline-block;
}

.ef-group-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 16px 18px;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.ef-group-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ef-group-title {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #FF7A00;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.ef-product-check {
  margin-bottom: 8px;
}

.ef-product-check .form-check-input:checked {
  background-color: #FF7A00;
  border-color: #FF7A00;
}

.ef-product-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.25);
}

.ef-product-check .form-check-label {
  font-size: 13px;
  color: #444;
  cursor: pointer;
}

/* Business card upload */
.ef-bc-drop-area {
  display: block;
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.ef-bc-drop-area:hover {
  border-color: #FF7A00;
  background: #fff8f3;
}

.ef-bc-drop-area .bi-person-vcard {
  font-size: 40px;
  color: #ccc;
  transition: color 0.2s ease;
}

.ef-bc-drop-area:hover .bi-person-vcard {
  color: #FF7A00;
}

.ef-bc-label {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin: 10px 0 4px;
}

.ef-bc-hint {
  font-size: 13px;
  color: #999;
  margin: 0;
}

.ef-bc-status {
  font-size: 13px;
  padding: 8px 14px;
  border-radius: 6px;
}

.ef-bc-processing {
  color: #856404;
  background: #fff3cd;
}

.ef-bc-success {
  color: #0a5c2f;
  background: #d1e7dd;
}

.ef-bc-error {
  color: #721c24;
  background: #f8d7da;
}

/* Star rating */
.ef-star-rating {
  display: flex;
  gap: 4px;
  margin-top: 4px;
}

.ef-star {
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s ease, transform 0.1s ease;
  user-select: none;
}

.ef-star.hovered,
.ef-star.selected {
  color: #FF7A00;
}

.ef-star:hover {
  transform: scale(1.15);
}

/* Thank you state */
.ef-thankyou {
  padding: 60px 20px;
}

.ef-thankyou-icon .bi-check-circle-fill {
  font-size: 64px;
  color: #FF7A00;
}

.ef-thankyou-heading {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #212121;
  margin-top: 16px;
}

.ef-thankyou-text {
  font-size: 15px;
  color: #666;
  max-width: 520px;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .exhibition-feedback-section {
    padding: 40px 12px 60px;
  }

  .ef-page-title {
    font-size: 22px;
  }
}
