.project-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; 
  padding: 2rem;
}


.project-container > div {
  flex: 1 1 20rem;
  max-width: 20rem;
}

.skill-tags {
  margin-top: 0.5rem;         
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;  /* aligns circles starting a bit left */
  padding-left: 1rem;       /* indent from left edge */
  flex-wrap: wrap;
}

.skill-circle {
  background-color: #6c757d; /* Bootstrap secondary gray */
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px; /* fully rounded pill shape */
  font-size: 0.9rem;
  font-weight: 600;
  user-select: none;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  white-space: nowrap;
}

.card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

.card-link:hover .card {
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.page-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #333;
}

/* Desktop default */
.home-button {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-color: #212529;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hover effect (desktop) */
.home-button:hover {
  background-color: #343a40;
  transform: translateY(-50%) scale(1.05);
  color: #ffffff;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .home-button {
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 22px;
    font-size: 15px;
    border-radius: 40px;
  }

  .home-button:hover {
    transform: translateX(-50%);
  }
}