/* Unified Project Cards CSS */

/* Reset all project cards to same configuration */
.project-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(37, 37, 37, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Standardize project headers */
.project-header {
  background: linear-gradient(135deg, #2a2a72, #0a66c2);
  padding: 15px 20px;
  position: relative;
}

.project-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(58, 134, 255, 0.2) 0%, rgba(58, 134, 255, 0) 70%);
  z-index: 1;
}

.project-title {
  position: relative;
  z-index: 2;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: white;
  font-weight: 600;
}

.project-date, .project-company {
  position: relative;
  z-index: 2;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
}

.project-date i, .project-company i {
  margin-right: 5px;
}

/* Standardize project body */
.project-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.project-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.75);
}

/* Standardize key features */
.key-features {
  background: rgba(58, 134, 255, 0.1);
  border-radius: 8px;
  padding: 12px 15px;
  margin: 15px 0;
  border-left: 3px solid #3a86ff;
}

.key-features h6 {
  color: #3a86ff;
  margin-bottom: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.key-features h6 i {
  margin-right: 8px;
}

.key-features ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.key-features li {
  margin-bottom: 5px;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

/* Standardize project skills */
.project-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 15px;
}

.skill-tag {
  background: rgba(58, 134, 255, 0.15);
  color: #3a86ff;
  border-radius: 15px;
  padding: 3px 10px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.skill-tag i {
  margin-right: 4px;
  font-size: 0.8rem;
}

/* Standardize project link */
.project-link {
  display: inline-flex;
  align-items: center;
  color: #3a86ff;
  font-weight: 500;
  margin: 15px 0;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.project-link i {
  margin-right: 5px;
}