
  body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    background-color: #1e1e2f;
    color: #fff;
  }
  
  .container {
  
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }
  
  .navbar {
    background-color: #12121c;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  
  .navbar h1 {
    margin: 0;
    color: #ffc107;
  }
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
      }
  
  .logo {
    color: #ffc107;
    font-size: 22px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  
  .nav-links li a {
  
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #ff9800;
  }
  
  
  .hero {
    text-align: center;
    padding: 40px 20px;
    background-color: #2a2a40;
  
    box-shadow: inset 0 0 10px #00000033;
  }
  
  .hero h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .hero p {
    color: #ccc;
    font-size: 18px;
  }
  
  .products {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    padding: 20px;
    gap: 20px;
    scroll-behavior: smooth;
  }
  
  
  .products::-webkit-scrollbar {
    height: 10px;
  }
  
  .products::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 5px;
  }
  
  .product-card {
    flex: 0 0 250px;
    background-color: #2e2e44;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba;
    transition: transform 0.3s ease;
    text-align: center;
  }
  .product-card:hover {
    transform: translateY(-10px);
  
  }
  
  .product-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .product-card h3 {
    color: #ffd54f;
    margin-bottom: 10px;
  }
  
  .product-card p {
    margin: 5px 0;
    color: #ccc;
  }
  
  .price {
    font-size: 20px;
    margin-top: 10px;
   }
  
  button {
    margin-top: 10px;
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background-color: #e64a19;
  }
  
  footer {
    background-color: #12121c;
  
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    font-size: 14px;
    color: #aaa;
  }
  .section-title {
    text-align: center;
    margin-top: 40px;
  }
  
  .section-title h2 {
    font-size: 26px;
    color: #ffc107;
    border-bottom: 2px solid #ff9800;
    display: inline-block;
    padding-bottom: 5px;
  }
  .menu-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
  }
  
  @media (max-width: 768px) {
    .menu-toggle {
  
      display: block;
    }
    
    .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
      background-color: #12121c;
      position: absolute;
      top: 60px;
      right: 0;
      padding: 10px 0;
      box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    }
    
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
  
      margin: 10px 0;
    }
  }
  