/* ================ HERO SECTION ================== */
.hero-subheading {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

#hero-contact .hero-slider {
  height: 600px;
}

#hero-contact .contact-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
}

#hero-contact .contact-slide.slide-1 {
  background: url("/wp-content/uploads/2024/10/slide3-home1.jpg") no-repeat top / cover;
}

#hero-contact .main-heading {
  text-align: left;
  margin-bottom: 20px;
  width: 600px;
  max-width: 100%;`		
}

#hero-contact .letters-show {
  display: inline-block;
  transform: translateY(-160%); /* Adjusted for smoother animation */
  opacity: 0;
  animation: moveDown 0.3s ease forwards; /* Shortened to 1s for smoother effect */
}

@keyframes moveDown {
  from {
    transform: translateY(-160%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

#hero-contact .description {
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 18px;
  width: 520px;
  max-width: 100%;	
  transform: translateY(-160%);
  opacity: 0;
  animation: moveDown 0.3s ease 2.5s forwards;	
}

#hero-contact .btn {
  transform: translateY(-160%);
  opacity: 0;
  animation: moveDown 0.3s ease 2.8s forwards;	
}

@media only screen and (max-width: 767px) {
  #hero-contact .hero-slider {
    height: 500px;
  }
  #hero-contact .hero-subheading {
    display: none;
  }
  #hero-contact .description {
    font-size: 14px;
  }
  #hero-contact .btn {
    padding: 12px 18px;
    font-size: 12px;
  }
}

/* ================ CONTACT DETAILS STYLES ================== */
#contact-details .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

#contact-details .left-side {
  padding-top: 50px;
}

#contact-details .section-subheading {
  text-align: left;
  margin-bottom: 10px;
}

#contact-details .section-heading {
  text-align: left;
  margin-bottom: 6px;
}

#contact-details .description {
  margin-bottom: 40px;
  width: 500px;
}

#contact-details .contact-item {
  display: flex;
  padding: 27px 5%;
  transition: 0.3s linear;
  width: 500px;
}

#contact-details .contact-icon {
  font-size: 30px;
  margin-top: 2px;
  line-height: 1;
  color: #43baff;
}

#contact-details .contact-item .wrapper {
  padding-left: 20px;
  font-weight: 500;
}

#contact-details .contact-item:hover {
  box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.1);
}

#contact-details .contact-header {
  font-size: 16px;
  margin-bottom: 5px;
}

#contact-details .contact-mail {
  color: grey;
}

.wpcf7 .main-form {
  padding: 60px 48px;
  background-image: linear-gradient(90deg, #00deff 0%, #7141b1 100%);
  color: #fff;
}

.wpcf7 .main-form h2 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 36px;
}

.wpcf7 .main-form .font14 {
  margin-bottom: 30px;
  font-size: 14px;
}

.wpcf7 .main-form > p:not(:last-child) {
  color: #fff;
  margin-bottom: 20px;
}

.wpcf7 .main-form input,
.wpcf7 .main-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  padding: 10px 20px;
  box-sizing: border-box;
  outline: none;
}

.wpcf7 .main-form input::placeholder,
.wpcf7 .main-form textarea::placeholder {
  color: #ffffff;
}

.wpcf7 .main-form input[type="submit"],
.contact-form-section .form-submit  input[type="submit"]{
  background: #fff;
  color: #1b1d21;
  transition: all 0.3s linear;
  font-size: 14px;
  padding: 14px 30px;
  line-height: 1.42857143;
  display: inline-block;
  margin-bottom: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  outline: none;
  width: auto;	
}

.wpcf7 .main-form input[type="submit"]:hover,
.contact-form-section .form-submit input[type="submit"]:hover {
  background: #7141b1;
  color: #ffffff;
}

@media only screen and (max-width: 1023px) {
  #contact-details .content {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  #contact-details .description,
  #contact-details .contact-item {
    width: 100%;
  }
  .wpcf7 .main-form {
    padding: 40px 5%;
  }
}
