 
 
.relatedservicesWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  width: 100%;
  margin: 70px auto 0;
}

.relatedserviceCard {
  background: #F5FBFF;
  border: 1px solid #CFDEF0;
box-shadow: 0px 0px 16px 0px #469FDF33;

  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  max-width: 200px;
  display: flex;
  max-height: 130px;
  width:100%;
  min-height: 130px;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.relatedserviceCard:hover {
  background: #fff;
  border: 1px solid #0554E6;
  box-shadow: 0px 0px 18.2px 7px #0554E61A;
  transform: translateY(-4px);
}

.relatedserviceCard a {
  text-decoration: none;
 
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  color: #464860;
  display: block;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.relatedserviceCard a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: #0554E6;
  transition: transform 0.4s ease;
}

.relatedserviceCard:hover a {
  color: #0554E6;
}

.relatedserviceCard:hover a::after {
  transform: translateX(-50%) scaleX(1);
}

/* CTA Wrapper */
.related-services-cta-wrapper {
  text-align: center;
  margin-top: 70px;
}

.related-services-cta-wrapper .hollow-cta-btn {
  display: inline-block;
  max-width: max-content;
  padding: 13px 18px;
  background: transparent;
  border: 1px solid #0654E6;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #0654E6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-services-cta-wrapper .hollow-cta-btn:hover {
  background: #0654E6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(5, 84, 230, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .relatedservicesWrap {
    gap: 16px;
  }

  .relatedserviceCard {
    padding: 14px 28px;
  }
}

@media screen and (max-width: 768px) {
  .relatedservicesSec {
    padding: 40px 16px;
  }

  .relatedservicesSec .secTitlewrap h2 {
    font-size: 28px;
  }

  .relatedserviceCard {
        padding: 14px 24px;
        border-radius: 12px;
    }

  .relatedserviceCard a {
    font-size: 15px;
    font-weight: 400;
  }
}

@media screen and (max-width: 480px) {
  .relatedservicesSec .secTitlewrap h2 {
    font-size: 24px;
  }

  .relatedservicesWrap {
    flex-direction: column;
    align-items: center;
    margin: 30px auto 0;
  }

  .relatedserviceCard {
    width: 100%;
    max-width: 350px;
  }

  .relatedserviceCard a {
    white-space: normal;
  }
}
