  .popular-services {
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .service-card {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: ghostwhite;
    text-align: left;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);

    max-width: 100%;

  }

  .service-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
    transform: translateY(-5px);
  }

  .service-card img.featured-img {
    width: 100%;
/*    height: 180px;*/
    object-fit: cover;
  }

  .service-content {
    padding: 20px;
    background-color: ghostwhite;
    border-top: 1px solid#dedede;
}

  .service-category {
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 5px;
  }

  .service-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }

  .rating {
    font-size: 0.9rem;
    color: #f59e0b;
    margin-bottom: 16px;
  }

  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .author {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }

  .author span {
    font-size: 0.9rem;
    color: #444;
  }

  .price {
    font-size: 13px;
    font-weight: 300;
    color: white;
    background-color: black;
    padding: 6px 12px;
    border-radius: 22px;
    cursor: pointer;
}

  .price span {
    color: #1dbf73;
    font-weight: 600;
  }

  .service-card a.gig-link{
    text-decoration: none;
  }

  .related-services-box{
    padding: 20px 0;
  margin: 20px 0px;
  }

  .related-services-box h2 {
    margin: 40px 0px;
    text-align: center;
}

  @media screen and (max-width: 768px) {
    .popular-services h2 {
      font-size: 1.8rem;
    }
  }