/* Our Services: labelled industry cards (replaces the theme's unlabelled filter + photo grid). */
.fv-services { padding: 0 0 10px; }
/* The "Our Services" heading row ends with 50px of padding; pull the intro closer without negative
   margins (the page-builder row below clips anything pushed above its top edge). */
.vc_row.vc_custom_1518678548865 { padding-bottom: 16px !important; }
.fv-services-intro {
  max-width: 640px; margin: 0 auto 46px; text-align: center;
  font-family: Rubik, sans-serif; font-size: 17px; line-height: 28px; color: #5b5670;
}
.fv-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.fv-service-card {
  display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: 10px;
  box-shadow: 0 6px 24px rgba(34, 21, 67, .08); transition: transform .25s ease, box-shadow .25s ease;
}
.fv-service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 34px rgba(34, 21, 67, .16); }
.fv-service-img { aspect-ratio: 3 / 2; overflow: hidden; background: #ededed; }
.fv-service-img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.fv-service-card:hover .fv-service-img img { transform: scale(1.06); }
.fv-service-body {
  display: flex; flex: 1; flex-direction: column; gap: 6px; padding: 22px 24px 24px; border-top: 3px solid #221543;
}
.fv-service-num { font-family: Poppins, sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; color: #8a7fb0; }
.fv-service-body h3 { margin: 0 0 12px; font-family: Poppins, sans-serif; font-size: 19px; line-height: 26px; font-weight: 600; color: #221543; }
.fv-service-link {
  margin-top: auto; font-family: Rubik, sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 1px;
  text-transform: uppercase; color: #221543; text-decoration: none;
}
.fv-service-link i { margin-left: 6px; transition: margin-left .2s ease; }
.fv-service-link:hover, .fv-service-link:focus { color: #221543; text-decoration: none; }
.fv-service-link:hover i, .fv-service-link:focus i { margin-left: 10px; }
.fv-services-cta {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 30px;
  margin-top: 60px; padding: 40px 48px; background: #221543; border-radius: 10px;
}
.fv-services-cta h3 { margin: 0 0 6px; font-family: Poppins, sans-serif; font-size: 26px; line-height: 34px; color: #fff; }
.fv-services-cta p { margin: 0; font-size: 15px; line-height: 26px; color: rgba(255, 255, 255, .85); }
.fv-btn {
  display: inline-block; padding: 15px 36px; border-radius: 50px; background: #fff; color: #221543;
  font-family: Rubik, sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; transition: background .2s ease;
}
.fv-btn:hover, .fv-btn:focus { background: #e9e4f7; color: #221543; text-decoration: none; }
@media (max-width: 991px) {
  .fv-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .fv-services-cta { padding: 32px; }
}
@media (max-width: 575px) {
  .fv-services-grid { grid-template-columns: 1fr; }
  .fv-services-intro { margin: 0 auto 32px; font-size: 16px; }
  .fv-services-cta { justify-content: center; text-align: center; }
}
