
/* ===== MODAL BACKDROP ===== */
#exhibitsModal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

/* ===== MODAL BOX ===== */
#exhibitsModal .modal-content.exhibits-popup {
  background: #fff;
  width: 850px;
  height: 600px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  padding: 30px;
  overflow: hidden;
}


.why-choose-us-section{
	    padding: 6px 20px;
}


/* ===== CLOSE BUTTON ===== */
#exhibitsModal .close-exhibits {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 25px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}

/* ===== INNER CONTENT WRAPPER ===== */
#exhibitsModal .content-wrapper {
  width: 650px;
  height: 450px;
  margin: 40px auto 0 auto;
  overflow-y: auto;
  text-align: center;
  padding: 15px;
}

/* ===== SCROLLBAR STYLING ===== */
#exhibitsModal .content-wrapper::-webkit-scrollbar {
  width: 6px;
}
#exhibitsModal .content-wrapper::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 4px;
}

/* ===== TEXT STYLES ===== */
#exhibitsModal h2 {
  color: #007bff;
  margin-bottom: 10px;
}
#exhibitsModal p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 25px;
}

/* ===== CARDS CONTAINER ===== */
#exhibitsModal .cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== TESTIMONIAL CARDS ===== */
#exhibitsModal .testimonial-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  flex: 0 0 100%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  display: none; /* for slider effect */
}

#exhibitsModal .testimonial-card h3 {
  margin-top: 15px;
  color: #007bff;
  text-align: center;
  font-weight: 600;
}


/* ===== BACKGROUND BLUR WHEN MODAL OPEN ===== */
body.modal-open {
  overflow: hidden; /* Prevent background scroll */
}

body.modal-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px); /* blur strength */
  background-color: rgba(0, 0, 0, 0.2); /* subtle dark overlay */
  z-index: 9998; /* below modal */
}




/* ===== RESPONSIVE ===== */
@media (max-width: 850px) {
  #exhibitsModal .modal-content.exhibits-popup {
    width: 90%;
    height: 60%;
  }
  #exhibitsModal .content-wrapper {
    width: 90%;
    height: 50%;
  }
}