.projects-section {
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.projects-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #00ffcc;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-card {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 255, 204, 0.3);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-info h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  color: #00ffcc;
}

.project-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #00ffcc;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #00b894;
}

.more-projects-btn {
  margin-top: 30px;
  text-align: center;
}

.more-projects-btn .btn {
  padding: 12px 24px;
  background: #00ffcc;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.more-projects-btn .btn:hover {
  background: #00b894;
}
