.filters {
  margin: 40px 0;
  display: flex;
  justify-content: center;
}

.filters ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  white-space: nowrap;
}

.filters li {
  display: inline-block;
  cursor: pointer;
}

.filters li a {
  padding: 12px 32px;
  color: #b2b2b2;
  font: normal normal medium 24px/35px Poppins;
  border: 1px solid transparent;
}

.filters li a:hover {
  color: #b2b2b2;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #e9ecef;
}

.filters li.active a {
  color: #6000b8;
  background: #f8f9fa 0% 0% no-repeat padding-box;
}

.project-item {
  margin: 20px;
  width: 448px;
  height: 502px;
  background: #f9f9f9 0% 0% no-repeat padding-box;
  position: relative;
}

.project-item:hover {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 6px 40px #baccff52;
}

.project-item>img {
  width: 452px;
  height: 50%;
}

.pt-content {
  padding: 24px;
  height: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pt-content h4 {
  margin-bottom: 8px;
  font: normal normal bold 24px/44px Poppins;
  color: #212529;
}

.pt-content p {
  margin-bottom: 24px;
  font: normal normal normal 16px/24px Poppins;
  color: #747474;
}

.btn-dark {
  margin-left: 8px;
}

.isotope-pager {
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 12px;
  margin: 60px 0;
  width: 100% !important;
  clear: both;
}

.isotope-pager .pager {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 44px !important;
  height: 44px !important;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  color: #747474 !important;
  text-decoration: none !important;
  font-family: Poppins;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.isotope-pager .pager:hover {
  border-color: #6000b8;
  color: #6000b8 !important;
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.isotope-pager .pager:hover img {
  filter: invert(36%) sepia(85%) hue-rotate(206deg) saturate(3882%) brightness(91%) contrast(92%);
}

.isotope-pager .pager.active {
  background-color: #6000b8 !important;
  border-color: #6000b8 !important;
  color: white !important;
  box-shadow: 0 4px 12px rgba(96, 0, 184, 0.3);
}

.isotope-pager .pager.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  background: #f8f9fa;
  border-color: #e9ecef;
  transform: none;
  box-shadow: none;
}

.isotope-pager .pager.prev,
.isotope-pager .pager.next {
  padding: 0;
}

.isotope-pager .pager.prev img,
.isotope-pager .pager.next img {
  width: 24px !important;
  height: 24px !important;
  display: block;
  transition: all 0.3s ease;
  filter: invert(45%) sepia(0%) hue-rotate(180deg) saturate(0%) brightness(95%) contrast(90%);
}

.pagination {
  margin: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination>div {
  margin: 0 16px;
}

.page-no {
  color: black;
  font-size: 16px;
}

.pagination button {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px solid #ddd;
}

@media screen and (max-width: 800px) {
  .filters {
    margin: 24px 0;
  }

  .filters li {
    margin-right: 16px;
    margin-bottom: 32px;
  }

  .filters li a {
    font: normal normal bold 20px/32px Poppins;
  }

  .project-item {
    margin: 20px;
    width: 300px;
    height: unset;
    background: #f9f9f9 0% 0% no-repeat padding-box;
    position: relative;
  }

  .project-item:hover {
    background: #ffffff 0% 0% no-repeat padding-box;
    box-shadow: 0px 6px 40px #baccff52;
  }

  .project-item>img {
    width: 100%;
    height: 50%;
  }

  .pt-content {
    padding: 24px;
    height: 50%;
    color: white;
  }

  .pt-content h4 {
    margin-bottom: 8px;
    font: normal normal bold 20px/44px Poppins;
    color: #212529;
  }

  .pt-content p {
    margin-bottom: 24px;
    font: normal normal normal 16px/24px Poppins;
    color: #747474;
  }

  .btn-dark {
    margin-left: 0;
    margin-top: 8px;
  }
}