/* Project Card Component Styles */
.project-card {
  background: linear-gradient(135deg, #1d4ed8 0%, #312e81 100%);
  color: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(29, 78, 216, 0.4);
}

.project-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.project-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-deadline {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-deadline::before {
  content: "⏰";
  font-size: 0.9rem;
}

.project-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.project-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  flex-grow: 1;
  margin-bottom: 25px;
}

.project-button {
  background: white;
  color: #1d4ed8;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  font-weight: 500;
  text-align: center;
  margin-top: auto;
}

.project-button:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.project-requirements {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.project-requirements h4 {
  color: white;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-requirements ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-requirements li {
  padding: 4px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.project-requirements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #90EE90;
  font-weight: bold;
}