/* Dark Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  padding: 1rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.hire-btn {
  padding: 0.5rem 1rem;
  background: #00b894;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.hire-btn:hover {
  background: #019875;
}

.projects-container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.project-card {
  background-color: #1f1f1f;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.amount {
  color: #00cec9;
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.rating {
  color: gold;
  margin-bottom: 0.5rem;
}

.review {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.view-btn {
  background: #0984e3;
  color: white;
  padding: 0.4rem 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}
