
/* ==================================================
   JOBS PAGE
   فقط استایل اختصاصی صفحه استخدام
================================================== */

.jobs-page {
  --jobs-dark: #061426;
  --jobs-navy: #0b2940;
  --jobs-cyan: #06b6d4;
  --jobs-blue: #2563eb;
  --jobs-purple: #8b5cf6;
  --jobs-green: #10b981;
  --jobs-text: #334e68;
  --jobs-muted: #6b7f91;
  --jobs-background: #f1f5f7;
  --jobs-white: #ffffff;
  --jobs-border: rgba(15, 42, 65, 0.1);
  --jobs-shadow: 0 28px 70px rgba(15, 42, 65, 0.11);

  margin: 0;

  color: var(--jobs-text);

  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #edf3f6 52%,
      #f8fafb 100%
    );

  overflow-x: hidden;
}

.jobs-page * {
  box-sizing: border-box;
}

/* ==================================================
   HERO
================================================== */

.jobs-page .jobs-hero {
  position: relative;

  min-height: 590px;

  padding:
    180px
    22px
    125px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(34, 211, 238, 0.25),
      transparent 28%
    ),
    radial-gradient(
      circle at 87% 78%,
      rgba(139, 92, 246, 0.22),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #061426 0%,
      #0b2940 52%,
      #101c35 100%
    );

  overflow: hidden;
  isolation: isolate;
}

.jobs-page .jobs-hero::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );

  background-size: 46px 46px;

  opacity: 0.7;
}

.jobs-page .jobs-hero::after {
  content: "";

  position: absolute;
  right: -5%;
  bottom: -78px;
  left: -5%;

  height: 145px;

  background:
    var(--jobs-background);

  border-radius:
    50% 50% 0 0 /
    100% 100% 0 0;
}

.jobs-page .jobs-hero-content {
  position: relative;
  z-index: 2;

  width: min(100%, 900px);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.jobs-page .jobs-hero-label {
  margin-bottom: 20px;
  padding: 8px 17px;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  color: #baf7ff;

  font-size: 0.78rem;
  font-weight: 700;

  background:
    linear-gradient(
      135deg,
      rgba(34, 211, 238, 0.13),
      rgba(255, 255, 255, 0.055)
    );

  border:
    1px solid
    rgba(103, 232, 249, 0.25);

  border-radius: 30px;

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);

  box-shadow:
    0 12px 30px
    rgba(0, 0, 0, 0.2);

  opacity: 0;

  transform: translateY(20px);

  animation:
    jobsLabelEnter
    0.7s ease forwards 0.1s;
}

.jobs-page .jobs-hero h1 {
  position: relative;

  margin: 0;

  color: transparent;

  font-size:
    clamp(
      2.8rem,
      6vw,
      5.4rem
    );

  font-weight: 900;
  line-height: 1.25;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #67e8f9 28%,
      #60a5fa 53%,
      #c084fc 76%,
      #ffffff 100%
    );

  background-size: 240% auto;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;

  transform:
    translateY(35px)
    scale(0.97);

  filter: blur(7px);

  animation:
    jobsTitleEnter
    0.95s
    cubic-bezier(.2, .8, .2, 1)
    forwards,
    jobsTitleGradient
    6s linear infinite 1s;
}

.jobs-page .jobs-hero h1::after {
  content: "";

  display: block;

  width: 0;
  height: 4px;

  margin: 21px auto 0;

  background:
    linear-gradient(
      90deg,
      transparent,
      #67e8f9,
      #60a5fa,
      #c084fc,
      transparent
    );

  border-radius: 30px;

  box-shadow:
    0 0 20px
    rgba(103, 232, 249, 0.45);

  animation:
    jobsTitleLine
    1s ease forwards 0.8s;
}

.jobs-page .jobs-hero p {
  max-width: 780px;

  margin: 25px auto 0;

  color:
    rgba(
      232,
      244,
      252,
      0.9
    );

  font-size:
    clamp(
      1rem,
      1.8vw,
      1.25rem
    );

  line-height: 2.05;

  text-shadow:
    0 8px 25px
    rgba(0, 0, 0, 0.32);

  opacity: 0;

  transform: translateY(27px);

  animation:
    jobsTextEnter
    0.85s ease forwards 0.35s;
}

.jobs-page .jobs-hero-button {
  margin-top: 32px;
  padding: 14px 25px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: #ffffff;

  font-size: 0.93rem;
  font-weight: 800;

  text-decoration: none;

  background:
    linear-gradient(
      135deg,
      #0891b2,
      #2563eb
    );

  border:
    1px solid
    rgba(255, 255, 255, 0.24);

  border-radius: 14px;

  box-shadow:
    0 17px 40px
    rgba(37, 99, 235, 0.28);

  opacity: 0;

  transform: translateY(25px);

  animation:
    jobsButtonEnter
    0.8s ease forwards 0.55s;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.jobs-page .jobs-hero-button:hover {
  color: #ffffff;

  transform: translateY(-5px);

  box-shadow:
    0 23px 50px
    rgba(37, 99, 235, 0.4);
}

.jobs-page .jobs-hero-button i {
  animation:
    jobsArrowMove
    1.5s ease-in-out infinite;
}

/* ==================================================
   MAIN CONTAINER
================================================== */

.jobs-page .jobs-container {
  position: relative;

  width: min(100%, 1240px);

  margin: 0 auto;

  padding:
    100px
    20px
    120px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.1fr)
    minmax(0, 0.9fr);

  align-items: stretch;

  gap: 30px;
}

.jobs-page .jobs-container::before {
  content: "";

  position: absolute;
  top: 20px;
  right: -190px;

  width: 430px;
  height: 430px;

  background:
    radial-gradient(
      circle,
      rgba(6, 182, 212, 0.1),
      transparent 67%
    );

  border-radius: 50%;

  pointer-events: none;
}

.jobs-page .jobs-container::after {
  content: "";

  position: absolute;
  bottom: 10px;
  left: -190px;

  width: 430px;
  height: 430px;

  background:
    radial-gradient(
      circle,
      rgba(139, 92, 246, 0.09),
      transparent 68%
    );

  border-radius: 50%;

  pointer-events: none;
}

/* ==================================================
   CARDS
================================================== */

.jobs-page .jobs-form-box,
.jobs-page .jobs-info-box {
  position: relative;
  z-index: 2;

  padding:
    50px
    42px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.99),
      rgba(244, 249, 251, 0.96)
    );

  border:
    1px solid
    var(--jobs-border);

  box-shadow:
    var(--jobs-shadow),
    inset 0 1px 0
    rgba(255, 255, 255, 0.9);

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.jobs-page .jobs-form-box {
  border-radius:
    16px 42px 16px 42px;
}

.jobs-page .jobs-info-box {
  border-radius:
    42px 16px 42px 16px;
}

.jobs-page .jobs-form-box::before,
.jobs-page .jobs-info-box::before {
  content: "";

  position: absolute;
  top: 0;
  right: 40px;
  left: 40px;

  height: 5px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--jobs-cyan),
      var(--jobs-blue),
      transparent
    );

  border-radius:
    0 0 20px 20px;
}

.jobs-page .jobs-form-box::after,
.jobs-page .jobs-info-box::after {
  content: "";

  position: absolute;
  top: -140px;
  left: -110px;

  width: 330px;
  height: 330px;

  background:
    radial-gradient(
      circle,
      rgba(6, 182, 212, 0.13),
      transparent 68%
    );

  border-radius: 50%;

  pointer-events: none;

  transition:
    transform 0.5s ease;
}

.jobs-page .jobs-info-box::after {
  top: auto;
  right: -110px;
  bottom: -150px;
  left: auto;

  background:
    radial-gradient(
      circle,
      rgba(139, 92, 246, 0.11),
      transparent 68%
    );
}

.jobs-page .jobs-form-box:hover,
.jobs-page .jobs-info-box:hover {
  transform: translateY(-9px);

  border-color:
    rgba(6, 182, 212, 0.38);

  box-shadow:
    0 40px 90px
    rgba(15, 42, 65, 0.16),
    0 0 34px
    rgba(6, 182, 212, 0.1);
}

.jobs-page .jobs-form-box:hover::after,
.jobs-page .jobs-info-box:hover::after {
  transform: scale(1.2);
}

/* ==================================================
   HEADINGS
================================================== */

.jobs-page .jobs-section-heading {
  position: relative;
  z-index: 2;

  margin-bottom: 34px;
}

.jobs-page .jobs-section-heading > span {
  display: inline-block;

  margin-bottom: 10px;
  padding: 6px 13px;

  color: #087d8e;

  font-size: 0.75rem;
  font-weight: 750;

  background:
    rgba(6, 182, 212, 0.09);

  border:
    1px solid
    rgba(6, 182, 212, 0.16);

  border-radius: 30px;
}

.jobs-page .jobs-section-heading h2 {
  position: relative;

  margin:
    0
    0
    14px;

  padding-bottom: 17px;

  color: #102a43;

  font-size:
    clamp(
      1.75rem,
      3vw,
      2.45rem
    );

  font-weight: 900;
  line-height: 1.6;
}

.jobs-page .jobs-section-heading h2::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;

  width: 88px;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      var(--jobs-cyan),
      var(--jobs-blue),
      transparent
    );

  border-radius: 30px;
}

.jobs-page .jobs-section-heading p {
  margin: 0;

  color: var(--jobs-muted);

  font-size: 0.93rem;
  line-height: 2;
}

/* ==================================================
   FORM
================================================== */

.jobs-page .jobs-form {
  position: relative;
  z-index: 2;

  display: grid;

  gap: 18px;
}

.jobs-page .jobs-form-row {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.jobs-page .jobs-form-group {
  display: grid;

  gap: 8px;
}

.jobs-page .jobs-form-group label,
.jobs-page .jobs-field-label {
  color: #29465f;

  font-size: 0.87rem;
  font-weight: 700;
}

.jobs-page .jobs-input-wrapper {
  position: relative;
}

.jobs-page .jobs-input-wrapper > i {
  position: absolute;
  top: 50%;
  right: 17px;
  z-index: 2;

  color: #6f8ca0;

  font-size: 0.95rem;

  transform: translateY(-50%);

  pointer-events: none;

  transition:
    color 0.25s ease;
}

.jobs-page .jobs-textarea-wrapper > i {
  top: 22px;

  transform: none;
}

.jobs-page .jobs-input-wrapper:focus-within > i {
  color: var(--jobs-cyan);
}

.jobs-page .jobs-form input,
.jobs-page .jobs-form select,
.jobs-page .jobs-form textarea {
  width: 100%;

  padding:
    15px
    46px
    15px
    16px;

  color: #19384f;

  font-family:
    "Estedad",
    sans-serif;

  font-size: 0.9rem;
  line-height: 1.8;

  background:
    rgba(247, 250, 252, 0.9);

  border:
    1px solid
    rgba(15, 42, 65, 0.12);

  border-radius: 14px;

  outline: none;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.jobs-page .jobs-form input::placeholder,
.jobs-page .jobs-form textarea::placeholder {
  color: #94a6b4;

  opacity: 1;
}

.jobs-page .jobs-form select {
  cursor: pointer;
}

.jobs-page .jobs-form textarea {
  min-height: 155px;

  resize: vertical;
}

.jobs-page .jobs-form input:focus,
.jobs-page .jobs-form select:focus,
.jobs-page .jobs-form textarea:focus {
  background: #ffffff;

  border-color:
    rgba(6, 182, 212, 0.65);

  box-shadow:
    0 0 0 4px
    rgba(6, 182, 212, 0.1),
    0 12px 30px
    rgba(15, 42, 65, 0.06);

  transform: translateY(-2px);
}

/* ==================================================
   FILE UPLOAD
================================================== */

.jobs-page .file-label {
  position: relative;

  min-height: 170px;

  padding:
    25px
    20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 7px;

  color: #49657a;

  text-align: center;

  cursor: pointer;

  background:
    linear-gradient(
      145deg,
      rgba(247, 250, 252, 0.94),
      rgba(238, 247, 250, 0.9)
    );

  border:
    2px dashed
    rgba(6, 182, 212, 0.36);

  border-radius: 17px;

  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.jobs-page .file-label:hover {
  color: #174f70;

  background:
    rgba(6, 182, 212, 0.07);

  border-color:
    var(--jobs-cyan);

  transform: translateY(-3px);

  box-shadow:
    0 14px 32px
    rgba(15, 42, 65, 0.07);
}

.jobs-page .file-label input {
  display: none;
}

.jobs-page .file-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 3px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  font-size: 1.35rem;

  background:
    linear-gradient(
      135deg,
      var(--jobs-cyan),
      var(--jobs-blue)
    );

  border-radius: 17px;

  box-shadow:
    0 13px 28px
    rgba(37, 99, 235, 0.2);
}

.jobs-page .file-label strong {
  color: #29465f;

  font-size: 0.93rem;
}

.jobs-page .file-label small {
  color: #7c91a0;

  font-size: 0.76rem;
}

.jobs-page .file-name {
  margin-top: 8px;
  padding: 5px 11px;

  color: #6c8393;

  font-size: 0.75rem;

  background:
    rgba(15, 42, 65, 0.05);

  border-radius: 20px;

  word-break: break-all;
}

.jobs-page .file-name.selected {
  color: #087d8e;

  background:
    rgba(6, 182, 212, 0.1);
}

/* ==================================================
   SUBMIT
================================================== */

.jobs-page .jobs-submit {
  min-height: 56px;

  margin-top: 3px;
  padding: 14px 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  color: #ffffff;

  font-family:
    "Estedad",
    sans-serif;

  font-size: 0.95rem;
  font-weight: 800;

  cursor: pointer;

  background:
    linear-gradient(
      135deg,
      #0891b2,
      #2563eb
    );

  border:
    1px solid
    rgba(255, 255, 255, 0.2);

  border-radius: 14px;

  box-shadow:
    0 15px 35px
    rgba(37, 99, 235, 0.23);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.jobs-page .jobs-submit:hover {
  transform: translateY(-5px);

  filter: brightness(1.05);

  box-shadow:
    0 22px 45px
    rgba(37, 99, 235, 0.34);
}

.jobs-page .jobs-submit i {
  transition:
    transform 0.3s ease;
}

.jobs-page .jobs-submit:hover i {
  transform:
    translateX(-4px)
    rotate(-8deg);
}

.jobs-page .jobs-form-note {
  margin: 0;

  display: flex;
  align-items: flex-start;

  gap: 7px;

  color: #7a8d9c;

  font-size: 0.75rem;
  line-height: 1.9;
}

.jobs-page .jobs-form-note i {
  margin-top: 5px;

  color: var(--jobs-cyan);
}

/* ==================================================
   BENEFITS
================================================== */

.jobs-page .jobs-list {
  position: relative;
  z-index: 2;

  margin: 0;
  padding: 0;

  display: grid;

  gap: 13px;

  list-style: none;
}

.jobs-page .jobs-list li {
  position: relative;

  min-height: 86px;

  padding:
    16px;

  display: flex;
  align-items: center;

  gap: 14px;

  background:
    rgba(255, 255, 255, 0.72);

  border:
    1px solid
    rgba(15, 42, 65, 0.08);

  border-radius:
    13px
    22px
    13px
    22px;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.jobs-page .jobs-list li:hover {
  transform: translateX(-6px);

  background:
    rgba(255, 255, 255, 0.98);

  border-color:
    rgba(6, 182, 212, 0.28);

  box-shadow:
    0 15px 34px
    rgba(15, 42, 65, 0.08);
}

.jobs-page .job-benefit-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: #ffffff;

  font-size: 1.05rem;

  background:
    linear-gradient(
      135deg,
      var(--jobs-green),
      var(--jobs-cyan)
    );

  border-radius: 15px;

  box-shadow:
    0 10px 22px
    rgba(16, 185, 129, 0.2);

  transition:
    transform 0.3s ease;
}

.jobs-page .jobs-list li:hover .job-benefit-icon {
  transform:
    rotate(-5deg)
    scale(1.05);
}

.jobs-page .jobs-list strong {
  display: block;

  margin-bottom: 3px;

  color: #183b56;

  font-size: 0.93rem;
  font-weight: 800;
}

.jobs-page .jobs-list p {
  margin: 0;

  color: #667e90;

  font-size: 0.8rem;
  line-height: 1.8;
}

/* ==================================================
   EMAIL CARD
================================================== */

.jobs-page .jobs-contact-card {
  position: relative;
  z-index: 2;

  margin-top: 20px;
  padding: 18px;

  display: flex;
  align-items: center;

  gap: 14px;

  background:
    linear-gradient(
      135deg,
      #0a2037,
      #101b35
    );

  border:
    1px solid
    rgba(103, 232, 249, 0.16);

  border-radius:
    18px
    10px
    18px
    10px;

  box-shadow:
    0 20px 45px
    rgba(5, 20, 38, 0.2);
}

.jobs-page .jobs-contact-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: #08172b;

  font-size: 1.2rem;

  background:
    linear-gradient(
      135deg,
      #67e8f9,
      #60a5fa,
      #c084fc
    );

  border-radius: 15px;
}

.jobs-page .jobs-contact-card span {
  display: block;

  margin-bottom: 3px;

  color: #b8cedb;

  font-size: 0.77rem;
}

.jobs-page .jobs-contact-card a {
  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    color 0.25s ease;
}

.jobs-page .jobs-contact-card a:hover {
  color: #67e8f9;
}

/* حذف فاصله اضافه فوتر */

.jobs-page .jobs-container + footer {
  margin-top: 0 !important;
}

/* ==================================================
   ANIMATIONS
================================================== */

@keyframes jobsLabelEnter {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes jobsTitleEnter {
  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);

    filter: blur(0);
  }
}

@keyframes jobsTextEnter {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes jobsButtonEnter {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes jobsTitleGradient {
  from {
    background-position:
      0 center;
  }

  to {
    background-position:
      240% center;
  }
}

@keyframes jobsTitleLine {
  to {
    width: 130px;
  }
}

@keyframes jobsArrowMove {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* ==================================================
   TABLET
================================================== */

@media (max-width: 1000px) {
  .jobs-page .jobs-container {
    grid-template-columns: 1fr;

    max-width: 760px;
  }

  .jobs-page .jobs-form-box,
  .jobs-page .jobs-info-box {
    border-radius:
      16px
      38px
      16px
      38px;
  }
}

@media (max-width: 800px) {
  .jobs-page .jobs-hero {
    min-height: 520px;

    padding:
      155px
      20px
      105px;
  }

  .jobs-page .jobs-container {
    padding:
      78px
      18px
      95px;
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 600px) {
  .jobs-page .jobs-hero {
    min-height: 470px;

    padding:
      135px
      17px
      82px;
  }

  .jobs-page .jobs-hero::after {
    bottom: -55px;

    height: 105px;
  }

  .jobs-page .jobs-hero-label {
    margin-bottom: 15px;
    padding: 6px 11px;

    font-size: 0.65rem;
  }

  .jobs-page .jobs-hero h1 {
    font-size: 2.4rem;
  }

  .jobs-page .jobs-hero h1::after {
    margin-top: 16px;
  }

  .jobs-page .jobs-hero p {
    margin-top: 17px;

    font-size: 0.88rem;
    line-height: 1.95;
  }

  .jobs-page .jobs-hero-button {
    width: 100%;
    max-width: 270px;

    margin-top: 25px;

    font-size: 0.83rem;
  }

  .jobs-page .jobs-container {
    padding:
      64px
      14px
      80px;

    gap: 20px;
  }

  .jobs-page .jobs-form-box,
  .jobs-page .jobs-info-box {
    padding:
      36px
      22px;

    border-radius:
      12px
      28px
      12px
      28px;
  }

  .jobs-page .jobs-section-heading {
    margin-bottom: 27px;
  }

  .jobs-page .jobs-section-heading h2 {
    font-size: 1.55rem;
  }

  .jobs-page .jobs-section-heading p {
    font-size: 0.84rem;
  }

  .jobs-page .jobs-form-row {
    grid-template-columns: 1fr;
  }

  .jobs-page .jobs-form input,
  .jobs-page .jobs-form select,
  .jobs-page .jobs-form textarea {
    font-size: 0.84rem;
  }

  .jobs-page .file-label {
    min-height: 155px;

    padding:
      22px
      14px;
  }

  .jobs-page .jobs-list li {
    min-height: 78px;

    padding: 14px;

    gap: 11px;
  }

  .jobs-page .job-benefit-icon {
    width: 44px;
    height: 44px;

    font-size: 0.9rem;

    border-radius: 13px;
  }

  .jobs-page .jobs-list strong {
    font-size: 0.85rem;
  }

  .jobs-page .jobs-list p {
    font-size: 0.73rem;
  }

  .jobs-page .jobs-contact-card {
    padding: 15px;

    gap: 11px;
  }

  .jobs-page .jobs-contact-icon {
    width: 46px;
    height: 46px;

    font-size: 1rem;
  }

  .jobs-page .jobs-contact-card a {
    font-size: 0.78rem;
  }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  .jobs-page .jobs-hero-label,
  .jobs-page .jobs-hero h1,
  .jobs-page .jobs-hero p,
  .jobs-page .jobs-hero-button {
    opacity: 1;

    transform: none;

    filter: none;

    animation: none;
  }

  .jobs-page .jobs-hero h1::after {
    width: 130px;

    animation: none;
  }

  .jobs-page .jobs-hero-button i {
    animation: none;
  }
}

/* ==================================================
   هدر دقیقاً مشابه صفحه اصلی
================================================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  background: rgba(10, 20, 40, 0.94);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(0, 234, 255, 0.15);

  transition: all 0.4s ease;
}

header.scrolled {
  background: rgba(5, 10, 25, 0.98);

  box-shadow:
    0 12px 45px rgba(0, 234, 255, 0.22);
}

.nav-wrapper {
  width: 100%;
  max-width: 1500px;
  height: 94px;

  margin: auto;
  padding: 0 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-box {
  display: flex;
  align-items: center;

  gap: 18px;
}

.brand-box img {
  display: block;

  width: auto;
  height: 70px;

  object-fit: contain;

  border-radius: 18px;

  box-shadow:
    0 0 28px rgba(0, 234, 255, 0.45);

  transition: 0.5s;
}

.brand-box:hover img {
  transform: scale(1.12);
}

.brand-box .title {
  color: #ffffff;

  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.4;

  white-space: nowrap;
}

.brand-box small {
  color: #88ddff;

  font-size: 0.92rem;

  opacity: 0.95;
}

/* منوی دسکتاپ */

.menu {
  margin: 0;
  padding: 0;

  display: flex;
  align-items: center;

  gap: 48px;

  list-style: none;
}

.menu-item {
  position: relative;

  padding: 14px 0;

  transition: all 0.4s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
}

.menu-item > a {
  position: relative;

  padding: 10px 0;

  color: #e0f4ff;

  font-size: 1.1rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    all 0.45s
    cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-item > a::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 50%;

  width: 0;
  height: 3.5px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #00eaff,
      transparent
    );

  border-radius: 3px;

  transform: translateX(-50%);

  box-shadow:
    0 0 20px #00eaff;

  transition: all 0.6s ease;
}

.menu-item:hover > a,
.menu-item.active > a {
  color: #00eaff;

  text-shadow:
    0 0 20px #00eaff;
}

.menu-item:hover > a::after,
.menu-item.active > a::after {
  width: 100%;
}

/* زیرمنو */

.submenu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9999;

  min-width: 270px;

  padding: 20px 0;

  background:
    rgba(12, 22, 45, 0.98);

  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);

  border:
    1px solid rgba(0, 234, 255, 0.28);

  border-radius: 22px;

  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.7);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(25px);

  transition:
    all 0.5s
    cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.submenu::before {
  content: "";

  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;

  height: 15px;
}

.menu-item:hover > .submenu,
.menu-item:focus-within > .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(12px);
}

.submenu a {
  display: block;

  padding: 16px 34px;

  color: #c8e6ff;

  font-size: 1.05rem;

  text-decoration: none;

  transition: 0.35s;
}

.submenu a:hover {
  padding-right: 45px;

  color: #00eaff;

  background:
    rgba(0, 234, 255, 0.18);

  text-shadow:
    0 0 15px #00eaff;

  transform: translateX(8px);
}

/* جلوگیری از خروج زیرمنوی آخر */

.menu > .menu-item:last-child .submenu {
  right: auto;
  left: 0;
}

/* دکمه موبایل */

#mobMenuBtn {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 999999;

  width: 58px;
  height: 58px;

  display: none;
  align-items: center;
  justify-content: center;

  color: #00eaff;

  font-size: 28px;

  cursor: pointer;

  background:
    rgba(0, 234, 255, 0.2);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border:
    2.5px solid rgba(0, 234, 255, 0.5);

  border-radius: 20px;

  box-shadow:
    0 12px 40px rgba(0, 234, 255, 0.4);

  transition:
    all 0.5s
    cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#mobMenuBtn i {
  transition: transform 0.3s ease;
}

#mobMenuBtn.active i {
  transform: rotate(90deg);
}

#mobMenuBtn:hover,
#mobMenuBtn.active {
  color: #000000;

  background: #00eaff;

  transform: scale(1.2);
}

/* منوی موبایل */

#mobileMenu {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 99998;

  width: 100%;
  max-width: 380px;
  height: 100vh;

  padding:
    120px
    40px
    40px;

  background:
    rgba(8, 16, 35, 0.98);

  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);

  border-left:
    3px solid #00eaff;

  box-shadow:
    -20px 0 80px rgba(0, 0, 0, 0.8);

  overflow-y: auto;

  transition:
    all 0.6s
    cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#mobileMenu.open {
  right: 0;
}

.mob-close-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 99999;

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00eaff;

  font-size: 26px;

  cursor: pointer;

  background:
    rgba(0, 234, 255, 0.2);

  border:
    2px solid rgba(0, 234, 255, 0.5);

  border-radius: 15px;

  transition: all 0.4s ease;
}

.mob-close-btn:hover {
  color: #000000;

  background: #00eaff;

  transform: scale(1.15);
}

#mobileMenu ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

#mobileMenu .menu-item {
  margin-bottom: 25px;

  opacity: 0;

  transform: translateX(50px);

  transition: all 0.6s ease;
}

#mobileMenu.open .menu-item {
  opacity: 1;

  transform: translateX(0);
}

#mobileMenu .menu-item:nth-child(1) {
  transition-delay: 0.1s;
}

#mobileMenu .menu-item:nth-child(2) {
  transition-delay: 0.2s;
}

#mobileMenu .menu-item:nth-child(3) {
  transition-delay: 0.3s;
}

#mobileMenu .menu-item:nth-child(4) {
  transition-delay: 0.4s;
}

#mobileMenu .menu-item:nth-child(5) {
  transition-delay: 0.5s;
}

#mobileMenu .menu-item > a {
  display: block;

  padding: 20px 0;

  color: #e0f4ff;

  font-size: 1.5rem;
  font-weight: 600;

  text-decoration: none;

  border-bottom:
    1px solid rgba(0, 234, 255, 0.15);

  transition: all 0.4s ease;
}

#mobileMenu .menu-item:hover > a,
#mobileMenu .menu-item.active > a {
  padding-right: 20px;

  color: #00eaff;

  text-shadow:
    0 0 15px #00eaff;
}

#mobileMenu .submenu {
  position: static;

  min-width: auto;

  padding:
    20px
    0
    0
    40px;

  background: transparent;

  border: none;
  border-radius: 0;

  box-shadow: none;

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: none;
}

#mobileMenu .submenu::before {
  display: none;
}

#mobileMenu .submenu a {
  padding: 14px 0;

  color: #a8ddff;

  font-size: 1.3rem;

  transition: all 0.4s ease;
}

#mobileMenu .submenu a:hover {
  padding-right: 20px;

  color: #00eaff;

  background: transparent;

  transform: none;
}

@media (max-width: 1200px) {
  .menu {
    gap: 25px;
  }

  .brand-box .title {
    font-size: 1.55rem;
  }
}

@media (max-width: 992px) {
  .menu {
    display: none;
  }

  #mobMenuBtn {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .nav-wrapper {
    height: 82px;

    padding:
      0
      15px;
  }

  .brand-box {
    gap: 10px;
  }

  .brand-box img {
    height: 54px;

    border-radius: 13px;
  }

  .brand-box .title {
    font-size: 1.1rem;
  }

  .brand-box small {
    display: none;
  }

  #mobMenuBtn {
    top: 14px;
    right: auto;
    left: 14px;

    width: 50px;
    height: 50px;

    font-size: 23px;

    border-radius: 16px;
  }

  #mobileMenu {
    max-width: 350px;

    padding:
      100px
      25px
      30px;
  }

  #mobileMenu .menu-item > a {
    padding: 15px 0;

    font-size: 1.15rem;
  }

  #mobileMenu .submenu {
    padding:
      12px
      0
      0
      20px;
  }

  #mobileMenu .submenu a {
    padding: 10px 0;

    font-size: 1rem;
  }
}


/* ==================================================
   JOBS HEADER — EXACT HOME PAGE STYLE
   این بخش باید آخرین کد jobs.css باشد
================================================== */

header {
  --header-accent: #22d3ee;

  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 9999 !important;

  display: block !important;
  width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  background: rgba(7, 18, 38, 0.94) !important;

  border: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;

  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22) !important;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease !important;
}

header.scrolled {
  background: rgba(5, 14, 31, 0.98) !important;

  border-bottom-color: rgba(34, 211, 238, 0.15) !important;

  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.32),
    0 1px 0 rgba(34, 211, 238, 0.08) !important;
}

/* کانتینر هدر */

header .nav-wrapper {
  position: relative !important;

  width: 100% !important;
  max-width: 1380px !important;
  height: 84px !important;

  margin: 0 auto !important;
  padding: 0 28px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;

  gap: 35px !important;

  box-sizing: border-box !important;
}

/* برند و لوگو */

header .brand-box {
  display: flex !important;
  align-items: center !important;

  gap: 13px !important;

  margin: 0 !important;
  padding: 0 !important;

  flex-shrink: 0 !important;
}

header .brand-box > a {
  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  text-decoration: none !important;
}

header .brand-box img {
  display: block !important;

  width: auto !important;
  max-width: none !important;
  height: 58px !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: contain !important;

  background: transparent !important;

  border: none !important;
  border-radius: 13px !important;

  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    0 0 16px rgba(34, 211, 238, 0.15) !important;

  transform: none !important;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
}

header .brand-box:hover img {
  transform: scale(1.035) !important;

  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.32),
    0 0 20px rgba(34, 211, 238, 0.2) !important;
}

header .brand-box .title {
  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #f6fbff !important;

  font-family: "Estedad", sans-serif !important;
  font-size: 1.42rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;

  white-space: nowrap !important;

  background: transparent !important;

  text-shadow: none !important;
}

header .brand-box small {
  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #86a7b8 !important;

  font-family: "Estedad", sans-serif !important;
  font-size: 0.76rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;

  white-space: nowrap !important;

  opacity: 1 !important;
}

/* ==================================================
   منوی دسکتاپ
================================================== */

header .menu {
  position: relative !important;

  margin: 0 !important;
  padding: 6px 8px !important;

  display: flex !important;
  align-items: center !important;

  gap: 7px !important;

  list-style: none !important;

  background: rgba(255, 255, 255, 0.035) !important;

  border: 1px solid rgba(255, 255, 255, 0.075) !important;
  border-radius: 18px !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 12px 28px rgba(0, 0, 0, 0.15) !important;

  box-sizing: border-box !important;
}

header .menu > .menu-item {
  position: relative !important;

  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  list-style: none !important;

  opacity: 1 !important;

  transform: none !important;

  transition: none !important;
}

header .menu > .menu-item:hover {
  transform: none !important;
}

/* لینک‌های اصلی */

header .menu > .menu-item > a {
  position: relative !important;

  min-width: 0 !important;
  min-height: 42px !important;

  margin: 0 !important;
  padding: 10px 16px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #d6e3ec !important;

  font-family: "Estedad", sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1 !important;

  text-decoration: none !important;

  background: transparent !important;

  border: 1px solid transparent !important;
  border-radius: 11px !important;

  box-shadow: none !important;
  text-shadow: none !important;

  transform: none !important;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease !important;

  box-sizing: border-box !important;
}

header .menu > .menu-item > a::before {
  display: none !important;

  content: none !important;
}

/* خط زیر آیتم */

header .menu > .menu-item > a::after {
  content: "" !important;

  position: absolute !important;
  right: 18px !important;
  bottom: 4px !important;
  left: 18px !important;

  display: block !important;

  width: auto !important;
  height: 2px !important;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--header-accent),
      transparent
    ) !important;

  border-radius: 20px !important;

  box-shadow: none !important;

  opacity: 0 !important;

  transform: scaleX(0) !important;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease !important;
}

header .menu > .menu-item:hover > a {
  color: #ffffff !important;

  background: rgba(255, 255, 255, 0.055) !important;

  border-color: transparent !important;

  text-shadow: none !important;

  transform: translateY(-1px) !important;
}

header .menu > .menu-item:hover > a::after {
  opacity: 1 !important;

  transform: scaleX(1) !important;
}

/* صفحه اصلی در jobs فعال نباشد */

header .menu > .menu-item:first-child:not(:hover) > a {
  color: #d6e3ec !important;

  background: transparent !important;

  border-color: transparent !important;
}

header .menu > .menu-item:first-child:not(:hover) > a::after {
  opacity: 0 !important;

  transform: scaleX(0) !important;
}

/* فعال‌شدن ارتباط با ما */

header .menu > .menu-item:nth-child(5) > a {
  color: var(--header-accent) !important;

  background: rgba(34, 211, 238, 0.09) !important;

  border-color: rgba(34, 211, 238, 0.12) !important;

  box-shadow: none !important;
  text-shadow: none !important;
}

header .menu > .menu-item:nth-child(5) > a::after {
  opacity: 1 !important;

  transform: scaleX(1) !important;
}

/* ==================================================
   زیرمنوی دسکتاپ
================================================== */

header .menu .submenu {
  position: absolute !important;
  top: calc(100% + 14px) !important;
  right: 0 !important;
  z-index: 10000 !important;

  width: auto !important;
  min-width: 240px !important;
  max-width: calc(100vw - 24px) !important;
  height: auto !important;

  margin: 0 !important;
  padding: 10px !important;

  display: block !important;

  background: rgba(8, 18, 34, 0.97) !important;

  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 18px !important;

  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.42) !important;

  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;

  transform: translateY(10px) scale(0.98) !important;
  transform-origin: top right !important;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease !important;

  box-sizing: border-box !important;
}

header .menu .submenu::before {
  content: "" !important;

  position: absolute !important;
  right: 0 !important;
  bottom: 100% !important;
  left: 0 !important;

  display: block !important;

  width: auto !important;
  height: 15px !important;

  background: transparent !important;
}

header .menu .submenu::after {
  content: "" !important;

  position: absolute !important;
  top: 0 !important;
  right: 22px !important;

  display: block !important;

  width: 70px !important;
  height: 3px !important;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--header-accent),
      transparent
    ) !important;

  border-radius: 20px !important;
}

header .menu > .menu-item:hover > .submenu,
header .menu > .menu-item:focus-within > .submenu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  transform: translateY(0) scale(1) !important;
}

header .menu .submenu a {
  position: relative !important;

  min-height: 44px !important;

  margin: 0 !important;
  padding: 10px 14px !important;

  display: flex !important;
  align-items: center !important;

  color: #cbd9e4 !important;

  font-family: "Estedad", sans-serif !important;
  font-size: 0.91rem !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;

  text-decoration: none !important;

  background: transparent !important;

  border: none !important;
  border-radius: 11px !important;

  box-shadow: none !important;
  text-shadow: none !important;

  transform: none !important;

  transition:
    color 0.22s ease,
    background 0.22s ease,
    padding 0.22s ease !important;

  box-sizing: border-box !important;
}

header .menu .submenu a::before {
  content: "" !important;

  width: 6px !important;
  height: 6px !important;

  margin-left: 9px !important;

  display: block !important;
  flex-shrink: 0 !important;

  background: rgba(34, 211, 238, 0.5) !important;

  border-radius: 50% !important;
}

header .menu .submenu a::after {
  display: none !important;

  content: none !important;
}

header .menu .submenu a:hover {
  color: #ffffff !important;

  padding-right: 19px !important;

  background: rgba(34, 211, 238, 0.1) !important;

  text-shadow: none !important;

  transform: none !important;
}

header .menu > .menu-item:last-child > .submenu {
  right: auto !important;
  left: 0 !important;

  transform-origin: top left !important;
}

/* فعال‌شدن لینک استخدام داخل زیرمنو */

header .menu > .menu-item:nth-child(5) .submenu a[href="./jobs.html"] {
  color: #ffffff !important;

  background: rgba(34, 211, 238, 0.1) !important;
}

/* ==================================================
   دکمه منوی موبایل
================================================== */

#mobMenuBtn {
  position: static !important;

  width: 46px !important;
  height: 46px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: none !important;
  align-items: center !important;
  justify-content: center !important;

  color: #d9e8ef !important;

  font-family: inherit !important;
  font-size: 21px !important;

  cursor: pointer !important;

  background: rgba(255, 255, 255, 0.055) !important;

  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;

  box-shadow: none !important;

  transform: none !important;

  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease !important;

  box-sizing: border-box !important;
}

#mobMenuBtn:hover,
#mobMenuBtn.active {
  color: #ffffff !important;

  background: rgba(34, 211, 238, 0.12) !important;

  border-color: rgba(34, 211, 238, 0.25) !important;

  transform: none !important;
}

#mobMenuBtn i {
  transition: transform 0.3s ease !important;
}

#mobMenuBtn.active i {
  transform: rotate(90deg) !important;
}

/* ==================================================
   منوی موبایل
================================================== */

#mobileMenu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  z-index: 99998 !important;

  width: min(88%, 360px) !important;
  max-width: 360px !important;
  height: 100dvh !important;

  margin: 0 !important;
  padding: 88px 22px 30px !important;

  display: block !important;

  background: rgba(6, 16, 34, 0.99) !important;

  border: none !important;
  border-left: 1px solid rgba(34, 211, 238, 0.16) !important;

  backdrop-filter: blur(22px) !important;
  -webkit-backdrop-filter: blur(22px) !important;

  box-shadow:
    -18px 0 55px rgba(0, 0, 0, 0.48) !important;

  overflow-y: auto !important;

  opacity: 1 !important;
  visibility: visible !important;

  transform: translateX(105%) !important;

  transition: transform 0.38s ease !important;

  box-sizing: border-box !important;
}

#mobileMenu.open {
  transform: translateX(0) !important;
}

#mobileMenu ul {
  margin: 0 !important;
  padding: 0 !important;

  display: block !important;

  list-style: none !important;
}

#mobileMenu .mob-close-btn {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;

  width: 42px !important;
  height: 42px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #dceaf1 !important;

  font-family: inherit !important;
  font-size: 20px !important;

  cursor: pointer !important;

  background: rgba(255, 255, 255, 0.055) !important;

  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 11px !important;

  box-shadow: none !important;

  transform: none !important;

  box-sizing: border-box !important;
}

#mobileMenu .menu-item {
  position: relative !important;

  margin: 0 0 6px !important;
  padding: 0 !important;

  display: block !important;

  list-style: none !important;

  opacity: 1 !important;

  transform: none !important;

  transition: none !important;
}

#mobileMenu .menu-item > a {
  position: relative !important;

  min-height: 48px !important;

  margin: 0 !important;
  padding: 11px 13px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;

  color: #e0ebf2 !important;

  font-family: "Estedad", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;

  text-decoration: none !important;

  background: transparent !important;

  border: none !important;
  border-radius: 10px !important;

  box-shadow: none !important;
  text-shadow: none !important;

  transform: none !important;

  box-sizing: border-box !important;
}

#mobileMenu .menu-item > a::before,
#mobileMenu .menu-item > a::after {
  display: none !important;

  content: none !important;
}

#mobileMenu .menu-item:hover > a {
  color: #ffffff !important;

  background: rgba(34, 211, 238, 0.08) !important;
}

#mobileMenu .menu-item:first-child:not(:hover) > a {
  color: #e0ebf2 !important;

  background: transparent !important;
}

#mobileMenu .menu-item:nth-child(5) > a {
  color: #ffffff !important;

  background: rgba(34, 211, 238, 0.08) !important;
}

/* زیرمنوی موبایل */

#mobileMenu .submenu {
  position: static !important;

  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;

  margin: 6px 0 0 !important;
  padding: 7px !important;

  display: block !important;

  background: rgba(255, 255, 255, 0.03) !important;

  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 14px !important;

  box-shadow: none !important;

  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;

  transform: none !important;

  box-sizing: border-box !important;
}

#mobileMenu .submenu::before,
#mobileMenu .submenu::after {
  display: none !important;

  content: none !important;
}

#mobileMenu .submenu a {
  min-height: 40px !important;

  margin: 0 !important;
  padding: 9px 12px !important;

  display: flex !important;
  align-items: center !important;

  color: #a7bfcd !important;

  font-family: "Estedad", sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;

  text-decoration: none !important;

  background: transparent !important;

  border: none !important;
  border-radius: 9px !important;

  box-shadow: none !important;
  text-shadow: none !important;

  transform: none !important;
}

#mobileMenu .submenu a::before,
#mobileMenu .submenu a::after {
  display: none !important;

  content: none !important;
}

#mobileMenu .submenu a:hover {
  color: #ffffff !important;

  padding-right: 16px !important;

  background: rgba(34, 211, 238, 0.08) !important;
}

#mobileMenu .menu-item:nth-child(5) .submenu a[href="./jobs.html"] {
  color: #ffffff !important;

  background: rgba(34, 211, 238, 0.08) !important;
}

/* ==================================================
   ریسپانسیو
================================================== */

@media (max-width: 1200px) {
  header .nav-wrapper {
    padding: 0 22px !important;

    gap: 22px !important;
  }

  header .menu {
    gap: 4px !important;
  }

  header .menu > .menu-item > a {
    padding: 10px 12px !important;

    font-size: 0.88rem !important;
  }

  header .brand-box .title {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 992px) {
  header .menu {
    display: none !important;
  }

  #mobMenuBtn {
    display: flex !important;
  }
}

@media (max-width: 600px) {
  header .nav-wrapper {
    height: 78px !important;

    padding: 0 14px !important;
  }

  header .brand-box {
    gap: 9px !important;
  }

  header .brand-box img {
    height: 50px !important;

    border-radius: 11px !important;
  }

  header .brand-box .title {
    font-size: 1rem !important;
  }

  header .brand-box small {
    display: none !important;
  }

  #mobMenuBtn {
    width: 42px !important;
    height: 42px !important;

    font-size: 19px !important;

    border-radius: 11px !important;
  }

  #mobileMenu {
    width: min(90%, 340px) !important;

    padding: 82px 18px 25px !important;
  }
}
/* =========================================================
هدر یکپارچه صفحات محصولات — مشابه صفحه درباره ما
این کد را در انتهای CSS هر چهار صفحه محصول قرار بده
========================================================= */

:root {
--header-primary: #22d3ee;
--header-bg: rgba(5, 15, 31, 0.94);
--header-text: #d7e3eb;
}

/* =========================================================
بدنه اصلی هدر
========================================================= */

header,
.header {
position: fixed !important;
top: 0 !important;
right: 0 !important;
left: 0 !important;
z-index: 9999 !important;

width: 100% !important;
min-height: 92px !important;

margin: 0 !important;
padding: 0 !important;

font-family: "Estedad", sans-serif !important;

background: var(--header-bg) !important;

border-bottom:
1px solid rgba(34, 211, 238, 0.14) !important;

box-shadow:
0 10px 35px rgba(0, 0, 0, 0.22) !important;

backdrop-filter:
blur(22px) saturate(150%) !important;

-webkit-backdrop-filter:
blur(22px) saturate(150%) !important;

transition:
background 0.3s ease,
box-shadow 0.3s ease,
border-color 0.3s ease !important;
}

header.scrolled,
.header.scrolled {
background:
rgba(5, 13, 27, 0.98) !important;

border-bottom-color:
rgba(34, 211, 238, 0.2) !important;

box-shadow:
0 15px 42px rgba(0, 0, 0, 0.34) !important;
}

/* =========================================================
محفظه داخلی هدر
========================================================= */

header .nav-wrapper,
.header .nav-wrapper {
width: 100% !important;
max-width: 1240px !important;

height: 92px !important;
min-height: 92px !important;

margin: 0 auto !important;
padding: 0 34px !important;

display: flex !important;
align-items: center !important;
justify-content: space-between !important;

gap: 55px !important;
}

/* =========================================================
لوگو و عنوان برند
========================================================= */

header .brand-box,
.header .brand-box {
display: flex !important;
align-items: center !important;

gap: 15px !important;

flex: 0 0 auto !important;

min-width: max-content !important;

margin: 0 !important;
padding: 0 !important;
}

header .brand-box > a,
.header .brand-box > a {
display: block !important;

width: 62px !important;
height: 62px !important;

flex: 0 0 62px !important;

margin: 0 !important;
padding: 0 !important;

text-decoration: none !important;
}

header .brand-box img,
.header .brand-box img {
display: block !important;

width: 62px !important;
height: 62px !important;

max-width: 62px !important;
max-height: 62px !important;

padding: 5px !important;

object-fit: contain !important;

background:
rgba(255, 255, 255, 0.06) !important;

border:
1px solid rgba(34, 211, 238, 0.2) !important;

border-radius: 16px !important;

box-shadow:
0 10px 28px rgba(0, 0, 0, 0.32),
0 0 18px rgba(34, 211, 238, 0.12) !important;

animation: none !important;
transform: none !important;

transition:
transform 0.3s ease,
box-shadow 0.3s ease !important;
}

header .brand-box:hover img,
.header .brand-box:hover img {
transform:
translateY(-2px)
scale(1.03) !important;

box-shadow:
0 14px 32px rgba(0, 0, 0, 0.38),
0 0 24px rgba(34, 211, 238, 0.2) !important;
}

header .brand-box > div,
.header .brand-box > div {
display: flex !important;
flex-direction: column !important;
justify-content: center !important;
}

header .brand-box .title,
.header .brand-box .title {
margin: 0 !important;
padding: 0 !important;

color: #ffffff !important;

font-size: 1.35rem !important;
font-weight: 800 !important;
line-height: 1.4 !important;

white-space: nowrap !important;

text-shadow: none !important;
}

header .brand-box small,
.header .brand-box small {
display: block !important;

margin-top: 2px !important;

color: #8caabb !important;

font-size: 0.72rem !important;
font-weight: 500 !important;
line-height: 1.5 !important;

letter-spacing: 0.4px !important;

white-space: nowrap !important;
}

/* =========================================================
کادر شیشه‌ای منوی دسکتاپ
========================================================= */

header .menu,
.header .menu {
width: auto !important;
height: auto !important;

margin: 0 !important;
padding: 7px 9px !important;

display: flex !important;
align-items: center !important;

gap: 10px !important;

list-style: none !important;

background:
rgba(255, 255, 255, 0.035) !important;

border:
1px solid rgba(255, 255, 255, 0.07) !important;

border-radius: 18px !important;

box-shadow:
inset 0 1px 0 rgba(255, 255, 255, 0.03),
0 12px 28px rgba(0, 0, 0, 0.15) !important;
}

header .menu-item,
.header .menu-item {
position: relative !important;

height: auto !important;

margin: 0 !important;
padding: 0 !important;

display: block !important;

list-style: none !important;

transform: none !important;
transition: none !important;
}

header .menu-item:hover,
.header .menu-item:hover {
transform: none !important;
}

/* لینک‌های اصلی منو */

header .menu-item > a,
.header .menu-item > a {
position: relative !important;

min-width: 92px !important;
min-height: 46px !important;

height: auto !important;

padding: 11px 18px !important;

display: flex !important;
align-items: center !important;
justify-content: center !important;

color: var(--header-text) !important;

font-size: 0.94rem !important;
font-weight: 600 !important;
line-height: 1 !important;

white-space: nowrap !important;

text-decoration: none !important;

background: transparent !important;

border:
1px solid transparent !important;

border-radius: 13px !important;

text-shadow: none !important;

transform: none !important;

transition:
color 0.25s ease,
background 0.25s ease,
box-shadow 0.25s ease,
border-color 0.25s ease !important;
}

header .menu-item > a::before,
.header .menu-item > a::before {
display: none !important;
content: none !important;
}

header .menu-item > a::after,
.header .menu-item > a::after {
content: "" !important;

position: absolute !important;

right: 24px !important;
bottom: 5px !important;
left: 24px !important;

width: auto !important;
height: 2px !important;

margin: 0 !important;

background:
linear-gradient(
90deg,
transparent,
var(--header-primary),
transparent
) !important;

border-radius: 20px !important;

box-shadow:
0 0 11px rgba(34, 211, 238, 0.65) !important;

opacity: 0 !important;

transform:
scaleX(0.35) !important;

transition:
opacity 0.25s ease,
transform 0.25s ease !important;
}

/* هاور و گزینه فعال */

header .menu-item:hover > a,
header .menu-item.active > a,
.header .menu-item:hover > a,
.header .menu-item.active > a {
color: #69e9ff !important;

background:
rgba(34, 211, 238, 0.1) !important;

border-color:
rgba(34, 211, 238, 0.22) !important;

box-shadow:
inset 0 0 22px rgba(34, 211, 238, 0.055),
0 8px 22px rgba(0, 0, 0, 0.12) !important;
}

header .menu-item:hover > a::after,
header .menu-item.active > a::after,
.header .menu-item:hover > a::after,
.header .menu-item.active > a::after {
opacity: 1 !important;

transform:
scaleX(1) !important;
}

/* =========================================================
زیرمنوی دسکتاپ
========================================================= */

header .submenu,
.header .submenu {
position: absolute !important;

top: calc(100% + 16px) !important;
right: 0 !important;
z-index: 10000 !important;

min-width: 250px !important;
max-width: calc(100vw - 24px) !important;

margin: 0 !important;
padding: 10px !important;

background:
linear-gradient(
145deg,
rgba(10, 26, 46, 0.99),
rgba(5, 14, 28, 0.99)
) !important;

border:
1px solid rgba(34, 211, 238, 0.14) !important;

border-radius: 20px !important;

backdrop-filter:
blur(20px) !important;

-webkit-backdrop-filter:
blur(20px) !important;

box-shadow:
0 28px 70px rgba(0, 0, 0, 0.5),
inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;

opacity: 0 !important;
visibility: hidden !important;
pointer-events: none !important;

transform:
translateY(10px)
scale(0.98) !important;

transform-origin:
top right !important;

transition:
opacity 0.22s ease,
visibility 0.22s ease,
transform 0.22s ease !important;
}

/* فضای نامرئی میان منو و زیرمنو */

header .submenu::before,
.header .submenu::before {
content: "" !important;

position: absolute !important;

right: 0 !important;
bottom: 100% !important;
left: 0 !important;

height: 17px !important;

display: block !important;
}

/* خط نورانی بالای زیرمنو */

header .submenu::after,
.header .submenu::after {
content: "" !important;

position: absolute !important;

top: 0 !important;
right: 22px !important;

width: 68px !important;
height: 3px !important;

display: block !important;

background:
linear-gradient(
90deg,
transparent,
var(--header-primary),
transparent
) !important;

border-radius: 20px !important;
}

header .menu-item:hover > .submenu,
header .menu-item:focus-within > .submenu,
.header .menu-item:hover > .submenu,
.header .menu-item:focus-within > .submenu {
opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;

transform:
translateY(0)
scale(1) !important;
}

header .submenu a,
.header .submenu a {
min-height: 46px !important;

padding: 11px 15px !important;

display: flex !important;
align-items: center !important;

color: #bcd0dc !important;

font-size: 0.9rem !important;
font-weight: 500 !important;
line-height: 1.7 !important;

white-space: nowrap !important;

text-decoration: none !important;

background: transparent !important;

border:
1px solid transparent !important;

border-radius: 11px !important;

transform: none !important;

transition:
color 0.22s ease,
background 0.22s ease,
border-color 0.22s ease,
padding-right 0.22s ease !important;
}

header .submenu a:hover,
header .submenu a.current-sub,
.header .submenu a:hover,
.header .submenu a.current-sub {
color: #72ecff !important;

background:
rgba(34, 211, 238, 0.1) !important;

border-color:
rgba(34, 211, 238, 0.13) !important;

padding-right: 20px !important;

text-shadow: none !important;

transform: none !important;
}

/* =========================================================
دکمه منوی موبایل
========================================================= */

#mobMenuBtn {
position: static !important;

display: none !important;
align-items: center !important;
justify-content: center !important;

width: 45px !important;
height: 45px !important;

padding: 0 !important;

color: #dce8ef !important;

font-size: 20px !important;

cursor: pointer !important;

background:
rgba(255, 255, 255, 0.055) !important;

border:
1px solid rgba(255, 255, 255, 0.12) !important;

border-radius: 12px !important;

box-shadow: none !important;

animation: none !important;
transform: none !important;
}

/* =========================================================
منوی موبایل
========================================================= */

#mobileMenu {
position: fixed !important;

top: 0 !important;
right: 0 !important;
z-index: 99998 !important;

width: min(88%, 360px) !important;
max-width: 360px !important;

height: 100vh !important;
height: 100dvh !important;

padding:
84px
21px
30px !important;

background:
rgba(6, 16, 32, 0.99) !important;

border: none !important;

border-left:
1px solid rgba(34, 211, 238, 0.17) !important;

backdrop-filter:
blur(22px) !important;

-webkit-backdrop-filter:
blur(22px) !important;

box-shadow:
-18px 0 55px rgba(0, 0, 0, 0.5) !important;

overflow-y: auto !important;

opacity: 1 !important;
visibility: visible !important;

transform:
translateX(105%) !important;

transition:
transform 0.36s ease !important;
}

#mobileMenu.open {
transform:
translateX(0) !important;
}

#mobileMenu ul {
margin: 0 !important;
padding: 0 !important;

list-style: none !important;
}

.mob-close-btn {
position: absolute !important;

top: 19px !important;
left: 19px !important;

width: 42px !important;
height: 42px !important;

padding: 0 !important;

display: flex !important;
align-items: center !important;
justify-content: center !important;

color: #dce8ef !important;

font-size: 19px !important;

cursor: pointer !important;

background:
rgba(255, 255, 255, 0.055) !important;

border:
1px solid rgba(255, 255, 255, 0.12) !important;

border-radius: 11px !important;

box-shadow: none !important;

transform: none !important;
}

#mobileMenu .menu-item {
height: auto !important;

margin: 0 0 6px !important;
padding: 0 !important;

display: block !important;

opacity: 1 !important;

transform: none !important;
transition: none !important;
}

#mobileMenu .menu-item > a {
min-height: 48px !important;
height: auto !important;

padding: 12px 13px !important;

display: flex !important;
align-items: center !important;
justify-content: flex-start !important;

color: #d7e3eb !important;

font-size: 0.96rem !important;
font-weight: 600 !important;

text-decoration: none !important;

background: transparent !important;

border:
1px solid transparent !important;

border-radius: 10px !important;
}

#mobileMenu .menu-item > a::before,
#mobileMenu .menu-item > a::after {
display: none !important;
content: none !important;
}

#mobileMenu .menu-item.active > a,
#mobileMenu .menu-item > a:hover {
color: #72ecff !important;

background:
rgba(34, 211, 238, 0.09) !important;

border-color:
rgba(34, 211, 238, 0.13) !important;
}

#mobileMenu .submenu {
position: static !important;

width: 100% !important;
min-width: 0 !important;
max-width: none !important;

margin: 3px 0 0 !important;
padding: 4px 13px 8px 0 !important;

background: transparent !important;

border: 0 !important;
border-radius: 0 !important;

box-shadow: none !important;

opacity: 1 !important;
visibility: visible !important;
pointer-events: auto !important;

transform: none !important;
}

#mobileMenu .submenu::before,
#mobileMenu .submenu::after {
display: none !important;
content: none !important;
}

#mobileMenu .submenu a {
min-height: 39px !important;

padding: 8px 12px !important;

color: #9fb8c8 !important;

font-size: 0.85rem !important;

border-radius: 8px !important;
}

#mobileMenu .submenu a:hover,
#mobileMenu .submenu a.current-sub {
color: #72ecff !important;

background:
rgba(34, 211, 238, 0.075) !important;

padding-right: 12px !important;
}

/* =========================================================
پس‌زمینه تاریک منوی موبایل
========================================================= */

.menu-backdrop,
.mobile-backdrop {
position: fixed !important;

inset: 0 !important;
z-index: 99997 !important;

background:
rgba(0, 0, 0, 0.56) !important;

opacity: 0 !important;
visibility: hidden !important;

pointer-events: none !important;

transition:
opacity 0.25s ease,
visibility 0.25s ease !important;
}

.menu-backdrop.show,
.menu-backdrop.open,
.mobile-backdrop.show,
.mobile-backdrop.open {
opacity: 1 !important;
visibility: visible !important;

pointer-events: auto !important;
}

/* =========================================================
تبلت و موبایل
========================================================= */

@media (max-width: 992px) {
header,
.header {
min-height: 78px !important;
}

header .nav-wrapper,
.header .nav-wrapper {
height: 78px !important;
min-height: 78px !important;


padding: 0 18px !important;

gap: 16px !important;


}

header .menu,
.header .menu {
display: none !important;
}

#mobMenuBtn {
display: flex !important;
}

header .brand-box img,
.header .brand-box img,
header .brand-box > a,
.header .brand-box > a {
width: 54px !important;
height: 54px !important;


max-width: 54px !important;
max-height: 54px !important;

flex-basis: 54px !important;


}

header .brand-box .title,
.header .brand-box .title {
font-size: 1.08rem !important;
}

header .brand-box small,
.header .brand-box small {
font-size: 0.64rem !important;
}
}

@media (max-width: 600px) {
header .nav-wrapper,
.header .nav-wrapper {
padding: 0 12px !important;
}

header .brand-box,
.header .brand-box {
gap: 9px !important;
}

header .brand-box .title,
.header .brand-box .title {
font-size: 0.94rem !important;
}

header .brand-box small,
.header .brand-box small {
display: none !important;
}
}
