 /* Custom Styles */
    body {
      background-color: #f8f9fa;
      color: #333;
      font-family: 'Arial', sans-serif;
    }

    header {
      background: linear-gradient(135deg, #6a11cb, #2575fc);
      color: #fff;
      padding: 60px 0;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      font-weight: bold;
    }

    header p {
      font-size: 1.2rem;
      margin-top: 10px;
    }

    .section-title {
      font-size: 2rem;
      color: #333;
      margin-bottom: 40px;
    }

    .project-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
      cursor: pointer;
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .project-image {
      position: relative;
      overflow: hidden;
    }

    .project-image img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .project-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .project-card:hover .project-overlay {
      opacity: 1;
    }

    .project-link {
      color: #fff;
      font-size: 1.5rem;
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .project-link:hover {
      color: #2575fc;
    }

    .project-content {
      padding: 20px;
    }

    .project-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #333;
    }

    .project-description {
      font-size: 1rem;
      color: #666;
      margin-bottom: 15px;
    }

    .project-tech {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
    }

    .tech-badge {
      background: #e9ecef;
      color: #333;
      padding: 5px 10px;
      border-radius: 5px;
      font-size: 0.9rem;
    }

    .github-button {
      display: inline-flex;
      align-items: center;
      background: #333;
      color: #fff;
      padding: 8px 15px;
      border-radius: 5px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .github-button:hover {
      background: #2575fc;
    }

    .github-button i {
      margin-right: 8px;
    }