/* Modal Container */
.custom-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.custom-modal-content {
  position: relative;
  margin: 10% auto;
  background: #fff;
  width: 30vmax;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 3rem;
  cursor: pointer;
  color: white;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 5px;
  /* background-color: var(--bankColor); */
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .custom-modal .form-group {
    margin-bottom: 5px;
  }
  .custom-modal .form-group label {
    margin-bottom: 0;
  }
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.submit-btn {
  background-color: #4389bA;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #0056b3;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .custom-modal-content {
    width: 42vmax;
  }
}

.whatsapp-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  border-radius: 50%;
  padding: 10px;
  background: white;
  box-shadow: 0px 6px 15px 0px rgba(64, 79, 104, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
}

.whatsapp-button:hover{
  transform: scale(1.1);
}