::-webkit-scrollbar {
  display: none;
}

img {
  max-width: 100%;
}

.strip-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.strip-slider picture {
  flex: 0 0 100%;
  display: block;
}

.bg-image {
  aspect-ratio: 16/9;
  background-color: #000;
}

#main-header {
  min-height: 70px;
}

/* .form_box {
  min-height: 450px;
} */

.modal-content {
  max-width: 600px;
}

/* .home_banner::before{
    content: '';
    background: linear-gradient(rgba(0,0,0,0.3));
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
} */

.home_banner .qr_img {
  z-index: 999;
  position: absolute;
  top: 12%;
  right: 2%;
  max-width: 350px;
  z-index: 9999;
}

/* Form wrapper */
.banner_enquiryForm {
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  max-width: 90%;
  width: 100%;
  margin: auto;
  padding-bottom: 0;
}

/* Heading */
.banner_enquiryForm h3 {
  /* font-family: "Georgia", serif; */ /* approximating font-merchant with a serif */
  font-size: 2rem;
  text-transform: capitalize;
}

/* Row layouts */
.row {
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
}

/* Half-width fields inside rows */
.field {
  width: 100%;
}

/* Shared input / textarea style */
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
  background: #fff;
}
.form-input:focus {
  border-color: #6b7280;
}
.form-input::placeholder {
  color: #9ca3af;
}

textarea.form-input {
  resize: none;
}

/* Submit button */
.btn-submit {
  display: block;
  width: 100%;
  padding: 13px 0;
  background: #f59e0b; /* yellow */
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn-submit:hover {
  background-color: #1f2937; /* gray-800 */
}

.invalid-data.existingCheck {
  font-family: unset !important;
}

footer {
  margin-top: 4rem;
}

/* ── Desktop (≥ 1024px) ── */
@media (max-width: 1024px) {
  .banner_enquiryForm {
    gap: 12px;
  }

  .row {
    flex-direction: row;
    align-items: center;
  }

  .field {
    width: 50%;
    margin-bottom: 0;
  }

  .field-textarea {
    display: flex;
    align-items: center;
    width: 50%;
  }

  .field-submit {
    display: flex;
    align-items: flex-start;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .home_banner .qr_img {
    max-width: 110px;
    bottom: 0;
    top: unset;
    right: unset;
    left: 3%;
    bottom: 3%;
  }

  .home_banner {
    min-height: 442px;
  }

  .home_banner .inner_content {
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .blue,
  header.active {
    display: none;
  }

  .banner_enquiryForm {
    max-width: 100%;
    padding: 8px;
  }

  .row {
    flex-direction: column;
  }

  .field {
    width: 100%;
  }

  footer {
    margin-top: 1rem;
  }
}
