body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  /* text-align: justify; */
}
.defult-home{
  text-align: justify;
}
.contact-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #150671;
  color: white;
  padding: 5px 5px;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  z-index: 1000;
}

.contact-form {
  position: fixed;
  top: 50%;
  right: -250px;
  transform: translateY(-50%);
  width: 216px;
  height: 300px;
  background-color: #f9f9f9;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 10px;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.contact-form.open {
  right: 0;
}

.contact-form .form-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.contact-form .close-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.contact-form input, .contact-form select {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form .submit-btn {
  width: 100%;
  padding: 8px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form .submit-btn:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .contact-form.open {
    width: 90%;
    right: 4%;
  }
}