.projects {
  min-height: 100vh;
  padding: 160px 20px 120px;
}

.projects-container {
  max-width: 1200px;
  margin: auto;
}

.projects-header {
  text-align: center;
  margin-bottom: 80px;
}

.projects-header h2 {
  font-size: 48px;
  font-weight: 900;
}

.projects-header span {
  color: #38bdf8;
}

.projects-header p {
  color: #9ca3af;
  max-width: 600px;
  margin: auto;
}


.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.more-projects {
  display: none;
}

.project-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 20px;
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-card p {
  color: #9ca3af;
  margin-bottom: 15px;
}

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

.tech span {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
}

.project-buttons {
  display: flex;
  gap: 10px;
}

.project-buttons a {
  background: blue;
  padding: 8px 14px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.see-more-container {
  text-align: center;
  margin-top: 40px;
}

#seeMoreBtn {
  background: blue;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 16px;
}

.back-home {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}