body {
    font-family: "Cairo", sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #4b0049;
    direction: rtl;
  }
  
  .project {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .project-content {
    flex: 1;
    min-width: 320px;
  }
  
  .project-content h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #4b0049;
  }
  
  .project-details h3 {
    font-size: 20px;
    color: #4b0049;
    margin: 15px 0 5px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .project-details p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .project-btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #ffcc00;
    border-radius: 30px;
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  
  .project-btn:hover {
    background: #ffcc00;
    color: #4b0049;
  }
  
  .project-image {
    flex: 1;
    text-align: center;
  }
  
  .project-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .project {
      flex-direction: column;
      text-align: center;
    }
  
    .project-content {
      order: 2;
    }
  
    .project-image {
      order: 1;
    }
  }
  