body {
  background-color: black;
  color: white;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

.projects-section {
  padding: 80px 60px;
}

.section-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: bold;
}

.projects-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.project-card {
  border: 2px solid white;
  padding: 25px;
  border-radius: 10px;
  background-color: #000;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateX(-50px);
}

.project-card:hover {
  transform: translateX(0) scale(1.02);
  box-shadow: 0 0 20px white;
}

.project-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.tech-stack {
  font-weight: bold;
  margin-bottom: 10px;
}

.project-overview {
  line-height: 1.6;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-bottom {
  animation: fadeInUp 1.2s ease-out;
}
