.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(to right, #e8f0ff, #d1eaff);
}

.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.hero-overlay2
{
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(8 34 108 / 80%), rgb(43 3 103 / 60%), rgb(9 28 82 / 80%));
    /*z-index: 2;*/
}
.form-title
{
    font-size: 50px;
    line-height: 1.2;
    color: #031026;
    font-weight: 700;
    margin: 5px auto 5px;
    /* text-transform: uppercase; */
    text-transform: math-auto;
}
.stepper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-header {
  font-size: 14px;
  color: #534f4f;
  text-align: center;
  flex: 1;
  position: relative;
}

.step-header.active {
      color: #673AB7;
    font-weight: bold
}

.step-header i {
  display: block;
  font-size: 24px;
  margin-bottom: 5px;
}

.step {
  display: none;
  flex-direction: column;
}

.step.active {
  display: flex;
}

input, textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
}

input:invalid, textarea:invalid {
  border-color: #ff4d4d;
}

input:valid, textarea:valid {
  border-color: #4caf50;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

button {
  padding: 10px 20px;
  border: none;
  background: #673AB7;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background: #0056b3;
}

/* Success Modal */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  margin: auto;
  top: 40%;
  animation: fadeIn 0.5s;
}
.modal-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.modal-content p {
  font-size: 16px;
}
.close-modal {
  float: right;
  font-size: 24px;
  cursor: pointer;
}
.call-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* feature-card*/

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition-normal);
    border-radius: var(--radius-xl);
    background: #538de4;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #000000;
}

.feature-icon i {
    font-size: 3rem;
    
}