/* select {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
  } */

  .custom-select-wrapper {
    position: relative;
  }
  
  .custom-select-wrapper::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #333;
  }
  
  .custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
  }
  
  .enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    height: 100%;
    background: #dde0e1;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    padding: 30px;
  }
  
  .enquiry-modal.active {
    display: block;
  }
  
  .modal-content {
    position: relative;
    border: none !important;
    background: #dde0e1;
  }
  
  .close-btn {
    font-size: 28px;
    position: absolute;
    top: -5px;
    right: -5px;
    cursor: pointer;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="file"],
  textarea,
  select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  textarea {
    resize: vertical;
  }
  
  .btn-primary {
    background-color: #007bff;
    color: white;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  

  .bg-color-blue-scale-1 {
    background-color: #e0f0ff; 
  }
  .bg-color-pink-scale-1 {
    background-color: #fde0ff; 
  }
  .bg-color-green-scale-1 {
    background-color: #e0ffe2; 
  }
  .bg-color-yellow-scale-1 {
    background-color: #fff7e0; 
  }
  .bg-color-violet-scale-1 {
    background-color: #f3e0ff; 
  }
  .bg-color-dark-1 {
    background-color: rgb(242, 242, 242);
  }

  .thank-you-section {
  background: linear-gradient(to right, #0A007E, #2C3E50);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-color-primary {
  color: #0A007E !important;
}

.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.card {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.6rem;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  }
}


.fixed-img-height {
  height: 280px; 
  object-fit: cover;
  width: 100%;
}


.custom-card {
    background-color: #f0f0f0;
    min-height: 220px;
    position: relative;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .custom-label {
    position: absolute;
    bottom: 7px;
    left: 10px;
    background-color: #0ebe35;
    color: #fff;
    padding: 4px 10px;
    text-align: left;
    border-radius: 0.25rem;
    font-size: 0.9rem;
    font-weight: 500;
  }

  .card-title {
  color: #0A007E !important;
}

.process-border-bottom{
  
  margin-bottom: 0 !important;
}

.head-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}
.head-container hr{
  margin-inline: 1rem;
  border: 2px solid #007bff;
  padding-inline: 2rem;
  margin-block: 0 !important;
}

.custom-text-wrap {
  text-wrap: nowrap;
}
@media (max-width: 767.98px) {
  .custom-text-wrap {
    text-wrap: wrap;
  }

  .enquiry-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #dde0e1;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
    padding: 30px;
  }
  
}
