/* ============================================================
   Professional Services page — innofication-professionalservices.css
============================================================ */

/* ---- Video header enhancements ---- */
.ps-video-wrap {
  width: 100%;
  overflow: hidden;
}
.ps-video-wrap .wrappervideo {
  width: 100%;
  height: 62vh;
  min-height: 420px;
}
.ps-video-wrap .wrapper__video {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 62vh;
  min-height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ps-video-overlay {
  position: relative;
  top: -62vh;
  min-height: 62vh;
  margin-bottom: -62vh;
  background: linear-gradient(135deg, rgba(8,44,65,0.92) 0%, rgba(13,82,115,0.78) 60%, rgba(13,106,148,0.62) 100%);
  display: flex;
  align-items: center;
  z-index: 10;
}

/* ---- Service overview cards ---- */
.ps-service-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e0e8f0;
  padding: 30px 24px 26px;
  margin-bottom: 22px;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ps-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(13,166,224,0.14);
  border-color: #0da6e0;
}
.ps-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, #dff2fc, #b3e2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0da6e0;
  margin-bottom: 18px;
  transition: background 0.26s ease, color 0.26s ease, box-shadow 0.26s ease;
}
.ps-service-card:hover .ps-service-icon {
  background: linear-gradient(135deg, #0da6e0, #0b8ec0);
  color: #fff;
  box-shadow: 0 5px 18px rgba(13,166,224,0.35);
}
.ps-service-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #12253a;
  margin: 0 0 10px;
  font-family: 'Lato', sans-serif;
}
.ps-service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.72;
  margin: 0 0 16px;
  flex: 1;
}
.ps-service-link {
  color: #0da6e0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ps-service-card:hover .ps-service-link { gap: 10px; }
.ps-service-link:hover { text-decoration: none; }

/* ---- Service detail rows ---- */
.ps-detail {
  padding: 52px 0;
  border-bottom: 1px solid #eef0f3;
}
.ps-detail:last-of-type { border-bottom: none; }
.ps-detail-num {
  font-size: 11px;
  font-weight: 900;
  color: rgba(13,166,224,0.3);
  letter-spacing: 0.06em;
  font-family: 'Lato', sans-serif;
  margin-bottom: 10px;
  display: block;
}
.ps-detail h2 {
  font-size: 26px;
  font-weight: 900;
  color: #12253a;
  margin: 0 0 14px;
  font-family: 'Lato', sans-serif;
  line-height: 1.3;
}
.ps-detail p {
  font-size: 15px;
  color: #555;
  line-height: 1.82;
  margin: 0 0 18px;
}
.ps-detail img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
}
.ps-checklist { list-style: none; padding: 0; margin: 0 0 18px; }
.ps-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  padding: 7px 0;
  border-bottom: 1px solid #f4f6f8;
}
.ps-checklist li:last-child { border-bottom: none; }
.ps-checklist li i {
  color: #0da6e0;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- Stats strip ---- */
.ps-stats { background: #0da6e0; padding: 22px 0; }
.ps-stat-item { text-align: center; padding: 6px 12px; }
.ps-stat-num { font-size: 32px; font-weight: 900; color: #fff; display: block; line-height: 1; font-family: 'Lato', sans-serif; }
.ps-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.85); margin-top: 4px; display: block; }
.ps-stat-div { border-left: 1px solid rgba(255,255,255,0.25); height: 48px; margin: auto; width: 1px; }

/* ---- Training grid ---- */
.ps-training-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf3;
  padding: 22px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.ps-training-card:hover { box-shadow: 0 6px 20px rgba(13,166,224,0.12); transform: translateY(-2px); }
.ps-training-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(13,166,224,0.1); display: flex; align-items: center; justify-content: center; color: #0da6e0; font-size: 17px; flex-shrink: 0; }
.ps-training-title { font-size: 14px; font-weight: 700; color: #12253a; margin: 0 0 3px; }
.ps-training-sub { font-size: 12px; color: #888; margin: 0; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .ps-video-wrap .wrappervideo,
  .ps-video-wrap .wrapper__video { height: 56vh; min-height: 360px; }
  .ps-video-overlay { top: -56vh; min-height: 56vh; margin-bottom: -56vh; }
}
@media (max-width: 768px) {
  .ps-video-wrap .wrappervideo,
  .ps-video-wrap .wrapper__video { height: 70vw; min-height: 300px; width: 100%; }
  .ps-video-overlay { top: -70vw; min-height: 70vw; margin-bottom: -70vw; }
  .ps-detail { padding: 36px 0; }
}
