  .custom-tabs {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .custom-tabs li {
      display: flex;
      align-items: center;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.5s ease-in-out ;
  }

  .custom-tabs .nav-link {
      background: none;
      border: none;
      color: #000;
      padding: 0;
      position: relative;
      transition: all 0.5s ease-in-out;
  }

  .custom-tabs .nav-link:hover,
  .custom-tabs .nav-link:focus {
      color: #007bff;
  }

  .custom-tabs .nav-link.active {
      color: #007bff;
  }

  /* Slash (/) after each tab except last one */
  .custom-tabs li::after {
      content: "/";
      margin: 0 0.5rem;
      color: #999;
  }

  .custom-tabs li:last-child::after {
      content: "";
  }

  /* Project card styles */
  .project-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
  }

  .project-card img {
      width: 100%;
      /* height: auto; */
      transition: transform 0.4s ease;
  }

  .project-card:hover img {
      /* transform: scale(1.05); */
  }

  .project-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      text-align: center;
      padding: 1rem;
  }

  .project-card:hover .project-overlay {
      opacity: 1;
  }