/* Modern Project Cards */
.projects-section .project-card {
  background: var(--surface-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-section .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1) !important;
}

.projects-section .project-icon {
  color: var(--accent-color);
  background: linear-gradient(145deg,
      color-mix(in srgb, var(--accent-color), transparent 95%),
      color-mix(in srgb, var(--accent-color), transparent 85%));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.projects-section .project-icon i {
  transition: transform 0.3s ease;
}

.projects-section .project-card:hover .project-icon i {
  transform: scale(1.1);
}

.projects-section .project-content h5 {
  font-weight: 600;
  color: var(--heading-color);
}

.projects-section .project-content p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .projects-section .project-card {
    margin-bottom: 1rem;
  }

  .projects-section .project-content {
    padding: 1.25rem !important;
  }
}

@media (max-width: 576px) {
  .projects-section .project-icon {
    padding: 1.25rem !important;
  }

  .projects-section .project-content h5 {
    font-size: 1.1rem;
  }

  .projects-section .project-content p {
    font-size: 0.9rem;
  }
}