/* about */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 100px auto;
  padding: 0 20px;
  background-color: transparent;
  /* background-color: rgb(2,2,2); */
}

.box {
  background-color: #000;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgb(229, 231, 234);
  box-shadow: 0 0 25px rgba(245, 247, 247, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 45px rgba(245, 247, 247, 0.6);
}

.animated-heading {
  font-size: 2rem;
  margin-bottom: 15px;
  color: rgb(245, 247, 247);
  animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
  from {
    text-shadow: 0 0 5px rgba(245, 247, 247, 0.4), 0 0 10px rgba(245, 247, 247, 0.4);
  }
  to {
    text-shadow: 0 0 15px rgba(245, 247, 247, 0.9), 0 0 25px rgba(245, 247, 247, 1);
  }
}

.box ul {
  padding-left: 20px;
  line-height: 1.6;
}

body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.6s;
}

.fade-in {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateX(0);
}
