<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css">
  <link rel="stylesheet" href="port.css"> <!-- You can reuse this -->
  <style>
    body {
      background-color: #f9f9ff;
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
    }

    .project-header {
      padding: 100px 50px 30px 50px;
      text-align: center;
      background-color: #E6E6FA;
    }

    .project-header h1 {
      color: #7d2ae8;
      font-size: 2.5em;
      margin-bottom: 10px;
    }

    .project-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px;
      gap: 30px;
    }

    .project-card {
      background: #fff;
      border-radius: 10px;
      width: 500px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .project-card:hover {
      transform: translateY(-5px);
    }

    .project-card h3 {
      color: #333;
      margin-bottom: 10px;
    }

    .project-card p {
      color: #666;
      font-size: 0.95em;
      margin-bottom: 15px;
    }

    .project-card a {
      display: inline-block;
      padding: 10px 20px;
      background-color: #7d2ae8;
      color: white;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s ease;
    }

    .project-card a:hover {
      background-color: #5a1fcf;
    }

    .back-link {
      text-align: center;
      margin-top: 20px;
    }

    .back-link a {
      color: #7d2ae8;
      text-decoration: none;
      font-weight: 500;
    }

    .back-link a:hover {
      text-decoration: underline;
    }