/* ==========================================================================
   HemRang — Interior pages (service detail, About, Contact)
   Geometry from the per-page frames in the Figma document.
   ========================================================================== */

/* ==========================================================================
   Page hero — full-bleed art, oversized gradient wordmark, intro + artwork
   Figma: title Sora Bold 96/90 at y=228, subtitle 36/50, lede 20/25
   ========================================================================== */

.page-hero {
  position: relative;
  /* bottom padding keeps copy clear of the fade band painted by ::after */
  padding: 210px 0 190px;
  background: #eaf2fb center / cover no-repeat;
  isolation: isolate;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Fades the photograph into the white body copy below it.
   Figma does this with a 94px-spread white glow on a slab. */
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 72%);
  pointer-events: none;
}

.page-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 96px;
  line-height: 90px;
  letter-spacing: -.02em;
  background-image: var(--title-grad, linear-gradient(90deg, #6155f5, #39328f));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* text-shadow can't paint under transparent text — use a filter instead */
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .44));
}

.page-hero__sub {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  line-height: 50px;
  color: var(--ink);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 638px minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  margin-top: 42px;
}

.page-hero__lede {
  font-size: 20px;
  line-height: 25px;
  color: var(--ink);
}
.page-hero__lede + .page-hero__lede { margin-top: 20px; }

.page-hero__art {
  width: 100%;
  height: auto;
  margin-top: -30px;
}

/* Per-page wordmark gradients, straight from the Figma paints. */
.page-hero--ai        { --title-grad: linear-gradient(90deg, #6155f5, #39328f); }
.page-hero--cloud     { --title-grad: linear-gradient(90deg, #55a5f5, #2664ab); }
.page-hero--cyber     { --title-grad: linear-gradient(90deg, #f16400, #c95400); }
.page-hero--digital   { --title-grad: linear-gradient(90deg, #3cce43, #148826); }
.page-hero--fullstack { --title-grad: linear-gradient(90deg, #6155f5, #39328f); }

/* ==========================================================================
   Prose body — Figma: h2 Inter Bold 48/45, body Inter Regular 20/25 justified
   ========================================================================== */

.prose {
  padding: 30px 0 0;
  background: var(--white);
}
.prose__h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 52px;
  letter-spacing: -.01em;
  color: var(--ink);
}

.prose__h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: var(--ink);
}
.prose p {
  font-size: 16px;
  line-height: 22px;
  color: var(--ink);
  text-align: left;
  width: 450px;
}

.prose > .container > * + * {
  margin-top: 22px;
}
.prose > .container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.prose > .container > p:first-child {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.prose__h2 + p, .prose__h3 + p { margin-top: 14px; }

.prose__list {
  font-size: 20px;
  line-height: 30px;
  color: var(--ink);
}
.prose__list li { padding-left: 22px; position: relative; }
.prose__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--blue);
}

/* Image beside a block of copy. */
.prose__split {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: center;
  gap: 52px;

  width: calc(100% - 96px);
  max-width: 1400px;
  min-height: 380px;

  margin: 35px auto 0;
  margin-bottom: 10px;
  padding: 30px 50px;

  background: #eaf1ff;
  border-radius: 30px;
}

.prose__split img{
  display: block;
  width: 292px;
  height: 252px;
  max-width: 292px;
  object-fit: contain;
  border-radius: 18px;
}

.prose__split > div{
  min-width: 0;
  width: 100%;
  align-self:center;
}

.prose__h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  color: #000;
  max-width: 520px;
}
.prose__h3 span {
  color: #5b55e8;
}

.prose__split p {
  max-width: 500px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.72);
  text-align: left;
}
.prose__split--flip > :first-child { order: 2; }
.prose__split--flip {
  grid-template-columns: minmax(0, 1fr) 292px;
  background: #ffffff;
  border: 1px solid #e6e6f5;
}
.prose__split--flip3 {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  align-items: center;
  gap: 42px;

  width: calc(100% - 96px);
  max-width: 1400px;
  min-height: 380px;

  margin: 55px auto 0;
  margin-bottom: 12px;
  padding: 30px 112px;

  background: #EDFFF2;
  border-radius: 30px;
}
.prose__split--flip4{
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  align-items: center;
  gap: 42px;

  width: calc(100% - 96px);
  max-width: 1400px;
  min-height: 380px;

  margin: 55px auto 0;
  margin-bottom: 12px;
  padding: 30px 112px;

  background: #FFEDE1;
  border-radius: 30px;
}
.prose__split--flip3 .prose__h3,
.prose__split--flip4 .prose__h3 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1.6;
  font-weight: 600;
  color: #000;
  max-width: 520px;
}

.prose__split--flip3 p,
.prose__split--flip4 p {
  max-width: 500px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.72);
  text-align: left;
}
.prose__split--flip3 img,
.prose__split--flip4 img {
  display: block;
  width: 292px;
  height: 252px;
  max-width: 292px;
  object-fit: contain;
  border-radius: 18px;
}
.prose__split--flip img {
  grid-column: 2;
  grid-row: 1;
}

.prose__split--flip > div {
  grid-column: 1;
  grid-row: 1;
}

/* ==========================================================================
   Cloud Modernization — scoped overrides for the HCAF card
   Matches the AIM screenshot exactly. Does not affect any other page.
   ========================================================================== */

/* Eyebrow label above the heading */
.prose__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.01em;
}

/* =========================================================
   Block 1 — HCAF card
   ========================================================= */

.prose__split--cloud {
  /* Keep the exact same outer geometry as Block 2 and Block 3 */
  grid-template-columns: 260px minmax(0, 1fr);
  justify-content: center;
  gap: 40px;

  /* Same sizing as shared .prose__split */
  width: calc(100% - 80px);
  max-width: 1400px;
  min-height: 380px;
  margin: 55px auto 12px;
  padding: 30px 100px;
  box-sizing: border-box;

  /* HCAF appearance */
  background: #d0eaf8;
  border: 1px solid #e7f8ff;
  border-radius: 20px;

  align-items: flex-start;
}

/* Image — top-aligned, exact size */
.prose__split--cloud img {
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  align-self: start;
  margin: 0;
}

/* Right content column */
.prose__split--cloud > div {
  width: 100%;
  align-self: start;
  min-width: 0;
}

/* Heading */
.prose__split--cloud .prose__h3 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 350;
}

/* Eyebrow */
.prose__split--cloud .prose__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

/* Paragraph */
.prose__split--cloud p:not(.prose__eyebrow) {
  max-width: none;
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.70);
}

.prose__split-bg{
  background: #EDFFF2;
}
/* =========================================================
   CLOUD MODERNIZATION — HCAF RESPONSIVE ALIGNMENT
   821px+  = left aligned
   820px↓  = centered
   ========================================================= */

/* ---------------------------------------------------------
   821px and above
   Desktop + larger tablet
   --------------------------------------------------------- */
@media (min-width: 821px) {

  .service-page--cloud .prose__split--cloud {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: flex-start;
    text-align: left;
  }

  .service-page--cloud .prose__split--cloud > div {
    width: 100%;
    text-align: left;
  }

  .service-page--cloud .prose__split--cloud .prose__eyebrow {
    text-align: left;
  }

  .service-page--cloud .prose__split--cloud .prose__h3 {
    text-align: left;
    max-width: 500px;
  }

  .service-page--cloud .prose__split--cloud p:not(.prose__eyebrow) {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}


/* ---------------------------------------------------------
   820px and below
   Smaller tablet + mobile
   --------------------------------------------------------- */
@media (max-width: 820px) {

  .service-page--cloud .prose__split--cloud {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
    width: calc(100% - 32px);
    max-width: none;
    min-height: 0;
    margin: 16px auto 24px;
    box-sizing: border-box;

    /* Center the whole content */
    text-align: center;
  }

  /* Image */
  .service-page--cloud .prose__split--cloud img {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    justify-self: center;
  }

  /* Content column */
  .service-page--cloud .prose__split--cloud > div {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /* "- Our Approach" */
  .service-page--cloud .prose__split--cloud .prose__eyebrow {
    width: 100%;
    margin: 0 0 8px;
    text-align: center;
  }

  /* HCAF heading */
  .service-page--cloud .prose__split--cloud .prose__h3 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 16px;
    font-size: 26px;
    line-height: 1.45;
    text-align: center;
  }

  /* HCAF paragraph */
  .service-page--cloud .prose__split--cloud p:not(.prose__eyebrow) {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
  }
}


/* ---------------------------------------------------------
   480px and below
   Small mobile
   --------------------------------------------------------- */
@media (max-width: 480px) {

  .service-page--cloud .prose__split--cloud {
    width: calc(100% - 24px);
    padding: 24px 20px;
    gap: 20px;
  }

  .service-page--cloud .prose__split--cloud .prose__h3 {
    font-size: 22px;
    line-height: 1.45;
  }

  .service-page--cloud .prose__split--cloud img {
    max-width: 240px;
  }

  .service-page--cloud .prose__split--cloud p:not(.prose__eyebrow) {
    max-width: 100%;
  }
}
/* =========================================================
   Block 2 — Cloud Migration & Modernization Services card
   Identical outer geometry to Block 1.
   ========================================================= */

.cloud-services-block {
  /* No extra padding — outer spacing comes from the card margin */
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.cloud-services-block__inner {
  display: grid;
  /* Text left, image right — image fixed width matches block 1 image */
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 40px;

  /* Identical outer geometry to block 1 */
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto 32px;
  padding: 30px 50px;

  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
}

/* Left text column */
.cloud-services-block__text {
  min-width: 0;
  align-self: start;
}

.cloud-services-block__heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.6;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.01em;
}

.cloud-services-block__accent {
  color: #6155f5;
}
.cloud-services-block__subheading {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 20px;
}
.cloud-services-block__body {
  margin: 0;
  max-width: 450px;
  font-size: 14px;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  text-align: left;
}

/* Right image — top-aligned, no background box */
.cloud-services-block__image-wrap {
  align-self: start;
  display: flex;
  justify-content: center;
}

.cloud-services-block__image-wrap img {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  margin: 0;
}

/* ---- Block 2 responsive ---- */

@media (max-width: 820px) {
  .cloud-services-block__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 28px;
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 auto 24px;
  }
  .cyber-zta-section__intro {
    width: calc(100% - 32px);
    max-width: none;
    margin: 0 auto 24px;
    font-size: 13.5px;
    line-height: 1.7;
    text-align: center;
  }
  /* Image moves above text on mobile */
  .cloud-services-block__image-wrap {
    order: -1;
    justify-content: center;
  }

  .cloud-services-block__image-wrap img {
    max-width: 220px;
  }

  .cloud-services-block__heading {
    font-size: 26px;
    text-align: center;
  }
  .cloud-services-block__subheading {
    text-align: center;
  }
  .cloud-services-block__body {
    text-align: center;
  }
  .cyber-grc-block__col-heading{
    text-align: center;
  }
  .rs-item--image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .cloud-services-block__inner {
    padding: 24px 20px;
    width: calc(100% - 24px);
    gap: 20px;
  }

  .cloud-services-block__heading {
    font-size: 22px;
  }
}

/* ==========================================================================
   Cyber Security — AI & Emerging Technology Security block
   Scoped modifiers on top of shared cloud-services-block rules.
   ========================================================================== */

/* Heading: two-line, line 1 black / line 2 purple — larger than default */
.cloud-services-block__inner--cyber .cloud-services-block__heading {
  font-size: 38px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0 0 20px;
}

/* Body paragraph: narrower, matches reference line-length */
.cloud-services-block__inner--cyber .cloud-services-block__body {
  margin: 0 0 18px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.65;
}

/* "Focus areas include:" bold label */
.cloud-services-block__focus-label {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
}

/* Bullet list */
.cloud-services-block__focus-list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cloud-services-block__focus-list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}

/* Right image: light grey placeholder box, top-aligned, rounded */
.cloud-services-block__image-wrap--placeholder {
  align-self: start;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #eff0f8;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-height: 220px;
}

.cloud-services-block__image-wrap--placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- Responsive ---- */

@media (max-width: 820px) {
  .cloud-services-block__inner--cyber .cloud-services-block__heading {
    font-size: 28px;
    text-align: center;
  }

  .cloud-services-block__inner--cyber .cloud-services-block__body {
    max-width: none;
    text-align: center;
  }

  .cloud-services-block__focus-label {
    text-align: center;
  }

  .cloud-services-block__focus-list {
    max-width: none;
  }

  .cloud-services-block__image-wrap--placeholder {
    max-width: 280px;
    min-height: 180px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cloud-services-block__inner--cyber .cloud-services-block__heading {
    font-size: 24px;
  }
  .cyber-zta-section__intro {
    width: calc(100% - 24px);
    font-size: 13px;
    text-align: center;
  }

  .cloud-services-block__image-wrap--placeholder {
    max-width: 220px;
    min-height: 150px;
  }
}

/* ==========================================================================
   Cyber Security — Cloud & Infrastructure Security block
   Unique class names; cannot affect any other section or page.
   ========================================================================== */

.cyber-infra-block {
  padding: 0;
  background: transparent;
  display: flex;
  justify-content: center;
}

.cyber-infra-block__card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 48px;

  /* Same outer geometry as other cyber blocks */
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 24px auto 32px;
  padding: 52px 52px 48px;

  background: #edfff2;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Left image placeholder */
.cyber-infra-block__img-wrap {
  width: 280px;
  height: 260px;
  background: #f0f0f5;
  border-radius: 14px;
  flex-shrink: 0;
  align-self: start;
}

/* Right text column */
.cyber-infra-block__text {
  min-width: 0;
  align-self: start;
  padding-top: 4px;
}

.cyber-infra-block__heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.5;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

.cyber-infra-block__body {
  margin: 0 0 18px;
  max-width: 380px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
}

.cyber-infra-block__services-label {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
}

.cyber-infra-block__list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cyber-infra-block__list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}

/* ---- Responsive ---- */

@media (max-width: 820px) {
  .cyber-infra-block__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 28px;
    width: calc(100% - 32px);
    max-width: none;
    margin: 16px auto 24px;
  }

  .cyber-infra-block__img-wrap {
    width: 100%;
    max-width: 280px;
    height: 180px;
    margin: 0 auto;
  }

  .cyber-infra-block__heading {
    font-size: 28px;
    text-align: center;
  }

  .cyber-infra-block__body {
    max-width: none;
    text-align: center;
  }

  .cyber-infra-block__services-label {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .cyber-infra-block__card {
    padding: 24px 20px;
    width: calc(100% - 24px);
  }

  .cyber-infra-block__heading {
    font-size: 24px;
  }

  .cyber-infra-block__img-wrap {
    max-width: 220px;
    height: 150px;
  }
}

/* ==========================================================================
   Cyber Security — Governance, Risk & Compliance (GRC) block
   Unique class names. Cannot affect any other section or page.
   ========================================================================== */

.cyber-grc-block {
  display: flex;
  justify-content: center;
  padding: 0;
  background: transparent;
}

/* Outer white card */
.cyber-grc-block__card {
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 24px auto 32px;
  padding: 52px 64px 48px;

  background: #fff;
  border: 1px solid #dde3ef;
  border-radius: 20px;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main heading */
.cyber-grc-block__heading {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.5;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  text-align: center;
}

/* Subtitle */
.cyber-grc-block__subtitle {
  margin: 0 0 32px;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.60);
  text-align: center;
}

/* Inner bordered content box */
.cyber-grc-block__box {
  width: 100%;
  max-width: 760px;
  padding: 24px 32px;
  border: 1px solid #dde3ef;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 48px;
  box-sizing: border-box;
}

/* Column heading */
.cyber-grc-block__col-heading {
  margin: 0 0 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
}

/* Bullet lists */
.cyber-grc-block__list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cyber-grc-block__list li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}

/* ---- Responsive ---- */

@media (max-width: 820px) {
  .cyber-grc-block__card {
    width: calc(100% - 32px);
    max-width: none;
    padding: 36px 28px 32px;
    margin: 16px auto 24px;
  }

  .cyber-grc-block__heading {
    font-size: 28px;

  }

  .cyber-grc-block__box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .cyber-grc-block__card {
    width: calc(100% - 24px);
    padding: 28px 20px;
  }

  .cyber-grc-block__heading {
    font-size: 24px;
  }

  .cyber-grc-block__box {
    padding: 18px 16px;
  }
}

/* ==========================================================================
   Cyber Security — Data Protection & Privacy block
   Unique class names. Cannot affect any other section or page.
   ========================================================================== */

.cyber-dp-block {
  display: flex;
  justify-content: center;
  padding: 0;
  background: transparent;
}

/* Outer light-blue card */
.cyber-dp-block__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: start;
  gap: 48px;

  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 24px auto 32px;
  padding: 52px 52px 48px;

  background: #e8eeff;
  border-radius: 20px;
  box-sizing: border-box;
}

/* Left text column */
.cyber-dp-block__text {
  min-width: 0;
  align-self: start;
}

/* Heading — wraps into 2 lines via <br /> */
.cyber-dp-block__heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.5;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

/* Description paragraph */
.cyber-dp-block__body {
  margin: 0 0 18px;
  max-width: 360px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.62);
}

/* "Capabilities include:" label */
.cyber-dp-block__caps-label {
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #111;
}

/* Bullet list */
.cyber-dp-block__list {
  margin: 0;
  padding: 0 0 0 16px;
  list-style: disc;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cyber-dp-block__list li {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.68);
}

/* Right image placeholder */
.cyber-dp-block__img-wrap {
  width: 260px;
  height: 240px;
  background: #fff;
  border-radius: 14px;
  flex-shrink: 0;
  align-self: start;
}

/* ---- Responsive ---- */

@media (max-width: 820px) {
  .cyber-dp-block__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 28px;
    width: calc(100% - 32px);
    max-width: none;
    margin: 16px auto 24px;
  }

  /* Image moves above text on mobile */
  .cyber-dp-block__img-wrap {
    order: -1;
    width: 100%;
    max-width: 280px;
    height: 180px;
    margin: 0 auto;
  }

  .cyber-dp-block__heading {
    font-size: 28px;
  }

  .cyber-dp-block__body {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .cyber-dp-block__card {
    padding: 24px 20px;
    width: calc(100% - 24px);
  }

  .cyber-dp-block__heading {
    font-size: 24px;
  }

  .cyber-dp-block__img-wrap {
    max-width: 220px;
    height: 150px;
  }
}

/* ==========================================================================
   Cloud Modernization — Block 3: 7 R's Of Cloud Migration
   New independent section. Shares outer geometry with blocks 1 and 2.
   ========================================================================== */

.cloud-rs-block {
  width: 100%;
  padding: 0;
  margin-top: 20px;
  background: transparent;
}
.cloud-rs-block .prose__split--cloud-rs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;

  width: calc(100% - 48px);
  max-width: 1400px;

  margin: 0 auto;
  padding: 45px 55px;

  box-sizing: border-box;
}
.prose__split--cloud-services {
  background: #fff;
  border: 1px solid #EEEAFF;
}
/* Card — identical outer geometry to blocks 1 & 2 */
.cloud-rs-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 70px;

  width: calc(100% - 48px);
  max-width: 1380px;

  margin: 24px auto 32px;
  padding: 55px 60px;

  background: #e7f4ff;
  border: 1px solid #cce4f7;
  border-radius: 20px;

  box-sizing: border-box;
}

/* Left column */
.cloud-rs-block__left {
  width: 100%;
  max-width: 560px;
  align-self: center;
}

/* RIGHT IMAGE */
.cloud-rs-block .rs-item--image {
  width: 100%;
  min-width: none;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Remove the unnecessary outer white container */
.cloud-rs-block .rs-item--image img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;

  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.cloud-rs-block__heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

/* BODY */
.cloud-rs-block__body {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  text-align: left;
}

.cloud-rs-block__heading-line1 {
  color: #0d0d0d;
}

.cloud-rs-block__heading-line2 {
  color: #6155f5;
}

.cloud-rs-block__body {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  text-align: left;
}

/* Right column — accordion list */
.cloud-rs-block__right {
  min-width: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual accordion item */
.rs-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

/* Remove default marker */
.rs-item summary {
  list-style: none;
}
.rs-item summary::-webkit-details-marker {
  display: none;
}

.rs-item__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
  min-height: 52px;
}

.rs-item__row:hover {
  background: #f7f9ff;
}

/* Icon + number group */
.rs-item__num-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.rs-item__icon {
  width: 20px;
  height: 20px;
  color: #6155f5;
  flex-shrink: 0;
}

.rs-item__num {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  min-width: 18px;
}

.rs-item__label {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 0.01em;
}

/* Chevron */
.rs-item__chevron {
  width: 16px;
  height: 16px;
  color: #888;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.rs-item[open] .rs-item__chevron {
  transform: rotate(180deg);
}
.rs-item--image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rs-item--image img {
  display: block;
  width: 292px;
  height: 252px;
  max-width: 100%;
  object-fit: contain;
  border-radius: 18px;
}
/* ---- Block 3 responsive ---- */

@media (max-width: 820px) {
  .cloud-rs-block__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 28px;
    width: calc(100% - 32px);
    max-width: none;
    margin: 16px auto 24px;
  }

  .cloud-rs-block__heading {
    font-size: 28px;
    text-align: center;
  }

  .cloud-rs-block__body {
    text-align: center;
  }
  .cloud-rs-block .prose__split--cloud-rs {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
  }

  .cloud-rs-block__left {
    width: 100%;
  }

  .cloud-rs-block .rs-item--image {
    width: 100%;
  }

  .cloud-rs-block .rs-item--image img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .cloud-rs-block__inner {
    padding: 24px 20px;
    width: calc(100% - 24px);
    gap: 22px;
  }

  .cloud-rs-block__heading {
    font-size: 24px;
  }
}

/* Closing section — matches reference: workflow indicator, heading, subtitle, paragraph, CTA */
.page-closer {
  position: relative;
  padding: 64px 0 72px;
  background: url("../img/section-bg.webp") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

/* ---- Inner container ---- */
.page-closer__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ---- Workflow indicator ---- */
.page-closer__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.page-closer__flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.page-closer__flow-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #d0d4f5;
  color: #888;
  box-shadow: 0 2px 8px rgba(97, 85, 245, 0.08);
}

.page-closer__flow-icon--active {
  background: linear-gradient(135deg, #6155f5 0%, #39328f 100%);
  border-color: #6155f5;
  color: #fff;
  box-shadow: 0 4px 16px rgba(97, 85, 245, 0.30);
}

.page-closer__flow-label {
  font-size: 11px;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.page-closer__flow-label--active {
  color: #6155f5;
  font-weight: 600;
}

/* Connecting lines */
.page-closer__flow-line {
  width: 80px;
  height: 1.5px;
  margin-bottom: 18px; /* aligns with icon centre, above the label */
  flex-shrink: 0;
}

.page-closer__flow-line--dashed {
  background: repeating-linear-gradient(
    to right,
    #b0b8f0 0,
    #b0b8f0 5px,
    transparent 5px,
    transparent 10px
  );
}

.page-closer__flow-line--solid {
  background: #6155f5;
}

/* ---- Main heading ---- */
.page-closer__heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.18;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

.page-closer__accent {
  color: #6155f5;
}

/* ---- Subtitle ---- */
.page-closer__subtitle {
  margin: 14px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #1a1a2e;
}

/* ---- Body paragraph ---- */
.page-closer__body {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #4b5563;
  text-align: center;
}

/* ---- CTA button ---- */
.page-closer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  width: 250px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(90deg, #6155f5 0%, #7C3AED 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(97, 85, 245, 0.30);
  transition: transform .18s ease, box-shadow .18s ease;
}

.page-closer__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(97, 85, 245, 0.40);
}

/* ==========================================================================
   Cyber Security — Zero Trust Architecture section
   Scoped entirely to .cyber-zta-section. No other page affected.
   ========================================================================== */

.cyber-zta-section {
  padding: 32px 40px;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.cyber-zta-section__card {
  width: calc(100% - 0px);
  max-width: 1400px;
  /* margin-left: auto !important;
  margin-right: auto; */
  padding: 30px 30px;
  background: #fde8d8;
  border-radius: 20px;
  box-sizing: border-box;
  flex: 0 1 1000px;
}
/* Two-column grid */
.cyber-zta-section__grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

/* Left image box */
.cyber-zta-section__img-wrap {
  width: 260px;
  height: 260px;
  background: #f0f0f2;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cyber-zta-section__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right content */
.cyber-zta-section__content {
  min-width: 0;
  align-self: start;
  padding-top: 8px;
}

.cyber-zta-section__heading {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.6;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

.cyber-zta-section__body {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.60);
  text-align: left;
  width: 450px;
}
/* Intro paragraph below the Cyber Security hero */
.cyber-zta-section__intro {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 28px;
  padding: 0 2px;

  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.68);
  text-align: center;
}

.cyber-zta-section__intro strong {
  font-weight: 700;
  color: #111;
}
/* Capabilities sub-card */
.cyber-zta-section__caps {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 250px;
  margin: 32px auto 0; /* centered */
  padding: 0;
  background: #fff;
  border: none;
  border-radius: 30px;
  overflow: hidden;
  box-sizing: border-box;
}
/* LEFT POLYGONS */
.cyber-zta-section__polys--left img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
}

.cyber-zta-section__polys--left img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 0;
  width: 45px;
  transform: translateY(-50%);
}

.cyber-zta-section__polys--left img:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96px;
}


/* RIGHT POLYGONS */
.cyber-zta-section__polys--right img:nth-child(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
}

.cyber-zta-section__polys--right img:nth-child(2) {
  position: absolute;
  top: 50%;
  right: 0;
  width: 55px;
  transform: translateY(-50%);
}

.cyber-zta-section__polys--right img:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 96px;
}
/* Polygon decoration columns — absolute, partially clipped at card edges */
.cyber-zta-section__polys {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  height: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
  z-index: 0;
}

.cyber-zta-section__polys--left {
  left: 0;
}

.cyber-zta-section__polys--right {
  right: 0;
}

.cyber-zta-section__polys img {
  display: block;
  height: auto;
  object-fit: contain;
  opacity: 0.55;
}

/* Content block — centred as a unit, left-aligned text inside */
.cyber-zta-section__caps-inner {
  position: absolute;
  z-index: 2;

  width: 560px;
  max-width: calc(100% - 190px);

  left: 50%;
  top: 28px;
  transform: translateX(-50%);

  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Title — smaller/lighter than current, matching AIM */
.cyber-zta-section__caps-title {
  margin: 0;
  padding: 0;

  font-size: 13px;
  line-height: 18px;
  font-weight: 600;

  color: #111;
  text-align: center;
  white-space: nowrap;
}

.cyber-zta-section__caps-title strong {
  color: #6155f5;
  font-weight: 700;
}

/* Rule — wider to match AIM, thin and subtle */
.cyber-zta-section__caps-rule {
  display: block;

  width: 270px;
  height: 1px;

  margin: 7px auto 11px;
  padding: 0;

  border: 0;
  background: rgba(0, 0, 0, 0.16);
}
/* List — tighter size, spacing and line-height to match AIM */
.cyber-zta-section__caps-list {
  width: 100%;
  margin: 0;
  padding: 0 0 0 17px;

  display: flex;
  flex-direction: column;
  gap: 4px;

  list-style: disc;
  text-align: left;
  box-sizing: border-box;
}

.cyber-zta-section__caps-list li {
  margin: 0;
  padding: 0;

  font-size: 13px;
  line-height: 18px;
  font-weight: 400;

  color: #111;
  text-align: left;
}
/* ---- Responsive ---- */

@media (max-width: 820px) {
  .cyber-zta-section {
    padding: 20px 16px;
  }

   .cyber-zta-section__card {
    width: calc(100% - 24px);
    max-width: none;
    padding: 32px 28px;
    text-align: center;
  }

  .cyber-zta-section__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cyber-zta-section__img-wrap {
    width: 100%;
    height: 220px;
    max-width: 300px;
    margin: 0 auto;
  }

  .cyber-zta-section__heading {
    font-size: 28px;
    text-align: center;
  }

  .cyber-zta-section__body {
    width: auto;              /* IMPORTANT: removes 400px desktop width */
    max-width: 100%;
    text-align: center;
  }

  .cyber-zta-section__caps {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
    margin: 32px auto 0;
    justify-content: center;
  }

  .cyber-zta-section__caps-inner {
    position: relative;
    width: 100%;
    max-width: none;
    left: auto;
    top: auto;
    transform: none;
    padding: 20px 20px;
  }
  .cyber-zta-section__caps-title {
    white-space: normal;
    text-align: center;
  }

  .cyber-zta-section__caps-list {
    width: 100%;
    text-align: center;
  }
  .cyber-dp-block__heading,
  .cyber-dp-block__body,
  .cyber-dp-block__caps-label{
    text-align: center;
  }

  @media (min-width: 821px) {
  .cyber-zta-section__caps {
    height: 250px;
  }

  .cyber-zta-section__caps-inner {
    width: 560px;
    max-width: 560px;
  }

  .cyber-zta-section__polys {
    width: 96px;
  }

  .cyber-zta-section__polys img {
    width: 96px;
  }
}
}

@media (max-width: 480px) {
  .cyber-zta-section__card {
    width: 100%;
    padding: 28px 20px;
  }

  .cyber-zta-section__heading {
    font-size: 24px;
  }

  .cyber-zta-section__img-wrap {
    height: 180px;
  }

  .cyber-zta-section__caps {
    width: 100%;
    height: auto;
    min-height: 250px;
  }

  .cyber-zta-section__caps-inner {
    width: calc(100% - 40px);
    max-width: none;
  }
}

/* ==========================================================================
   page-closer--cloud  (Cloud Modernization page variant)
   Reuses .page-closer background/padding. Adds its own heading, paragraph.
   ========================================================================== */

.page-closer--cloud .page-closer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.page-closer--cloud__heading {
  margin: 0;
  max-width: 1000px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.5;
  font-weight: 550;
  letter-spacing: -0.025em;
  color: #000;
  text-align: center;
}

.page-closer--cloud__heading span {
  color: #5750d8;
}

.page-closer--cloud__body {
  margin: 18px 0 0;
  max-width: 500px;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.60);
  text-align: center;
}

/* CTA inherits .page-closer__cta — add top margin */
.page-closer--cloud .page-closer__cta {
  margin-top: 32px;
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .page-closer--cloud__heading {
    font-size: 30px;
  }

  .page-closer--cloud__body {
    font-size: 14px;
    max-width: 90%;
    padding-inline: 8px;
  }
}

@media (max-width: 480px) {
  .page-closer--cloud__heading {
    font-size: 26px;
  }
}

/* ==========================================================================
   Capability cards (AI Excellence, 6-up; Cyber Security, stacked)
   ========================================================================== */

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 40px;
}

.cap-card {
  display: flex;
  flex-direction: column;
  padding: 26px 26px 30px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.cap-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, .25); }

.cap-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cap-card__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: var(--ink);
}

.cap-card__body {
  margin-top: 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--ink-72);
}

/* Cyber Security lays its capabilities out as full-width bands. */
.cap-band {
  padding: 34px 38px;
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}
.cap-band + .cap-band { margin-top: 28px; }
.cap-band__title {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: var(--ink);
}
.cap-band p { margin-top: 12px; }
.cap-band__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px;
  margin-top: 18px;
}

/* ==========================================================================
   About Us — Figma 1440x3306
   ========================================================================== */

.about {
  padding: 170px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f7f5ff 50%, #eef4ff 100%);
}

.about__title {
  max-width: 720px;
  margin-inline: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  letter-spacing: .06em;
  text-align: center;
  color: #0663c0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.about__prose {
  max-width: 850px;
  margin: 46px auto 0;
}
.about__prose p {
  font-size: 20px;
  line-height: 28px;
  text-align: justify;
  color: var(--ink);
}
.about__prose p + p { margin-top: 20px; }

.about__logo {
  display: block;
  width: 633px;
  max-width: 100%;
  height: auto;
  margin: 54px auto 0;
  filter: drop-shadow(0 0 50px rgba(176, 139, 241, .5));
}

.about__values {
  display: block;
  width: 851px;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0;
  border-radius: 20px;
  box-shadow: 0 0 25px 3px rgba(176, 139, 241, .3);
}

.about__pillars {
  max-width: 1215px;
  margin: 66px auto 0;
  text-align: center;
}
.about__pillars h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--ink);
}
.about__pillars p {
  font-size: 20px;
  line-height: 28px;
  color: var(--ink);
}
.about__pillars > * + * { margin-top: 8px; }
.about__pillars h2:not(:first-child) { margin-top: 30px; }

/* ==========================================================================
   Contact — Figma "Desktop - 5", 1440x1379
   ========================================================================== */

.contact {
  position: relative;
  min-height: 960px;
  padding: 190px 0 70px;
  isolation: isolate;
}

.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__grid {
  display: grid;
  grid-template-columns: 505px minmax(0, 1fr);
  align-items: start;
  gap: 60px;
}

.contact__pitch {
  padding-top: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 64px;
  line-height: 70px;
  letter-spacing: -.01em;
  background-image: linear-gradient(90deg, #6155f5, #39328f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, .44));
}

/* Figma: 505x625 card, r=18, drop shadow 0 4 40 @30% */
.contact__card {
  padding: 37px 41px 40px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, .30);
}

.contact__card h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 30px;
  letter-spacing: .04em;
  color: rgba(6, 43, 91, .9);
  margin-bottom: 30px;
}

.field + .field { margin-top: 14px; }

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--ink);
}

.field input,
.field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 41px;
  padding: 0 12px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .5);
  border-radius: var(--r-tile);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea {
  height: 81px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.4;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--link-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}

.contact__submit {
  width: 100%;
  height: 38px;
  margin-top: 22px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--white);
  background: var(--link-blue);
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: var(--r-btn);
  box-shadow: 0 0 20px rgba(0, 0, 0, .25);
  transition: transform .18s ease, background-color .18s ease;
}
.contact__submit:hover { transform: translateY(-2px); background: #1d4fd8; }

.contact__line {
  margin-top: 42px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: rgba(6, 43, 91, .9);
}
.contact__line a {
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1360px) {
  .page-hero__grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
  .page-hero__title { font-size: 74px; line-height: 72px; }
  .contact__grid { grid-template-columns: 460px minmax(0, 1fr); gap: 40px; }
  .contact__pitch { font-size: 52px; line-height: 60px; }
}

@media (max-width: 1080px) {
  .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero { padding-top: 170px; }
  .page-hero__title { font-size: 56px; line-height: 58px; }
  .page-hero__sub { font-size: 28px; line-height: 38px; }
  .prose__h2 { font-size: 36px; line-height: 42px; }
  .cap-band__cols { grid-template-columns: 1fr; }
}
/* =========================================================
   Contact — tablet/mobile overflow fix
   Keep the page fully inside the viewport below 1000px.
   ========================================================= */

@media (max-width: 1000px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact__pitch {
    font-size: 42px;
    line-height: 50px;
    text-align: center;
  }

  .contact__card {
    width: 100%;
    max-width: 505px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 32px 28px 36px;
  }

  .contact__card input,
  .contact__card textarea {
    box-sizing: border-box;
    max-width: 100%;
  }
}
@media (max-width: 820px) {
  .page-hero__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .prose__split--flip > :first-child { order: 0; }
  .page-hero__art { margin-top: 0; }
  .page-hero__title { font-size: 40px; line-height: 44px; }
  .page-hero { padding-top: 140px; }

  /* Reset the large desktop padding so cards use available width on mobile */

  .cap-grid { grid-template-columns: 1fr; }
  .prose p,
  .about__prose p,
  .about__pillars p {
  text-align: left;
  font-size: 17px;
  line-height: 26px;
}
.prose > .container > p:first-child {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

  .about { padding-top: 130px; }
  .about__title { font-size: 32px; line-height: 40px; }

  .contact { min-height: 0; padding-top: 140px; }
  .contact__pitch { font-size: 38px; line-height: 46px; order: 2; }
  .contact__card { padding: 26px 22px 30px; }
  .page-closer__heading { font-size: 32px; }
  .page-closer__subtitle { font-size: 16px; }
  .page-closer__body { font-size: 14px; max-width: 100%; }
}
/* =========================================================
   AI EXCELLENCE — HERO
   ========================================================= */

.page-hero--ai {
  position: relative;
  width: 100%;
  height: 540px;
  min-height: 540px;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #f4f4ff;
}

.page-hero--ai .page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.page-hero--ai::after {
  display: none;
}

/* HERO CONTAINER */
.page-hero--ai__container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* LEFT CONTENT */
.page-hero--ai__content {
  position: relative;
  z-index: 3;
  width: 42%;
  flex-shrink: 0;
  margin-top: 0;
  margin-left: 0;
}

/* BADGE */
.page-hero--ai__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 262px;
  height: 45px;
  padding: 0 22px;
  gap: 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #6155f5 0%, #39328f 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1;
  font-weight: 450;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(73, 61, 190, .20);
}

/* BADGE ICON */
.page-hero--ai__badge-icon {
  position: relative;
  display: block;
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
}

/* TITLE */
.page-hero--ai__title {
  margin-top: 16px;
  max-width: 500px;
  font-family: var(--font-display);
  font-size: 50px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #5750d8;
  filter: none;
  /* Each line is set explicitly via <br> in the HTML — prevent further wrapping */
  white-space: nowrap;
}

/* RIGHT AI ART — fills the right half, vertically centred, fully visible */
.page-hero--ai__art {
  position: relative;
  z-index: 2;
  flex: 0 1 560px;
  width: 560px;
  max-width: 48%;
  height: auto;
  max-height: 470px;
  top: 35px;
  right: auto;
  margin: 0;
  transform: none;
  object-fit: contain;
  object-position: center center;
  align-self: center;
}


/* =========================================================
   TABLET / SMALL DESKTOP  (≤ 1100px)
   ========================================================= */

@media (max-width: 1100px) {

  .page-hero--ai {
    height: 520px;
    min-height: 520px;
  }

  .page-hero--ai__container {
    max-width: 100%;
    padding-inline: 32px;
    gap: 24px;
  }

  .page-hero--ai__content {
    width: 44%;
  }

  .page-hero--ai__badge {
    width: 240px;
    height: 48px;
    font-size: 18px;
  }

  .page-hero--ai__title {
    font-size: 48px;
    line-height: 1.22;
    max-width: 420px;
  }

  .page-hero--ai__art {
    max-width: none;
    height: 100%;
    max-height: 460px;
  }
}


/* =========================================================
   MOBILE  (≤ 700px)
   ========================================================= */

@media (max-width: 700px) {

  .page-hero--ai {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .page-hero--ai__container {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 100px 20px 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .page-hero--ai__content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  .page-hero--ai__badge {
    width: fit-content;
    max-width: 100%;
    height: 44px;
    padding: 0 16px;
    gap: 8px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero--ai__badge-icon {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }

  .page-hero--ai__title {
    width: 100%;
    max-width: 100%;
    margin-top: 14px;
    font-size: 36px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .page-hero--ai__art {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex: none;
    align-self: stretch;
    object-fit: contain;
  }

  .prose > .container,
  .page-closer > .container,
  .page-closer__inner {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
  }

  .page-closer__flow-line {
    width: 48px;
  }

  .page-closer__cta {
    width: 180px;
    height: 48px;
    font-size: 15px;
  }

  .prose__split {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
    min-height: 0;
    margin-top: 24px;
  }

  /* Reset all flip/variant explicit grid placements so everything stacks in one column */
  .prose__split--flip,
  .prose__split--flip3,
  .prose__split--flip4 {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding: 28px 20px;
    margin-top: 24px;
  }

  .prose__split--flip > :first-child,
  .prose__split--flip > div,
  .prose__split--flip > img,
  .prose__split--flip3 > img,
  .prose__split--flip3 > div,
  .prose__split--flip4 > img,
  .prose__split--flip4 > div {
    grid-column: auto;
    grid-row: auto;
    order: 0;
    width: 100%;
    min-width: 0;
  }
  /* All content divs use full width */
  .prose__split > div,
  .prose__split--flip > div,
  .prose__split--flip3 > div,
  .prose__split--flip4 > div {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  /* Centre-align headings inside all split cards */
  .prose__split .prose__h3,
  .prose__split--flip .prose__h3,
  .prose__split--flip3 .prose__h3,
  .prose__split--flip4 .prose__h3 {
    text-align: center;
  }

  /* Centre-align paragraphs inside all split cards */
  .prose__split p,
  .prose__split--flip p,
  .prose__split--flip3 p,
  .prose__split--flip4 p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* All images centred and capped */
  .prose__split img,
  .prose__split--flip img,
  .prose__split--flip3 img,
  .prose__split--flip4 img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 0 auto;
  }

  .prose__split--flip > :first-child {
    order: 0;
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}


/* =========================================================
   VERY SMALL MOBILE  (≤ 480px)
   ========================================================= */

@media (max-width: 480px) {

  .page-hero--ai__container {
    padding: 90px 16px 30px;
  }

  .page-hero--ai__badge {
    height: 40px;
    font-size: 14px;
    padding-inline: 14px;
  }

  .page-hero--ai__title {
    font-size: 30px;
    line-height: 1.25;
    white-space: normal;
  }

}
/* Fix Cloud Block 1 width on mobile */
@media (max-width: 820px) {
  .prose__split.prose__split--cloud {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .prose__split.prose__split--cloud {
    width: calc(100% + 8px);
    max-width: none;
    margin-left: -4px;
    margin-right: -4px;
  }
}
/* =========================================================
   MOBILE FIX — AI EXCELLENCE / CLOUD / DIGITAL TRANSFORMATION
   Prevent text and content from overflowing on mobile.
   ========================================================= */

@media (max-width: 820px) {

  .service-page .prose,
  .service-page .prose > .container {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
  }

  /* Fix the main prose paragraph that currently has width: 450px */
  .service-page .prose p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* All image/text cards */
  .service-page .prose__split {
    width: calc(100% - 32px);
    max-width: none;
    min-width: 0;
    box-sizing: border-box;
  }

  .service-page .prose__split > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .service-page .prose__split img {
    max-width: 100%;
    height: auto;
  }

  .service-page .prose__split--cloud p:not(.prose__eyebrow) {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Cloud migration / Digital transformation cards */
  

  .service-page .cloud-services-block__text,
  .service-page .cloud-rs-block__left,
  .service-page .cloud-rs-block__right {
    min-width: 0;
    max-width: 100%;
  }

  .service-page .cloud-services-block__body,
  .service-page .cloud-rs-block__body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Prevent images from forcing horizontal overflow */
  .service-page img {
    max-width: 100%;
  }

  /* Closing section */
  .service-page .page-closer__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 20px;
    box-sizing: border-box;
  }

  .service-page .page-closer__heading,
  .service-page .page-closer--cloud__heading,
  .service-page .page-closer__subtitle,
  .service-page .page-closer__body {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {

  .service-page .prose__split,
  .service-page .prose__split--cloud,
  .service-page .cloud-services-block__inner,
  .service-page .cloud-rs-block__inner {
    width: calc(100% - 24px);
  }

  .service-page .prose__split {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-page .prose p {
    width: 100%;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.65;
  }
}
@media (max-width: 700px) {
  .prose.prose--cloud > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .prose.prose--cloud > .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .prose__split--cloud {
    width: 100%;
  }
}
/* =========================================================
   FINAL MOBILE WIDTH FIX
   Make Cloud HCAF and Cloud Migration cards use
   the exact same outer width on mobile.
   ========================================================= */

@media (max-width: 700px) {

  /* Cloud Migration block */
  .cloud-services-block__inner {
    width: calc(100vw - 40px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  /* 7 R's block */
  .cloud-rs-block__inner {
    width: calc(100vw - 40px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
}

.cyber-zta-section__caps {
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center;
}

/* ==========================================================================
   About Us — intro section (Who We Are + Our Approach cards)
   Unique class names. Cannot affect any other page or section.
   ========================================================================== */

.ab-intro {
  padding-top: 150px;
  background: transparent;
}

/* Centered "About Us" page title */
.ab-intro__page-title {
  margin: 0 0 40px;
  font-family: var(--font-display);
  font-size: 45px;
  line-height: 1.15;
  font-weight: 600;
  text-align: center;
  /* Purple/blue gradient matching reference */
  background-image: linear-gradient(90deg, #6155f5 0%, #39328f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.ab-intro__card {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 52px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background:
    url("../img/ab-bg.jpg") center / cover no-repeat,
    #fff;
  overflow: hidden;
}

.ab-intro__card--mt {
  margin-bottom: 28px;
}

/* Two-column grid */
.ab-intro__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.ab-intro__grid--normal {
  /* Text left, image right */
  grid-template-columns: minmax(0, 1fr) 240px;
}

.ab-intro__grid--flip {
  /* Image left, text right */
  grid-template-columns: 240px minmax(0, 1fr);
}

/* Text column */
.ab-intro__text {
  min-width: 0;
  align-self: start;
}

.ab-intro__text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(0, 0, 0, 0.68);
  text-align: left;
  width:400px;
}

.ab-intro__text p:last-child {
  margin-bottom: 0;
}

/* Card heading */
.ab-intro__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.22;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
  width: 600;
}

/* Image container */
.ab-intro__img-wrap {
  align-self: start;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.ab-intro__img-wrap img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* ---- Responsive ---- */

@media (max-width: 820px) {
  .ab-intro {
    padding: 100px 16px 16px;
  }

  .ab-intro__page-title {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .ab-intro__card {
    width: calc(100% - 32px);
    max-width: none;
    padding: 32px 24px;
  }

  .ab-intro__grid--normal,
  .ab-intro__grid--flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Images stack below text on mobile */
  .ab-intro__grid--normal .ab-intro__img-wrap {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .ab-intro__grid--flip .ab-intro__img-wrap {
    order: 2;
    max-width: 300px;
    margin: 0 auto;
  }

  .ab-intro__heading {
    font-size: 24px;
    text-align: center;
  }
  .ab-intro__text p {
    font-size: 14px;
    line-height: 1.65;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .ab-intro__card {
    width: calc(100% - 24px);
    padding: 24px 18px;
  }

  .ab-intro__page-title {
    font-size: 28px;
  }

  .ab-intro__heading {
    font-size: 22px;
  }

  .ab-intro__img-wrap {
    max-width: 240px !important;
  }
}

/* ==========================================================================
   About Us — Story Behind the Honeycomb Logo section
   Unique class names. Cannot affect any other page or section.
   ========================================================================== */

.about-story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  background: transparent;
}

/* Centered logo */
.about-story-section__logo {
  display: block;
  width: 280px;
  height: auto;
  object-fit: contain;
  margin: 10px auto;
}

/* Thin divider rules */
.about-story-section__rule {
  display: block;
  width: min(520px, 80%);
  height: 1px;
  margin: 22px auto;
  border: none;
  background: rgba(97, 85, 245, 0.25);
}

/* Gradient heading */
.about-story-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.02em;
  background-image: linear-gradient(90deg, #6155f5 0%, #39328f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-story-section__card {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 50px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);

  background: url("../img/ab-bg.jpg") center / cover no-repeat;

  overflow: hidden;
}

.about-story-section__card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(0, 0, 0, 0.68);
  text-align: left;
}

.about-story-section__card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   About Us — Our Vision section
   ========================================================================== */

.about-vision-section {
  display: flex;
  justify-content: center;
  background: transparent;
  margin-top: 30px;
}

/* Outer light-blue card */
.about-vision-section__card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 48px;

  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 28px auto 0;
  padding: 48px 52px;
  box-sizing: border-box;

  background: #E9F0FF;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
}

/* Left image */
.about-vision-section__image-wrap {
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  align-self: center;
}

.about-vision-section__image {
  display: block;
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

/* Right content */
.about-vision-section__content {
  min-width: 0;
  align-self: center;
  margin-left: 190px;
}

.about-vision-section__heading {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.18;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

.about-vision-section__accent {
  color: #6155f5;
}

.about-vision-section__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(0, 0, 0, 0.68);
  width: 450px;
}

/* ---- Responsive ---- */

@media (max-width: 820px) {

  .about-story-section {
    padding: 36px 16px 16px;
  }

  .about-story-section__title {
    font-size: 28px;
  }

  .about-story-section__card {
    width: calc(100% - 32px);
    max-width: none;
    padding: 32px 24px;
    text-align: center;
  }

  .about-vision-section {
    padding: 16px 16px 36px;
  }

  .about-vision-section__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    width: calc(100% - 32px);
    max-width: none;
  }

  .about-vision-section__image-wrap {
    margin: 0 auto;
  }

  .about-vision-section__image {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }

  .about-vision-section__heading {
    font-size: 28px;
    text-align: center;
  }

  .about-vision-section__body {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .about-story-section__title {
    font-size: 24px;
  }

  .about-story-section__card {
    width: calc(100% - 24px);
    padding: 24px 18px;
  }

  .about-story-section__rule {
    width: 70%;
  }

  .about-vision-section__card {
    padding: 24px 18px;
    width: calc(100% - 24px);
  }

  .about-vision-section__heading {
    font-size: 24px;
  }

  .about-vision-section__image {
    max-width: 240px;
    height: 170px;
  }
}

/* ==========================================================================
   About Us — Our Mission section
   Unique class names. Cannot affect any other page or section.
   ========================================================================== */

.about-mission-section {
  display: flex;
  justify-content: center;
  padding-top: 30px;
  background: transparent;
}

/* White card with subtle border */
.about-mission-section__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: -48px;

  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 52px;
  box-sizing: border-box;

  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
}

/* Left text content */
.about-mission-section__content {
  min-width: 0;
  align-self: center;
  margin-left: 100px;
}

.about-mission-section__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.18;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

.about-mission-section__accent {
  color: #6155f5;
}

.about-mission-section__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(0, 0, 0, 0.68);
  width: 450px;
}

/* Right image */
.about-mission-section__image-wrap {
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  align-self: flex-start;
}

.about-mission-section__image {
  display: block;
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-right: 100px;
}

/* ==========================================================================
   About Us — Our Values section
   ========================================================================== */

.about-values-section {
  display: flex;
  justify-content: center;
  padding-bottom: 30px;
  background: transparent;
}

/* Light green card */
.about-values-section__card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 48px;

  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 28px auto 0;
  padding: 48px 52px;
  box-sizing: border-box;

  background: #edfff2;
  border-radius: 20px;
}

/* Left image */
.about-values-section__image-wrap {
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  align-self: center;
}

.about-values-section__image {
  display: block;
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

/* Right text content */
.about-values-section__content {
  min-width: 0;
  align-self: center;
}

.about-values-section__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 1.18;
  font-weight: 600;
  color: #0d0d0d;
  letter-spacing: -0.02em;
}

.about-values-section__accent {
  color: #6155f5;
}

.about-values-section__body {
  margin: 0;
  font-size: 14px;
  line-height: 1.68;
  color: rgba(0, 0, 0, 0.68);
}

/* ---- Responsive ---- */

@media (max-width: 820px) {

  .about-mission-section,
  .about-values-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .about-mission-section__card,
  .about-values-section__card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    width: calc(100% - 32px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  /* Values: image already left, stays above text on mobile */
  .about-values-section__image-wrap {
    order: -1;
    margin: 0 auto;
  }

  .about-mission-section__image,
  .about-values-section__image {
    width: 100%;
    max-width: 300px;
    height: 200px;
  }

  .about-mission-section__heading,
  .about-values-section__heading {
    font-size: 28px;
    text-align: center;
  }

  .about-mission-section__body,
  .about-values-section__body {
    text-align: center;
  }
}

@media (max-width: 480px) {

  .about-mission-section__card,
  .about-values-section__card {
    padding: 24px 18px;
    width: calc(100% - 24px);
  }

  .about-mission-section__heading,
  .about-values-section__heading {
    font-size: 24px;
  }

  .about-mission-section__image,
  .about-values-section__image {
    max-width: 240px;
    height: 170px;
  }
}
@media (max-width: 820px) {
  .about-mission-section__card,
  .about-values-section__card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Image first on mobile */
  .about-mission-section__image-wrap,
  .about-values-section__image-wrap,
  .ab-intro__img-wrap {
    order: -1;
    margin: 0 auto;
  }

  /* Text comes after image */
  .about-mission-section__content,
  .about-values-section__content,
  .ab-intro__text {
    order: 1;
  }

  .about-mission-section__heading,
  .about-values-section__heading {
    text-align: center;
  }

  .about-mission-section__body,
  .about-values-section__body {
    text-align: center;
  }
  .ab-intro__grid--flip {
    display: flex !important;
    flex-direction: column !important;
  }

  .ab-intro__grid--flip .ab-intro__img-wrap {
    order: 1 !important;
  }

  .ab-intro__grid--flip .ab-intro__text {
    order: 2 !important;
  }
}

/* ==========================================================================
   Contact Us page — rebuilt section (.cpage)
   All class names unique to this section. Cannot affect other pages.
   ========================================================================== */

.cpage {
  position: relative;
  min-height: 100vh;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
}

/* Full-bleed background photo */
.cpage__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 95% top;
  z-index: -2;
}

/* Semi-transparent overlay so text stays readable */
.cpage__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.15);
}

/* Centred content wrapper */
.cpage__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 48px 140px;
  box-sizing: border-box;
}

/* ---- Hero heading area ---- */
.cpage__hero {
  text-align: center;
  margin-bottom: 48px;
}

.cpage__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.02em;
  background-image: linear-gradient(90deg, #6155f5 0%, #39328f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cpage__subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.65);
}

/* ---- Two-column layout ---- */
.cpage__cols {
  display: grid;
  grid-template-columns: 340px 600px;
  gap: 56px;
  align-items: start;
  justify-content: center;
}
.cpage__form-card {
  width: 100%;
  box-sizing: border-box;
}
/* ---- Left column ---- */
.cpage__col-heading {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.5;
  font-weight: 600;
  color: #0d0d0d;
}

.cpage__col-lede {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.60);
  margin-bottom: 16px;
}

/* Info cards */
.cpage__info-card {
  display: flex;
  align-items: flex-start;
  padding: 14px 16px;
  gap: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.cpage__info-card:last-of-type {
  margin-bottom: 0;
}

.cpage__info-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: #f0eeff;
  border-radius: 8px;
  flex-shrink: 0;
}

.cpage__info-label {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

.cpage__info-primary {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 600;
  color: #0d0d0d;
}

.cpage__info-primary a {
  color: inherit;
  text-decoration: none;
}

.cpage__info-primary a:hover {
  color: #6155f5;
}

.cpage__info-note {
  margin: 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.50);
}

/* ---- Right column: form card ---- */
.cpage__form-card {
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.cpage__form-heading {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  color: #0d0d0d;
}

.cpage__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Two-field row */
.cpage__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cpage__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cpage__field--full {
  grid-column: 1 / -1;
}

.cpage__label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  letter-spacing: 0.01em;
}

.cpage__input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  font: inherit;
  font-size: 13.5px;
  color: #111;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  box-sizing: border-box;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  -webkit-appearance: none;
}

.cpage__input:focus {
  outline: none;
  border-color: #6155f5;
  box-shadow: 0 0 0 3px rgba(97, 85, 245, 0.15);
}

.cpage__input::placeholder {
  color: rgba(0, 0, 0, 0.30);
}

.cpage__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
  cursor: pointer;
}

.cpage__textarea {
  height: 100px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.5;
}

/* Checkbox row */
.cpage__checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.cpage__checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #0B1F3B;
  cursor: pointer;
}

.cpage__checkbox-label {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.60);
}

/* Submit button */
.cpage__submit {
  width: 100%;
  height: 48px;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #376FF2 0%, #7C3AED 64%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(97, 85, 245, 0.30);
  transition: transform .15s ease, box-shadow .15s ease;
}

.cpage__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(97, 85, 245, 0.40);
}

/* ---- Responsive ---- */

/* =========================================================
   Contact page — tablet overflow fix  (821px – 1000px)
   .cpage__cols min-width is 340+600+56 = 996px which
   overflows at 853px and 912px. Stack to single column.
   ========================================================= */
@media (min-width: 821px) and (max-width: 1000px) {

  .cpage__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  .cpage__cols {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cpage__title {
    text-align: center;
  }

  .cpage__form-card {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .cpage__left {
    text-align: center;
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .cpage__col-heading,
  .cpage__col-lede {
    text-align: center;
  }

  .cpage__input {
    box-sizing: border-box;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  .cpage__inner {
    padding: 142px 24px 60px;
  }

  .cpage__title {
    font-size: 34px;
  }

  .cpage__subtitle {
    font-size: 14px;
  }

  .cpage__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cpage__form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .cpage__inner {
    padding: 40px 16px 48px;
  }

  .cpage__title {
    font-size: 26px;
  }

  .cpage__form-card {
    padding: 24px 20px 22px;
  }
}
@media (max-width: 768px) {

  /* Keep the hero title completely below the fixed navbar */
  .cpage__hero {
    padding-top: 90px;
    text-align: center;
  }

  .cpage__title {
    text-align: center;
    margin-top: 0;
  }

  .cpage__subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Center the complete mobile content */
  .cpage__inner {
    width: 100%;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .cpage__cols {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .cpage__left,
  .cpage__form-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cpage__left {
    text-align: center;
  }

  .cpage__col-heading,
  .cpage__col-lede {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

}
@media (max-width: 820px) {
  .about-story-section__card {
    margin-left: auto;
    margin-right: auto;
  }

  .about-story-section__card p {
    text-align: center;
  }
}
@media (min-width: 701px) and (max-width: 820px) {
  .service-page .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
  }

  .service-page .page-hero__title {
    font-size: 42px;
    line-height: 46px;
    max-width: 100%;
  }

  .service-page .page-hero__art {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 0;
  }
}

/* ==========================================================================
   SERVICE PAGES — tablet fix  (768px – 912px)
   Covers widths where the ≤820px mobile block has not yet fired (853/912)
   AND where the 700px mobile block has not yet fired (768/820).
   All selectors are scoped to .service-page so no other page is affected.
   ========================================================================== */

@media (min-width: 768px) and (max-width: 912px) {

  /* ------------------------------------------------------------------
     HERO — prevent title clipping / overlap with artwork
     The title uses white-space: nowrap + 48px font. At these widths
     the 44%-wide content column (~375–401px) cannot hold it without
     wrapping. Allow wrapping and reduce font size enough to stay inside.
     ------------------------------------------------------------------ */
  .page-hero--ai__badge {
    width: max-content;
    min-width: 0;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .service-page .page-hero--ai__title {
    white-space: normal;
    font-size: 38px;
    line-height: 1.22;
    max-width: 100%;
  }

  /* Tighten the left content column so the art has enough room
     and the two elements never overlap */
     /* =========================================================
     SERVICE HERO — 768px to 912px ONLY
     ========================================================= */

  .page-hero--ai__container {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }

  .service-page .page-hero--ai__content {
    width: 46%;
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
  }

  .service-page .page-hero--ai__title {
    white-space: normal;
    font-size: 30px;
    line-height: 1.22;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .service-page .page-hero--ai__art {
    max-width: 50%;
    flex-shrink: 1;
  }

  /* ------------------------------------------------------------------
     PROSE — base paragraph width is 450px (desktop hard value).
     At 853px/912px the service-page ≤820px override doesn't fire.
     Reset it here so paragraphs fill their container correctly.
     ------------------------------------------------------------------ */

  .service-page .prose p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
  }

  /* ------------------------------------------------------------------
     PROSE SPLIT CARDS — at 853px/912px the desktop 2-col layout
     (292px image + 1fr text, padding 64px 112px) is active.
     The 112px side padding leaves only ~199px of text space at 853px.
     Reduce padding and constrain the card so content fits cleanly.
     ------------------------------------------------------------------ */

  .service-page .prose__split,
  .service-page .prose__split--flip,
  .service-page .prose__split--flip3,
  .service-page .prose__split--flip4 {
    width: calc(100% - 32px);
    max-width: none;
    padding: 40px 40px;
    box-sizing: border-box;
  }

  /* Ensure the text column never has a constrained fixed max-width
     that lets it bleed into the image column */
  .service-page .prose__split > div,
  .service-page .prose__split--flip > div,
  .service-page .prose__split--flip3 > div,
  .service-page .prose__split--flip4 > div {
    min-width: 0;
    width: 100%;
  }

  .service-page .prose__h3 {
    font-size: 26px;
    line-height: 1.4;
    max-width: 100%;
  }

  .service-page .prose__split img,
  .service-page .prose__split--flip img,
  .service-page .prose__split--flip3 img,
  .service-page .prose__split--flip4 img {
    max-width: 100%;
    height: auto;
  }

  /* ------------------------------------------------------------------
     CYBER ZTA BODY — desktop sets width: 500px which overflows the
     ~361px text column at 853px and ~420px column at 912px.
     The ≤820px fix does not cover these widths. Override here.
     ------------------------------------------------------------------ */

  .cyber-zta-section__body {
    width: auto;
    max-width: 100%;
    min-width: 0;
  }

  /* Also ensure the ZTA card and intro paragraph don't overflow */
  .cyber-zta-section__card {
    width: calc(100% - 32px);
    box-sizing: border-box;
  }

  .cyber-zta-section__intro {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* ------------------------------------------------------------------
     CLOUD / CYBER CONTENT BLOCKS — outer geometry uses
     width: calc(100% - 80px) which is fine, but padding 52px×2 = 104px
     leaves limited inner space. Reduce side padding moderately.
     ------------------------------------------------------------------ */

 .cyber-infra-block__card,
  .cyber-grc-block__card,
  .cyber-dp-block__card {
    width: calc(100% - 32px);
    padding-left: 32px;
    padding-right: 32px;
    box-sizing: border-box;
  }

  /* Ensure body text inside these blocks wraps and doesn't overflow */
  .cloud-services-block__body,
  .cloud-rs-block__body,
  .cyber-infra-block__body,
  .cyber-dp-block__body {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* ------------------------------------------------------------------
     PAGE CLOSER — ensure heading and body text stay contained.
     No overflow risk but be safe with wide headings.
     ------------------------------------------------------------------ */

  .service-page .page-closer__heading {
    font-size: 34px;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-page .page-closer__body {
    max-width: 100%;
    padding-inline: 16px;
    box-sizing: border-box;
  }

}
  @media (min-width: 768px) and (max-width: 1024px) {
  body.service-page--cloud .page-hero--ai__badge {
    width: 280px;
    min-width: 280px;
    max-width: 280px;
    height: 48px;
    padding: 0 20px;
    gap: 10px;
    box-sizing: border-box;
    justify-content: center;
    white-space: nowrap;
  }

  body.service-page--cloud .page-hero--ai__badge-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }

  body.service-page--cloud .page-hero--ai__badge {
    font-size: 18px;
  }
}
/* =========================================================
   FULL STACK PAGE — 768px TABLET LAYOUT
   Keep image + content side by side
   ========================================================= */
@media (min-width: 821px) and (max-width: 1099px) {

  body.service-page--ai .prose__split--flip3,
  body.service-page--ai .prose__split--flip4 {
    width: calc(100% - 48px);
    max-width: none;
    box-sizing: border-box;

    padding: 48px 48px;

    gap: 32px;
  }

  body.service-page--ai .prose__split--flip3 > div,
  body.service-page--ai .prose__split--flip4 > div {
    min-width: 0;
    width: 100%;
  }

  body.service-page--ai .prose__split--flip3 p,
  body.service-page--ai .prose__split--flip4 p {
    max-width: 100%;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 819px) {

  /* First and second content blocks stay side-by-side */
  .service-page--fullstack .prose__split {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 28px;
    align-items: left;
  }

  /* Make the image slightly larger */
  .service-page--fullstack .prose__split .ai-strategy-card__image {
    width: 300px;
    height: 300px;
    margin: 0;
    align-items: end;
  }

  .service-page--fullstack .prose__split .ai-strategy-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Right-side content */
  .service-page--fullstack .prose__split > div:last-child {
    min-width: 0;
  }

  /* Smaller heading so it fits beside the image */
  .service-page--fullstack .prose__h3 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 14px;
  }

  /* Smaller body text */
  .service-page--fullstack .prose__split > div:last-child > p {
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
  }

  /* Second block also remains side-by-side */
  .service-page--fullstack .prose__split--flip {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .service-page--fullstack .prose__split--flip .ai-strategy-card__image {
    width: 300px;
    height: 300px;
  }

  /* Approach points stay compact */
  .service-page--fullstack .prose__point {
    font-size: 12.5px;
    line-height: 1.45;
  }

  .service-page--fullstack .prose__point + .prose__point {
    margin-top: 8px;
  }
}
/* =========================================================
   FULL STACK — Approach section
   Keep text on LEFT and image on RIGHT
   ========================================================= */

.service-page--fullstack .prose__split--flip > :first-child {
  grid-column: 1;
  grid-row: 1;
  order: 0;
}

.service-page--fullstack .prose__split--flip > :last-child {
  grid-column: 2;
  grid-row: 1;
  order: 0;
}

.service-page--fullstack .prose__split--flip .ai-strategy-card__image {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0;
  justify-self: center;
  align-self: center;
}

.service-page--fullstack .prose__split--flip .ai-strategy-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (max-width: 700px) {
  .service-page--fullstack .prose__split--flip > :first-child {
    grid-column: 1;
    grid-row: 2;
    order: 1;
    text-align: center;
  }

  .service-page--fullstack .prose__split--flip > :last-child {
    grid-column: 1;
    grid-row: 1;
    order: 0;
  }

  .service-page--fullstack .prose__split--flip .ai-strategy-card__image {
    width: 100%;
    height: auto;
    max-width: 200px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 912px) {
  .service-page--fullstack .page-hero--ai__badge {
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    gap: 7px;
    font-size: 14px;
  }

  .service-page--fullstack .page-hero--ai__badge-icon {
    width: 21px;
    height: 21px;
    flex-basis: 21px;
  }
}
/* =========================================================
   CLOUD MODERNIZATION
   ALL 3 CONTENT CARDS — SAME OUTER GEOMETRY
   ========================================================= */

body.service-page--cloud .prose__split--cloud,
body.service-page--cloud .prose__split--cloud-services,
body.service-page--cloud .prose__split--cloud-rs {
  width: calc(100% - 80px) !important;
  max-width: 1400px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;

  border-radius: 20px;
}


/* =========================================================
   IMPORTANT:
   HCAF sits inside .prose > .container.
   Make that container use the same width system.
   ========================================================= */

body.service-page--cloud .prose.prose--cloud > .container {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  box-sizing: border-box !important;
}


/* =========================================================
   DESKTOP / TABLET
   ========================================================= */

@media (min-width: 821px) {

  body.service-page--cloud .prose__split--cloud,
  body.service-page--cloud .prose__split--cloud-services,
  body.service-page--cloud .prose__split--cloud-rs {
    width: calc(100% - 80px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 820px) {

  body.service-page--cloud .prose__split--cloud,
  body.service-page--cloud .prose__split--cloud-services,
  body.service-page--cloud .prose__split--cloud-rs {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

  body.service-page--cloud .prose__split--cloud,
  body.service-page--cloud .prose__split--cloud-services,
  body.service-page--cloud .prose__split--cloud-rs {
    width: calc(100% - 24px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

}

/* =========================================================
   DIGITAL TRANSFORMATION — CONSISTENT BLOCK WIDTH
   Same sizing system as Cloud Modernization
   ========================================================= */

body.service-page--digital .cloud-services-block {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

body.service-page--digital .cloud-services-block__inner {
  width: 100%;
  max-width: 1100px;
  margin: 24px auto;
  box-sizing: border-box;
}

/* Keep Digital Transformation blocks aligned */
body.service-page--digital .prose__split--cloud,
body.service-page--digital .cloud-services-block__inner {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Tablet — 1024px */
@media (max-width: 1024px) {
  body.service-page--digital .prose__split--cloud,
  body.service-page--digital .cloud-services-block__inner {
    width: calc(100% - 48px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  body.service-page--digital .cloud-services-block__inner {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

/* Smaller tablet — 820px */
@media (max-width: 820px) {
  body.service-page--digital .prose__split--cloud,
  body.service-page--digital .cloud-services-block__inner {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  body.service-page--digital .cloud-services-block__inner {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  body.service-page--digital .prose__split--cloud,
  body.service-page--digital .cloud-services-block__inner {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

  body.service-page--digital .cloud-services-block__inner {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* Desktop — left aligned */
body.service-page--digital .prose__split--cloud .prose__eyebrow {
  text-align: center;
}

/* Mobile/tablet — centered */
@media (max-width: 820px) {
  body.service-page--digital .prose__split--cloud .prose__eyebrow {
    text-align: center;
  }
}
/* ==========================================================================
   CYBER SECURITY — MOBILE ZTA ORDER
   Keep image first, content second, capabilities third.
   ========================================================================== */

@media (max-width: 820px) {

  .cyber-zta-section__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Image stays first */
  .cyber-zta-section__img-wrap {
    order: 1;
  }

  /* ZTA heading + description */
  .cyber-zta-section__content {
    order: 2;
    width: 100%;
    min-width: 0;
  }

  /* Capabilities box MUST come below the main content */
  .cyber-zta-section__caps {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 24px 0 0;
    box-sizing: border-box;
  }

  .cyber-zta-section__caps-inner {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
}
@media (max-width: 820px) {

  /* Cloud & Infrastructure Security — keep content left aligned */
  .cyber-infra-block__text {
    text-align: left;
  }
  .cyber-infra-block__services-label{
    font-weight: 500;
  }
  .cyber-infra-block__body {
    text-align: left;
  }

  .cyber-infra-block__list,
  .cyber-grc-block__list {
    text-align: left;
    padding-left: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .cyber-infra-block__list li {
    text-align: left;
  }
}
@media (min-width: 821px) {
  body.service-page--cloud .prose__split--cloud-rs {
    width: calc(100% - 28px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    padding-left: 58px !important;
    padding-right: 58px !important;

    grid-template-columns: 1fr 1fr !important;
    gap: 70px !important;

    /* Flip image and content */
    direction: rtl;
  }

  body.service-page--cloud .prose__split--cloud-rs .rs-item--image {
    width: 100%;
    min-width: 0;
  }

  body.service-page--cloud .prose__split--cloud-rs .rs-item--image img {
    width: 100%;
    max-width: none;
    height: auto;
    display: block;
  }
  body.service-page--cloud .prose__split--cloud-rs > * {
    direction: ltr;
  }
   /* -------------------------
     OUR APPROACH / HCAF
     ------------------------- */
  body.service-page--cloud .prose__split--cloud {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
    /* Match 7 R's internal left/right spacing */
    padding-left: 58px !important;
    padding-right: 58px !important;
    /* More room for the content */
    grid-template-columns: 48% minmax(0, 50%) !important;
    gap: 15px !important;
  }

  body.service-page--cloud .prose__split--cloud > img {
    width: 80% !important;
    max-width: 80% !important;
    height: auto !important;
    display: block !important;
  }
  /* -------------------------
     CLOUD MIGRATION SERVICES
     ------------------------- */
    body.service-page--cloud .prose__split--cloud-services {
    width: calc(100% - 48px) !important;
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;

    box-sizing: border-box !important;

    /* Same internal spacing as 7 R's */
    padding-left: 58px !important;
    padding-right: 58px !important;

    grid-template-columns: 38% minmax(0, 62%) !important;
    gap: 30px !important;

    box-sizing: border-box !important;
  }

  body.service-page--cloud .cloud-services-block__image-wrap {
    width: 70% !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  body.service-page--cloud .cloud-services-block__image-wrap img {
    width: 70% !important;
    max-width: none !important;
    height: auto !important;
    display: block !important;
  }
  
}
/* =========================================================
   AI EXCELLENCE — IMAGE SIZE ONLY
   Does NOT change grid, card width, spacing or responsiveness
   ========================================================= */

body.service-page--ai .prose__split > img,
body.service-page--ai .prose__split--flip > img,
body.service-page--ai .prose__split--flip3 > img,
body.service-page--ai .prose__split--flip4 > img {
  width: 420px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
/* =========================================================
   FULL STACK — IMAGE SIZE
   Desktop large, responsive below 1100px
   ========================================================= */

@media (min-width: 1100px) {

  .service-page--fullstack .prose__split {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 42px;
  }

  .service-page--fullstack .prose__split--flip {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .service-page--fullstack .ai-strategy-card__image {
    width: 400px;
    height: 400px;
    max-width: 400px;
  }

  .service-page--fullstack .ai-strategy-card__image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}


/* 821px–1099px
   Keep image inside the block and prevent text overflow */
@media (min-width: 821px) and (max-width: 1099px) {

  .service-page--fullstack .prose__split {
    grid-template-columns: minmax(0, 36vw) minmax(0, 1fr);
    gap: 32px;
  }

  .service-page--fullstack .prose__split--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 36vw);
  }

  .service-page--fullstack .ai-strategy-card__image {
    width: 100%;
    height: auto;
    max-width: 340px;
    justify-self: center;
  }

  .service-page--fullstack .ai-strategy-card__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }
}


/* 820px and below
   Single-column layout — image stays inside block */
@media (max-width: 820px) {

  .service-page--fullstack .ai-strategy-card__image {
    width: 100%;
    height: auto;
    max-width: 400px;
    justify-self: center;
    margin-inline: auto;
  }

  .service-page--fullstack .ai-strategy-card__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
}
/* =========================================================
   DIGITAL TRANSFORMATION — IMAGE + CONTENT SIZE
   Desktop
   ========================================================= */

@media (min-width: 1100px) {

  .service-page--digital
  .prose__split--cloud.prose__split-bg {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 42px;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg img {
    width: 400px;
    max-width: 400px;
    height: auto;
    object-fit: contain;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg > div {
    min-width: 0;
    width: 100%;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg p {
    width: 100%;
    max-width: 100%;
  }
  .service-page--digital .cloud-services-block__inner {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 42px;
  }

  .service-page--digital .cloud-services-block__image-wrap {
    width: 400px;
    max-width: 400px;
  }

  .service-page--digital .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .service-page--digital .cloud-services-block__text {
    min-width: 0;
    width: 100%;
  }

  .service-page--digital .cloud-services-block__body {
    width: 100%;
    max-width: 100%;
  }
  .service-page--cyber .cyber-zta-section__grid {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 42px;
  }

  .service-page--cyber .cyber-zta-section__img-wrap {
    width: 400px;
    max-width: 400px;
  }

  .service-page--cyber .cyber-zta-section__img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .service-page--cyber .cyber-zta-section__content {
    min-width: 0;
    width: 100%;
  }
  .service-page--cyber .cyber-zta-section__body {
    width: 100%;
    max-width: 100%;
  }
  .service-page--cyber .cloud-services-block__inner--cyber {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 42px;
  }

  .service-page--cyber .cloud-services-block__image-wrap {
    width: 400px;
    max-width: 400px;
  }

  .service-page--cyber .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .service-page--cyber .cloud-services-block__text {
    min-width: 0;
    width: 100%;
  }

  .service-page--cyber .cloud-services-block__body {
    width: 100%;
    max-width: 100%;
  }
  .service-page--cyber .cyber-infra-block__card {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 42px;
  }

  .service-page--cyber .cyber-infra-block__card
  .cyber-zta-section__img-wrap {
    width: 400px;
    max-width: 400px;
  }

  .service-page--cyber .cyber-infra-block__card
  .cyber-zta-section__img-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .service-page--cyber .cyber-infra-block__text {
    min-width: 0;
    width: 100%;
  }

  .service-page--cyber .cyber-infra-block__body {
    width: 100%;
    max-width: 100%;
  }
  .service-page--cyber .cyber-dp-block__card {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 42px;
  }

  .service-page--cyber .cyber-dp-block__card
  .cloud-services-block__image-wrap {
    width: 400px;
    max-width: 400px;
  }

  .service-page--cyber .cyber-dp-block__card
  .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .service-page--cyber .cyber-dp-block__text {
    min-width: 0;
    width: 100%;
  }

  .service-page--cyber .cyber-dp-block__body {
    width: 100%;
    max-width: 100%;
  }
}


/* =========================================================
   DIGITAL TRANSFORMATION — TABLET
   821px–1099px
   ========================================================= */

@media (min-width: 821px) and (max-width: 1099px) {

  .service-page--digital
  .prose__split--cloud.prose__split-bg {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
    box-sizing: border-box;
    min-width: 0;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg img {
    width: 340px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg > div {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg p {
    width: 100%;
    max-width: 100%;
  }
  .service-page--digital .cloud-services-block__inner {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    box-sizing: border-box;
    min-width: 0;
  }

  .service-page--digital .cloud-services-block__image-wrap {
    width: 340px;
    max-width: 100%;
  }

  .service-page--digital .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  .service-page--digital .cloud-services-block__text {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }

  .service-page--digital .cloud-services-block__body {
    width: 100%;
    max-width: 100%;
  }
  .service-page--cyber .cyber-zta-section__grid {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
  }

  .service-page--cyber .cyber-zta-section__img-wrap {
    width: 340px;
    max-width: 100%;
  }


  /* AI Security */
  .service-page--cyber .cloud-services-block__inner--cyber {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
  }
  .service-page--cyber .cloud-services-block__image-wrap {
    width: 340px;
    max-width: 100%;
  }


  /* Infrastructure */
  .service-page--cyber .cyber-infra-block__card {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 30px;
  }

  .service-page--cyber .cyber-infra-block__card
  .cyber-zta-section__img-wrap {
    width: 340px;
    max-width: 100%;
  }
  /* Data Protection */
  .service-page--cyber .cyber-dp-block__card {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
  }

  .service-page--cyber .cyber-dp-block__card
  .cloud-services-block__image-wrap {
    width: 340px;
    max-width: 100%;
  }


  /* All images */
  .service-page--cyber .cyber-zta-section__img-wrap img,
  .service-page--cyber .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* Data Protection */
  .service-page--cyber .cyber-dp-block__card {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
  }

  .service-page--cyber .cyber-dp-block__card
  .cloud-services-block__image-wrap {
    width: 340px;
    max-width: 100%;
  }


  /* All images */
  .service-page--cyber .cyber-zta-section__img-wrap img,
  .service-page--cyber .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  /* Prevent text overflow */
  .service-page--cyber .cyber-zta-section__content,
  .service-page--cyber .cloud-services-block__text,
  .service-page--cyber .cyber-infra-block__text,
  .service-page--cyber .cyber-dp-block__text {
    min-width: 0;
    max-width: 100%;
  }
}
/* =========================================================
   DIGITAL TRANSFORMATION — MOBILE
   ========================================================= */

@media (max-width: 820px) {

  .service-page--digital
  .prose__split--cloud.prose__split-bg {
    grid-template-columns: 1fr;
    gap: 24px;
    box-sizing: border-box;
    min-width: 0;
    overflow: hidden;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-inline: auto;
    display: block;
    object-fit: contain;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg > div {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .service-page--digital
  .prose__split--cloud.prose__split-bg p {
    width: 100%;
    max-width: 100%;
  }
  .service-page--digital .cloud-services-block__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    min-width: 0;
    box-sizing: border-box;
  }

  .service-page--digital .cloud-services-block__image-wrap {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }

  .service-page--digital .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  .service-page--digital .cloud-services-block__text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .service-page--digital .cloud-services-block__body {
    width: 100%;
    max-width: 100%;
  }
  .service-page--cyber .cyber-zta-section__grid,
  .service-page--cyber .cloud-services-block__inner--cyber,
  .service-page--cyber .cyber-infra-block__card,
  .service-page--cyber .cyber-dp-block__card {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .service-page--cyber .cyber-zta-section__img-wrap,
  .service-page--cyber .cloud-services-block__image-wrap {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
  .service-page--cyber .cyber-zta-section__img-wrap img,
  .service-page--cyber .cloud-services-block__image-wrap img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .service-page--cyber .cyber-zta-section__content,
  .service-page--cyber .cloud-services-block__text,
  .service-page--cyber .cyber-infra-block__text,
  .service-page--cyber .cyber-dp-block__text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}
/* =========================================================
   FULL STACK — IMAGE SIZE
   ========================================================= */

@media (min-width: 1100px) {

  .service-page--fullstack .prose__split {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 42px;
  }

  .service-page--fullstack .prose__split--flip {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .service-page--fullstack .prose__split .ai-strategy-card__image {
    width: 400px;
    height: 300px;
    margin: 0;
  }

  .service-page--fullstack .prose__split .ai-strategy-card__image img {
    width: 400px;
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
  }
}
/* =========================================================
   AI EXCELLENCE — LARGER CONTENT IMAGES
   Scoped only to the AI Excellence page
   ========================================================= */

@media (min-width: 1100px) {

  .service-page--ai .prose__split {
    grid-template-columns: 400px minmax(0, 1fr);
    gap: 42px;
  }

  .service-page--ai .prose__split--flip {
    grid-template-columns: minmax(0, 1fr) 400px;
  }

  .service-page--ai .prose__split--flip3 {
    grid-template-columns: 400px minmax(0, 1fr);
  }

  .service-page--ai .prose__split--flip4 {
    grid-template-columns: 400px minmax(0, 1fr);
  }

  .service-page--ai .prose__split > img {
    width: 400px;
    max-width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
  }
}
@media (min-width: 1100px) {

  /* Intro + Our Approach */
  .ab-intro__grid--normal {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 36px;
    max-width: 900px;
  }

  .ab-intro__grid--flip {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 36px;
    max-width: 900px;
  }

  .ab-intro__grid .ab-intro__img-wrap {
    width: 320px;
    max-width: 320px;
  }

  .ab-intro__grid .ab-intro__img-wrap img {
    width: 320px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }


  /* Our Vision */
  .about-vision-section__card {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
  }

  .about-vision-section__image-wrap {
    width: 320px;
    max-width: 320px;
  }

  .about-vision-section__image {
    width: 320px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }


  /* Our Mission */
  .about-mission-section__card {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 42px;
  }

  .about-mission-section__image-wrap {
    width: 320px;
    max-width: 320px;
  }

  .about-mission-section__image {
    width: 320px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }


  /* Our Values */
  .about-values-section__card {
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
  }

  .about-values-section__image-wrap {
    width: 320px;
    max-width: 320px;
    height: auto;
  }

  .about-values-section__image {
    width: 320px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

}
/* =========================================================
   FULL STACK — CONTENT BLOCK RESPONSIVE WIDTH
   Same approach as Digital Transformation
   ========================================================= */

body.service-page--fullstack .prose__split {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Content images */
body.service-page--fullstack .ai-strategy-card__image {
  box-sizing: border-box;
  min-width: 0;
}

body.service-page--fullstack .ai-strategy-card__image img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* =========================================================
   1024px
   ========================================================= */

@media (max-width: 1024px) {

  body.service-page--fullstack .prose__split {
    width: calc(100% - 48px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  body.service-page--fullstack .prose__split .ai-strategy-card__image {
    width: 300px;
    height: 300px;
    max-width: 100%;
  }
}


/* =========================================================
   820px
   ========================================================= */

@media (max-width: 820px) {

  body.service-page--fullstack .prose__split {
    width: calc(100% - 32px);
    margin-left: auto;
    margin-right: auto;
  }

  body.service-page--fullstack .prose__split .ai-strategy-card__image {
    width: 280px;
    height: 280px;
    max-width: 100%;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

  body.service-page--fullstack .prose__split {
    width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
  }

}
/* =========================================================
   FULL STACK — 853px IMAGE COLUMN FIX
   ========================================================= */

@media (min-width: 821px) and (max-width: 900px) {

  .service-page--fullstack .prose__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    column-gap: 32px !important;
  }

  /* Remove excessive space around image column */
  .service-page--fullstack .prose__split .ai-strategy-card__image {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: center !important;
  }

  .service-page--fullstack .prose__split .ai-strategy-card__image img {
    display: block !important;
    width: 100% !important;
    max-width: 360px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  /* Keep text inside its own half */
  .service-page--fullstack .prose__split > div:not(.ai-strategy-card__image) {
    min-width: 0 !important;
    width: 100% !important;
  }
}
/* =========================================================
   FULL STACK — 853px ONLY
   Reduce image column + card padding
   ========================================================= */

@media (min-width: 821px) and (max-width: 900px) {

  .service-page--fullstack .prose__split,
  .service-page--fullstack .prose__split--flip {
    grid-template-columns: 260px minmax(0, 1fr) !important;
    gap: 28px !important;
    padding: 36px 32px !important;
    width: calc(100% - 48px) !important;
    box-sizing: border-box;
  }

  /* First block image */
  .service-page--fullstack .prose__split .ai-strategy-card__image {
    width: 260px !important;
    max-width: 260px !important;
    height: auto !important;
    margin: 0 !important;
    justify-self: center !important;
  }

  .service-page--fullstack .prose__split .ai-strategy-card__image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Second block: text left + image right */
  .service-page--fullstack .prose__split--flip {
    grid-template-columns: minmax(0, 1fr) 260px !important;
  }

  .service-page--fullstack .prose__split--flip .ai-strategy-card__image {
    width: 260px !important;
    max-width: 260px !important;
    height: auto !important;
    margin: 0 !important;
    justify-self: center !important;
  }

  .service-page--fullstack .prose__split--flip .ai-strategy-card__image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Keep text from becoming too narrow */
  .service-page--fullstack .prose__split > div:last-child,
  .service-page--fullstack .prose__split--flip > div:first-child {
    min-width: 0 !important;
  }

  .service-page--fullstack .prose__h3 {
    font-size: 25px !important;
    line-height: 1.35 !important;
    max-width: 100% !important;
  }

  .service-page--fullstack .prose__split p {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}
body.service-page--cloud .cloud-rs-block .prose__split--cloud-rs {
  margin-bottom: 32px !important;
}
body.service-page--cloud .prose.prose--cloud > .container > p:first-child {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
/* =========================================================
   DIGITAL TRANSFORMATION — HERO BADGE
   ========================================================= */

@media (min-width: 821px) and (max-width: 1100px) {
  body.service-page--digital .page-hero--ai__badge {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
    height: 48px;

    padding: 0 18px;
    gap: 8px;

    box-sizing: border-box;
    justify-content: center;
    white-space: nowrap;
    overflow: visible;

    font-size: 16px;
  }

  body.service-page--digital .page-hero--ai__badge-icon {
    position: relative;
    left: 0;
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
  }
}
/* =========================================================
   CYBER SECURITY — CONSISTENT MOBILE LIST STYLING
   Applies to ALL mobile/tablet-mobile widths up to 820px
   ========================================================= */

@media (max-width: 820px) {

  /* =====================================================
     AI & EMERGING TECHNOLOGY SECURITY
     ===================================================== */

  .service-page--cyber
  .cloud-services-block__inner--cyber
  .cloud-services-block__focus-label {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .service-page--cyber
  .cloud-services-block__focus-list {
    margin: 0 !important;
    padding-left: 20px !important;
    list-style: disc;
    text-align: left !important;
  }

  .service-page--cyber
  .cloud-services-block__focus-list li {
    text-align: left !important;
  }


  /* =====================================================
     CLOUD & INFRASTRUCTURE SECURITY
     ===================================================== */

  .service-page--cyber
  .cyber-infra-block__text
  .cloud-services-block__focus-label {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .service-page--cyber
  .cyber-infra-block__list {
    margin: 0 !important;
    padding-left: 20px !important;
    list-style: disc;
    text-align: left !important;
  }

  .service-page--cyber
  .cyber-infra-block__list li {
    text-align: left !important;
  }


  /* =====================================================
     GOVERNANCE, RISK & COMPLIANCE
     Both labels:
     - Frameworks we support
     - Services include
     ===================================================== */

  .service-page--cyber
  .cyber-grc-block__col
  .cloud-services-block__focus-label,

  .service-page--cyber
  .cyber-grc-block__col
  .cyber-grc-block__col-heading {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .service-page--cyber
  .cyber-grc-block__list {
    margin: 0 !important;
    padding-left: 20px !important;
    list-style: disc;
    text-align: left !important;
  }

  .service-page--cyber
  .cyber-grc-block__list li {
    text-align: left !important;
  }


  /* =====================================================
     DATA PROTECTION & PRIVACY
     ===================================================== */

  .service-page--cyber
  .cyber-dp-block__caps-label {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .service-page--cyber
  .cyber-dp-block__list {
    margin: 0 !important;
    padding-left: 20px !important;
    list-style: disc;
    text-align: left !important;
  }

  .service-page--cyber
  .cyber-dp-block__list li {
    text-align: left !important;
  }
  /* =====================================================
     KEEP MAIN HEADINGS / DESCRIPTIONS CENTERED
     ===================================================== */

  .service-page--cyber .cyber-infra-block__heading,
  .service-page--cyber .cyber-infra-block__body,
  .service-page--cyber .cyber-dp-block__heading,
  .service-page--cyber .cyber-dp-block__body {
    text-align: center;
  }

}
/* =========================================================
   CYBER SECURITY — TABLET
   821px–1099px
   Reduce outer side spacing
   ========================================================= */

@media (min-width: 821px) and (max-width: 1099px) {

  .service-page--cyber .cyber-zta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .service-page--cyber .cyber-zta-section__card {
    width: 100%;
    max-width: none;
    padding-left: 36px;
    padding-right: 36px;
  }

  .service-page--cyber .cyber-zta-section__intro {
    width: 100%;
    max-width: none;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
  }
}
/* =========================================================
   CYBER SECURITY — MOBILE / TABLET
   820px and below

   ZTA:
   image + content stacked

   ALL OTHER BLOCKS:
   image + content centered and stacked
   ========================================================= */

@media (max-width: 820px) {

  /* =====================================================
     1. ZERO TRUST ARCHITECTURE
     Keep this as the special first block
     ===================================================== */

  .service-page--cyber .cyber-zta-section__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .service-page--cyber .cyber-zta-section__grid > img {
    width: min(100%, 360px);
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .service-page--cyber .cyber-zta-section__content {
    width: 100%;
    text-align: center;
  }

  .service-page--cyber .cyber-zta-section__heading {
    text-align: center;
  }

  .service-page--cyber .cyber-zta-section__body {
    text-align: center;
  }


  /* =====================================================
     2. AI & EMERGING TECHNOLOGY SECURITY
     Image centered → content centered
     ===================================================== */

  .service-page--cyber
  .cloud-services-block__inner--cyber {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-page--cyber
  .cloud-services-block__inner--cyber
  .cloud-services-block__image-wrap {
    order: 1;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .service-page--cyber
  .cloud-services-block__inner--cyber
  .cloud-services-block__text {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .service-page--cyber
  .cloud-services-block__inner--cyber
  .cloud-services-block__heading,
  .service-page--cyber
  .cloud-services-block__inner--cyber
  .cloud-services-block__body {
    text-align: center;
  }


  /* =====================================================
     3. CLOUD & INFRASTRUCTURE SECURITY
     Image centered → content centered
     ===================================================== */

  .service-page--cyber .cyber-infra-block__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-page--cyber .cyber-infra-block__card > img {
    order: 1;
    width: min(100%, 360px);
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .service-page--cyber .cyber-infra-block__text {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .service-page--cyber .cyber-infra-block__heading,
  .service-page--cyber .cyber-infra-block__body {
    text-align: center;
  }


  /* =====================================================
     4. GRC
     Whole block centered
     ===================================================== */

  .service-page--cyber .cyber-grc-block__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-page--cyber .cyber-grc-block__heading,
  .service-page--cyber .cyber-grc-block__subtitle {
    text-align: center;
  }

  .service-page--cyber .cyber-grc-block__box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-page--cyber .cyber-grc-block__col {
    width: 100%;
    text-align: center;
  }


  /* =====================================================
     5. DATA PROTECTION & PRIVACY
     Image centered → content centered
     ===================================================== */

  .service-page--cyber .cyber-dp-block__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-page--cyber .cyber-dp-block__text {
    order: 2;
    width: 100%;
    text-align: center;
  }

  .service-page--cyber
  .cyber-dp-block__card
  .cloud-services-block__image-wrap {
    order: 1;
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .service-page--cyber .cyber-dp-block__heading,
  .service-page--cyber .cyber-dp-block__body {
    text-align: center;
  }


  /* =====================================================
     COMMON IMAGE BEHAVIOUR
     ===================================================== */

  .service-page--cyber
  .cloud-services-block__image-wrap img,
  .service-page--cyber
  .cyber-infra-block__card > img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
  }


  /* =====================================================
     LABELS + LISTS
     Keep the styling we established earlier
     ===================================================== */

  .service-page--cyber
  .cloud-services-block__focus-label,
  .service-page--cyber
  .cyber-grc-block__col-heading,
  .service-page--cyber
  .cyber-dp-block__caps-label {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
    text-align: left !important;
  }

  .service-page--cyber
  .cloud-services-block__focus-list,
  .service-page--cyber
  .cyber-infra-block__list,
  .service-page--cyber
  .cyber-grc-block__list,
  .service-page--cyber
  .cyber-dp-block__list {
    margin: 0 !important;
    padding-left: 20px !important;
    text-align: left !important;
  }

}
/* Cloud & Infrastructure — centered content */
.service-page--cyber .cyber-infra-block__text {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

.service-page--cyber .cyber-infra-block__heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.service-page--cyber .cyber-infra-block__body {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Label stays left */
.service-page--cyber .cyber-infra-block__services-label {
  margin-top: 20px;
  margin-bottom: 8px;
  text-align: left !important;
}

/* Bullets stay left */
.service-page--cyber .cyber-infra-block__list {
  margin: 0;
  padding-left: 20px;
  text-align: left !important;
}

.service-page--cyber .cyber-infra-block__list li {
  text-align: left !important;
}
@media (max-width: 820px) {

  /* Data Protection & Privacy */
  .service-page--cyber .cyber-dp-block__text {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
  }

  .service-page--cyber .cyber-dp-block__heading {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .service-page--cyber .cyber-dp-block__body {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  /* Capabilities label — left */
  .service-page--cyber .cyber-dp-block__caps-label {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    text-align: left !important;
    font-weight: 700 !important;
  }

  /* Capabilities list — left */
  .service-page--cyber .cyber-dp-block__list {
    margin: 0 !important;
    padding-left: 20px !important;
    text-align: left !important;
  }

  .service-page--cyber .cyber-dp-block__list li {
    text-align: left !important;
  }
}
/* =========================================================
   DIGITAL TRANSFORMATION — FIRST BLOCK
   OUR APPROACH — RESPONSIVE ALIGNMENT
   Desktop: left aligned
   Tablet/mobile: centered + stacked
   ========================================================= */

/* ---------------------------------------------------------
   Desktop — 821px and above
   --------------------------------------------------------- */

@media (min-width: 821px) {

  body.service-page--digital .prose__split--cloud {
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: flex-start;
    text-align: left;
  }

  body.service-page--digital .prose__split--cloud > div {
    width: 100%;
    text-align: left;
    margin: 0;
  }

  body.service-page--digital .prose__split--cloud .prose__eyebrow {
    width: 100%;
    text-align: left;
  }

  body.service-page--digital .prose__split--cloud .prose__h3 {
    width: 100%;
    max-width: 500px;
    margin: 0 0 16px;
    text-align: left;
  }

  body.service-page--digital .prose__split--cloud p:not(.prose__eyebrow) {
    width: 100%;
    max-width: 500px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }
}


/* ---------------------------------------------------------
   Tablet + mobile — 820px and below
   Stack image and content
   --------------------------------------------------------- */

@media (max-width: 820px) {

  body.service-page--digital .prose__split--cloud {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    width: calc(100% - 32px);
    max-width: none;
    min-height: 0;

    margin: 16px auto 24px;
    padding: 32px 20px;

    box-sizing: border-box;

    text-align: center;
  }

  /* Image */
  body.service-page--digital .prose__split--cloud > img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;

    margin: 0 auto;
    justify-self: center;
  }

  /* Content column */
  body.service-page--digital .prose__split--cloud > div {
    width: 100%;
    max-width: 500px;

    margin: 0 auto;

    text-align: center;
  }

  /* "- Our Approach" */
  body.service-page--digital .prose__split--cloud .prose__eyebrow {
    display: block;
    width: 100%;

    margin: 0 0 8px;

    text-align: center;
  }

  /* Heading */
  body.service-page--digital .prose__split--cloud .prose__h3 {
    display: block;
    width: 100%;
    max-width: 500px;

    margin: 0 auto 16px;

    font-size: 26px;
    line-height: 1.45;

    text-align: center;
  }

  /* Description */
  body.service-page--digital .prose__split--cloud p:not(.prose__eyebrow) {
    display: block;
    width: 100%;
    max-width: 500px;

    margin: 0 auto;

    text-align: center;
  }
}


/* ---------------------------------------------------------
   Small mobile — 480px and below
   --------------------------------------------------------- */

@media (max-width: 480px) {

  body.service-page--digital .prose__split--cloud {
    width: calc(100% - 24px);
    padding: 24px 20px;
    gap: 20px;
  }

  body.service-page--digital .prose__split--cloud .prose__h3 {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.45;
  }

  body.service-page--digital .prose__split--cloud p:not(.prose__eyebrow) {
    width: 100%;
    max-width: 100%;
  }

  body.service-page--digital .prose__split--cloud > img {
    max-width: 240px;
  }
}
/* =========================================================
   CYBER SECURITY — CLOUD & INFRASTRUCTURE IMAGE
   Match image width with the other Cyber Security blocks
   ========================================================= */

.service-page--cyber .cyber-infra-block__card > img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
/* =========================================================
   CLOUD & INFRASTRUCTURE SECURITY
   1024px TABLET LABEL FIX
   ========================================================= */

@media (min-width: 821px) and (max-width: 1099px) {

  .service-page--cyber
  .cyber-infra-block__text
  .cloud-services-block__focus-label,

  .service-page--cyber
  .cyber-infra-block__services-label {
    display: block;
    width: 100%;
    margin-top: 20px !important;
    margin-bottom: 8px !important;
    padding: 0 !important;

    font-size: 13.5px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;

    text-align: left !important;
  }

}
/* =========================================================
   CYBER SECURITY — CONSISTENT TABLET LABEL ALIGNMENT
   Applies to ALL blocks: 821px–1099px
   ========================================================= */

@media (min-width: 821px) and (max-width: 1099px) {

  /* AI Security
     Cloud & Infrastructure
     GRC Frameworks
     GRC Services
  */
  .service-page--cyber .cloud-services-block__focus-label,
  .service-page--cyber .cyber-grc-block__col-heading,

  /* Data Protection */
  .service-page--cyber .cyber-dp-block__caps-label,

  /* Zero Trust capabilities */
  .service-page--cyber .cyber-zta-section__caps-title {

    display: block;
    width: 100%;

    margin-top: 20px !important;
    margin-bottom: 8px !important;

    padding: 0 !important;

    font-size: 13.5px !important;
    line-height: 1.5 !important;
    font-weight: 700 !important;

    text-align: left !important;
  }

  /* Keep ZTA capability text aligned with its list */
  .service-page--cyber .cyber-zta-section__caps-inner {
    text-align: left !important;
  }

}
/* =========================================================
   CYBER SECURITY — 821px–1099px
   Paragraph alignment fixes
   ========================================================= */

@media (min-width: 821px) and (max-width: 1099px) {

  /* -----------------------------------------
     CLOUD & INFRASTRUCTURE
     Paragraph = LEFT
     ----------------------------------------- */

  .service-page--cyber .cyber-infra-block__body {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }


  /* -----------------------------------------
     GRC
     Paragraph = CENTER
     ----------------------------------------- */

  .service-page--cyber .cyber-grc-block__subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

}
/* =========================================================
   CYBER SECURITY — FINAL CONTENT ALIGNMENT
   Labels + desktop/tablet paragraph alignment
   ========================================================= */


/* ---------------------------------------------------------
   ALL CYBER SECURITY LABELS
   Consistent across ALL screen sizes
   --------------------------------------------------------- */

.service-page--cyber .cloud-services-block__focus-label,
.service-page--cyber .cyber-grc-block__col-heading,
.service-page--cyber .cyber-dp-block__caps-label {

  display: block;

  margin-top: 20px !important;
  margin-bottom: 8px !important;

  padding: 0 !important;

  font-weight: 700 !important;
  line-height: 1.5 !important;

}


/* ---------------------------------------------------------
   ZERO TRUST CAPABILITIES LABEL
   --------------------------------------------------------- */

.service-page--cyber .cyber-zta-section__caps-title {

  margin-top: 20px !important;
  margin-bottom: 8px !important;

  font-weight: 700 !important;
  line-height: 1.5 !important;

}


/* ---------------------------------------------------------
   821px AND ABOVE
   Desktop + tablet
   --------------------------------------------------------- */

@media (min-width: 821px) {

  /* -----------------------------------------
     CLOUD & INFRASTRUCTURE
     Paragraph = LEFT
     ----------------------------------------- */

  .service-page--cyber .cyber-infra-block__body {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .service-page--cyber .cyber-infra-block__heading{
    text-align: left !important; 
  }
  /* Services label = LEFT */
  .service-page--cyber
  .cyber-infra-block__text
  .cloud-services-block__focus-label {
    text-align: left !important;
  }


  /* -----------------------------------------
     AI & EMERGING TECHNOLOGY
     ----------------------------------------- */

  .service-page--cyber
  .cloud-services-block__focus-label {
    text-align: left !important;
  }


  /* -----------------------------------------
     GRC
     Subtitle = CENTER
     ----------------------------------------- */

  .service-page--cyber .cyber-grc-block__subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* GRC labels = LEFT */
  .service-page--cyber .cyber-grc-block__col-heading,
  .service-page--cyber
  .cyber-grc-block__col
  .cloud-services-block__focus-label {
    text-align: left !important;
  }


  /* -----------------------------------------
     DATA PROTECTION
     ----------------------------------------- */

  .service-page--cyber .cyber-dp-block__caps-label {
    text-align: left !important;
  }

}
/* =========================================================
   ABOUT US — OUR VALUES IMAGE
   Prevent cropping between 821px and 1099px
   ========================================================= */

@media (min-width: 821px) and (max-width: 1099px) {

  .about-values-section__image-wrap {
    width: 280px;
    max-width: 280px;
    height: auto;
    overflow: visible;
  }

  .about-values-section__image {
    display: block;
    width: 280px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 14px;
  }

}
@media (min-width: 1100px) {

  .ab-intro__grid--flip {
    grid-template-columns: 320px minmax(0, 1fr);
    column-gap: 36px;
  }

  .ab-intro__grid--flip .ab-intro__text {
    justify-self: end;
    width: 100%;
    max-width: 400px;
  }

  .about-vision-section {
    margin-top: 28px;
  }
  .about-vision-section .ab-intro__text,
  .about-mission-section .ab-intro__text,
  .about-values-section .ab-intro__text {
    align-self: center;
  }
  
}
/* =========================================================
   OUR MISSION — WHITE BACKGROUND ONLY
   ========================================================= */

.about-mission-section .ab-intro__card {
  background: #fff !important;
  background-image: none !important;
}
/* Our Values — spacing + white background */
.about-values-section {
  margin-top: 28px;
}

.about-values-section .ab-intro__card {
  background: #EDFFF2 !important;
  background-image: none !important;
}
/* Story block — full-width text because there is no image */
.about-story-section .ab-intro__text {
  width: 100%;
  max-width: none;
}

.about-story-section .ab-intro__text p {
  width: 100%;
  max-width: none;
}