body {
  font-family: "Mulish", sans-serif;
  color: #4a4a4a;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: #2c3e50;
}

.hero {
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("https://images.unsplash.com/photo-1545205597-3d9d02c29597?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease-in;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-slide {
  transition: transform 0.5s ease-in-out;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #a7c4bc;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.input-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px #a7c4bc;
}

.password-strength {
  height: 4px;
  transition: all 0.3s ease;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #9ca3af;
}

.password-toggle:hover {
  color: #6b7280;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1em;
}

a:visited {
  color: inherit !important;
}

.bank-details {
  background-color: #f0f7f4;
  border-radius: 8px;
  padding: 20px;
}

.bank-detail-item {
  margin-bottom: 12px;
  display: flex;
}

.bank-detail-label {
  font-weight: 600;
  color: #2c3e50;
  min-width: 150px;
}

.bank-detail-value {
  color: #4a5568;
}

input,
select {
  padding: 10px !important;
  border-radius: 5px !important;
}

.alert.alert-success {
  background-color: #a7c4bc;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 16px;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */