.wk-services-section {
  background: linear-gradient(40deg, rgba(0, 20, 30, 1), rgba(0, 35, 50, 1), rgba(0, 50, 70, 1));

  padding: 90px 6%;
  color: #fff;
}

.wk-services-container {
  max-width: 1450px;
  margin: 0 auto;
}

.wk-services-header {
  max-width: 760px;
  margin-bottom: 46px;
}

.wk-services-header span {
  display: inline-block;
  color: #38b6ff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.wk-services-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -2px;
}

.wk-services-header h2 em {
  color: #38b6ff;
  font-style: normal;
}

.wk-services-header p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 21px;
  line-height: 1.6;
}

.wk-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.wk-service-card {
  overflow: hidden;
  border-radius: 18px;
  background: rgba(4, 31, 42, 0.92);
  border: 1px solid rgba(56, 182, 255, 0.35);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
  transition: 0.25s ease;
}

.wk-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 182, 255, 0.85);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.38);
}

.wk-service-img {
  position: relative;
  height: 340px;
  overflow: visible;
}

.wk-service-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: 0.35s ease;
}

.wk-service-card:hover .wk-service-img img {
  transform: scale(1.06);
}

.wk-service-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #38b6ff, #006b9c);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.wk-service-body {
  padding: 30px 28px 32px;
}

.wk-service-body h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.wk-service-body p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16.5px;
  line-height: 1.7;
}

.wk-service-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.wk-service-body li {
  position: relative;
  padding-left: 31px;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15.5px;
  font-weight: 600;
}

.wk-service-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 2px solid #38b6ff;
  color: #38b6ff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.wk-service-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #38b6ff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.wk-service-body a span {
  font-size: 28px;
  line-height: 1;
  transition: 0.2s ease;
}

.wk-service-body a:hover span {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .wk-services-grid {
    grid-template-columns: 1fr;
  }

  .wk-service-img {
    height: 310px;
  }
}

@media (max-width: 600px) {
  .wk-services-section {
    padding: 70px 22px;
  }

  .wk-services-header h2 {
    font-size: 42px;
  }

  .wk-services-header p {
    font-size: 18px;
  }

  .wk-service-img {
    height: 230px;
  }

  .wk-service-body {
    padding: 26px 22px 28px;
  }
}
