  .enquiry-form {
    /* background: #393BA7; */
    border-radius: 8px;
    padding: 30px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    border: 2px solid #ccc;
}

.enquiry-form h2 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 30px;
}

.enquiry-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.enquiry-form .error-message br+br {
  margin-top: 25px;
}

.enquiry-form .sent-message {
  display: none;
  border-radius: 30px;
  color: #fff;
  background: #1b134e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.enquiry-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.enquiry-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0077B5;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

 .enquiry-form button[type=submit] {
  background: #1b134e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.enquiry-form button[type=submit]:hover {
  /* background: #4da6ff; */
  background: #3a2f85;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*===========Popup-contact Form==========
========================================*/

.modal{
  z-index:2000 !important;
}
.modal-backdrop{
  z-index: 1999 ! important;
}

/*===========Social Link icons==========
========================================*/

/* Facebook */
.social-links a.facebook {
  color: #1877F2;         
}
.social-links a.facebook:hover {
  color: #0d5bd8;
  transform: scale(1.2);
}

/* Instagram */
.social-links a.instagram {
  color: #E1306C;          
}
.social-links a.instagram:hover {
  color: #C13584;
  transform: scale(1.2);
}

/* WhatsApp */
.social-links a.whatsapp {
  color: #25D366;        
}
.social-links a.whatsapp:hover {
  color: #1ebe57;
  transform: scale(1.2);
}