.noto-sans-jp-reg {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@keyframes loadIn {
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
  
}
@keyframes progressBarIncrease {
  0% {
      width: 0;
  }
  100% {
      width: 100%;
  }
}

@keyframes loadOut {
  0%{
      opacity: 0;
      transform: translateX(-10deg);
  }
  100%{
      opacity: 1;
      transform: translateX();
  }
  
}

@keyframes fbload {
  0%{
    opacity: 0;
    transform: scale(1,1);
  }
  30%{
    opacity: 1;
    transform: scale(2,2);
  }
  60%{
    opacity: 0;
    transform: scale(1,1);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease-in-out forwards;
  opacity: 0 !important;
  transition: opacity 0.5s ease-in-out;
}

.fade-in.visible {
  opacity: 1 !important;
}

/* Slide in left animation for scroll-triggered elements */
.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.optIn{
  font-size: 13px;
  text-align: justify;
}
.text-justify{
  text-align: justify;
}

html,body {
  font-family: "Noto Sans JP", serif;
  min-height: 100vh;
  background-color: #ecfff9;
}

#mainContainer{
background: url("https://www.lendzi.com/wp-content/uploads/2020/09/home-banner.png");  
min-height: 66vh;
  padding-bottom: 50px;
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.headerContainer{
  margin-top: 30px;
  font-family: 'sansationbold';
}
.progressBarContainer{
  width: 450px;
  
}
#prevBtn{
  background-color: transparent;
  border: none;
  color: rgb(37, 37, 37);
  padding: 5px 0;
  padding-top: 10px;
  text-align: left;
  width: 100%;
}
#submitForm{
  background-color: transparent;
  border: none;
  box-shadow: none;
  width: 100%;
  max-width: 600px;
  padding: 20px;
}
.active{
  animation-name: progressBarIncrease;
  animation-duration: 0.7s;
  
}
.bar{
  height: 15px;
  width: 18%;
  background-color: #20C58A;
  transition: width 1.5s ease;
}
.bar-1{
  border-radius: 10px 0 0 10px;
}
.bar-6{
  border-radius: 0px 10px 10px 0px;
}
.inactive{
  background-color: #18517f41;
  animation-name: progressBarIncrease;
  animation-duration: 0.7s;
}

.tab{
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  max-width: 500px;
  position: relative;
  font-size: 1.1rem;
  color: #333;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.tab-6 label, .tab-7 label {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
}

label.error.fail-alert{
  position: absolute;
  color: red;
  font-size: .75rem;
}
.bg-primary, .btn-primary{
  background-color: #18507F !important;
}
.text-primary{
  color: #18507F !important
}
.formStepContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.formStepContainer .btn-success {
  width: 100%;
  margin-bottom: 8px;
  background-color: #003945 !important;
  border-color: #003945 !important;
}

.formStepContainer .btn-navigate-form-step.btn-secondary {
  align-self: flex-start;
  display: flex;
  align-items: center;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  color: rgb(37, 37, 37) !important;
}

.tab-1 .formStepContainer .btn-success {
  width: 100%;
  background-color: #003945 !important;
  border-color: #003945 !important;
}

.tab-2 .formStepContainer {
  position: relative;
}

.tab-2 .formStepContainer .btn-success {
  width: 100%;
  margin-bottom: 10px;
  background-color: #003945 !important;
  border-color: #003945 !important;
}

.back-revenue-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.bbbAccredBadge{
  position: relative;
  top: 50px;
}
.secureLockAndTermsContainer{
  margin-top: 20px;
}
.termsAndPrivacyContainer{
  font-size: 14px;
  
}
.termsAndPrivacyContainer a{
  color: #2a7dc2;
  text-decoration: none;
}
.termsAndPrivacyContainer a:hover{
  color: #001d35;
  text-decoration: underline;

  transition: 0.3s all;
}

.btn-link {
  text-align: left;
  margin-top: auto;
}
.btn-success{
  background-color: #003945 !important;
  border-color: #003945 !important;
  color: white;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.bg-darkgreen{
  background-color: #1a237e;
}
.btn-success:hover {
  background-color: #00293a !important;
  border-color: #00293a !important;
  color: white;
}
.bg-success{
  background-color: #20C58A !important;
}
.text-success{
  color: #20C58A !important;
}
input {
}

.checkmark-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.checkmark-points {
  display: flex;
  justify-content: space-between; /* Space items evenly */
  width: 100%; /* Ensure it takes full width */
}

.checkmark-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Center the text */
  margin: 0; /* Remove margin for better spacing */
}

.checkmark-circle {
  width: 30px; /* Smaller size */
  height: 30px; /* Smaller size */
  border-radius: 50%;
  background-color: #05bd68; /* Green color */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px; /* Adjust size of the checkmark */
  color: white; /* Checkmark color */
  margin-right: 5px; /* Space between checkmark and text */
}

.checkmark-points p {
  font-size: 16px; /* Adjust font size for points */
  color: #333; /* Text color */
  margin: 0; /* Remove default margin */
}

.separator {
  font-size: 20px; /* Adjust size as needed */
  color: #333; /* Color of the separator */
  line-height: 1.5; /* Adjust line height for better spacing */
}

@media screen and (max-width: 767px){
  .headerContainer{
    /* margin-top: 18%; */
    font-family: 'Roboto';
  }
  #mainContainer{
    height: auto;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .headerContainer{
    
    width: 100%;
    padding: 0 20px;
  }
  .progressBarContainer{
    width: 100%;
    padding: 0 20px;
  }
  #submitForm{
    border:none !important;
    box-shadow: none !important;
    padding: 15px 10px;
    width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the width */
  }
  .tab{
    width: 100%;
    padding: 0 20px;
  }
  .col-12{
    margin-bottom: 16px;
  }
  .secureLockAndTermsContainer{
    margin-top: 40px;
  }
  .checkmark-section {
    display: none !important;
  }
  
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading-bar {
    width: 300px;
    height: 20px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: var(--teal-primary);
    animation: loading-progress 2.5s ease-out forwards;
    border-radius: 10px;
}

.loading-text {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

@keyframes loading-progress {
    0% { width: 0; }
    100% { width: 100%; }
}

.recent-funding-container {
  text-align: center;
  margin-top: 40px;
}

.funded-deal-card {
  background-color: #f8f9fa; /* Light background for cards */
  border: 1px solid #dee2e6; /* Light border */
  border-radius: 10px; /* Rounded corners */
  transition: transform 0.2s, box-shadow 0.2s; /* Smooth hover effect */
  width: 300px; /* Increased width for cards */
  display: flex; /* Use flexbox for alignment */
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the start */
  padding: 15px; /* Add padding for spacing */
}

.funded-deal-card:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

.funded-deal-card p {
  margin: 0; /* Remove default margin */
  display: inline; /* Keep p tags on the same line */
}

.industry {
  font-weight: bold;
  color: #18507F; /* Primary color */
}

.funded-amount, .fico-score, .term-length, .funding-program {
  margin: 5px 0; /* Spacing between lines */
  color: #333; /* Darker text for readability */
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.card-text {
  flex-grow: 1;
}

.list-unstyled {
  margin-top: auto;
}

.card:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    #mobileFullWidth {
        width: 100% !important; /* Override the width for mobile screens */
    }
    
}

.how-it-works {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin-top: 40px;
}

.step {
    display: flex;
    align-items: center;
    margin: 20px 0;
    width: 80%;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.step-image {
    width: 100px; /* Adjust as needed */
    height: auto;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
}

.step-content p {
    margin: 0;
    color: #555;
}
.step .fa-solid, .loan-card .fa-solid, .step i {
  font-size: 34px !important;
  margin-right: 15px;
  color: #20C58A;
}

.loan-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* Space between cards */
}

.loan-card {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    text-align: center; /* Center text */
    width: 33.33%; /* Each card takes one-third of the width */
    max-width: 300px; /* Set a maximum width for the cards */
    margin: 10px; /* Add some margin for spacing */
}

.loan-card img {
  width: 50px;
  height: 50px;
}

.learn-more {
  display: inline-block;
  margin-top: 20px;
  color: #007bff;
  text-decoration: none;
}

/* Modern Progress Bar Styles - Mobile First */
.new-progress-bar-container {
  margin: 8px 0 16px 0;
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.new-progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* Modern step circles */
.new-progress-step {
  flex: 1;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  text-align: center;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
  border-radius: 50%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

/* Active step (completed) */
.new-progress-step.active {
  background: linear-gradient(135deg, #20C58A 0%, #17a872 100%);
  box-shadow: 0 4px 12px rgba(32, 197, 138, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1);
}

/* Current step being filled */
.new-progress-step.current {
  transform: scale(1.15);
  background: linear-gradient(135deg, #20C58A 0%, #17a872 100%);
  box-shadow: 0 6px 20px rgba(32, 197, 138, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Pulse animation for current step */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(32, 197, 138, 0.4);
  }
  50% {
    box-shadow: 0 6px 25px rgba(32, 197, 138, 0.6);
  }
}

/* Step number styling */
.step-number {
  font-size: 15px;
  color: #999;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 2;
}

.new-progress-step.active .step-number,
.new-progress-step.current .step-number {
  color: white;
}

/* SVG checkmark animation */
.new-progress-step svg {
  width: 20px;
  height: 20px;
  animation: checkmark-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes checkmark-pop {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* Connecting line effect (pseudo-element) */
.new-progress-step::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  background: #e0e0e0;
  z-index: -1;
  transition: all 0.4s ease;
}

.new-progress-step:first-child::before {
  display: none;
}

.new-progress-step.active::before {
  background: #20C58A;
  height: 3px;
}

/* Shimmer effect on completion */
@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.new-progress-step.active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  background-size: 200% 100%;
  border-radius: 50%;
  animation: shimmer 2s ease-in-out;
  animation-iteration-count: 1;
  pointer-events: none;
}

.step-complete-icon {
  font-size: 14px;
  color: white;
  margin-left: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .new-progress-bar-container {
    max-width: 100%;
    padding: 0 20px;
    margin: 12px 0 20px 0;
  }
  
  .new-progress-step {
    height: 32px;
    min-width: 32px;
    max-width: 32px;
  }
  
  .new-progress-step.current {
    transform: scale(1.12);
  }
  
  .step-number {
    font-size: 14px;
  }
  
  .new-progress-step svg {
    width: 18px;
    height: 18px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .new-progress-bar {
    gap: 6px;
  }
  
  .new-progress-step {
    height: 30px;
    min-width: 30px;
    max-width: 30px;
  }
  
  .step-number {
    font-size: 13px;
  }
}

.step-label {
  display: block;
  font-weight: bold;
  font-size: 0.8em; /* Smaller font size */
}

.new-progress-buttons {
  display: flex;
  justify-content: space-between;
}

/* Update form inputs and selects */
.form-control, .form-select {
  height: 48px;
  font-size: 0.95rem;
  padding: 8px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: none;
  margin-top: 4px;
  margin-bottom: 0;
}

.form-control:focus, .form-select:focus {
  border-color: #20C58A;
  box-shadow: none;
  outline: none;
}

/* Modern Selectize Styling with Brand Colors */
.selectize-control {
  margin-top: 4px;
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}

.selectize-control.single .selectize-input,
.selectize-control.multi .selectize-input {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.95rem;
  background: white;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.selectize-control.single .selectize-input.input-active,
.selectize-control.single .selectize-input.focus {
  border-color: #20C58A;
  box-shadow: 0 0 0 3px rgba(32, 197, 138, 0.1);
  outline: none;
}

.selectize-control.single .selectize-input::after {
  border-color: #003945 transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0;
  content: '';
  display: block;
  height: 0;
  margin-top: -3px;
  position: absolute;
  right: 15px;
  top: 50%;
  width: 0;
  transition: transform 0.3s ease;
}

.selectize-control.single .selectize-input.dropdown-active::after {
  border-color: transparent transparent #003945;
  border-width: 0 6px 6px;
  margin-top: -9px;
}

.selectize-dropdown {
  border: 2px solid #20C58A;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  margin-top: 4px;
  background: white;
  font-size: 0.95rem;
  z-index: 9999 !important;
  position: absolute !important;
  max-height: 300px;
  overflow-y: auto;
}

.selectize-dropdown .option {
  padding: 12px 16px;
  cursor: pointer;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

.selectize-dropdown .option:hover,
.selectize-dropdown .option.active {
  background: linear-gradient(135deg, #20C58A 0%, #17a872 100%) !important;
  color: white !important;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* Force disable all selectize animations */
.selectize-dropdown-content .option,
.selectize-dropdown-content .option:hover,
.selectize-dropdown-content .option.active {
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

.selectize-dropdown .optgroup-header {
  padding: 10px 16px;
  font-weight: 600;
  color: #003945;
  background: #f8f9fa;
  border-bottom: 1px solid #e0e0e0;
}

.selectize-input input {
  font-size: 0.95rem;
  color: #333;
}

.selectize-input .item {
  color: #333;
  font-weight: 500;
}

/* Placeholder styling */
.selectize-input.has-items .item,
.selectize-input > input::placeholder {
  color: #666;
}

/* Disabled state */
.selectize-control.single .selectize-input.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f5f5f5;
}

/* Error state */
.selectize-control.single .selectize-input.error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Remove default select arrow when selectized */
.selectized {
  visibility: hidden;
  position: absolute;
}

/* Mobile responsive adjustments for Selectize */
@media (max-width: 768px) {
  .selectize-control.single .selectize-input,
  .selectize-control.multi .selectize-input {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 1rem;
  }
  
  .selectize-dropdown {
    font-size: 1rem;
  }
  
  .selectize-dropdown .option {
    padding: 14px 16px;
  }
  
  .selectize-control.single .selectize-input::after {
    right: 12px;
  }
}

/* Update next/submit buttons to match input height */
.btn-navigate-form-step.btn-success,
.submitFormButton.btn-success {
  height: 46px;
  padding: 0 25px;
  font-size: 0.95rem;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 5px;
}

/* Enhanced button effects with ripple */
.btn-navigate-form-step.btn-success,
.submitFormButton.btn-success {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-navigate-form-step.btn-success:before,
.submitFormButton.btn-success:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-navigate-form-step.btn-success:hover:before,
.submitFormButton.btn-success:hover:before {
  width: 300px;
  height: 300px;
}

.btn-navigate-form-step.btn-success:hover,
.submitFormButton.btn-success:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(32, 197, 138, 0.3);
}

.btn-navigate-form-step.btn-success:active,
.submitFormButton.btn-success:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(32, 197, 138, 0.2);
}

.loan-options-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
}

.loan-options-header {
  font-size: 2.5rem;
  font-weight: bold;
  color: #003945;
  font-family: 'sansationbold';
}
.how-it-works-header {
  font-size: 2.5rem;
  font-weight: bold;
  color: #003945;
  font-family: 'sansationbold';
}

.loan-options-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loan-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.loan-card {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.loan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.loan-card i {
  font-size: 2.5rem;
  color: #20C58A;
  margin-bottom: 1.5rem;
}

.loan-card h3 {
  font-size: 1.5rem;
  color: #003945;
  margin-bottom: 1rem;
  font-weight: bold;
}

.loan-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.loan-card .learn-more {
  color: #20C58A;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: 2px solid #20C58A;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.loan-card .learn-more:hover {
  background-color: #20C58A;
  color: white;
}

@media (max-width: 768px) {
  .loan-options {
    flex-direction: column;
  }
  
  .loan-card {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  
  .loan-options-header {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .loan-options-section {
    padding: 3rem 1rem;
  }
}

.split-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background-color: #003945;
  padding: 40px;
}

.left-section {
  flex: 1;
  color: white;
  padding: 15px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.right-section {
  margin:auto;
  justify-content: center;
  flex: 0.9;
  background-color: #ffffff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: none;
  box-shadow: 0 0 50px rgba(32, 197, 138, 0.35); /* Increased spread and opacity */
  margin-left: 40px;
  max-height: fit-content;
}

.left-section h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'sansationbold';
  line-height: 1.2;
}

.left-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.left-section ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.left-section li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: white;
}

.left-section li img {
  margin-right: 15px;
  color: #20C58A;
  font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
 

  .left-section .logo {
    display: none;
  }

  .left-section h1,
  .left-section ul {
    display: none;
  }

  .left-section {
    padding: 10px 20px 0;
    margin: 0;
    min-height: auto;
    background-color: white;
  }

  .left-section p {
    display: none;
    text-align: center;
    max-width: 100%;
    margin: 0;
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
  }

  .split-container {
    flex-direction: column;
    padding: 0;
    min-height: auto;
    background-color: white;
  }

  .right-section {
    margin: 0;
    padding: 0 20px;
    border-radius: 0;
    background-color: white;
    max-height: none;
  }

  #submitForm {
    padding: 0;
    max-width: 100%;
  }

  .tab {
    padding: 5px 0;
    font-size: 1.1rem;
    color: #333;
  }

  .headerContainer {
    margin: 10px 0;
    padding: 0;
    display: block !important;
  }

  .headerContainer .h5 {
    padding-bottom: 5px !important;
    margin: 5px 0;
    display: block;
    color: #18507F !important;
  }

  .form-control, .form-select {
    height: 50px;
    font-size: 1rem;
    margin: 8px 0;
    background-color: white;
  }

  .btn-navigate-form-step.btn-success,
  .submitFormButton.btn-success {
    height: 50px;
    margin-top: 8px;
  }

  .formStepContainer {
 
  }
}

/* Additional mobile-specific adjustments */
@media screen and (max-width: 768px) {
  .left-section {
    padding: 5px 15px;
  }

  .left-section p {
    font-size: 1rem;
    line-height: 1.4;
    padding: 5px 10px;
  }

  .right-section {
    padding: 10px 15px;
  }

  .tab {
    font-size: 1rem;
    padding: 5px 0;
  }

  .form-control, .form-select {
    height: 50px;
    margin: 8px 0;
  }

  .headerContainer {
    margin: 10px 0;
  }

  .headerContainer .h5 {
    font-size: 1rem;
    padding-bottom: 5px !important;
    color: #18507F !important;
  }

  .formStepContainer {
    
  }

  .col-12 {
    margin-bottom: 0;
  }

  .mb-2 {
    margin-bottom: 0 !important;
  }
}

.mobile-header {
  display: none;
  background-color: #003945;
  width: 100%;
  padding: 15px 0;
  margin: 0;
  text-align: center;
}

.mobile-header img {
  height: 30px;
  display: block;
  margin: 0 auto;
}
.hideOnDesktop {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mobile-header {
    display: block;
  }

  .left-section .logo {
    display: none;
  }

  .left-section h1,
  .left-section ul {
    display: none;
  }

  .left-section {
    display: none;
    padding: 10px 20px 0;
    margin: 0;
    min-height: auto;
    background-color: white;
  }

  .left-section p {
    text-align: center;
    max-width: 100%;
    margin: 0;
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
  }
  .hideOnDesktop {
    display: block;
  }

  .split-container {
    flex-direction: column;
    padding: 0;
    min-height: 90vh;
    background-color: white;
  }

  .right-section {
    justify-content: center;
    margin: 0;
    padding: 0 20px;
    border-radius: 0;
    background-color: white;
  }

  #submitForm {
    padding: 0;
    max-width: 100%;
  }

  .tab {
    padding: 5px 0;
    font-size: 1.1rem;
    color: #333;
  }

  .headerContainer {
    margin: 10px 0;
    padding: 0;
    display: block !important;
  }

  .headerContainer .h5 {
    padding-bottom: 5px !important;
    margin: 5px 0;
    display: block;
    color: #18507F !important;
  }

  .form-control, .form-select {
    height: 50px;
    font-size: 1rem;
    margin: 8px 0;
    background-color: white;
  }

  .btn-navigate-form-step.btn-success,
  .submitFormButton.btn-success {
    height: 50px;
    margin-top: 8px;
  }

  .formStepContainer {
    padding-top: 12px;
  }
}

/* New styles for redesigned form */
:root {
  --teal-primary: #00BFB3;
  --teal-light: #e6f7f6;
  --teal-dark: #009d92;
  --text-dark: #333;
  --text-light: #666;
  --border-radius: 8px;
}

.contact-form-container {

  min-height: 80vh;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.contact-form-container .container {
  max-width: 1140px;
  padding: 0;
}

.contact-form-container .row {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  display: table;
  width: 100%;
  table-layout: fixed;
}

.contact-form-container .col-md-4,
.contact-form-container .col-md-8 {
  display: table-cell;
  float: none;
  vertical-align: top;
  padding: 0;
}

.contact-form-container .col-md-4 {
  width: 33.33%;
  background-color: #003945;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

/* Add decorative bubble element */
.contact-form-container .col-md-4::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  z-index: 1;
}

/* Remove second bubble */
.contact-form-container .col-md-4::after {
  content: none;
}

.contact-form-container .col-md-8 {
  width: 66.67%;
  background-color: white;
}

.get-in-touch {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

.get-in-touch h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #003945;
  margin-bottom: 10px;
  line-height: 1.2;
}

.get-in-touch .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #20C58A;
  margin-bottom: 20px;
  line-height: 1.4;
}

.get-in-touch p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Ensure contact info items appear above the bubbles */
.contact-info-box {
  color: white;
  padding: 10px 0px;
  position: relative;
  z-index: 2;
}

.contact-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: 600;
  line-height: 1.4;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 3;
}

.contact-info-item i {
  font-size: 24px;
  margin-right: 15px;
  min-width: 24px;
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 16px;
  color: white; /* Ensure text is white for better contrast on dark background */
}

.contact-info-item div {
  display: flex;
  flex-direction: column;
  margin-left: 15px;
}

.contact-info-item a {
  color: white; /* Ensure links are white for better contrast */
  text-decoration: none;
}

.contact-form-box {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text */
}

/* Ensure the form takes up appropriate space */
#submitForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center form elements horizontally */
}

/* Center form elements and text */
.contact-form-box h4 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-box .form-select,
.contact-form-box .form-control {
  text-align: center;
  margin: 0 auto;
}

.contact-form-box .formStepContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-box .btn {
  margin: 10px auto;
  background-color: #003945 !important;
  border-color: #003945 !important;
}

/* Center the progress bar */
.new-progress-bar-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 20px 10px;
    margin-top: 0;
  }
  
  .contact-form-container .row {
    margin: 0;
  }
  
  .contact-form-container .col-md-4 {
    display: none; /* Hide the entire left column on mobile */
  }
  
  .contact-form-container .col-md-8 {
    padding: 10px;
    width: 100%; /* Ensure the form takes full width */
  }
  
  .contact-form-box {
    padding: 15px;
  }
  
  .get-in-touch h1 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .get-in-touch .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .get-in-touch p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  /* Make h4 elements in tabs smaller on mobile */
  .tab h4 {
    font-size: 18px;
  }
}

/* Adjust existing styles */
.split-container {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.left-section {
  padding: 40px;
}

.right-section {
  padding: 30px;
  background-color: white;
}

/* Override some existing styles */
.tab {
  padding: 20px 0;
}

.form-control, .form-select {
  margin-bottom: 15px;
}



/* Ensure the row is properly aligned */
.contact-form-container .row {
  align-items: stretch;
}

/* Make sure the get-in-touch section doesn't take too much space */
.get-in-touch {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

/* Adjust the form container for better spacing */
.contact-form-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Ensure the form takes up appropriate space */
#submitForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center form elements and text */
.contact-form-box h4 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form-box .form-select,
.contact-form-box .form-control {
  text-align: left;
  margin: 0 auto;
}

.contact-form-box .formStepContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-box .btn {
  margin: 10px auto;
}

/* Center the progress bar */
.new-progress-bar-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Adjust the row layout in the form */
.contact-form-box .row {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* Center labels in the form */
.contact-form-box label {
  text-align: left;
  display: block;
  margin-bottom: 5px;
}

/* Adjust the Trustpilot widget and BBB logo */
.contact-form-box .trustpilot-widget,
.contact-form-box .text-center {
  margin-top: 20px;
  width: 100%;
}

/* Make sure the optIn text is centered but readable */
.contact-form-box .optIn {
  text-align: left;
  display: block;
  font-size: 0.9em;
  line-height: 1.4;
}

/* Ensure mobile responsiveness for centered elements */
@media (max-width: 768px) {
  .contact-form-box .form-select,
  .contact-form-box .form-control {
    max-width: 100%;
  }
  
  .contact-form-box .btn {
    max-width: 100%;
  }
  
  /* Make h4 elements in tabs smaller on mobile */
  .tab h4 {
    font-size: 18px;
  }
}

/* Form container and field styles for multi-field tabs */
.form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
}

.form-container .row {
  margin-left: -10px;
  margin-right: -10px;
}

.form-container .col-md-6 {
  padding-left: 10px;
  padding-right: 10px;
}

.form-container label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  text-align: left;
  font-size: 14px;
}

.form-container .form-control,
.form-container .form-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
  height: auto;
}

.form-container .form-control:focus,
.form-container .form-select:focus {
  border-color: #00c389;
  box-shadow: 0 0 0 3px rgba(0, 195, 137, 0.2);
  outline: none;
}

/* Adjust the tab content for better spacing */
.tab-5, .tab-6 {
  padding: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-container {
    padding: 0 10px;
  }
  
  .form-container .form-control,
  .form-container .form-select {
    padding: 8px 10px;
    font-size: 14px;
  }
  
  .form-container .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  
  .form-container .col-md-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Simple form container styles to match the image */
.simple-form-container {
  width: 100%;
  max-width: 100%; /* Changed from 700px to 100% to match button width */
  margin: 0 auto;
  padding: 0; /* Remove any padding */
}

.simple-form-container .row {
  margin-left: 0; /* Changed from -10px to 0 */
  margin-right: 0; /* Changed from -10px to 0 */
  display: flex;
  flex-wrap: wrap;
  width: 100%; /* Ensure full width */
}

.simple-form-container .col-md-6,
.simple-form-container .col-12 {
  padding-left: 0; /* Changed from 10px to 0 */
  padding-right: 0; /* Changed from 10px to 0 */
  margin-bottom: 15px;
}

.simple-form-container .col-md-6:first-child {
  padding-right: 7.5px; /* Add spacing between columns */
}

.simple-form-container .col-md-6:last-child {
  padding-left: 7.5px; /* Add spacing between columns */
}

.simple-form-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.simple-form-container .form-control,
.simple-form-container .form-select,
.simple-form-container textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
  height: auto;
  box-shadow: none;
}

.simple-form-container .form-control:focus,
.simple-form-container .form-select:focus,
.simple-form-container textarea:focus {
  border-color: #00c389;
  outline: none;
  box-shadow: none;
}

.simple-form-container textarea {
  resize: vertical;
  min-height: 100px;
}

/* Form step container with back button positioning */
.formStepContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  
  padding: 0; /* Remove any padding */
}

.formStepContainer .btn-success {
  width: 100%;
  margin-bottom: 10px;
}

.formStepContainer .btn-navigate-form-step.btn-secondary {
  align-self: flex-start;
  display: flex;
  align-items: center;
  background-color: transparent !important;
  background-image: none !important;
  border: none !important;
  color: rgb(37, 37, 37) !important;
}

.tab-1 .formStepContainer .btn-success {
  width: 100%;
}

.tab-2 .formStepContainer {
  position: relative;
}

.tab-2 .formStepContainer .btn-success {
  width: 100%;
  margin-bottom: 10px;
}

.tab-2 #yearlyRevenueDisplay {
  position: absolute;
  right: 0;
  bottom: 8px;
  text-align: right;
  padding-right: 15px;
  max-width: 50%;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .formStepContainer {
    padding-top: 12px;
  }
  
  .back-revenue-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .simple-form-container .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
  }
}

/* Navbar with centered logo */
.navbar-top {
  width: 100%;
  height: 80px;
  background-color: #003945;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hide mobile header on desktop */
.mobile-header {
  display: none;
}

@media screen and (max-width: 768px) {
  .navbar-top {
    height: 50px;
  }
}

/* Remove third bubble */
.contact-info-box::before {
  content: none;
}

/* Remove fourth bubble */
.contact-info-box::after {
  content: none;
}

/* BBB logo styles */
.text-center img[src="/images/bbb.svg"] {
    height: 45px;
    opacity: 0.85;
    max-height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .text-center img[src="/images/bbb.svg"] {
        height: 35px !important;
        max-height: 35px !important;
        width: auto !important;
    }
}

/* Trustpilot widget positioning fix */
.trustpilot-widget {
  position: relative;
  z-index: 1;
}

/* Ensure form has proper stacking context */
.tab {
  position: relative;
  z-index: 10;
}

/* Ensure tab-5 and form containers don't clip dropdowns */
.tab-5, .tab-6 {
  overflow: visible !important;
}

.simple-form-container {
  overflow: visible !important;
}

.simple-form-container .row {
  overflow: visible !important;
}

.simple-form-container .col-md-6 {
  overflow: visible !important;
}

/* Mobile-only Why Choose Lendzi section */
.why-choose-mobile {
  display: none;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-header {
  font-size: 1.8rem;
  font-weight: 700;
  color: #003945;
  margin-bottom: 30px;
  text-align: center;
}

.why-choose-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-item:active {
  transform: scale(0.98);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.why-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #20C58A 0%, #17a872 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}

.why-icon-wrapper i {
  font-size: 24px;
  color: white;
}

.why-text {
  flex: 1;
}

.why-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #003945;
  margin: 0 0 6px 0;
}

.why-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Show only on mobile */
@media (max-width: 1024px) {
  .why-choose-mobile {
    display: block;
  }
}