body {
    margin: 0;
    font-family: 'Assistant', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
  }
  
  .header {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
  }
  
  .nav {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
  }
  
  .nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  .nav a:hover {
    color: #f39c12;
  }
  
  /* כפתור המבורגר מוסתר במסך גדול */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* מדיה למסך קטן */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #333;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
  }

  .nav.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav a {
    padding: 10px 0;
    color: white;
  }

  .nav-container {
    position: relative;
  }
}

  .hero {
    position: relative;
    text-align: center;
    padding: 70px 0;
    color: white;
    overflow: hidden;
    z-index: 1;
  }
  
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: url('logobackground.png') center/cover no-repeat;
    filter: blur(5px);
    z-index: -2;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to left, #ffffff6e, hsla(0, 0%, 100%, 0.391));
    z-index: -1;
  }
  
  .hero-title-h1 {
    font-size: 6.5rem;
    margin-bottom: -0.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: fadeUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    font-family: 'Teko', sans-serif;
  }

  .hero-title {
    font-size: 4.0rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    margin-top: 0;
    margin-bottom: 0.5rem;

  }
  
  .hero-sub {
    font-size: 2.5rem;
    color: #fefefe;
    font-weight: 400;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    animation: fadeUp 2s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    margin-top: 0;
  }
  
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

  .portfolio {
    padding: 80px 0;
    background: #f7f7f7;
  }
  
  .portfolio .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 30px 0;
  }
  
  .image-card {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .image-card:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  }
  
  .image-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .image-box img {
    height: 100%;
    object-fit: cover;
  }
  
  .lightbox-overlay {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to   { opacity: 1; transform: scale(1); }
  }
  
  .section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: #222;
  }
  
  .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }


  
  .contact {
    padding: 60px 0;
  }
  
  form {
    display: grid;
    gap: 15px;
    max-width: 600px;
    margin: auto;
  }
  
  input, textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
  }
  
  button {
    padding: 12px;
    background-color: #e67e22;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  button:hover {
    background-color: #d35400;
  }
  
  button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
  }
  
  .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
  }
  
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }
  
  .footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
  }
  
  .animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
  }
  
  
  .animate.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo-link {
    display: inline-block;
    
  }
  
  .logo-img {
    height: 40px;
    max-width: 60px;
    width: auto;
    margin-left: 10px;
    vertical-align: middle;
  }
  
  .about, .services, .testimonials {
    padding: 80px 0;
    background-color: #fdfdfd;
  }

  
  .service-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    font-family: 'Assistant', sans-serif; /* גופן נעים בעברית */
  }
  
  .service-accordion details {
    border: none;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    padding: 0; /* ניהול ריווח רק בסיכום ובתוכן */
  }
  
  .service-accordion details[open] {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }
  
  .service-accordion summary {
    padding: 18px 24px 18px 24px; /* שמאל וימין */
    padding-right: 40px; /* תוספת ריווח מצד ימין עבור החץ */
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    list-style: none;
    direction: rtl;
    position: relative;
    transition: background-color 0.2s ease;
  }
  
  
  .service-accordion summary:hover {
    background-color: #f6f6f6;
  }
  
  .service-accordion summary::before {
    content: "◀";
    font-size: 0.85rem;
    position: absolute;
    right: 24px; /* במקום left */
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    color: #888;
  }
  
  .service-accordion details[open] summary::before {
    transform: translateY(-50%) rotate(-90deg);
    color: #f39c12;
  }
  
  
  /* טקסט תוכן */
  .service-accordion p {
    padding: 0 24px 20px 24px;
    line-height: 1.6;
    font-size: 1rem;
    color: #444;
    direction: rtl;
    text-align: right;
    background-color: #fff;
  }
  
  
  .testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 700px;
    padding: 15px 20px;
    background: #f0f0f0;
    border-right: 5px solid #f39c12;
    border-radius: 8px;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 10px;
  }
  
  .contact-cards .card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .contact-cards .card:hover {
    transform: translateY(-5px);
  }
  
  .contact-cards i {
    font-size: 1.5rem;
    color: #f39c12;
    margin-bottom: 10px;
  }
  
  .contact-cards p {
    margin: 0;
    font-size: 1rem;
    color: #333;
  }
  
  .contact-cards a {
    color: #f39c12;
    text-decoration: none;
  }

  .card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
  }
  
  .card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .about-section {
    background: linear-gradient(to right, #fff, #f7f7f7);
    padding: 100px 20px;
    text-align: right;
    direction: rtl;
  }
  
  .about-section .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .styled-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #222;
    position: relative;
    margin-bottom: 40px;
  }
  
  
  .about-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
  }
  
  .about-content p:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  /* אנימציית כניסה */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  