/* Modal Overlay Background */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 30px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
.gradient-btn {
  background: linear-gradient(45deg, #ff9966, #ff5e62); /* light orange → red */
  border: none;
  color: white;
  font-weight: bold;
  padding: 5px 20px;
  font-size: 12px;
  border-radius: 50px;
  transition: 0.3s ease;
}
@media (min-width: 992px) {
  .gradient-btn {
    background: linear-gradient(45deg, #ff9966, #ff5e62); /* light orange → red */
    border: none;
    color: white;
    font-weight: bold;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.3s ease;
    cursor: pointer;
  }
}
.gradient-btn:hover {
  background: linear-gradient(45deg, #ff5e62, #ff9966);
  transform: scale(1.05);
}
