:root {
  --main-gradient: linear-gradient(to right, #0ea5e9, #8b5cf6);
  --background-dark: #0f172a;
  --text-light: #f1f5f9;
  --text-muted: #94a3b8;
  --accent-blue: #38bdf8;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-light);
  line-height: 1.6;
}
html[lang="he"] {
  direction: rtl;
  text-align: right;
  font-family: 'Assistant', sans-serif; /* גופן נעים לעברית */
}

html[lang="en"] {
  direction: ltr;
  text-align: left;
  font-family: 'Inter', sans-serif; /* גופן נעים לאנגלית */
}


.navbar-dark .navbar-nav .nav-link {
  color: white;
  margin: 0 0.5rem;
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #60a5fa;
}

.navbar-brand .site-name {
  font-size: 1.5rem;
  font-weight: bold;
  background: var(--main-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.site-header {
display: flex;
align-items: center;
padding: 1rem 2rem;
background-color:#60a5fa;
}

.logo-container {
display: flex;
align-items: center;
text-decoration: none;
color: inherit;
}

.logo-container:link,
.logo-container:visited,
.logo-container:hover,
.logo-container:active {
text-decoration: none;
color: inherit;
}
.logo {
height: 50px;
width: auto;
transition: transform 0.5s ease;
margin-left: 12px;
}

.logo:hover {
transform: rotate(10deg) scale(1.05);
}

@keyframes flipY {
from { transform: rotateY(0deg); }
to { transform: rotateY(360deg); }
}

.logo.spin {
animation: flipY 3s linear infinite;
transform-origin: center;

}

.site-name {
font-size: 1.8rem;
font-weight: bold;
letter-spacing: 1px;
text-decoration: none;
}

.form-select {
  background-color: #1e293b;
  color: white;
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  border: 1px solid #4b5563;
}


nav a {
margin: 0 1rem;
text-decoration: none;
color: white; /* או צבע אחר שתבחר */
transition: color 0.3s ease;
}

nav a:hover {
color: #38bdf8; /* צבע מודגש כשעוברים עם העכבר */
}

  
  .cta-btn {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
  }
  
  .cta-btn:hover {
    background-color: var(--accent-blue);
    color: #0f172a;
  }
  
  
  .hero-buttons button {
    margin: 0 0.5rem;
  }
  

.lang-switcher {
  position: fixed;
  top: 5rem;
  right: 2rem;
  z-index: 100;
}

#language-button {
  background: rgba(0, 0, 0, 0.4);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 0.3rem;
}

#language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #1e293b;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 0.2rem;
}

#language-options button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: white;
  padding: 0.3rem;
  cursor: pointer;
  text-align: right;
}

#language-options button:hover {
  background-color: #3b3b3b;
}





.services-section {
  position: relative;
  background-image: url('images/image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  overflow: hidden;
  color: white;
  
}

/* תמונת רקע - מכסה את כל הסקשן */
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* שכבת כהות מעל הרקע */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 70% כהות */
  z-index: 1;
}


/* תוכן מעל הרקע והשכבה */
.services-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 60px;
}





/* כרטיס שירות */
.service-card {
  background: rgba(0, 0, 0, 0.5); /* רקע שקוף */
  backdrop-filter: blur(20px); /* אפקט טשטוש לרקע מאחור */
  -webkit-backdrop-filter: blur(20px); /* תמיכה בספארי */
  color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2); /* גבול עדין */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* גריד לשירותים */
.services-grid {
  display: grid;
  gap: 2rem;
  padding: 2rem;
}




/* אפקט ריחוף */
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* כותרת הכרטיס */
.service-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

/* רשימת השירותים */
.service-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.service-card ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

/* סימון ✅ חדש */
.service-card ul li::before {

  color: #00ffae;
  margin-right: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}




  
  
  footer {
    background-color: #1e293b;
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  