  html {
    background-color: #003366;
  }

  #splash-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #003366, #0074d9, #005fa3);
    background-size: 400% 400%;
    animation: glowBG 6s ease infinite;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .splash-inner {
    text-align: center;
    color: white;
    font-family: 'Assistant', sans-serif;
  }

  #splash-logo {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
    animation: pulse 1.5s ease-in-out infinite;
  }

  .splash-inner h1 {
    line-height: 0.7;
    font-size: 3.5rem;
    margin: 0 0 0 1rem;
    font-family: 'Secular One', sans-serif;
  }

  .splash-inner p {
    font-size: 1.1rem;
    margin: 0.5rem 0 0;
  }

  @keyframes glowBG {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.1);
      opacity: 0.9;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes zoomFadeOut {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  @keyframes zoomFadeOutAll {
    to {
      transform: scale(1.6);
      opacity: 0;
    }
  }


  .fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }

  .fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }


  body {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    background-color: #003366;
    direction: rtl;
    padding-bottom: env(safe-area-inset-bottom);
  }

  /* Scrollbar Customization for WebKit (Chrome, Edge, Safari) */
  body::-webkit-scrollbar {
    width: 10px;
  }

  body::-webkit-scrollbar-track {
    background: #f0f2f5;
    /* רקע פס הגלילה */
  }

  body::-webkit-scrollbar-thumb {
    background: #003366;
    /* צבע פס הגלילה */
    border-radius: 6px;
  }

  body::-webkit-scrollbar-thumb:hover {
    background: #005fa3;
    /* צבע בעת מעבר עכבר */
  }

  #content.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  #content.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }


  header {
    background-color: #003366;
    color: white;
    padding: 1rem;
    text-align: center;
  }

  .site-header {
    background-color: #003366;
    color: white;
    display: flex;
    align-items: center;
    padding: 1rem;
    z-index: 9999;
  }

  .site-header img {
    height: 100px;
    transition: all 0.3s ease;
  }

  .site-header h1 {
    line-height: 0.7;
    font-size: 3.5rem;
    margin: 0 0 0 1rem;
    font-family: 'Secular One', sans-serif;
  }




  h1 {
    font-size: 2.4rem;
    color: #f8f8f8;
    text-align: center;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #0074d9;
    padding-bottom: 0.5rem;
  }

  h2 {
    font-size: 1.8rem;
    color: #f8f8f8;
    border-bottom: 3px solid #0074d9;
  }

  h2::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background-color: #0074d9;
    margin-top: 5px;
  }

  h3 {
    font-size: 1.4rem;
    color: #004080;
    margin: 20px;
    font-weight: bold;
    border-bottom: 1px solid #003366;
    max-width: 1000px;
  }

  p {
    font-size: 18px;
    line-height: 1;
    font-family: 'Assistant', sans-serif;
    margin: 20px;
  }

  .menu {
    background-color: #003366;
    color: white;
    padding: 0;
    text-align: center;
    position: sticky;
    top: 0px;
    z-index: 1000;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.592);
  }


  .nav-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;

    /* הסתרת סרגל גלילה */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
  }

  .nav-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }



  nav {
    display: inline-flex;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 10px;
  }

  nav a {
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
  }

  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    padding: 0.4rem 1rem;
    transition: background-color 0.2s ease;
    background-color: transparent;
    border: 1px solid #003366;
    border-radius: 20px;
    min-width: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

  nav a:hover {
    background-color: #003366;
  }

  .hero {
    background: linear-gradient(to right, #003366, #0074d9);
    color: white;
    padding: 1rem 1rem;
    text-align: center;
  }

  .hero h2 {
    margin-bottom: 2rem;
    font-family: 'Rubik', sans-serif;
    line-height: 1;
  }

  .container {
    background-color: #ffffff;
    max-width: 1400px;
    margin: auto;
    padding: 1px;
    border-radius: 32px;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem;
  }

  .card {
    background: white;
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    align-items: center;
    text-align: right
  }

  .card ul {
    padding-right: 20px;
    margin: 10px 0;
    list-style-type: disc;
  }

  .card ul li {
    font-size: 17px;
    color: #003366;
    margin-bottom: 6px;
    font-family: 'Alef', sans-serif;
    line-height: 1.2;
  }

  .card img {
    width: 50%;
    object-fit: cover;
    border-radius: 10px;
    background-color: #e0e0e0;
  }

  .card h3 {
    font-size: 1.5rem;
    margin-top: -1rem;
    margin-bottom: 1rem;
    color: #007BFF;
  }

  .card p {
    margin: 0.5rem 0 1rem;
    font-size: 20px;
    color: #333;
    line-height: 1.2;
    font-family: 'Assistant', sans-serif;
  }


  .card-footer::before {
    content: "✔";
    color: green;
    font-weight: bold;
    margin-left: 6px;
    font-size: 1.9rem;
  }

  .card-footer {
    border-top: 1px solid #003366;
    font-size: 0.9rem;
    color: #555;
  }

  .review-card {
    background: white;
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .review-card img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
  }

  .review-swiper {
    width: 90%;
    padding: 2rem 0;
  }


  .button {
    background: #0074d9;
    color: white;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }


  .area-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .area-button:hover {
    background-color: #005fa3;
  }


  .sticky-social {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #003366;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    z-index: 1000;
  }

  .sticky-social a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
    font-size: 1.2rem;
  }

  .whatsapp-btn {
    background: #239b08;
  }

  .facebook-btn {
    background: #3b5998;
  }

  .phone-btn {
    background: #f7f7f7;
  }

  .phone-btn i {
    color: green;
  }

  .tg-button {
    background-color: #0088cc;
    color: white;
  }

  .sticky-social a:hover {
    opacity: 0.8;
  }



  footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 5px;
    margin-bottom: 55px;
  }


  .area-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
    color: inherit;
  }

  .area-card:hover {
    transform: translateY(-4px);
  }

  .area-card h4 {
    margin: 0.5rem 0;
    color: #003366;
  }

  .area-img {
    background-color: #e0e0e0;
    height: 100px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }

  .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .area-card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.2s ease;
    color: inherit;
  }

  .area-card:hover {
    transform: translateY(-4px);
  }

  .area-card h4 {
    margin: 0.5rem 0;
    color: #003366;
  }

  details {
    margin: 1rem 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: #fafafa;
  }

  summary {
    font-weight: bold;
    cursor: pointer;
    color: #003366;
  }

  summary:hover {
    text-decoration: underline;
  }


  .form-container {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);

  }

  label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #333;
  }

  input,
  select,
  textarea,
  button {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
  }

  input:focus,
  textarea:focus,
  select:focus {
    border-color: #2196f3;
    outline: none;
    box-shadow: 0 0 5px rgba(33, 150, 243, 0.3);
  }

  .form-group {
    display: flex;
    gap: 1rem;
  }

  .form-group>div {
    flex: 1;
  }

  button {
    background-color: #0d47a1;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
  }

  button:hover {
    background-color: #1565c0;
  }

  #result {
    text-align: center;
    font-weight: bold;
    margin-top: 1rem;
    color: #0d47a1;
  }

  .hero {
    position: relative;
    overflow: hidden;
    padding: 0;
    color: white;
    text-align: center;
  }

  .hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%) blur(3px);
    /* כהות וטשטוש */
    transition: filter 0.3s ease;
  }

  .hero-image img:hover {
    filter: brightness(50%) blur(0);
  }

  .hero-text {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
  }

  .no-padding {
    padding: 0;
  }

  .small-move-hero {
    position: relative;
    height: auto;
    overflow: hidden;
  }

  .small-move-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) blur(2px);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }

  .small-move-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    padding: 3rem 1.5rem;
  }

  .small-move-content {
    max-width: 1000px;
    margin: auto;
    color: white;
    font-size: 18px;
    line-height: 1.6;
  }

  .small-move-content h3 {
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
  }

  .small-move-content ul {
    list-style: disc;
    padding-right: 2rem;
  }



  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(10px);
    }
  }





  @media(max-width: 600px) {
    .hero-text {
      padding: 2rem 1rem;
      font-size: 0.95rem;
    }

    .small-hero {
      max-width: 1fr;
    }
  }