.form-container {
  position: relative; 
  overflow: hidden;
  background: #fff;
  padding: 0px 10px;
  border-radius: 16px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  /* width: 90%; */
  /* max-width: 600px; */
  transition: all 0.5s ease;
}
.step {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
  transform: scale(0.9); /* Zoomed out */
  transition: opacity 0.4s ease, transform 0.4s ease;
  width: 100%;
}

.step.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1); /* Zoomed in */
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
  /* text-align: center; */
}

label {
  display: block;
  background: #f7f7f7;
  margin: 8px 0;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

label:hover {
  background: #e6f0ff;
}

input[type="radio"] {
  margin-right: 12px;
}

button {
  margin-top: 20px;
  padding: 10px 24px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

input[type="text"], input[type="email"], input[type="date"] {
  width: 100%;
  padding: 12px;
  margin-top: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  transition: border 0.3s ease;
}

input:focus {
  outline: none;
  border-color: #007bff;
}

.back-btn {
  background-color: #6c757d;
  margin-right: 10px;
}

.back-btn:hover {
  background-color: #495057;
}

.inputs {
  padding: 10px 6px;
  margin: 10px 0px;
  border-radius: 6px;
  border: 1px solid #ccc;
  }
  


  .fixed-quote-button {
    position: fixed;
    right: -55px; /* Adjust based on width */
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    z-index: 1000;
}

.fixed-quote-button a {
    display: inline-block;
    padding: 3px 7px 29px 7px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: 2px solid #fff;
    border-radius: 0 8px 8px 0; /* Right side rounded */
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
    letter-spacing: 0.5px;
}

.fixed-quote-button a:hover {
    background: linear-gradient(135deg, #0056b3, #003d80);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 3px 3px 16px rgba(0, 0, 0, 0.3);
}


.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 5px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.1);
}

.social-sidebar .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: white;
  font-size: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.social-icon.fb { background-color: #3b5998; }
.social-icon.insta { background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon.linkedin { background-color: #0077B5; }
.social-icon.youtube { background-color: #FF0000; }
.social-icon.google { background-color: #4285F4; }

.social-icon:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


@media (max-width: 510px) {
  .social-sidebar .social-icon {
      width: 30px;
      height: 30px;
      font-size: 17px;
  }
}