body {
    font-family: "Times New Roman", Times, serif;
}

.dark-bg{
    background-color: #1E1E1E;
}

.project-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card {
    height: 100%;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.btn-gradient{
    background : linear-gradient(45deg,  #444, #ff0077) !important;
    color: white !important;
    border: none !important;
}


.underline{
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
}
.underline::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;       
    height: 4px;       
    border-radius: 4px;
    background: linear-gradient(45deg, #444, #ff0077);
}

#navbar-placeholder {
    width: 100%;
    background-color: #333;
    color: #333;
    padding: 10px;
    text-align: center;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 0.5rem;
}

.skill-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #f5f5f5;
  color: #333;
  white-space: nowrap;
}

/* Dark-mode-ish variant if your card background is dark */
.card.dark .skill-chip {
  background: #333;
  color: #fff;
}
    