/* ════════════════════════════════════════
   SERVICES PAGE
   ════════════════════════════════════════ */

/* ── OVERVIEW: Comprehensive Technology Services ── */
.svc-overview {
  background: #fff;
  padding: 72px 120px 64px;
  display: flex;
  justify-content: center;
}
.svc-overview__inner {
  max-width: 1280px; width: 100%;
  display: flex; flex-direction: column; gap: 40px;
}
.svc-overview__header { display: flex; flex-direction: column; gap: 10px; }
.svc-overview__title {
  font-size: 32px; font-weight: 800; color: #0b1795; line-height: 1.2; margin-top: 4px;
}
.svc-overview__subtitle {
  font-size: 14.5px; color: #52525b; font-weight: 500; line-height: 1.65; max-width: 600px;
}
/* 5 overview cards in a row */
.svc-overview__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.svc-ov-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  padding: 24px 18px; display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04); transition: box-shadow 0.2s, transform 0.2s;
}
.svc-ov-card:hover { box-shadow: 0 8px 24px rgba(11,23,149,0.1); transform: translateY(-2px); }
.svc-ov-card__icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.svc-ov-card__icon img { width: 22px; height: 22px; }
.svc-ov-card__icon--blue   { background: #eff6ff; }
.svc-ov-card__icon--purple { background: #f5f3ff; }
.svc-ov-card__icon--teal   { background: #f0fdfa; }
.svc-ov-card__icon--orange { background: #fff7ed; }
.svc-ov-card__icon--green  { background: #f0fdf4; }
.svc-ov-card__title { font-size: 14px; font-weight: 700; color: #111827; line-height: 1.3; }
.svc-ov-card__desc  { font-size: 12.5px; color: #71717a; font-weight: 500; line-height: 1.6; flex: 1; }
.svc-ov-card__link  {
  font-size: 12.5px; font-weight: 700; color: #0b1795; text-decoration: none;
  border-top: 1px solid #f3f4f6; padding-top: 10px; margin-top: auto; display: block;
}

/* ══════════════════════════════════════
   INDIVIDUAL SERVICE DETAIL SECTIONS
   ══════════════════════════════════════ */
.svc-detail {
  background: #fff;
  padding: 72px 120px;
  display: flex; justify-content: center;
  border-top: 1px solid #f0f0f0;
}
.svc-detail--alt { background: #f8f9fb; }

.svc-detail__inner {
  max-width: 1280px; width: 100%;
  display: flex; flex-direction: column; gap: 36px;
}

/* Section label + title + description */
.svc-detail__header {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 720px;
}
.svc-detail__label {
  display: inline-flex; align-items: center;
  padding: 3px 12px; border: 1px solid #cbd5e1;
  border-radius: 9999px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: #64748b; width: fit-content; margin-bottom: 4px;
}
.svc-detail__title {
  font-size: 28px; font-weight: 800; color: #0b1795; line-height: 1.25;
}
.svc-detail__desc {
  font-size: 14.5px; color: #52525b; font-weight: 500; line-height: 1.7;
}

/* Full-width image */
.svc-detail__img-wrap {
  width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.svc-detail__img {
  width: 100%; height: 280px; object-fit: cover; display: block;
}

/* Sub-heading above cards */
.svc-detail__sub-heading {
  font-size: 17px; font-weight: 700; color: #111827; margin-bottom: -8px;
}

/* Service sub-card grid (2-col or 3-col) */
.svc-cards {
  display: grid; gap: 16px;
}
.svc-cards--2 { grid-template-columns: repeat(2, 1fr); }
.svc-cards--3 { grid-template-columns: repeat(3, 1fr); }
.svc-cards--4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  padding: 22px 20px; display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04); transition: box-shadow 0.2s;
}
.svc-card:hover { box-shadow: 0 6px 20px rgba(11,23,149,0.08); }
.svc-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; padding: 9px;
}
.svc-card__icon img { width: 20px; height: 20px; }
.svc-card__icon--blue   { background: #eff6ff; }
.svc-card__icon--purple { background: #f5f3ff; }
.svc-card__icon--teal   { background: #f0fdfa; }
.svc-card__icon--orange { background: #fff7ed; }
.svc-card__icon--green  { background: #f0fdf4; }
.svc-card__icon--red    { background: #fff0f0; }
.svc-card__icon--indigo { background: #eef2ff; }

.svc-card__title { font-size: 14.5px; font-weight: 700; color: #111827; line-height: 1.3; }
.svc-card__desc  { font-size: 13px; color: #71717a; font-weight: 500; line-height: 1.6; }

/* Technology capabilities pill row */
.svc-tech-row {
  display: flex; flex-direction: column; gap: 12px;
}
.svc-tech-row__label {
  font-size: 13px; font-weight: 700; color: #374151; text-transform: uppercase;
  letter-spacing: 0.5px;
}
.svc-tech-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.svc-tech-pill {
  background: #eef2ff; color: #0b1795;
  font-size: 12.5px; font-weight: 700;
  padding: 6px 14px; border-radius: 9999px;
  border: 1px solid #c7d2fe;
}

/* Key Features list */
.svc-features {
  display: flex; flex-direction: column; gap: 10px;
}
.svc-features__label {
  font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 4px;
}
.svc-features__list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 32px;
}
.svc-features__list li {
  font-size: 13.5px; color: #374151; font-weight: 500;
  line-height: 1.5; padding-left: 18px; position: relative;
}
.svc-features__list li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 7px; height: 7px; border-radius: 50%; background: #0b1795;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .svc-overview { padding-inline: 48px; }
  .svc-detail   { padding-inline: 48px; }
  .svc-overview__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .svc-overview__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-cards--3, .svc-cards--4 { grid-template-columns: 1fr 1fr; }
  .svc-features__list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .svc-overview { padding: 48px 24px; }
  .svc-detail   { padding: 48px 24px; }
  .svc-overview__grid { grid-template-columns: 1fr; }
  .svc-cards--2, .svc-cards--3, .svc-cards--4 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PRODUCT DEVELOPMENT — SPECIFIC STYLES
   ══════════════════════════════════════ */

/* Tagline (bold subtitle under h2) */
.svc-detail__tagline {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
  margin-bottom: 4px;
}

/* Cards with horizontal layout: navy icon circle + text body */
.svc-card--navy-icon {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
}

.svc-card__navy-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b1795;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 9px;
}
.svc-card__navy-icon img {
  width: 20px; height: 20px;
  filter: brightness(0) invert(1);
}

.svc-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Invisible placeholder card (keep 3-col grid balanced) */
.svc-card--invisible {
  background: transparent;
  border: none;
  box-shadow: none;
  pointer-events: none;
}

/* Numbered step cards */
.svc-card--step {
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
}

.svc-card__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0b1795;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Technology Capabilities 2×2 grid */
.svc-tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.svc-tech-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.svc-tech-box__heading {
  font-size: 13.5px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-tech-box__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0b1795;
  flex-shrink: 0;
  display: inline-block;
}

.svc-tech-box__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tech-box__pill {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 5px 12px;
}

/* Responsive */
@media (max-width: 900px) {
  .svc-tech-grid { grid-template-columns: 1fr; }
  .svc-card--navy-icon, .svc-card--step { flex-direction: row; }
}
@media (max-width: 640px) {
  .svc-tech-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   DIGITAL TRANSFORMATION — SPECIFIC STYLES
   ══════════════════════════════════════ */

/* Full-width stacked focus area cards */
.svc-focus-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.svc-focus-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.svc-focus-card:hover { box-shadow: 0 6px 20px rgba(16,185,129,0.1); }

.svc-focus-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  flex-shrink: 0;
}
.svc-focus-card__icon img {
  width: 24px; height: 24px;
  filter: brightness(0) invert(1);
}

.svc-focus-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-focus-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.svc-focus-card__desc {
  font-size: 13.5px;
  color: #52525b;
  font-weight: 500;
  line-height: 1.7;
}

/* Key Transformation Components — bordered pill box */
.svc-components-box {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px 24px;
}

.svc-components-box__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.svc-comp-pill {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 7px 16px;
  display: inline-block;
}

/* Business Impact — light green rounded box */
.svc-impact-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-impact-box__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.svc-impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.svc-impact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.svc-impact-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.svc-impact-item__icon img {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
}

.svc-impact-item__text {
  font-size: 13.5px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .svc-impact-grid { grid-template-columns: 1fr; }
  .svc-focus-card { flex-direction: column; }
}

/* ══════════════════════════════════════
   PROCESS AUTOMATION — SPECIFIC STYLES
   ══════════════════════════════════════ */

/* ID tech intro paragraph */
.svc-id-tech { display: flex; flex-direction: column; gap: 10px; }
.svc-id-tech__desc {
  font-size: 14px; color: #52525b; font-weight: 500; line-height: 1.7;
  max-width: 800px;
}

/* Use case cards — horizontal: purple icon + text */
.svc-card--usecase {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}
.svc-card__purple-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #7c3aed;
  display: flex; align-items: center; justify-content: center;
  padding: 9px; flex-shrink: 0;
}
.svc-card__purple-icon img {
  width: 20px; height: 20px;
  filter: brightness(0) invert(1);
}
.svc-card__usecase-text {
  font-size: 14px; font-weight: 600; color: #111827; line-height: 1.4;
}

/* Technology Components — 3 centered vertical cards */
.svc-tech-components {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-tech-comp-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.svc-tech-comp-card:hover { box-shadow: 0 8px 24px rgba(124,58,237,0.1); }
.svc-tech-comp-card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: #7c3aed;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
}
.svc-tech-comp-card__icon img {
  width: 34px; height: 34px;
  filter: brightness(0) invert(1);
}
.svc-tech-comp-card__title {
  font-size: 16px; font-weight: 700; color: #111827;
}
.svc-tech-comp-card__desc {
  font-size: 13px; color: #71717a; font-weight: 500; line-height: 1.65;
}

/* Business Value box — light purple/indigo border */
.svc-biz-value-box {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 16px;
  padding: 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.svc-biz-value-box__title {
  font-size: 18px; font-weight: 700; color: #111827;
}
.svc-biz-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.svc-biz-value-item {
  display: flex; align-items: center; gap: 12px;
}
.svc-biz-value-item__icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: #7c3aed;
  display: flex; align-items: center; justify-content: center;
  padding: 7px; flex-shrink: 0;
}
.svc-biz-value-item__icon img {
  width: 18px; height: 18px;
  filter: brightness(0) invert(1);
}
.svc-biz-value-item__text {
  font-size: 13.5px; font-weight: 600; color: #111827; line-height: 1.4;
}

@media (max-width: 900px) {
  .svc-tech-components { grid-template-columns: 1fr 1fr; }
  .svc-biz-value-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .svc-tech-components { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   CLOUD SERVICES — SPECIFIC STYLES
   (teal / cyan colour palette)
   ══════════════════════════════════════ */

/* Teal variant of focus cards */
.svc-focus-card--teal { background: #fff; }
.svc-focus-card--teal:hover { box-shadow: 0 6px 20px rgba(13,148,136,0.1); }

.svc-focus-card__icon--teal {
  background: #0d9488;   /* teal-600 */
}

/* Business Benefits — light teal box */
.svc-cloud-benefits-box {
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 16px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-cloud-benefits-box__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}
.svc-cloud-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.svc-cloud-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-cloud-benefit-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #0d9488;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}
.svc-cloud-benefit-item__icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.svc-cloud-benefit-item__text {
  font-size: 13.5px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .svc-cloud-benefits-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   DPDP FRAMEWORK — SPECIFIC STYLES
   (red / rose colour palette)
   ══════════════════════════════════════ */

/* 2-col context cards (light red background) */
.svc-dpdp-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-dpdp-context-card {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-dpdp-context-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-dpdp-context-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #dc2626;
  display: flex; align-items: center; justify-content: center;
  padding: 9px; flex-shrink: 0;
}
.svc-dpdp-context-card__icon img {
  width: 20px; height: 20px;
  filter: brightness(0) invert(1);
}
.svc-dpdp-context-card__title {
  font-size: 15px; font-weight: 700; color: #111827; line-height: 1.3;
}
.svc-dpdp-context-card__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-dpdp-context-card__list li {
  font-size: 13px; color: #374151; font-weight: 500;
  line-height: 1.6; padding-left: 16px; position: relative;
}
.svc-dpdp-context-card__list li::before {
  content: '•'; position: absolute; left: 0; top: 0;
  color: #dc2626; font-size: 14px; font-weight: 700;
}

/* Engagement Model — 2×2 numbered step cards */
.svc-dpdp-steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.svc-dpdp-step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.svc-dpdp-step-card:hover { box-shadow: 0 6px 20px rgba(220,38,38,0.08); }
.svc-dpdp-step-card__num {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: #dc2626;
  color: #fff;
  font-size: 15px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-dpdp-step-card__body {
  display: flex; flex-direction: column; gap: 6px;
}
.svc-dpdp-step-card__title {
  font-size: 14.5px; font-weight: 700; color: #111827; line-height: 1.3;
}
.svc-dpdp-step-card__desc {
  font-size: 13px; color: #71717a; font-weight: 500; line-height: 1.6;
}

/* Red icon variant for use-case cards */
.svc-card__red-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: #dc2626;
  display: flex; align-items: center; justify-content: center;
  padding: 9px; flex-shrink: 0;
}
.svc-card__red-icon img {
  width: 20px; height: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width: 900px) {
  .svc-dpdp-context-grid { grid-template-columns: 1fr; }
  .svc-dpdp-steps-grid   { grid-template-columns: 1fr; }
}
