body {
  /* font-family: 'Instrument Sans', sans-serif; */
  font-family: 'Lato', sans-serif;
  /* background-color: #fafafa; */
  /* color: #333; */
  color: #000;
  cursor: url('../assets/images/cur_logo.png') 0 0, auto;
}

/* Highlight color */
.highlight {
  color: #0A1737;
}

/* Form Card */
.career-form {
  background: #c8a85b;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.career-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Form Inputs */
.career-form .form-control {
  border: 1px solid #0A1737;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.career-form .form-control:focus {
  /* border-color: #636B2F; */
  border-color: #1261A0;
  box-shadow: 0 0 6px rgba(99,107,47,0.2);
}

/* Button */
.btn-ags {
  /* background-color: #636B2F;
  border: 1px solid #636B2F; */
  background-color: #000;
  border: 1px solid #fff;
  color: #c8a85b;
  padding: 10px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-ags:hover {
  background-color: transparent;
  /* color: #636B2F;
  border-color: #636B2F; */
  color: #c8a85b;
  border-color: #c8a85b;
}

/* Responsive */
@media (max-width: 768px) {
  .career-form {
    padding: 2rem 1.5rem;
  }
}


/* Open Positions Section */
.accordion-button {
  background: #c8a85b;
  /* color: #636B2F; */
  color: #041424;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease-in-out;
}

.accordion-button:not(.collapsed) {
  /* background: #636B2F; */
  background: #041424;
  color: #c8a85b;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-item {
  border-radius: 10px;
  overflow: hidden;
}

.accordion-body {
  background: #c8a85b;
  border-top: 1px solid #eaeaea;
  color: #041424;
}

/* Animation */
[data-aos] {
  transition: all 0.8s ease-in-out !important;
}

.highlight {
  /* color: #636B2F; */
  color: #c8a85b;
  font-weight: 600;
}

.career-form {
  border: 1px solid #eee;
}

.btn-ags {
  /* background-color: #636B2F !important;
  border-color: #636B2F !important; */
  background-color: #000 !important;
  border-color: #fff !important;
  color: #c8a85b !important;
  transition: all 0.3s ease-in-out;
}

.btn-ags:hover {
  /* background-color: #4f5626 !important;
  border-color: #4f5626 !important; */
  background-color: #c8a85b !important;
  border-color: #000 !important;
  color: #fff !important;
}

.form-control:focus {
  /* border-color: #636B2F; */
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(99, 107, 47, 0.25);
}


#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .4s ease, visibility .4s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.dots-loader span {
  width: 10px;
  height: 10px;
  margin: 0 6px;
  background: #c8a85b;
  border-radius: 50%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
}

.dots-loader span:nth-child(1) { animation-delay: -0.32s; }
.dots-loader span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}
