/* About Styles */
#about h5 {
  color: #007bff;
  font-size: 1.3rem;
}

#about .card {
  background: white;
  border-radius: 15px;
}

#about .card-text {
  font-size: 1rem;
  color: #666;
}

/* Tool cards from skills */

.dark-mode #about {
  background: transparent;
}
#about .skill-card {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: none;
}

#about .skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1;
  background: linear-gradient(90deg, #28a745, #218838);
}

#about .skill-card .card-body {
  padding: 2rem;
  z-index: 2;
  position: relative;
}

#about .skill-card i {
  transition: all 0.3s ease;
}

#about .skill-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

#about .skill-card .card-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

#about .skill-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(59,130,246,0.4) !important;
}

.dark-mode #about .card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(59,130,246,0.3);
}

.dark-mode #about .skill-card {
  background: rgba(255,255,255,0.08);
}

.dark-mode #about .skill-card::before {
  background: linear-gradient(90deg, #1d4ed8, #3b82f6);
}

.dark-mode #about .skill-card:hover {
  box-shadow: 0 25px 50px rgba(59,130,246,0.4) !important;
}

.dark-mode #about .card-text {
  color: #cbd5e1;
}

.dark-mode #about .card-title {
  color: #f1f5f9;
}

#about .skill-card:hover .card-title {
  color: #ffc107;
}

