.about-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9rem 6% 4rem;
}
.about-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(11, 15, 25, 0.9));
  backdrop-filter: blur(15px);
  padding: 4rem;
  border-radius: 30px;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}
.about-card:hover {
  border-color: rgba(56, 189, 248, 0.2);
  box-shadow: 0 25px 60px rgba(56, 189, 248, 0.1);
}
.about-card h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about-card strong {
  color: var(--text-main);
}

.mt-4 {
  margin-top: 3rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.about-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.about-box h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.about-box p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-card {
    padding: 2.5rem 1.5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
