.projects {
  padding: 4rem 1rem;
  text-align: center;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  background: #222121;
  border: 2px solid #302e2e;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseGlow 3s infinite;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #00ffff, 0 0 10px #00ffff;
}
.glow {
  border: 2px solid #23a48a;
  box-shadow: 0 0 15px #0c745f, 0 0 30px #1a826e;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 20px rgb(52, 215, 215);
  }
  50% {
    box-shadow: 0 0 28px rgb(16, 168, 168), 0 0 30px rgb(19, 135, 135);
  }
  100% {
    box-shadow: 0 0 10px rgb(18, 156, 156);
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px #00ffff;
  }
  50% {
    box-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff;
  }
  100% {
    box-shadow: 0 0 10px #00ffff;
  }
}
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.card h3 {
  margin: 0.5rem 0;
  color: #00e1ff;
}
.card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1rem;
}
.card a {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.5rem 1rem;
  background: #00e1ff;
  color: #111;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.card a:hover {
  background: #00b8cc;
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .projects {
    padding: 2rem 0.5rem;
  }
  .card {
    padding: 1rem;
  }
}
/* End of file: styles/projects.css */