/* Attractive About Section Styles */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem 2rem 1rem;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 2.5rem;
  font-family: 'Sora', 'JetBrains Mono', monospace, sans-serif;


  color: #38bdf8;
  text-shadow: 0 0 12px #38bdf8, 0 0 0px #38bdf8;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
}

.about-card {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px 0 rgba(56, 189, 248, 0.25), 0 0 15px #38bdf8;
  border: 2px solid rgba(56, 189, 248, 0.3);
  backdrop-filter: blur(16px);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.about-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 70%);
  z-index: 0;

  pointer-events: none;
  animation: rotate 12s linear infinite;
}
@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.about-card:hover {
  box-shadow: 0 0 25px 2px #38bdf8, 0 2px 2px 0 rgba(56, 189, 248, 0.25);
}
.about-label {
  color: #38bdf8;
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #38bdf8;
}
.about-link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.about-link:hover {
  color: #38bdf8;
  text-shadow: 0 0 8px #38bdf8;
}
.about-desc {
  color: #e0e7ef;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  text-align: center;
  max-width: 600px;
  text-shadow: 0 0 8px #0ea5e9;
}
.about-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
}
@media (max-width: 600px) {
  .about-card {
    padding: 1.2rem 0.7rem;
  }
  .about-title {
    font-size: 2rem;
  }
  .about-grid {
    flex-direction: column;
    gap: 0.5rem;
  }
}
