a {
  color: none;
}
a:hover {
  color: white;
}

.apply-btn {
  font-weight: 400;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.31px;
  color: #FFFFFF;
  gap: 7.6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  height: 50px;
  background: rgb(255, 91, 35);
  border-radius: 30px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

main {
  margin: 0px 0 0 0;
}

.apply-btn .anim-arrow {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
.apply-btn:hover .anim-arrow {
  transform: translateX(20px);
  animation: arrowMovement 1.5s ease infinite;
}

@keyframes arrowMovement {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(0);
  }
  65% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.orange-text {
  color: #FF5B23;
}

.landing-section {
  will-change: background-image;
  height: 30vh;
  background-image: url("/images/about-us/landing-banner.png");
  background-size: cover;
  background-position: center center;
  background-color: #353535;
}
.landing-section .main-heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
  letter-spacing: 0.5px;
  text-align: center;
  color: #FFFFFF;
  transition: all 0.25s;
  opacity: 0; /* Initial state */
  animation: fadeInUp 0.5s ease-out forwards;
}
.landing-section .sub-heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.12px;
  letter-spacing: 0.7px;
  text-align: center;
  color: #FFFFFF;
  transition: all 0.25s;
  opacity: 0; /* Initial state */
  animation: fadeInUp 0.5s ease-out forwards;
}

.about-section .heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 50.41px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #FF5B23;
}
.about-section .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: #151515;
}

.vision-section {
  background-color: #4A2771;
}
.vision-section .heading {
  font-family: "HDColton Comp";
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin: 0;
}
.vision-section .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #FFFFFF;
}

.help-section .heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 50.41px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #505050;
}
.help-section .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #151515;
}

.choose-section {
  background-color: #EFEBFF;
}
.choose-section .heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 50.41px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #505050;
}
.choose-section .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #151515;
}
.choose-section .wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.choose-section .stats-number {
  font-family: "HDColton Comp";
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  letter-spacing: 0.01em;
  color: #4A2771;
  margin: 0 0 15px 0;
}
.choose-section .stats-heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.01em;
  color: #4A2771;
  margin: 0;
}

.advertise-banner-section {
  background: rgb(74, 39, 113);
  overflow: hidden;
  position: relative;
}
.advertise-banner-section .wrapper {
  position: relative;
  z-index: 2;
}
.advertise-banner-section .banner-element {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
}
.advertise-banner-section .heading {
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.advertise-banner-section .content {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.advertise-banner-section .apply-btn {
  max-width: 200px;
}

.form-section {
  position: relative;
}
.form-section .form-submit-success {
  height: 387px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-section .form-submit-success .heading {
  font-size: 46px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #505050;
}
.form-section .form-submit-success .subheading {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.01em;
  text-align: center;
}
.form-section .form-submit-success .purple-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 52px;
  text-align: center;
  color: #4A2771;
}
.form-section .form-heading {
  font-weight: 700;
  font-size: 35px;
  line-height: 45px;
  text-align: left;
  letter-spacing: 0.01em;
  color: #505050;
}
.form-section .form-sub-heading {
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: #505050;
}
.form-section .form-field {
  padding: 10px 0;
}
.form-section .form-element {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  opacity: 0.2;
}
.form-section .form-input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}
.form-section .form-input .floating-label {
  position: absolute;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: rgba(53, 53, 53, 0.5137254902);
  left: 10px;
  transition: all 0.5s ease;
  pointer-events: none;
}
.form-section .form-input .contact-floating {
  left: 60px;
}
.form-section .form-input input {
  outline: none;
  border: none;
  width: 100%;
  border-bottom: 1px solid rgba(53, 53, 53, 0.5137254902);
  padding: 5px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  background: transparent;
  color: #130404;
}
.form-section .form-input input:focus {
  color: #353535;
  border-bottom: 1px solid #353535;
}
.form-section .form-input input:focus ~ .floating-label, .form-section .form-input input:not(:focus):valid ~ .floating-label {
  transform: translateY(-25px);
  font-size: 12px;
}
.form-section .form-input textarea {
  outline: none;
  border: none;
  width: 100%;
  padding: 11px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #353535;
  border-bottom: 1px solid rgba(53, 53, 53, 0.5137254902);
  background: transparent;
}
.form-section .form-input textarea:focus {
  border-bottom: 1px solid #353535;
}
.form-section .form-input textarea:focus ~ .floating-label, .form-section .form-input textarea:not(:focus):valid ~ .floating-label {
  transform: translateY(-25px);
  font-size: 12px;
}
.form-section .form-input .textarea-floating {
  top: 40px;
}
.form-section .form-input .mobile-input {
  padding-left: 60px;
  position: static;
  width: 100%;
}
.form-section .form-input .iti--allow-dropdown {
  width: 100%;
}
.form-section .form-input .submit-btn {
  border-radius: 100px;
  border: 1px solid #FF5B23;
  background-color: #FFFFFF;
  max-width: 160px;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.31px;
  color: #505050;
  transition: all 0.25s;
}
.form-section .form-input .submit-btn svg path {
  fill: #505050;
}
.form-section .form-input .submit-btn:hover {
  background-color: #FF5B23;
  color: #FFFFFF;
}
.form-section .form-input .submit-btn:hover svg path {
  fill: #FFFFFF;
}
.form-section .submit-btn-box {
  align-items: flex-start;
}
.form-section .invalid-feedback {
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.form-section .upload-pdf {
  margin: 0;
  padding: 20px;
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.829);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.form-section .upload-pdf svg path {
  fill: #FFFFFF;
}
.form-section .upload-title {
  margin: 0;
  padding: 0;
  color: white;
}
.form-section .upload-pdf-file {
  background: rgba(0, 174, 238, 0.5725490196);
}
.form-section .upload-pdf-file svg path {
  fill: #FFFFFF;
}
.form-section .upload-pdf-file .upload-title {
  color: #FFFFFF;
}

@media screen and (min-width: 576px) {
  .landing-section {
    height: 30vh;
    background-image: url("/images/about-us/landing-banner-lg.png");
    background-position: 48% 50%;
  }
}
@media screen and (min-width: 768px) {
  .transparent-btn {
    max-width: 210px;
  }
}
@media screen and (min-width: 992px) {
  .landing-section {
    height: 35vh;
  }
  .landing-section .main-heading {
    font-size: 45px;
    font-weight: 700;
    line-height: 60px;
  }
  .landing-section .sub-heading {
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
  }
  .vision-section .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
  .help-section .content-box {
    width: 40%;
  }
  .choose-section .stats-number {
    margin: 15px 0;
  }
  .choose-section .wrapper {
    display: flex;
    gap: 250px;
  }
  .form-section .form-element {
    opacity: 0.5;
  }
  .form-section .input-container {
    display: flex;
    gap: 30px;
  }
  .form-section .form-input {
    padding-top: 0;
  }
  .form-section .form-input .textarea-floating {
    top: 10px;
  }
  .form-section .form-input.submit-btn-box {
    align-items: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  .vision-section .wrapper {
    gap: 100px;
  }
  .help-section .content-box {
    width: 30%;
    margin-right: 13%;
  }
  .form-section {
    background-image: url("/images/about-us/path.png");
    background-repeat: no-repeat;
    background-position: -1% 50%;
    background-size: contain;
  }
  .form-section form {
    display: flex;
    gap: 4%;
  }
  .form-section .form-heading-box {
    flex: 1;
    max-width: 330px;
  }
  .form-section .form-field {
    flex: 2;
  }
}
