.about-section {
  position: relative;
  padding: 50px 0 80px 0;
  background: linear-gradient(180deg, #0a0a15 0%, #000000 100%);
  text-align: center;
  overflow: hidden;
}

.about-intro {
  font-size: 1.4rem;
  max-width: 800px;
  margin: 0 auto 60px;
  color: #ccc;
  line-height: 1.8;
  z-index: 2;
  position: relative;
  animation: fadeInUp 1s ease-out both;
  font-family: 'Abel', sans-serif;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  z-index: 2;
  position: relative;
}

.about-card {
  background: #0f0f1f;
  border-radius: 20px;
  padding: 30px 20px;
  width: 280px;
  box-shadow:
    0 0 10px #ff2a2a33,
    0 0 20px #4b3bff33,
    0 10px 30px rgba(0,0,0,0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease-out both;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 20px #ff2a2a80,
    0 0 40px #4b3bff80,
    0 15px 40px rgba(0,0,0,0.8);
}

.card-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon img {
  width: 60px;
  height: auto;
  filter:
    drop-shadow(0 0 10px #ff2a2a)
    drop-shadow(0 0 20px #4b3bff);
  transition: transform 0.3s ease;
}

.about-card:hover .card-icon img {
  transform: scale(1.1);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 600;
  font-family: 'Aton', sans-serif;
}

.about-card p {
  font-size: 1.2rem;
  color: #ccc;
  line-height: 1.6;
  font-family: 'Abel', sans-serif;
}