/* Custom Modal Styling */
.custom-modal .modal-content {
  border-radius: 12px;
  border: none;
  text-align: center;
  overflow: hidden;
  max-width: 400px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

/* Modal Header Image */
.modal-header-img {
  width: 100%;
  height: auto;
}

/* Close Button */
.close-modal-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Modal Body */
.modal-body {
  padding: 20px;
}

.modal-body h2 {
  font-size: 20px;
  font-weight: bold;
}

.modal-body p {
  color: #666;
  font-size: 14px;
}

.modal-features {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 15px 0;
}

.modal-features li {
  font-size: 14px;
  color: #333;
}

/* Subscription Form */
.subscription-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.subscription-form .form-control {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.subscribe-btn {
  background: #e89a00;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  width: 50%;
}

.subscribe-btn:hover {
  background: #000000;
}
