
    /* General Styling */
    html,body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9f9f9;
      color: #333;
      overflow-x: hidden; /* מונע גלילה אופקית */
    }
    
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background-color: #000;
      color: #fff;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo img {
  display: block;
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

    .logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #fff;
      text-decoration: none;
    }
    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 20px;
    }
    nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    nav ul li a:hover {
      color: #ffcc00;
    }
    .cta .cta-button {
      padding: 10px 20px;
      background-color: #ffcc00;
      color: #000;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    .cta .cta-button:hover {
      background-color: #ffa500;
    }
    #mobile-menu {
      display: none;
    }
    #menu-toggle {
      background: none;
      border: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        background-color: #000;
        position: absolute;
        top: 60px;
        right: 10px;
        width: 200px;
        padding: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }
      nav ul.show {
        display: flex;
      }
      #mobile-menu {
        display: block;
      }
    }
    
    
    
    
     .hero {
      position: relative;
      text-align: center;
      padding: 50px 20px;
      background: url('cybersecurity-background.jpg') no-repeat center center / cover;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      animation: fadeIn 1s ease-out;
    }
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      animation: fadeIn 1.5s ease-out;
    }

    
    
    
    
    
    
    .cta-buttons {
      margin-top: 20px;
    }
    .cta-buttons a {
      display: inline-block;
      padding: 10px 20px;
      margin: 10px;
      background-color: #007bff;
      color: #fff;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s;
    }
    .cta-buttons a:hover {
      background-color: #0056b3;
    }
    @media (max-width: 768px) {
      .comparison-table {
        font-size: 0.9rem;
      }
      .comparison-table th,
      .comparison-table td {
        padding: 10px;
      }
    }
    
    
    
    
    
    video {
      width: 100%;
      max-width: 700px;
      border-radius: 10px;
      margin-top: 20px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
      .cta-buttons {
        flex-direction: column;
        gap: 10px;
      }
    }

    /* Keyframes for Animation */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    
    
    
   .plans-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    .plans-section h2 {
      font-size: 32px;
      margin-bottom: 15px;
      color: #222;
    }
    .plans-section p {
      color: #555;
      margin-bottom: 40px;
    }
    .plans-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 25px;
    }
    .plan-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0,0,0,0.15);
      padding: 30px;
      text-align: left;
      position: relative;
    }
    .plan-card.highlighted {
      border: 2px solid #00a0a0;
    }
    .badge {
      background: #00a0a0;
      color: #fff;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: 10px;
    }
    .plan-card h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: #222;
    }
    .plan-card .price {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #00a0a0;
    }
    .plan-card ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }
    /* FIX: Set li to relative for tooltip positioning */
    .plan-card ul li {
      margin: 10px 0;
      font-size: 14px;
      color: #444;
      position: relative; /* Context for absolute tooltip */
    }
    .plan-card ul li i {
      color: #00a0a0;
      margin-right: 8px;
    }
    .info {
      display: inline-block;
      margin-left: 6px;
      font-size: 12px;
      font-weight: bold;
      color: #00a0a0;
      cursor: help;
      border: 1px solid #00a0a0;
      border-radius: 50%;
      width: 16px;
      height: 16px;
      text-align: center;
      line-height: 14px;
    }
    .info:hover {
      background: #00a0a0;
      color: #fff;
    }

    /* FIX: Pure CSS Tooltip Implementation */
    .info[title] {
      pointer-events: auto; /* Ensure it is clickable/hoverable */
      position: relative;
    }

    /* Tooltip content box */
    .info[title]:hover::after {
      content: attr(title); /* Pull text from the title attribute */
      position: absolute;
      left: 100%; /* Position to the right of the icon */
      top: 50%;
      transform: translateY(-50%);
      white-space: normal; /* Allow text wrapping */
      background: #333;
      color: #fff;
      padding: 8px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: normal;
      z-index: 10;
      width: 250px; /* Set a max width for readability */
      margin-left: 10px; /* Space between icon and tooltip */
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    
    /* Optional: Tooltip triangle (pointer) */
    .info[title]:hover::before {
      content: '';
      position: absolute;
      left: calc(100% + 5px); /* Position the triangle next to the icon */
      top: 50%;
      transform: translateY(-50%);
      width: 0; 
      height: 0; 
      border-top: 6px solid transparent;
      border-bottom: 6px solid transparent; 
      border-right: 6px solid #333; /* Color matches tooltip background */
      z-index: 11;
      margin-left: 10px;
    }
    /* END FIX */

    .cta-register {
      margin-top: 15px;
      text-align: center;
    }
    .cta-note {
      font-size: 13px;
      color: #666;
      margin-bottom: 10px;
    }
    .signup-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-bottom: 10px;
      padding: 12px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .signup-btn.google {
      background: #fff;
      border: 1px solid #ccc;
      color: #444;
    }
    .signup-btn.google:hover {
      background: #f7f7f7;
    }
    .signup-btn.azure {
      background: #0078d4;
      color: #fff;
    }
    .signup-btn.azure:hover {
      background: #005a9e;
    }
    
       .comparison-section {
      padding: 50px 20px;
      background-color: #fff;
      text-align: center;
    }
    .comparison-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }
    .comparison-section p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #555;
    }
    .comparison-table {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      border-collapse: collapse;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .comparison-table th,
    .comparison-table td {
      padding: 15px;
      text-align: center;
      border: 1px solid #ddd;
    }
    .comparison-table th {
      background-color: #f4f4f4;
      font-size: 1.2rem;
    }
    .comparison-table .highlight {
      background-color: #ffcc00;
      font-weight: bold;
    }
    .comparison-table tr:nth-child(even) {
      background-color: #f9f9f9;
    }
    .comparison-table td:first-child {
      font-weight: bold;
      text-align: left;
    }
    
     .faq-section {
      padding: 50px 20px;
      background-color: #fff;
      text-align: center;
    }
    .faq-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }
    .faq-section p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #555;
    }
    .faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: left;
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
      padding: 15px 0;
    }
    .faq-item h3 {
      font-size: 1.2rem;
      margin: 0;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-item h3:hover {
      color: #007bff;
    }
    .faq-item p {
      font-size: 1rem;
      margin: 10px 0 0;
      display: none;
      transition: max-height 0.3s ease;
    }
    .faq-item.open p {
      display: block;
    }
    .faq-item i {
      transition: transform 0.3s ease;
    }
    .faq-item.open i {
      transform: rotate(180deg);
    }
    
    
    
    
    
      .section {
      padding: 50px 20px;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
    }
    .section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }
    .section p {
      font-size: 1.2rem;
      margin-bottom: 40px;
      color: #555;
    }
    /* Testimonials Section */
    .testimonial {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .testimonial .logo {
      max-width: 150px;
    }
    .testimonial .text {
      max-width: 800px;
      text-align: left;
    }
    .testimonial .text h3 {
      font-size: 1.5rem;
      color: #007bff;
      margin-bottom: 10px;
    }
    /* Features Section */
    .features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .feature-item {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      max-width: 300px;
      text-align: left;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .feature-item i {
      font-size: 2rem;
      color: #007bff;
      margin-bottom: 10px;
    }
    /* Blog Section */
    .blog-posts {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .blog-post {
      max-width: 300px;
      text-align: left;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    .blog-post:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }
    .blog-post h3 {
      font-size: 1.2rem;
      color: #007bff;
      margin-bottom: 10px;
    }
    
    
    
    
      footer {
      background-color: #000;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }
    footer .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }
    footer .footer-column {
      flex: 1;
      min-width: 200px;
    }
    footer h3 {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: #ffcc00;
    }
    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    footer ul li {
      margin-bottom: 10px;
    }
    footer ul li a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    footer ul li a:hover {
      color: #ffcc00;
    }
    footer .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }
    footer .social-icons a {
      color: #fff;
      font-size: 1.5rem;
      transition: color 0.3s ease;
    }
    footer .social-icons a:hover {
      color: #ffcc00;
    }
    footer .copyright {
      margin-top: 20px;
      font-size: 0.9rem;
      color: #aaa;
    } 
    
    
   
 /* Typing Tagline Section */
.text-container {
  position: absolute;
  top: 20%;
  left: 50%;
  color: #ffcc00;
  transform: translate(-50%, -20%);
  text-align: center;
  z-index: 3;
}
/*.text-container h1 {
  font-size: 4em;
  background: linear-gradient(90deg, rgba(0, 255, 0, 0.9), rgba(0, 150, 255, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(0, 255, 0, 0.8), 0 0 30px rgba(0, 150, 255, 0.8);
}
*/


.text-container h1 {
  font-size: 4em;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(30, 144, 255, 0.9)); /* White to Dodger Blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(30, 144, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.8);
  text-align: center;
  font-weight: bold;
  margin: 20px 0;
}

.text-container h1::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background-color: rgba(30, 144, 255, 0.9); /* Blue underline */
}

@media (max-width: 768px) {
  .text-container h1 {
    font-size: 2.5em; /* Adjust font size */
    text-shadow: none; /* Simplify for mobile */
  }
}

/*  */



.text-container p {
  font-size: 1.5em;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid rgba(255, 0, 0, 0.8);
  animation: typing 3s steps(30, end), blink-caret 0.5s step-end infinite;
}
canvas {
  display: block;
  background-color: black; /* Retains black canvas background */
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 50px 20px;
  background: url('cybersecurity-background.jpg') no-repeat center center / cover; /* Hero image */
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Keeps the dark overlay */
  z-index: 1;
}


/* Keyframes */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: rgba(255, 0, 0, 0.8); }
}

