.contact-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.contact-form,
.contact-info {
  flex: 1;

  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

input[type="text"],
input[type="email"],
input[type="phno"],
input[type="password"],
textarea {
  background: #181818 !important;
  border: none !important;
  color: white !important;
  border-bottom: 4px solid #222222 !important;
  width: 100%;
  font-size: 16px;
  padding: 10px 10px;
  height: auto;
  margin: 0;
  border-radius: 0 !important;
  max-height: 70px;
}

.info-block {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}
.info-block .octahedron-wrap {
  min-height: 140px;
}

.info-item {
  align-items: center;

  flex: 1;
  background: #181818;
  border-bottom: 4px solid #222222;
  width: 400px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out,
    box-shadow 0.4s ease-in-out, transform 0.2s ease-in-out;
  position: relative;
  display: flex;
}

.info-item .icon img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.info-text h4 {
  margin-bottom: 5px;
}

.info-text p {
  font-size: 14px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .asterthemes-page {
    margin-top: 0;
  }
}

.contact-form .low-box .left,
.contact-form .low-box .right,
.contact-form .low-box .front,
.contact-form .low-box .back {
  background: linear-gradient(rgb(21, 21, 25), #81d742);
  filter: drop-shadow(
    0 0 15px color-mix(in srgb, #81d742 80%, transparent)
  ) !important;
}

.wpcf7-form.init
  .wpcf7-form-control.wpcf7-submit.has-spinner.form-submit.btn-primary,
.wpcf7-form.init input[type="submit"],
input[type="submit"] {
  display: none !important;
}

.info-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background-color: var(--glow-color);
  transition: width 0.4s ease-in-out;
}
.info-item:hover::after {
  width: 100%;
}
