/* project.css */
.projects-section {
  position: relative;
  padding: 120px 20px;
  background-color: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  z-index: 1;
}

/* Starry sky background */
.stars-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://i.pinimg.com/originals/78/d3/7a/78d37a006aae010ee1b63f206419feb9.gif');
  background-size: cover;
  /* animation: starsMove 60s linear infinite;
  z-index: 0;
  pointer-events: none; */
}

@keyframes starsMove {
  0% { background-position: 0 0; }
  100% { background-position: -1000px 1000px; }
}

/* Comets falling effect */
/* body::before {
  content: "";
  position: fixed;
  top: -10%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('') ;
  background-size: 100px;
  animation: fallComets 30s linear infinite;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
} */

@keyframes fallComets {
  0% { background-position: 0 -800px; }
  100% { background-position: -1000px 1000px; }
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 20px;
  color: #ffe600;
  z-index: 2;
  position: relative;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #aaa;
  z-index: 2;
  position: relative;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  z-index: 2;
  position: relative;
}

.project-card {
  background-color: rgba(30, 30, 30, 0.8);
  border: 1px solid #444;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  border: 1px solid #ffe600;
}

.project-card h3 {
  color: #00c4ff;
  font-size: 22px;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 12px;
}

.project-card a {
  text-decoration: none;
  color: #ffe600;
  font-weight: bold;
}

