.scrolling {

  animation: fadeInDown 0.9s 1;

}



@keyframes fadeInDown {

  0% {

    opacity: 0;

    transform: translate3d(0, -100%, 0);

  }



  100% {

    opacity: 1;

    transform: translateZ(0);

  }

}



.swiper-wrapper {

  transition-timing-function: linear;

}



.text-stroke-white-grey {

  -webkit-text-stroke-width: 0.5px;

  -webkit-text-stroke-color: rgb(255, 255, 255, 0.12);

}

.text-stroke-dark-grey {

  -webkit-text-stroke-width: 0.5px;

  -webkit-text-stroke-color: rgba(10, 10, 10, 0.6);

}



.radial-gradient-dark {

  background: rgb(10, 10, 10);

  background: radial-gradient(

    circle,

    rgba(10, 10, 10, 0.34) 0%,

    rgba(10, 10, 10, 1) 100%

  );

}



.horizontal-slide-from-right-to-left {

  animation: horizontal-slide-from-right-to-left linear 10s infinite;

}



@keyframes horizontal-slide-from-right-to-left {

  from {

    transform: translateX(0);

  }



  to {

    transform: translateX(-50%);

  }

}

/* Neural Agent Swiper Styles */
.neural-agent-swiper {
  position: relative;
  overflow: visible;
  min-height: auto;
}

.neural-agent-swiper .swiper-slide {
  overflow: visible;
  height: auto !important;
  min-height: auto !important;
}

.neural-agent-swiper .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
}



/* Ensure the Visit Website link is visible */
.neural-agent-swiper .btn {
  position: relative !important;
  z-index: 1 !important;
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
}

/* Ensure content container can expand */
.neural-agent-swiper .max-w-3xl {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  justify-content: flex-start !important;
}

.neural-agent-swiper .swiper-slide .flex {
  height: auto !important;
  min-height: auto !important;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-grid-md {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-grid-md {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-form-input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.contact-form-input:focus {
  border-color: #B1000E;
  outline: none;
}

.contact-form-textarea {
  min-height: 10rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: white;
  transition: all 0.3s ease;
}

.contact-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.contact-form-textarea:focus {
  border-color: #B1000E;
  outline: none;
}

.contact-form-full-width {
  width: 100%;
}

.contact-form-flex-center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-form-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-form-link:hover {
  color: #B1000E;
}

.contact-form-link-text {
  font-size: 0.875rem;
  color: white;
}

.contact-form-submit-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.contact-form-submit-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #B1000E;
  padding-bottom: 0.25rem;
  color: #B1000E;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-submit-btn:hover {
  color: #B1000E;
}

.contact-form-arrow-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-form-arrow {
  height: 0.75rem;
  width: 1.5rem;
  transition: transform 0.3s ease;
}

.contact-form-submit-btn:hover .contact-form-arrow:first-child {
  transform: translateX(100%);
}

.contact-form-arrow-absolute {
  position: absolute;
  inset: 0;
  height: 0.75rem;
  width: 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.contact-form-submit-btn:hover .contact-form-arrow-absolute {
  transform: translateX(0);
}

.contact-form-mt-4 {
  margin-top: 1rem;
}

.contact-form-mt-8 {
  margin-top: 2rem;
}

.contact-form-mt-14 {
  margin-top: 3.5rem;
}

/* Animation transition utility */
.animate-transition {
  transition: all 0.3s ease;
}

/* File upload button styling to match form fields */
.upload-button {
  color: white !important;
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 1rem 1.25rem !important;
  font-size: 0.875rem !important;
  transition: all 0.3s ease !important;
}

.upload-button:hover {
  border-color: #B1000E !important;
}

/* Schedule meeting link text color */
.contact-form-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.54) !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-form-link:hover {
  color: #B1000E !important;
}

.contact-form-link:hover .contact-form-link-text {
  color: #B1000E !important;
}

.contact-form-link-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.54) !important;
  transition: color 0.3s ease;
}

/* Make the SVG icon bigger in schedule meeting link */
.contact-form-link svg {
  width: 32px !important;
  height: 32px !important;
}