.button-85 {
    padding: 0.6em 2em;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    text-decoration: none;
}

.button-85:before {
    content: "";
    background: linear-gradient(
        45deg,
        #ff0000,
        #ff7300,
        #fffb00,
        #48ff00,
        #00ffd5,
        #002bff,
        #7a00ff,
        #ff00c8,
        #ff0000
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing-button-85 20s linear infinite;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

@keyframes glowing-button-85 {
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}

.button-85:after {
    z-index: -1;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #222;
    left: 0;
    top: 0;
    border-radius: 10px;
}
.hero-bg {
        background: url('SEE JOBS.jpg') no-repeat center center/cover;
        width: 100vw;
        min-width: 100vw;
        box-sizing: border-box;
}
@media (max-width: 600px) {
    html, body {
    max-width: 100vw;
    min-width: 0;
    width: 100vw;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }
  .hero-bg, .contacts-row, .card, footer {
    max-width: 100vw;
    min-width: 0;
    width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }
    .hero-bg > div {
        max-width: 98vw !important;
        padding: 1rem !important;
        font-size: 1rem !important;
    }
    .cta {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    h2 {
        font-size: 1.5rem !important;
    }
}
@media (min-width: 1200px) {
    .hero-bg > div {
        max-width: 700px !important;
        font-size: 1.3rem !important;
    }
    h2 {
        font-size: 2.5rem !important;
    }
}
body, html {
  overflow-x: hidden !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 0 !important;
  box-sizing: border-box;
}
* {
  box-sizing: border-box !important;
}
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-width: 0;
  max-width: 100vw;
  height: 100vh;
  min-height: 100vh;
  box-sizing: border-box;
  background: #f7f7f7;
  direction: rtl;
  overflow-x: hidden;
}
header {
    background: #38bdf8;
    color: #fff;
    padding: 1rem 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
nav h1 {
    font-size: 2rem;
    margin: 0;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}
nav a:hover {
    color: #38bdf8;
}
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}
.hero-bg {
    background: url('SEE JOBS.jpg') no-repeat center center/cover;
    box-sizing: border-box;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta {
    background: #fff;
    color: #1e293b;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30,41,59,0.1);
    transition: background 0.2s, color 0.2s;
}
.cta:hover {
    background: #38bdf8;
    color: #fff;
}
footer {
    text-align: center;
    padding: 1rem;
    background: #38bdf8;
    color: #fff;
    width: 100vw;
    min-width: 100vw;
    box-sizing: border-box;
}
.contact-form {
        max-width: 500px;
        width: 90vw;
        margin: 2rem auto;
        background: #fff;
        padding: 2rem 2.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(30,41,59,0.08);
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
}
@media (max-width: 600px) {
    .contact-form {
        padding: 1rem 0.5rem;
        max-width: 98vw;
    }
}

/* Contact Form Modern Style */
.contact-form {
    max-width: 500px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(30,41,59,0.08);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form label {
    font-weight: 500;
    color: #1e293b;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.7rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    background: #f7fafc;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
    outline: none;
}
.contact-form .cta {
    margin-top: 1rem;
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    border-radius: 30px;
    background: linear-gradient(90deg, #38bdf8 0%, #1e293b 100%);
    color: #fff;
    border: none;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(30,41,59,0.1);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.contact-form .cta:hover {
    background: #1e293b;
    color: #38bdf8;
}

/* Navbar */
 .main-navbar {
     background: #60c6f7;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}
.navbar-center {
    display: flex;
    align-items: center;
}
.navbar-logo {
    height: 55px;
    margin-left: 0;
    margin-right: 1.5rem;
    display: block;
}

/* עיצוב כפתורי שפה בלבד */
.lang-switcher button.button-17,
.lang-switcher-row button.button-17 {
  font-family: "Google Sans",Roboto,Arial,sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0.5rem;
  min-width: 90px;
  height: 48px;
  padding: 2px 24px;
  border-radius: 24px;
  border: none;
  box-shadow: rgba(0, 0, 0, .2) 0 3px 5px -1px,rgba(0, 0, 0, .14) 0 6px 10px 0,rgba(0, 0, 0, .12) 0 1px 18px 0;
  background: #fff;
  color: #3c4043;
  cursor: pointer;
  transition: box-shadow 280ms cubic-bezier(.4, 0, .2, 1),background 150ms;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-switcher button.button-17:hover,
.lang-switcher-row button.button-17:hover {
  background: #F6F9FE;
  color: #174ea6;
}
.lang-switcher button.button-17:focus,
.lang-switcher-row button.button-17:focus {
  outline: none;
  border: 2px solid #4285f4;
}
.lang-switcher {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem auto 1rem auto;
  width: 100%;
  max-width: 600px;
}
.lang-switcher-row {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  width: auto;
  justify-content: center;
}
@media (max-width: 600px) {
  .lang-switcher {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.7rem;
    max-width: 98vw;
    align-items: center;
  }
  .lang-switcher-row {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
  }
}
.contacts-row, .subscribe, .contact-role, .contact-name, .subscribe-input, .submit-btn {
  /* נשאר רק עיצוב בסיסי לטקסטים, ללא כפילויות */
  all: unset;
}
.contacts-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 2rem auto;
  max-width: 1200px;
  width: 100%;
}
.card {
  margin: 0.7rem;
}
.card-content {
  z-index: 2;
  color: white;
  text-align: center;
  font-size: 1em;
  width: 100%;
  padding: 0.5em 0.7em;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.card-content .contact-role {
  font-weight: bold;
  font-size: 1.1em;
}
.card-content .contact-name {
  font-weight: bold;
  font-size: 1em;
}
.card-content .subscribe-input {
  color: #aeefff;
  font-size: 0.95em;
  word-break: break-all;
  text-decoration: underline;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
}
.card-content .submit-btn {
  margin-top: 0.7em;
  background: #00c3ff;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  padding: 8px 0;
  transition: background 0.2s;
}
.card-content .submit-btn:hover {
  background: #7b2ff7;
}
@media (max-width: 600px) {
  .contacts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 0.5rem;
  }
  .card {
    width: 100%;
    min-width: 0;
    max-width: 98vw;
    margin: 0.5rem 0;
    height: auto;
  }
}

/* עיצוב כרטיס מודרני מ-Uiverse.io */
.card {
  width: 190px;
  height: 254px;
  background: #07182e;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.card p {
  z-index: 2;
  color: white;
  font-size: 2em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}
.card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    #00c3ff 0%,
    #7b2ff7 25%,
    #00f2c3 55%,
    #ffe600 85%,
    #00c3ff 100%
  );
  animation: rotateAnim 5s linear infinite;
  filter: blur(10px) brightness(1.2);
  z-index: 0;
}
.card::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: #07182e;
  border-radius: 16px;
  z-index: 1;
  box-shadow: inset 0 0 20px rgba(0, 183, 255, 0.1);
}
.card .gradient-overlay {
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, transparent 40%, #07182e 80%);
  z-index: 1;
}
@keyframes rotateAnim {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
  .card-content .submit-btn {
    width: 70%;
    min-width: 70px;
    max-width: 120px;
    font-size: 0.95em;
    padding: 7px 0;
    margin: 0.5em auto 0 auto;
  }
  footer {
    max-width: 100vw;
    min-width: 0;
    width: 100vw;
    padding: 0.7rem;
    font-size: 1em;
    box-sizing: border-box;
    overflow-x: hidden;
  }
}
.accessibility-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1000;
  background: #38bdf8;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0.7em 1.5em;
  box-shadow: 0 2px 8px rgba(30,41,59,0.15);
  cursor: pointer;
  transition: background 0.2s;
}
.accessibility-btn:hover {
  background: #1e293b;
  color: #38bdf8;
}
@media (max-width: 600px) {
  .accessibility-btn {
    bottom: 12px;
    left: 12px;
    font-size: 1em;
    padding: 0.5em 1em;
  }
}
.accessibility-menu {
  position: fixed;
  bottom: 70px;
  left: 24px;
  z-index: 1001;
  background: #fff;
  color: #222;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,41,59,0.15);
  padding: 1em 1.2em;
  min-width: 180px;
  display: none;
}
@media (max-width: 600px) {
  .accessibility-menu {
    bottom: 60px;
    left: 12px;
    min-width: 140px;
    padding: 0.7em 0.7em;
  }
}
.high-contrast {
  background: #222 !important;
  color: #fff !important;
}
.high-contrast, .high-contrast body, .high-contrast html {
  background: #222 !important;
  color: #fff !important;
}
.high-contrast .card,
.high-contrast .card-content,
.high-contrast .main-navbar,
.high-contrast .lang-switcher,
.high-contrast .accessibility-menu,
.high-contrast footer {
  background: #222 !important;
  color: #fff !important;
  box-shadow: none !important;
}
.high-contrast a,
.high-contrast .subscribe-input,
.high-contrast .submit-btn {
  color: #ffe600 !important;
  text-decoration: underline !important;
}
.clients-logos-section {
  padding: 3rem 0;
  background: #f5f5f5; /* בז' בהיר */
  overflow: hidden;
}
.logos-swiper .swiper-pagination {
  bottom: -32px !important;
}
.logos-swiper .swiper-button-next,
.logos-swiper .swiper-button-prev {
  display: none !important;
}
.logo-item img[alt="לקוח 14"] {
  max-width: 85%;
  max-height: 80px;
}
@media (max-width: 900px) {
  .logo-item img[alt="לקוח 14"] {
    max-width: 90%;
    max-height: 70px;
  }
}
@media (max-width: 600px) {
  .clients-logos-section {
    padding: 2rem 0;
  }
  .logos-swiper {
    min-height: 120px;
  }
  .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
  }
  .logo-item {
    height: 120px;
    min-width: 110px;
    max-width: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
  }
  .logo-item img {
    max-height: 110px;
    max-width: 95%;
    object-fit: contain;
  }
  .swiper-pagination, .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
}