body {
  font-family: 'Inter', sans-serif;
  background: #f4f6f8;
  color: #333;
  padding: 40px 20px;
}

.projects-section {
  max-width: 1200px;
  margin: auto;
}

.projects-section h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.highlight {
  color: #0d6efd;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-card {
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h2 {
  margin-bottom: 10px;
  font-size: 20px;
  color: #0d0d0d;
}

.project-card p {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #444;
}

.project-card a {
  text-decoration: none;
  color: #0d6efd;
  font-weight: 500;
}

.project-card a:hover {
  text-decoration: underline;
}

/* Light Background Colors */
.light-blue { background-color: #e6f0ff; }
.light-orange { background-color: #fff3e6; }
.light-green { background-color: #e6fffa; }
.light-pink { background-color: #ffe6f0; }
.light-yellow { background-color: #fffce6; }
.light-cyan { background-color: #e6ffff; }
.light-violet { background-color: #f2e6ff; }
.light-gray { background-color: #fff3e6; }

/* Responsive */
@media (max-width: 600px) {
  .projects-section h1 {
    font-size: 2rem;
  }
}

#backHome{
  text-decoration: none;
  margin: 30px auto 0;
  display: block;
  width: fit-content;
  background-color: #0d6efd;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease;
}
