
/* ///---------------------------------quete-section---------------------------- */
.heading-1 h1 {
  font-family: monospace;
  font-weight: 600;
  font-size: 1.8rem;
  color: white;
  letter-spacing: 2px;
  text-align: center;
  margin-block: 1.5rem 1rem;
  text-shadow: 1px 0.5px 1px #ff0404;
}
@media screen and (max-width: 768px) {

  .heading-1 h1 {
    font-size: 1.5rem;
      margin-block:0.5rem;

  }
}
@media screen and (max-width: 570px) {
  .heading-1 h1 {
        font-weight: 500;
        letter-spacing: 1px;
        font-size: 1.2rem;
    }
  }
.quote-section {
  padding: 1rem 1rem 1rem;
}

.quote-form {
  border-radius: 10px;
  width: 100%;
  box-shadow: 0 3px 12px -8px rgba(234, 26, 100, 0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(.47, .14, .41, .81), transform 0.8s cubic-bezier(.47, .14, .41, .81);
}

.quote-form.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 2px;
}

.form-row input {
  flex: 1 1 0;
  padding: 14px 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  width: 100%;
  outline: none;
  color: black;
  transition: box-shadow .2s;
}

.form-row select {
  flex: 1 1 0;
  padding: 14px 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #ffffff;
  color: black;
  width: 100%;
  outline: none;
  transition: box-shadow .2s;
}

textarea {
  resize: none;
  padding: 13px 12px;
  border-radius: 10px;
  min-height: 50px;
  border: none;
  background: #ffffff;
  color: black;
  font-size: 1rem;
  outline: none;
}

.success-msg {
  padding-block: 1rem;
  font-size: 1.15rem;
  color: #2a7a2a;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 12px 16px;
  border-radius: 6px;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Error message style */
.error-msg {
  padding-block: 1rem;
  font-size: 1.15rem;
  color: #842029;
  background-color: #f8d7da;
  border: 1px solid #f5c2c7;
  padding: 12px 16px;
  border-radius: 6px;
  max-width: 400px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.read {
  text-align: center;
  margin-block: 2rem 1rem;
}

.read-more {
  background-color: #ff6b10;
  color: white;
  border: none;
  padding: 0.6rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 28px;
  cursor: pointer;
  box-shadow: 0 2px 3px rgba(255, 107, 16, 0.45);
  transition: background-color 0.3s ease;
}

.read-more:hover {
  background-color: #e64900;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .quote-form {
    padding: 24px 12px;
    width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 530px) {
  .quote-section {
    padding: 0.5rem 0rem 0.5rem;
  }

  .read-more {
    padding: 0.5rem 1.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    box-shadow: 0 5px 4px rgba(255, 107, 16, 0.45);
  }

  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  .quote-form {
    padding: 2px 6px;
  }

  .get-quote-btn {
    width: 100%;
    padding: 11px 0;
    font-size: 1.07rem;
  }

  .read {
    margin-block: 1rem;
  }
}