.projects-section {
  position: relative;
  min-height: 100vh;
}

.projects-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0,255,255,0.1), transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(128,0,128,0.1), transparent 50%),
    radial-gradient(circle, rgba(0,0,255,0.05), transparent 70%);
  z-index: 0;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.project-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.projects-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem auto;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.5s ease;
  background: rgba(0,0,0,0.8);
}

.project-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.25);
  border-color: rgba(255,255,255,0.2);
}

.project-card .image {
  position: relative;
  overflow: hidden;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card .info {
  padding: 1rem;
  text-align: left;
}

.project-card .info h3 {
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: #fff;
}

.project-card .info p {
  color: #aaa;
  font-size: 0.9rem;
}

.project-details {
  margin-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 0.5rem;
  font-size: 0.8rem;
  color: #888;
}

.view-more {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(to right, #0a0a0a, #242424);
  border: 2px solid white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-more:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,255,0.25);
  color: #fff;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}