
        /* YOUR PROVIDED CSS - UNCHANGED */
        .request-form { max-width: 600px; margin: 40px auto; padding: 30px 25px; background: #f9f9f9; border-radius: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.1); font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; }
        .request-form h2 { text-align: center; margin-bottom: 30px; font-weight: 700; font-size: 28px; color: #222; }
        .btn.minutes-active { display: flex; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .btn.minutes-active button { flex: 1; max-width: 140px; padding: 10px 0; border: 2px solid #007bff; border-radius: 8px; background: transparent; font-size: 16px; cursor: pointer; color: #007bff; transition: background-color 0.3s, color 0.3s; }
        .btn.minutes-active button:disabled, .btn.minutes-active button.active { background-color: #007bff; color: #fff; cursor: default; }
        .btn.minutes-active button:not(:disabled):hover { background-color: #0056b3; color: #fff; }
        input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; background: transparent; outline: none; margin-top: 10px; cursor: pointer; }
        input[type="range"]::-webkit-slider-runnable-track { width: 100%; height: 10px; border-radius: 8px; background: linear-gradient(90deg, #007bff var(--slider-fill, 50%), #e0e0e0 var(--slider-fill, 50%)); }
        input[type="range"]::-moz-range-track { width: 100%; height: 10px; border-radius: 8px; background: linear-gradient(90deg, #007bff var(--slider-fill, 50%), #e0e0e0 var(--slider-fill, 50%)); }
        input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; background: #007bff; border-radius: 50%; border: 2px solid #0056b3; cursor: pointer; margin-top: -7px; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); transition: background 0.3s, border-color 0.3s; }
        input[type="range"]::-moz-range-thumb { width: 24px; height: 24px; background: #007bff; border-radius: 50%; border: 2px solid #0056b3; cursor: pointer; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }
        input[type="range"]:hover::-webkit-slider-thumb { background: #0056b3; border-color: #003d80; }
        input[type="range"]:hover::-moz-range-thumb { background: #0056b3; border-color: #003d80; }
        input[type="range"]:focus::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.4); }
        input[type="range"]:focus::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.4); }
        .font-weight-bold.premium-slider-value { font-weight: 700; font-size: 20px; color: #007bff; margin-top: 6px; }
        .form-label { font-weight: 600; margin-bottom: 6px; color: #555; }
        .form-text { font-weight: 600; font-size: 15px; }
        #repayment-date-minutes, #repayment-date-instant { font-weight: 700; color: #d9534f; }
        .custom-heading { font-weight: 600; font-size: 18px; margin: 25px 0 12px 0; color: #555; text-align: center; }
        .glass-black-box { background: rgba(0, 0, 0, 0.08); border-radius: 10px; text-align: center; padding: 18px 15px; box-shadow: inset 0 0 10px rgba(0,0,0,0.05); }
        .form-text.text-primary { font-weight: 700; font-size: 18px; color: #007bff; display: block; margin-top: 6px; }
        .d-flex.justify-content-between { display: flex; gap: 20px; }
        .d-flex.justify-content-between > div { flex: 1; }
        #duration-selection button { padding: 12px 20px; border-radius: 8px; font-weight: 600; font-size: 16px; cursor: pointer; min-width: 120px; transition: background-color 0.3s, border-color 0.3s; }
        #duration-selection button.btn-outline-primary { border: 2px solid #007bff; color: #007bff; background: transparent; }
        #duration-selection button.btn-outline-primary:hover { background-color: #007bff; color: #fff; }
        #duration-selection button.btn-outline-secondary { border: 2px solid #6c757d; color: #6c757d; background: transparent; }
        #duration-selection button.btn-outline-secondary:hover { background-color: #6c757d; color: #fff; }

        /* --- NEW STYLES TO SUPPORT YOUR LAYOUT --- */
        #ezyduration-selection.btn-group {
            gap: 5px; /* Add small space between day buttons */
        }
        #ezyduration-selection .day-btn {
            flex-grow: 1; /* Make buttons share space equally */
            font-size: 14px; /* Slightly smaller font to fit */
            padding: 8px 5px; /* Adjust padding */
        }
        #ezyduration-selection .day-btn.active {
            background-color: #007bff;
            color: #fff;
        }

        @media (max-width: 480px) {
            .request-form { padding: 20px 15px; }
            .btn.minutes-active button { max-width: 100px; font-size: 14px; padding: 8px 0; }
            #duration-selection button { min-width: 100px; font-size: 14px; padding: 10px 14px; }
            .custom-heading { font-size: 16px; }
        }
.investor-button {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
  transition: background 0.3s ease;
  border-radius: 30px; /* 👈 Makes the button curved */
}

.investor-button .btn-text {
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.investor-button .btn-invest {
  animation: slideToggle 6s infinite;
}

.investor-button .btn-coming {
  animation: slideToggleAlt 6s infinite;
}

/* Animation for 'Become an Investor' */
@keyframes slideToggle {
  0% { opacity: 1; transform: translateY(0); }
  40% { opacity: 0; transform: translateY(-100%); }
  50% { opacity: 0; transform: translateY(100%); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Animation for 'Coming Soon' */
@keyframes slideToggleAlt {
  0% { opacity: 0; transform: translateY(100%); }
  40% { opacity: 1; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(0); }
  90% { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 0; transform: translateY(-100%); }
}