.slider_section .detail-box h1 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.5em !important;
}

.slider_section .detail-box h2 {
  font-weight: normal;
  margin-bottom: 0;
  font-size: 1.1em !important;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1em !important;
}

.floating-form-wrapper {
  position: fixed;
  bottom: 15%;
  right: 5%;
  z-index: 9999;
}

.floating-form {
  background: white;
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 300px;
  max-width: 90%;
  font-family: Arial, sans-serif;
  position: relative;
  animation: slideIn 0.3s ease-out;
  border: 1px solid #F89646;
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.floating-form h2 {
  margin: 0 0 15px 0;
  font-size: 20px;
  text-align: center;
}

.floating-form input,
.floating-form button {
  width: 100%;
  box-sizing: border-box;
}

.floating-form input {
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #F89646;
  border-radius: 8px;
  font-size: 14px;
}

.floating-form button {
  background-color: #F89646;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

.floating-form button:hover {
  background-color: #F89646;
}

.minimize-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #F89646;
}

.minimized-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #F89646;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
}

.thank-you {
  text-align: center;
  font-size: 16px;
  padding: 20px;
  color: green;
}
/* Simple CSS spinner */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite;
  display: inline-block;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}