body {
    color:#181ba;
}
a {
    text-decoration: none;
}
.custom-demo-form {
  background: #ffffff;
  padding: 10px 30px;
  max-width: 800px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.custom-demo-form .form-header {
  text-align: left;
  margin-bottom: 30px;
}

.custom-demo-form h2 {
   margin-bottom: 10px;
  color: #333;
}

.custom-demo-form .text-muted {
  color: #777;
  font-size: 16px;
}

.custom-demo-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 2px;
}

.custom-demo-form .form-col {
  display: flex;
  flex-direction: column;
}

.custom-demo-form .form-col.full-width {
  grid-column: span 2;
  text-align: left;
}

.custom-demo-form input[type="text"],
.custom-demo-form input[type="email"],
.custom-demo-form input[type="tel"],
.custom-demo-form input[type="number"],
.custom-demo-form select,
.custom-demo-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
}

.custom-demo-form input[type="submit"],
.custom-demo-form button {
  background: #111827;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.custom-demo-form input[type="submit"]:hover,
.custom-demo-form button:hover {
  background: #111827;
}

.custom-demo-form .trust-text {
  font-size: 14px;
  color: #555;
  text-align: start;
}
.custom-demo-form select {
margin-bottom: 0.3rem;
}

 .step-section {
      max-width: 800px;
      margin: 0 auto;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .step-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .step-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .step-number {
      font-size: 22px;
      font-weight: bold;
      background-color: #ffffff;
      color: #1c1c1e;
      padding: 14px 20px;
      border-radius: 10px;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .step-content {
      max-width: 650px;
    }

    .step-title {
      font-size: 18px;
      font-weight: 600;
      margin: 0 0 8px;
    }

    .step-content p {
      margin: 0;
      font-size: 15px;
      color: #555;
    }
    .custom-demo-form input::placeholder,
.custom-demo-form textarea::placeholder,
.custom-demo-form select::placeholder {
  color: #333; /* Same as your input text */
  opacity: 1;  /* Ensure full visibility */
}

/* Optional: remove highlight on focus */
.custom-demo-form input:focus,
.custom-demo-form textarea:focus,
.custom-demo-form select:focus {
  outline: none;
  border-color: #999; /* Optional: change to your preferred focus color */
  box-shadow: none;
}

.custom-footer-mobile { }


/* Scroll to Top Button */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    /*background-color: #0073aa;*/
    color: #fff;
    padding: 12px 16px;
    font-size: 20px;
    text-decoration: none;
    z-index: 99999;
    /*box-shadow: 0 2px 8px rgba(0,0,0,0.2);*/
    transition: all 0.3s ease;
}

#scrollToTopBtn:hover {
    /*background-color: #005f8d;*/
    transform: scale(1.1);
}

/* Default sticky header */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: transparent;
    transition: all 0.3s ease;
}

/* After scrolling down */
.sticky-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
