.bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, #667eea, #764ba2),
    url("../images/computer.png");
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity:0.5;
}
.buttons {
  margin:20px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content:center;
  position: sticky;
  top:0;
  z-index: 2;
  }
.buttons a,
.back {
  padding: 14px 36px;
  border-top-left-radius: 25px;
  border-bottom-right-radius: 25px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background: linear-gradient(to right,purple, #dd2476);
  color: white;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(221, 36, 118, 0.4);
}

.buttons a:hover,
.back:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 15px 35px rgba(238, 36, 211, 0.6);
}
  .slide-up h1 {
    text-align: center;
    color: purple; 
    margin-bottom: 20px;
  }

  
.card {
  max-width: 700px;
  margin: 70px auto;
  padding: 40px;
  border-radius: 22px;
  background: #fdfbff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}


/* Heading */
.card h1 {
  text-align: center;
  font-size: 42px;
  color: #4b007d;
  margin-bottom: 40px;
  position: relative;
}

.card h1::after {
  content: "";
  width: 90px;
  height: 4px;
  background: linear-gradient(to right, #7f00ff, #e100ff);
  display: block;
  margin: 14px auto 0;
  border-radius: 10px;
}


/* Project item */
.item {
  position: relative;
  padding: 22px 26px;
  margin-bottom: 26px;
  font-size: 18px;
  font-weight: 500;
  color: #2e004f;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.item::first-letter {
  font-size: 35px;
  vertical-align: middle;
}



.item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(120deg, #7f00ff, #ff00cc, #00c6ff);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Hover motion */
.item:hover {
  transform: translateX(14px);
}

.item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(255, 105, 180, 0.35),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.item:hover::after {
  opacity: 1;
}
.item ul{
    list-style-type:square;
    font-size: 20px;
}
.item img{
    width: 40px;
}
.card {
  animation: slide 1.5s ease;
}
@keyframes slide {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
footer {
            position: static;
            bottom: 15px;
            font-size: 13px;
            opacity: 0.6;
        }

