body {
  background-color: #020024;
  color: white;
}

.portfolio-section {
  padding: 80px 10%;
  text-align: center;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
}

.section-title .highlight {
  color: #1e90ff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #0d0d2b;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 15px #1e90ff33;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px #1e90ff66;
}

.project-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.project-card h3 {
  color: #1e90ff;
  margin-bottom: 10px;
}

.project-card p {
  font-size: 14px;
  color: #ccc;
}
