/* ── Typography & shared ── */
.listtitle {
  color: var(--ThemeColor-);
  font-weight: 700;
  font-size: 2.2vh;
}

.aboutmassege {
  font-size: 1.6vh;
  color: #fff;
  font-weight: 400;
  margin-top: 1.3vh;
  margin-bottom: 1vh;
  width: 500px;
}

.ct a {
  color: var(--ThemeColor-);
}

/* ── Page layout ── */
.career {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 5.4vh 2.2vh;
  min-height: 100vh;
  height: auto;
  text-align: justify;
}

/* ── Banners ── */
.career .ban {
  width: 90%;
  height: 10.5vw;
  margin-top: 90px;
  border-radius: 2vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/img/Banners/CareerBanner.webp) center bottom / cover;
}

.career .banlife {
  width: 90%;
  height: 35vw;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(/img/life-at-jazaa-img/jjj.png) center bottom / cover;
}

/* ── Form wrapper ── */
.career form {
  margin-top: 3.3vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 130.4vh;
  width: 100%;
  position: relative;
  border-radius: 4.3vh;
  z-index: 1000;
}

.career form h2 {
  margin: 3.3vh 0;
  text-align: center;
  color: #f1f1f1;
  font-size: 5.4vh;
  font-weight: bolder;
  text-shadow: 0 0.3vh 0 rgb(156, 156, 156);
}

.career form h2 span {
  color: var(--ThemeColor-);
  text-shadow: 0 0.3vh 0 rgb(136, 111, 0);
}

/* ── Contact form panel ── */
.career .contactform {
  position: relative;
  padding: 3.3vh 6.5vh 3.3vh 3.3vh;
  max-width: 54.3vh;
  width: 80%;
  height: 65.2vh;
  font-weight: 800;
  font-size: 1.3vh;
  border-radius: 3.8vh;
}

/* ── Labels & inputs ── */
.career label {
  display: block;
  margin-bottom: 2vh;
  color: var(--ThemeColor-);
  position: relative;
}

.career label span {
  display: block;
  margin-bottom: 0.7vh;
  margin-top: 1.1vh;
  margin-left: 1.1vh;
  font-weight: 500;
  color: var(--ThemeColor-);
}

.career input[type="text"],
.career input[type="email"],
.career input[type="tel"],
.career textarea {
  width: 100%;
  padding: 1.3vh 1.5vh;
  font-size: 1.7vh;
  border: none;
  border-radius: 1.1vh;
  background-color: #262626;
  box-shadow: 0 0.3vh 0 0.1vh rgba(0, 0, 0, 0.418);
  color: #fff;
  transition: box-shadow 0.1s ease-in-out;
}

.career input:focus,
.career textarea:focus {
  box-shadow: 0 0.3vh 0 0.1vh var(--ThemeColor-);
  outline: none;
}

.career textarea {
  resize: none;
  min-height: 10.9vh;
}

.test {
  width: 100%;
}

/* ── Submit button ── */
.career button[type="submit"] {
  text-transform: uppercase;
  font-size: 1.8vh;
  color: var(--ThemeColor-);
  font-weight: 600;
  margin-top: 1vh;
  padding: 1.2vh 2vh;
  border-radius: 1.4vh;
  border: 0.4vh solid var(--ThemeColor-);
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: padding 0.3s ease;
}

.career button[type="submit"]::after {
  content: "";
  position: absolute;
  background: url(/img/default/icon/right-arrow.webp) center / cover no-repeat;
  height: 1.8vh;
  width: 1.8vh;
  top: 50%;
  right: 0.5vh;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.career button[type="submit"]:hover {
  padding: 1.2vh 4vh 1.2vh 1vh;
}

.career button[type="submit"]:hover::after {
  opacity: 1;
}

/* ── File upload ── */
.career input[type="file"] {
  display: none;
}

.custom-file-upload {
  display: inline-block;
  padding: 10px 15px;
  color: rgb(44, 44, 44);
  background-color: #f8f8f8;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 3px 0 0 rgb(197, 197, 197);
}

.custom-file-upload:hover {
  box-shadow: none;
  margin-top: 3px;
}

.file-name {
  display: inline-block;
  font-style: italic;
  color: #ccc;
}

/* ── Job listings ── */
.list {
  margin-top: 15vh;
  width: clamp(100px, 100%, 1100px);
  columns: 300px;
  padding: 0;
  gap: 10px;
}

.leader {
  width: 100%;
  margin-bottom: 9px;
  border-radius: 1vh;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .career form {
    height: auto;
    flex-direction: column;
  }

  .career .info {
    width: 90%;
    height: 71.7vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0 3.3vh;
    border-radius: 3.8vh;
  }

  .career .contactform {
    width: 80%;
    height: 65.2vh;
  }

  .aboutmassege {
    margin-top: 1.5vh;
    font-size: 1.4vh;
    width: 90%;
    text-align: justify;
    line-height: 1.8vh;
  }
}

.banlife {
}
