.project-lists {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 100vw;
  min-height: 100vh;
  padding: 40px 20px;
  box-sizing: border-box;
  /* background-color: #f9f9f9; */
  background-color: #f9f9f9;
}

.project-head {
  text-align: center;
  margin-bottom: 30px;
}

.project-head .heading {
  font-size: 2.5rem;
  color: #333;
  font-weight: 700;
  font-family: "Arial", sans-serif;
}

.projects {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  width: 100vw;
  min-height: 90vh;
  padding: 0 10px;
  box-sizing: border-box;
}
.span2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  margin-top: 15px;
  margin-left: 620px;
  border: 1.5px solid rgba(255, 0, 0, 0.8);
  box-shadow: 0 0 5px red, 0 0 7px red, 0 0 9px red;
}

.one {
  background-image: url("/image/weather.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}
.project-items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 350px;
  height: 400px;
  box-sizing: border-box;
  border-radius: 21px;
  border: 2px solid #ff0000;
  background-color: white;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 15px;
}

.two {
  background-image: url("/image/audio.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}
.three {
  background-image: url("/image/e-government.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}
.four {
  background-image: url("/image/calculator.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}

.five {
  background-image: url("/image/to-do-list.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}

.six {
  background-image: url("/image/tiktacto.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}
.seven {
  background-image: url("/image/facebook.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  height: 100vh;
  width: 100%;
}
.project-items:hover {
  box-shadow: 0 8px 16px rgba(255, 0, 0, 0.4);
  transform: translateY(-5px);
}

.project-items img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

.project-description {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.project-description button {
  /* background-color: #31B978; */
  /* background-color: red; */
  background: linear-gradient(145deg, #85b931, red);
  border: none;
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.4s ease;
}

/* .project-description button:hover {
    background: linear-gradient(90deg, #31B978, red);
} */
/* #31B978 */
