
.contact-container {
position: relative;
padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.hide-container {
  display: none !important;
}

.fade-container {
  opacity: 0;
  transition: 0.5s opacity ease;
}

.contact-section {
  min-height: 100vh;
  width: 85%;
  margin: 0 auto;
  box-sizing: border-box;

    position: relative;

}

.overlay-text2 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 30vh;
  z-index: -1;
  pointer-events: none;
  opacity: 0.20;

}

.projects-main-bg-img {
  width: 100%;
  object-fit: cover;
  object-position: bottom;
  height: 100%;
}

.contact-title,  .thank-you-title{
  font-size: 2.2em;
  color: white;
  font-family: "ivypresto-headline", serif;
  font-weight: 500;
  font-style: italic;
  text-align: center;
  line-height: 1.2em;
}

.contact-title span {

}

#contact-form {
  margin-top: 100px;
  padding-bottom: 200px;
}

#contact-kissmyass
{
  display: none;
}


#form-progress-bar {
  display: flex;
  justify-content: space-between;
  margin: 60px 0px;
  position: relative;
  width: 100%;
}

#form-progress-bar:after {
  content: '';
  width: 97%;
  left: 1%;
  height: 1px;
  background: #e0e0e0;
  position: absolute;
  top: 20px;
  z-index: 0;
}



.step-indicator {

  text-align: center;
  position: relative;
}

.step-indicator span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #181818;
  color: white;
  font-weight: bold;
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.7em;
}

.step-indicator.active span {
  background: white;
  border: 1px solid #121212;
  color: black;
}

.step-indicator.completed span {
  background: #060606;
  border: 1px solid #121212;
  color: white;
}

/*
.step-indicator::after {
  content: '';
  width: 100%;
  height: 4px;
  background: #e0e0e0;
  position: absolute;
  top: 13px;
  left: calc(50% + 15px);
  z-index: 0;
}
*/

.step-indicator.completed::after {
  background: #0056b3;
}

.step-indicator:last-child::after {
  display: none;
}


.input-error {
  border: 2px solid red !important;
  outline: none;
}

.input-error:focus {

}


/* General form styling */
#multi-step-form {
  margin: 0 auto;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.form-group {
  margin-bottom: 50px;
}

/* Label styling */
.form-group label {
  display: block;
  font-size: 1.2em;

  line-height: 1.4em;
  margin-bottom: 30px;
  color: white;

  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

/* Input and textarea styling */
.form-group input,
.form-group textarea{
  width: 100%;
  padding: 10px;
  font-size: 1em;
  line-height: 1.4em;
  border: none;
  outline: none;
  background: #f9f9f9; /* Light gray background */
  border-radius: 5px;
  box-sizing: border-box;

  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/* Focus effect for inputs */
.form-group input:focus,
.form-group textarea:focus {
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

/* Dropdown message styling (if needed) */
.form-group select {
  width: 100%;
  padding: 20px;
  cursor: pointer;
  font-size: 1em;
  border: none;
  outline: none;
  background: #f9f9f9;
  border-radius: 5px;
  box-sizing: border-box;
  appearance: none; /* Remove default dropdown styling */
  color: #000;
}

.form-group option  {
  color: #000;
}

.checkbox-group input {

}

.checkbox-group label {
  display: flex; /* Flexbox to separate text and checkbox */
  justify-content: space-between; /* Push content to edges */
  align-items: center; /* Align items vertically */
  width: 100%; /* Full width */
  background-color: white; /* White background */
  padding: 20px 20px; /* Padding for spacing */
  border: 1px solid #ddd; /* Light border */
  border-radius: 4px; /* Rounded corners */
  margin-bottom: 40px; /* Space between options */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  cursor: pointer; /* Pointer cursor */
  transition: background-color 0.2s ease;
  box-sizing: border-box;
  color: black;
  font-size: 1em;
}

/* Style for the checkbox text */
.checkbox-text {
  width: 100%;
  margin-bottom: 0px;
}

/* Style the checkbox input */
.checkbox-group input[type="checkbox"] {
  margin: 0; /* Remove any margin */
  transform: scale(1.2); /* Increase checkbox size */
  width: auto;

}


/* Submit button styling */
#multi-step-form button {
  width: 100%;
  padding: 12px;
  font-size: 1em;

  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;

  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

#multi-step-form button:hover {

}

.prev-button {
  background-color: #2525251c;
  border: 1px solid grey !important;
}

.next-button, #contact-submit {
  background-color: #181818;
  border: 1px solid #232323 !important;
}




/* Button container styling */
#multi-step-form .button-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* Button styling */
#multi-step-form .button-container button {
  padding: 12px;
  font-size: 1em;

  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}



/* First step: Next button 100% width */
#multi-step-form .step:first-child .button-container .next-button {
  width: 100%;
}

/* Side-by-side buttons for subsequent steps */
#multi-step-form .button-container .prev-button,
#multi-step-form .button-container .next-button {
  width: 48%;
}

#multi-step-form .button-container .submit-button {
  width: 48%;
}



.thank-you-desc {
  color: #b1b1b1;
  text-align: center;
  font-size: 0.9em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;

  width: 80%;
  line-height: 1.4em;
  margin: 30px auto 0px auto;
}

.thank-you-socials {
  display: flex;
  gap: 70px;
  justify-content: center;
  align-items: center;

  margin-top: 80px;
}


#thankyou-lotti {
  width: 80px;
  margin: 0 auto 60px auto;
}





.thank-you-title, .thank-you-desc , .thank-you-socials{
  opacity: 0;
  transition: 1s opacity ease;
}

.active-state {
  opacity: 1;
  transition: 1s opacity ease;
}











/* end */
