.projects-section {
    color: #FFFFFF;
    padding: 80px 1rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .projects-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
  }
  
  .project-filters {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .project-filters .filter-btn {
    background: none;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 120px;
  }
  
  .project-filters .filter-btn:hover,
  .project-filters .filter-btn.active {
    background-color: #FFFFFF;
    color: #141218;
  }
  
 
  .project-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  

  .project-card {
    background-color: #161622;
    border-radius: 20px;
    padding: 40px;
  

    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 40px;
    row-gap: 10px;
  }
  
  .project-card h3 {
    grid-column: 1;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 600;
  }
  
  .project-card p {
    grid-column: 1;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .project-card .show-project-link {
    grid-column: 1;
    align-self: start;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }
  
  .project-card .show-project-link:hover {
    opacity: 0.8;
  }
  
  .project-card img {
    grid-column: 2;
    width: 100%;
    max-width: 400px;
    height: auto;
    justify-self: end;
    border-radius: 6px;
  }
  
  .show-all-btn {
    display: block;
    margin: 40px auto 0;
    background-color: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .show-all-btn:hover {
    background-color: #FFFFFF;
    color: #141218;
  }
  

  @media (max-width: 768px) {
    .skills-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto;
      grid-template-areas:
        "dev"
        "ecom"
        "design"
        "agile";
    }
  
    .project-card {
      grid-template-columns: 1fr;
      grid-template-rows: auto auto auto auto;
    }
  
    .project-card img {
      grid-column: 1;
      grid-row: 1;
      justify-self: center;
      max-width: 80%;
      margin-bottom: 1rem;
    }
  
    .project-card h3 {
      grid-column: 1;
      grid-row: 2;
    }
  
    .project-card p {
      grid-column: 1;
      grid-row: 3;
    }
  
    .project-card .show-project-link {
      grid-column: 1;
      grid-row: 4;
      margin-top: 1rem;
    }
  }