/* ==========================================================================
   WebKeyIndia — "We offer Affordable Digital Marketing Services in India"
   (.wksv, home-services.php)  2026-09-23c
   Same dark band as #counter.wkwl (css/wk-offer.css): three cards a row on
   desktop, two on tablets, one on phones. Every card carries 8 service rows,
   so the cards are the same height. Icons are inline SVG in the card's colour.
   ========================================================================== */
.wksv {
  --v-line:   rgba(255,255,255,.09);
  --v-text:   #C2C7D2;
  --v-muted:  #A7ABB4;
  --v-font:   "Poppins","Segoe UI",Roboto,-apple-system,BlinkMacSystemFont,Arial,sans-serif;
  position: relative; overflow: hidden;
  margin: 0; padding: 72px 0 !important;
  font-family: var(--v-font);
}
/* id + class: css/main.css puts a background image on #services, and an id beats a class.
   Same treatment as #counter.wkwl so the two dark bands match. */
#services.wksv {
  background:
    radial-gradient(760px 360px at 6% 0%, rgba(255,122,26,.18), transparent 62%),
    radial-gradient(700px 360px at 96% 100%, rgba(225,29,42,.16), transparent 62%),
    linear-gradient(180deg, #121318 0%, #0B0C0F 100%) !important;
}
.wksv::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 22px 22px;
}
.wksv > * { position: relative; }
.wksv *, .wksv *::before, .wksv *::after { box-sizing: border-box; }

/* wide enough for the heading to sit on one line on a desktop */
.wksv .wk-sec__head { max-width: 1160px; margin-bottom: 34px; }
.wksv .wk-eyebrow { background: rgba(255,122,26,.14); color: #FFB47A; }
.wksv .wk-sec__title {
  margin: 14px 0 10px !important; padding: 0 !important;
  font-family: var(--v-font) !important; font-size: 34px !important; font-weight: 700 !important;
  line-height: 1.2 !important; letter-spacing: -.3px; text-align: center; color: #fff !important;
  text-transform: none;
}
.wksv .wk-sec__sub {
  margin: 0 auto !important; max-width: 940px;
  font-size: 14.5px; line-height: 1.65; text-align: center; color: var(--v-muted) !important;
}

/* ---------- cards: same 8 rows each, so the boxes match ---------- */
.wksv-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch;
  max-width: 1160px; margin: 0 auto;
}
.wksv-card {
  position: relative; display: flex; flex-direction: column; min-width: 0;
  padding: 20px 20px 16px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02));
  border: 1px solid var(--v-line);
  box-shadow: 0 22px 46px -30px rgba(0,0,0,.9);
  transition: transform .3s ease, border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.wksv-card::before {
  content: ""; position: absolute; left: 20px; right: 20px; top: 0; height: 2px; border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--c, #FF7A1A), transparent); opacity: .85;
}
@media (hover: hover) {
  .wksv-card:hover {
    transform: translateY(-5px); border-color: rgba(255,255,255,.2);
    background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
    box-shadow: 0 30px 56px -30px rgba(0,0,0,.95);
  }
  .wksv-card:hover .wksv-ic { background: var(--c, #FF7A1A); color: #0B0C0F; border-color: transparent; }
}

.wksv-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.wksv-ic {
  width: 48px; height: 48px; flex: none; display: grid; place-items: center; border-radius: 15px;
  color: var(--c, #FF7A1A);
  background: color-mix(in srgb, var(--c, #FF7A1A) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--c, #FF7A1A) 30%, transparent);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}
.wksv-ic__svg { display: block; }

.wksv .wksv-title {
  margin: 0 !important; padding: 0 !important;
  font-family: var(--v-font) !important; font-size: 16.5px !important; font-weight: 600 !important;
  line-height: 1.3 !important; text-align: left; color: #fff !important;
  display: flex; align-items: center; min-height: 43px;          /* 2 lines: keeps the rows level */
}
.wksv .wksv-title a { color: #fff !important; text-decoration: none !important; }
.wksv .wksv-title a:hover { color: #FFB47A !important; }

/* one row per service (they used to run together as a paragraph of links) */
.wksv-links { margin: 0 0 12px !important; padding: 0 !important; list-style: none; }
.wksv-links li { margin: 0; }
.wksv .wksv-links a {
  position: relative; display: block; padding: 5px 2px 5px 16px;
  color: #FFFFFF !important; font-size: 13.5px; font-weight: 400; line-height: 1.45;
  text-decoration: none !important; transition: color .18s ease, padding-left .18s ease;
}
.wksv .wksv-links a::before {
  content: ""; position: absolute; left: 2px; top: 50%; width: 6px; height: 6px; margin-top: -3px;
  border-radius: 50%; background: var(--c, #FF7A1A); opacity: .7; transition: opacity .18s ease, transform .18s ease;
}
/* white by default; on hover it takes that card own colour, lightened so it stays readable on the dark card */
.wksv .wksv-links a:hover { color: color-mix(in srgb, var(--c, #FF7A1A) 72%, #FFFFFF) !important; padding-left: 19px; }
.wksv .wksv-links a:hover::before { opacity: 1; transform: scale(1.3); }
.wksv .wksv-links a:focus-visible { outline: 3px solid rgba(255,122,26,.55); outline-offset: 2px; border-radius: 6px; }

.wksv .wksv-more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--v-line);
  color: #FFB47A !important; font-size: 13px; font-weight: 600; text-decoration: none !important;
  transition: color .2s ease;
}
.wksv .wksv-more i { transition: transform .2s ease; }
.wksv .wksv-more:hover { color: #fff !important; }
.wksv .wksv-more:hover i { transform: translateX(4px); }
.wksv .wksv-more:focus-visible { outline: 3px solid rgba(255,122,26,.55); outline-offset: 3px; border-radius: 6px; }

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
  .wksv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; }
}
@media (max-width: 991px) {
  .wksv { padding: 58px 0 !important; }
  .wksv .wk-sec__title { font-size: 29px !important; }
  .wksv .wk-sec__head { margin-bottom: 28px; }
}
@media (max-width: 767px) {
  .wksv-grid { grid-template-columns: minmax(0, 1fr); max-width: 520px; gap: 14px; }
  .wksv .wksv-title { min-height: 0; }
}
@media (max-width: 575px) {
  .wksv { padding: 44px 0 !important; }
  .wksv .wk-sec__title { font-size: 24px !important; }
  .wksv .wk-sec__sub { font-size: 13.5px; }
  .wksv .wk-sec__head { margin-bottom: 22px; }
  .wksv-card { padding: 16px 16px 12px; border-radius: 16px; }
  .wksv-card::before { left: 16px; right: 16px; }
  .wksv-card__head { gap: 11px; margin-bottom: 11px; }
  .wksv-ic { width: 42px; height: 42px; border-radius: 13px; }
  .wksv .wksv-title { font-size: 15.5px !important; }
  .wksv .wksv-links a { font-size: 13px; padding: 4px 2px 4px 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .wksv-card, .wksv-ic, .wksv .wksv-links a, .wksv .wksv-links a::before, .wksv .wksv-more, .wksv .wksv-more i { transition: none; }
}
