
/* Projects Section */


.projects-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    background-color: #1e293b;
    border-radius: 12px;
  }
  
  .projects-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .projects-intro {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .projects-intro p {
    color: #d1d5db;
    font-size: 1.125rem;
  }
  
  .filter-buttons {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background-color: #1d4ed8;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  @media (min-width: 768px) {
    .projects-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (min-width: 1024px) {
    .projects-grid {
      grid-template-columns: 1fr 1fr 1fr;
    }
  }
  
  .project-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-item:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  .project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
  }

  .project-image {}
  
  .project-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .project-description {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .project-details {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
  }
  
  .project-details li {
    color: #d1d5db;
    font-size: 0.875rem;
  }
  
  .project-link, .project-demo {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    margin-right: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .project-link:hover, .project-demo:hover {
    background-color: #1d4ed8;
  }


@media (max-width: 500px) {

  .filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
.project-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-content a {
  width: 100%;
  margin-bottom: 10px;
}
}
  
