.portfolio-banner {
  background: url("../images/portfolio-banner.gif") no-repeat center center;
  background-size: cover;
  height: 75vh;
  position: relative;
}

/* h1,p {
            text-align: center;
        } */

.service-wrapper {
  background-color: #0A0A0D;
  padding: 100px 157px;
}

.head-service-wrapper {
  padding-bottom: 20px;
  border-bottom: 2px solid #f5ea14;
}


.filter-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 36px;
  cursor: pointer;
}

.filter-wrapper .filter h5 {
  color: #fff;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
}

.active-filter {
  border-bottom: 1px solid #f4e914;
  /* Apply your active filter styling */
}

.filter-content2,
.filter-content3 {
  display: none;
}

.card-container {
  width: 100%;
}

@media (max-width: 1030px) {
  .service-wrapper {
    padding: 100px 50px;
  }

  .head-wrapper h4 {
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 800px) {
  .service-wrapper {
    padding: 100px 20px;
  }

  .filter-wrapper .filter h5 {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
  }
}

.image-card {
  max-width: 100%;
  /* Ensure the card adjusts its width based on the parent container */
  height: 400px;
  /* Maintain aspect ratio */
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  /* Occupy full width of the card */
  height: 100%;
  /* Maintain aspect ratio */
}

.card-content h5 {
  color: #fff;
  font-size: 27px;
  line-height: 32px;
  margin-bottom: 17px;
  margin-top: 17px;
}

.filter-content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.service-wrapper {
  padding: 100px 157px;
}

.head-service-wrapper {
  padding-bottom: 20px;
  border-bottom: 2px solid #FF0075;
}

.head-wrapper h4 {
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  background: linear-gradient(90deg, #FF6A3C 0%, #FF0075 51%, #8F00FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  animation: smoothGradient 10s linear infinite;
  margin-top: 30px;
}

.filter-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  gap: 36px;
  cursor: pointer;
}

.filter-wrapper .filter h5 {
  color: #fff;
  font-size: 22px;
  line-height: 26px;
  text-transform: uppercase;
}

.active-filter {
  border-bottom: 1px solid #FF0075;
  /* Apply your active filter styling */
}

.filter-content2,
.filter-content3 {
  display: none;
}

.card-container {
  width: 100%;
}

@media (max-width: 1030px) {
  .service-wrapper {
    padding: 100px 50px;
  }

  .head-wrapper h4 {
    text-align: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 800px) {
  .service-wrapper {
    padding: 100px 20px;
  }

  .filter-wrapper .filter h5 {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
  }
}

.image-card {
  max-width: 100%;
  /* Ensure the card adjusts its width based on the parent container */
  height: 400px;
  /* Maintain aspect ratio */
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  /* Occupy full width of the card */
  height: 100%;
  /* Maintain aspect ratio */
}

.card-content h5 {
  color: #fff;
  font-size: 27px;
  line-height: 32px;
  margin-bottom: 17px;
  margin-top: 17px;
}

.filter-content {
  padding-top: 50px;
  padding-bottom: 50px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  width: 90%;
  margin: 0 auto;
  padding: 10px;
}

.gallery-item {
  flex-basis: 32.7%;
  margin-bottom: 6px;
  opacity: .85;
  cursor: pointer;
}

.gallery-item:hover {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-content {
  font-size: .8em;
}

.lightbox {
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  overflow: auto;
  top: 0;
  left: 0;
}

.lightbox-content {
  position: relative;
  width: 70%;
  height: 70%;
  margin: 5% auto;
}

.lightbox-content img {
  border-radius: 7px;
  box-shadow: 0 0 3px 0 rgba(225, 225, 225, .25);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 7px;
  top: 45%;
  cursor: pointer;
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .gallery-container {
    width: 100%;
  }

  .gallery-item {
    flex-basis: 49.80%;
    margin-bottom: 3px;
  }

  .lightbox-content {
    width: 80%;
    height: 60%;
    margin: 15% auto;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    flex-basis: 100%;
    margin-bottom: 1px;
  }

  .lightbox-content {
    width: 90%;
    margin: 20% auto;
  }
}