.projects-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}
.project-card {
  width: 320px;
  height: AUTO;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid cyan;
  border-radius: 25px;
  text-align: center;
  transition: 0.4s ease;
  box-shadow: 0 0 25px cyan;
}
.project-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 50px cyan;
}
.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 20px cyan;
  border: 2px solid cyan;
}
.projects-title {
  text-align: center;
  color: cyan;
  font-size: 55px;
  margin-top: 40px;
  margin-bottom: 60px;
  text-shadow: 0 0 20px cyan;
}
.project-card h2 {
  color: cyan;
  font-size: 30px;
  margin-bottom: 10px;
}
.project-card h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 15px;
}
.project-card p {
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}
.project-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.project-buttons a {
  padding: 10px 20px;
  border: 2px solid cyan;
  border-radius: 30px;
  color: cyan;
  text-decoration: none;
  transition: 0.3s;
}
.project-buttons a:hover {
  background: cyan;
  color: black;
  box-shadow: 0 0 25px cyan;
}
/*Projects Page Styles*/
body {
  background: #050816;
  overflow-x: hidden;
}
/* Animated Background */
.project-light {
  position: fixed;
  width: 350px;
  height: 350px;
  background: cyan;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.15;
  top: 10%;
  left: 5%;
  animation: move1 8s ease-in-out infinite;
  z-index: -1;
}
.project-light2 {
  position: fixed;
  width: 300px;
  height: 300px;
  background: #00ffee;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  bottom: 5%;
  right: 5%;
  animation: move2 10s ease-in-out infinite;
  z-index: -1;
}
@keyframes move1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes move2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* Projects Grid */
.projects-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 80px 40px;
}
/* Project Card */
.project-card {
  width: 320px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(0, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
  position: relative;
}
.project-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 0 40px cyan;
}
/* Image */
.project-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.5s;
}
.project-card:hover .project-img {
  transform: scale(1.08);
}
/* Text */
.project-card h2 {
  color: cyan;
  text-align: center;
  margin-top: 20px;
  text-shadow: 0 0 15px cyan;
}
.project-card p {
  color: white;
  text-align: center;
  padding: 15px;
}
/* Button */
.project-btn {
  display: block;
  width: fit-content;
  margin: 20px auto;
  padding: 10px 20px;
  border: 2px solid cyan;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  transition: 0.4s;
}
.project-btn:hover {
  background: cyan;
  color: #050816;
  box-shadow: 0 0 20px cyan;
}
