/* Dark background overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Ensures it sits on top of everything */
}

/* The actual pop-up box */
.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.3);
  z-index: 999;
}

/* Close button (X) */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #333;
}

/* Call to action button */
.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}
