/* AI Pillar Hero Section Styles */
:root {
  --tnp-pageTitle: 60px;
  --tnp-pageTitle-lh: 60px;
  --tnp-primary: #02ba6d;
  --tnp-primaryhover: #02ba6dbf;
  --tnp-primary-light: #00e567;
  --tnp-teritary: #038879;
  --tnp-secondary: #002b3a;
  --tnp-white: #ffffff;
  --tnp-black: #000000;
  --tnp-bg-light: #f2f2f2;
  --tnp-bg-lighter: #fafafa;
  --tnp-text-gray: #505050;
  --tnp-error: #dc3545;
  --tnp-pg-section-pxy-desktop: 60px 0px;
  --tnp-pg-section-pxy-mobile: 30px 0;
  --tnp-pg-padding-x-mobile: 0 20px;
  --tnp-font-family-bold: "Proxima-Nova-Bold", sans-serif;
  --tnp-font-family-light: "Proxima-Nova-Light", sans-serif;
  --tnp-font-family-regular: "Proxima-Nova-Regular", sans-serif;
}

.tnp-cmn-btn-typ1 {
  height: 55px;
  display: inline-block;
  background-color: var(--tnp-primary);
  color: var(--tnp-white);
  text-align: center;
  font-size: 20px;
  border: none;
  border-radius: 4px;
  margin-top: 0;
  outline: none;
  font-family: var(--tnp-font-family-regular);
  transition: all 0.3s ease;
  box-sizing: border-box;
  line-height: 34px;
  padding: 10px 20px;

  &:hover,
  &:focus {
    background-color: var(--tnp-primaryhover);
  }
}

.tnp-cmn-bullet-points-ul {
  padding-left: 25px;

  li {
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
    color: #002b3a;
    font-family: "Proxima-Nova-Light";
    list-style: disc;
  }
}

.tnp-cmn-section-heading-typ1 {
  display: flex;
  flex-direction: column;
  gap: 10px;


  .tnp-heading-typ1-title {
    font-size: var(--section-heading);
    line-height: var(--section-heading-lh);
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
    margin: 0;
  }

  .tnp-heading-typ1-description {
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-light);
    margin: 0;
  }
}

.tbp-cmn-section-xy {
  padding: var(--tnp-pg-section-pxy-desktop);
}

.tp-cmn-risk-and-readiness-framework-wrapper {
  background-color: #ffffff;

  .tp-cmn-risk-and-readiness-framework-content {
    .tnp-cmn-section-heading-typ1 {
      margin-bottom: 44px;

      .tnp-heading-typ1-title {
        color: var(--tnp-secondary);
      }

    }
  }

  .tp-cmn-risk-framework-stage-list {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2.15fr);
    gap: 0;
    align-items: stretch;
    border-top: 1px solid #c6d3d9;
  }

  .tp-cmn-risk-framework-stage-tabs {
    position: relative;
    border-right: 1px solid #c6d3d9;
    background-color: #ffffff;
    padding: 10px 0 24px;
  }

  .tp-cmn-risk-framework-stage-toggle {
    display: none;
  }

  .tp-cmn-risk-framework-stage-tabs-menu {
    position: relative;
    z-index: 1;
  }

  .tp-cmn-risk-framework-stage-tabs::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background-color: #c0cdd3;
  }

  .tp-cmn-risk-framework-stage-tab {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    text-align: left;
    display: flex;
    align-items: stretch;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.25s ease;
  }

  .tp-cmn-risk-framework-stage-tab+.tp-cmn-risk-framework-stage-tab::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #7fb7a3;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 1px #7fb7a3;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .tp-cmn-risk-framework-stage-tab::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: transparent;
    transform: translateX(-50%);
    z-index: 1;
  }

  .tp-cmn-risk-framework-stage-tab:hover {
    background-color: #f4f7f8;
  }

  .tp-cmn-risk-framework-stage-tab.is-active {
    background-color: #F4F6F5;
  }

  .tp-cmn-risk-framework-stage-tab:hover::after,
  .tp-cmn-risk-framework-stage-tab.is-active::after {
    background-color: var(--tnp-primary);
  }

  .tp-cmn-risk-framework-stage-number {
    position: relative;
    z-index: 2;
    width: 28px;
    min-width: 28px;
    height: 30px;
    margin: 36px 12px 0 6px;
    border: 1px solid #acbcc4;
    background-color: #f4f7f8;
    color: var(--tnp-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1;
    font-family: var(--tnp-font-family-bold);
    border-radius: 4px;
  }

  .tp-cmn-risk-framework-stage-tab.is-active .tp-cmn-risk-framework-stage-number {
    border-color: var(--tnp-primary);
    background-color: var(--tnp-primary);
    color: var(--tnp-white);
  }

  .tp-cmn-risk-framework-stage-text {
    padding: 18px 20px 18px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
  }

  .tp-cmn-risk-framework-stage-label {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7d909a;
    font-family: var(--tnp-font-family-bold);
    visibility: hidden;
  }

  .tp-cmn-risk-framework-stage-tab .tp-cmn-risk-framework-stage-title {
    margin: 0;
    font-size: 22px;
    line-height: 26px;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
  }

  .tp-cmn-risk-framework-stage-tab .tp-cmn-risk-framework-stage-subtitle {
    margin: 0;
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
    font-family: var(--tnp-font-family-light);
    color: var(--tnp-secondary);

  }

  .tp-cmn-risk-framework-stage-content-wrap {
    padding: 24px 0 0 26px;
  }

  .tp-cmn-risk-framework-stage-content {
    display: none;

    &.is-active {
      display: block;
    }
  }

  .tp-cmn-risk-framework-stage-chip {
    display: inline-flex;
    margin: 0 0 18px;
    padding: 4px 12px;
    border-radius: 999px;
    background-color: var(--tnp-primary);
    color: var(--tnp-white);
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--tnp-font-family-bold);
    display: none;
    ;
  }

  .tp-cmn-risk-framework-stage-content-title {
    margin: 0 0 20px;
    font-size: 25px;
    line-height: 30px;
    color: var(--tnp-black);
    font-family: var(--tnp-font-family-regular);
    position: relative;
  }

  .tp-cmn-risk-framework-stage-content-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 130px;
    height: 4px;
    background-color: var(--tnp-primary);
  }

  .tp-cmn-risk-framework-card {
    border: 1px solid #dfe8ec;
    border-radius: 9px;
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 16px;
  }

  .tp-cmn-risk-framework-card-heading {
    margin: 0;
    padding: 12px 18px;
    background-color: #F5F7F6;
    color: #123947;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-family: var(--tnp-font-family-regular);
  }

  .tp-cmn-risk-framework-riskline {
    margin: 0;
    padding: 16px 18px;
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-light);
  }

  .tp-cmn-risk-framework-bullets {
    margin: 0;
    padding: 12px 18px 16px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;

    li {
      position: relative;
      margin: 0;
      padding-left: 28px;
      font-size: var(--text-p);
      line-height: var(--text-p-line-height);
      color: var(--tnp-secondary);
      font-family: var(--tnp-font-family-light);
    }

    li::before {
      content: url(/images/green-checked-icon-ai-pillar-pg.svg);
      position: absolute;
      left: 0;
      top: 4px;
      width: 14px;
      height: 14px;
      border-radius: 50%;
    }


  }

  .tp-cmn-risk-framework-help .tp-cmn-risk-framework-bullets {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .tp-cmn-risk-framework-bullets-compact li {
    padding-left: 28px;
  }

  .tp-cmn-risk-framework-cta {
    margin-top: 14px;
    min-height: 52px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    line-height: 1.2;
    font-family: var(--tnp-font-family-bold);
  }

  .tp-cmn-risk-framework-stage-tab:focus-visible {
    outline: 2px solid var(--tnp-primary);
    outline-offset: -2px;
  }
}

.tp-cmn-capabilities-typ2 {
  background-color: var(--tnp-bg-light);

  .tnp-cmn-section-heading-typ1 {
    margin-bottom: 50px;
    align-items: flex-start;

    .tnp-heading-typ2-title {
      font-size: 40px;
      line-height: 40px;
      color: var(--tnp-secondary);
      font-family: var(--tnp-font-family-bold);
      margin: 0;
    }
  }

  .tnp-agentic-ai-tab-video {
    border: 8px solid #2e2e2e;
    border-top-left-radius: 45px;
    overflow: hidden;
    border-top-right-radius: 45px;
    padding-top: 10px;
    background-color: white;
  }

  .tnp-cmn-capabilities-tab-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 76px;

    .tnp-cmn-capabilities-tab-nav {
      display: flex;
      align-items: stretch;
      justify-content: flex-start;
      flex-wrap: wrap;
      gap: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0;

      .tnp-cmn-capabilities-tab {
        flex: 1;
        min-width: 0;
        min-height: 50px;
        border: 1px solid var(--tnp-primary);
        background: var(--tnp-bg-lighter);
        color: var(--tnp-secondary);
        font-size: var(--text-p);
        line-height: var(--text-p-line-height);
        padding: 13px 15px;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease;
        white-space: nowrap;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-transform: uppercase;
        margin-inline: -1px;
        font-family: var(--tnp-font-family-regular);

        &:hover,
        &:focus {
          background: var(--tnp-bg-light);
          color: var(--tnp-secondary);
          outline: none;
        }

        &.is-active {
          background: var(--tnp-primary);
          color: var(--tnp-white);
          outline: none;
        }
      }
    }

    .tnp-cmn-capabilities-tab-content {
      width: 100%;

      .tnp-cmn-capabilities-tab-panel {
        display: none;
        align-items: flex-start;
        justify-content: space-between;
        gap: 60px;

        &.is-active {
          display: flex;
        }

        .tnp-cmn-capabilities-tab-text {
          max-width: 870px;
          display: flex;
          flex-direction: column;
          gap: 20px;

          h3 {
            font-size: var(--sub-section-custom-heading);
            line-height: var(--sub-section-custom-heading-lh);
            font-family: var(--tnp-font-family-bold);
            font-weight: 600;
            color: var(--tnp-secondary);
            margin: 0 0 16px 0;
            position: relative;
            display: inline-block;
            padding-bottom: 12px;

            &::after {
              content: "";
              position: absolute;
              left: 0;
              bottom: 0;
              width: 172px;
              height: 4px;
              background-color: var(--tnp-primary);
            }
          }

          p {
            font-size: var(--text-p);
            line-height: var(--text-p-line-height);
            color: var(--tnp-secondary);
            font-family: var(--tnp-font-family-light);
            font-weight: 400;
            margin: 0;
            letter-spacing: 0.48px;
          }

          .tnp-cmn-capabilities-tab-link {
            width: fit-content;
            min-width: 325px;
            min-height: 44px;

            &:hover,
            &:focus {
              background: var(--tnp-primaryhover);
              color: var(--tnp-white);
            }
          }
        }

        .tnp-cmn-capabilities-tab-videobox {

          aspect-ratio: 3/ 3;
          position: relative;
          width: 330px;
        }

        #agenticAiTabVideo {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: top;
        }


        .tnp-cmn-capabilities-tab-image {
          width: 100%;
          max-width: 350px;
          flex-shrink: 0;
          display: flex;
          justify-content: flex-end;
          align-items: flex-start;
          box-sizing: border-box;
          padding: 44px;
          border-radius: 50%;
          border: 2px dashed var(--tnp-primary);

          img {
            border-radius: 50%;
            object-fit: cover;
            aspect-ratio: 1;
          }
        }
      }
    }
  }
}

.tp-cmn-roadmap-wrap-type2 {
  background: var(--tnp-bg-light);

  .tp-cmn-roadmap-type2-content {
    position: relative;
    --locCountArrowPosition: 31px;
  }

  .tnp-cmn-section-heading-typ1 {
    margin-bottom: 38px;
    align-items: flex-start;
    text-align: left;

    .tnp-heading-typ1-title {
      color: var(--tnp-secondary);
      font-family: var(--tnp-font-family-bold);
      margin: 0;
    }

    .tnp-heading-typ1-description {
      margin: 0;
      color: var(--tnp-secondary);
      font-family: var(--tnp-font-family-light);
    }
  }

  .tp-cmn-roadmap-type2-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 311px));
    column-gap: 35px;
    row-gap: 46px;
    align-items: start;
  }

  .tp-cmn-roadmap-type2-connector {
    position: absolute;
    top: var(--locCountArrowPosition);
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(2, 186, 109, 0.6);
    z-index: 0;
    pointer-events: none;
  }

  .tp-cmn-roadmap-type2-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
    min-width: 0;
    height: 100%;
  }

  .tp-cmn-roadmap-type2-step:not(:first-of-type)::before {
    content: "";
    position: absolute;
    top: calc(var(--locCountArrowPosition) + 1px);
    left: calc(50% - 43px);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #189b88;
    transform: translateY(-50%);
    z-index: 3;
  }

  .tp-cmn-roadmap-type2-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 1px dashed rgba(2, 186, 109, 0.72);
    background: #D9F4E7;
    color: var(--tnp-secondary);
    font-size: 38px;
    line-height: 64px;
    font-family: var(--tnp-font-family-bold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .tp-cmn-roadmap-type2-card {
    position: relative;
    height: 100%;
    max-width: 100%;
    padding: 10px 14px 70px;
    border: 1px solid #d1dbd8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #FCFCFA;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .tp-cmn-roadmap-type2-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px -8px rgba(0, 43, 58, 0.12), 0 8px 16px -6px color-mix(in srgb, var(--tnp-primary) 18%, transparent);
    border-color: #bdd5ca;
  }

  .tp-cmn-roadmap-type2-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: #F5F7F6;
    z-index: 0;
    border-radius: 0 0 8px 8px;
    transition: background-color 0.35s ease, background-image 0.35s ease, background-size 0.35s ease, background-position 0.5s ease;
  }

  @keyframes tp-cmn-card-shine {
    from {
      background-position: 0 0, 0 0, -80% 0;
    }

    to {
      background-position: 0 0, 0 0, 180% 0;
    }
  }

  .tp-cmn-roadmap-type2-card:hover::before {
    background-color: color-mix(in srgb, var(--tnp-primary) 8%, transparent);
    background-image:
      linear-gradient(color-mix(in srgb, var(--tnp-primary) 22%, transparent) 1px, transparent 1px),
      linear-gradient(90deg, color-mix(in srgb, var(--tnp-primary) 22%, transparent) 1px, transparent 1px),
      linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.45) 38%, transparent 58%);
    background-size: 26px 26px, 26px 26px, 200% 100%;
    background-position: 0 0, 0 0, 180% 0;
    animation: tp-cmn-card-shine 0.5s ease forwards;
  }

  .tp-cmn-roadmap-type2-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-top: 16px solid var(--tnp-primary);
    z-index: 2;
  }

  .tp-cmn-roadmap-type2-step:hover .tp-cmn-roadmap-type2-card {
    border-color: #bdd5ca;
  }

  .tp-cmn-roadmap-type2-label,
  .tp-cmn-roadmap-type2-title,
  .tp-cmn-roadmap-type2-text,
  .tp-cmn-roadmap-type2-card-icon {
    position: relative;
    z-index: 1;
  }

  .tp-cmn-roadmap-type2-label {
    display: inline-flex;
    width: fit-content;
    margin: 0 0 10px;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--tnp-white);
    background: var(--tnp-primary);
    font-family: var(--tnp-font-family-bold);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .tp-cmn-roadmap-type2-title {
    margin: 0 0 12px;
    min-height: 85px;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
    font-size: var(--sub-section-custom-heading);
    line-height: var(--sub-section-custom-heading-lh);
  }

  .tp-cmn-roadmap-type2-text {
    margin: 0;
    font-family: var(--tnp-font-family-light);
    color: var(--tnp-secondary);
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
  }

  .tp-cmn-roadmap-type2-card-icon {
    width: 36px;
    height: 36px;
    display: block;
    object-fit: contain;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

.tnp-aipages-wrap .tp-what-expert-says-wrap {
  padding: 60px 0;

  .featured-insights-sect {
    .featured-insights-sect-title {
      margin: 0;
    }

    .tnp-heading-typ1-description {
      font-size: var(--text-p);
      line-height: var(--text-p-line-height);
      color: var(--tnp-white);
      font-family: var(--tnp-font-family-light);
    }
  }
}

.tnp-ai2-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 110px 20px 90px;
  box-sizing: border-box;
  overflow: hidden;
}

.tnp-ai2-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #012f3f 0%, #003145 58%, #002b3a 100%);
}

.tnp-ai2-hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(2, 186, 109, 0.12) 0%, rgba(2, 186, 109, 0) 12%);
  background-size: 34px 34px, 100% 100%;
  opacity: 0.55;
  pointer-events: none;
}

.tnp-ai2-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 15% 18%, rgba(2, 186, 109, 0.14), transparent 65%),
    radial-gradient(760px 420px at 88% 88%, rgba(2, 186, 109, 0.16), transparent 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.tnp-ai2-hero-container {
  position: relative;
}

.tnp-ai2-hero-content {
  max-width: 720px;
}

.tnp-ai2-hero-eyebrow {
  margin: 0 0 28px;
  width: fit-content;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(2, 186, 109, 0.25);
  background: rgba(2, 186, 109, 0.12);
  color: var(--tnp-primary-light);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--tnp-font-family-bold);
}

.tnp-ai2-hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  background: var(--tnp-primary);
  box-shadow: 0 0 8px rgba(2, 186, 109, 0.6);
}

.tnp-ai2-hero h1 {
  margin: 0 0 22px;
  font-family: var(--tnp-font-family-bold);
  font-size: 60px;
  line-height: 72px;
  color: var(--tnp-white);
}

.tnp-ai2-hero-line {
  display: block;
}

.tnp-ai2-hero-line-accent {
  color: var(--tnp-primary);
  display: inline-block;
  line-height: 0.92;
}

.tnp-ai2-hero-subtext {
  margin: 0 0 34px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--text-p);
  line-height: var(--text-p-line-height);
  font-family: var(--tnp-font-family-light);
}

.tnp-ai2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.tnp-ai2-hero .tnp-cmn-btn-typ1 {
  margin-top: 0;
  min-height: 50px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 4px;
  box-shadow: 0 14px 28px rgba(2, 186, 109, 0.22);
}

.tnp-ai2-btn-secondary {
  min-height: 56px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--tnp-white);
  text-decoration: none;
  font-size: 20px;
  line-height: 24px;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.tnp-ai2-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.tnp-ai2-btn-arrow {
  font-size: 24px;
  line-height: 1;
}

.tp-custome-faq {
  background: var(--tnp-bg-light) !important;

}

.faqs.tp-custome-faq .faqs-inner .faqs-list .faq .faq-text {
  border: 1px solid var(--tnp-primary);
}

.faqs .faqs-list .faq .faq-text .faq-title h4 {
  color: #002b3a;

}

.faqs.tp-custome-faq .faqs-inner .faqs-title {
  color: var(--tnp-black);
}

.faqs.tp-custome-faq .faqs-inner .faqs-list .faq .faq-text .faq-content p {
  color: var(--tnp-secondary);
}



.tp-cmn-two-line-text-swap {
  .text-swap {
    li {
      cursor: pointer;

      .text-swap-li-text {
        margin-top: 0;
        color: #c2c7cc;
        font-weight: 700;
        font-family: Proxima-Nova-bold;
        font-size: 60px;
      }
    }

    .text-swap-li-text:hover {
      color: var(--tnp-primary);
    }
  }
}

.tp-cmn-cloud-Computing {
  background: #f4f6f8;
  padding: 70px 0;


  .tp-cmn-cloud-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    gap: 48px;
    align-items: center;
  }

  .cloud-lt,
  .cloud-rt {
    float: none;
    width: auto;
  }

  .cloud-lt h1 {
    margin: 0 0 20px;
    color: var(--tnp-secondary);
    max-width: 560px;
  }

  .cloud-lt p {
    margin: 0;
    max-width: 560px;
    color: #5f7480;
    font-family: var(--tnp-font-family-light);
  }

  .tp-cmn-cloud-points {
    list-style: none;
    margin: 30px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;

    li {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--tnp-secondary);
      font-family: "Proxima-Nova-Bold";
      font-size: var(--sub-section-custom-heading);
      line-height: var(--sub-section-custom-heading-lh);
    }

    li::before {
      content: "\2713";
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--tnp-primary);
      background: rgba(2, 186, 109, 0.14);
      flex: 0 0 32px;
    }
  }

  .cloud-rt {
    background: #fff;
    border: 1px solid #d8dee3;
    border-radius: 14px;
    padding: 28px 24px 24px;
    box-shadow: 0 8px 26px rgba(0, 43, 58, 0.05);
  }

  .tp-cmn-cloud-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .tp-cmn-cloud-field {
    width: 100%;
  }

  .tp-cmn-cloud-field.half {
    width: calc(50% - 8px);
  }

  .tp-cmn-cloud-field-textarea {
    margin-top: 30px;

  }

  .tp-cmn-cloud-field label {
    margin: 0 0 8px;
    display: block;
    color: var(--tnp-secondary);
    font-size: 16px;
    line-height: 22px;
    font-family: "Proxima-Nova-Bold";
  }

  .tp-cmn-cloud-field.d-none {
    display: none;
  }

  .cloud-rt .flexbox,
  .cloud-rt .service-select,
  .cloud-rt .flexbox0 {
    width: 100%;
    border: 1px solid #d3dce2;
    border-radius: 8px;
    background: #fff;
    color: var(--tnp-secondary);
    margin: 0;
    padding: 0 14px;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 22px;
  }

  .cloud-rt .flexbox,
  .cloud-rt .service-select {
    height: 46px;
  }

  .cloud-rt .flexbox0 {
    min-height: 96px;
    max-width: 100%;
    padding: 12px 14px;
    resize: vertical;
  }

  .cloud-rt .flexbox::placeholder,
  .cloud-rt .flexbox0::placeholder {
    color: #7a8a93;
    opacity: 1;
  }

  .cloud-rt .flexbox:focus,
  .cloud-rt .service-select:focus,
  .cloud-rt .flexbox0:focus {
    outline: none;
    border-color: #038879;
    /*  box-shadow: 0 0 0 3px rgba(2, 186, 109, 0.14);*/
  }

  .tp-cmn-cloud-field.errDiv .flexbox0:focus {
    box-shadow: 0 0 0 3px #e50a0a47;

  }


  .cloud-rt #submitbutton.orangebtn {


    width: 100%;
    float: none;
    margin-top: 15px;
    height: 55px;
    line-height: 24px;
    border-radius: 4px;
    background: var(--tnp-primary);
    color: #fff;
    font-size: 20px;
    font-family: "Proxima-Nova-Bold";
    transition: background-color 0.3s ease;
  }

  .cloud-rt #submitbutton.orangebtn:hover {
    background-color: #02ba6dbf;
  }

  .errMsg {
    min-height: 16px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 16px;
    color: #d15a5a;
  }

  .errDiv .flexbox,
  .errDiv .service-select,
  .errDiv .flexbox0 {
    border-color: #d15a5a !important;
    box-shadow: 0 0 0 1px #d15a5a !important;
  }

  .errDiv .errMsg {
    position: static;
    margin-top: 6px;
    padding: 0;
  }

}

.tp-cmn-cloud-Computing {
  .tp-cmn-cloud-content {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 590px);
    gap: 46px;
    align-items: start;
  }



  .tp-cmn-cloud-kicker {
    width: fit-content;
    margin: 0 0 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #02BA6D1A;
    color: var(--tnp-primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--tnp-font-family-regular) !important;
    font-size: 14px !important;
    line-height: 1;
    letter-spacing: 0.48px;
    text-transform: uppercase;
  }

  .tp-cmn-cloud-kicker span,
  .tp-cmn-cloud-response-pill span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--tnp-primary);
    flex: 0 0 7px;
  }

  .tp-cmn-cloud-content .cloud-lt h1 {
    margin: 16px 0;
    max-width: 680px;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
    font-size: var(--section-heading);
    line-height: var(--section-heading-lh);
    letter-spacing: -0.01em;
  }

  .tp-cmn-cloud-content .cloud-lt h1 span {
    color: var(--tnp-primary);
    display: block;
  }

  .tp-cmn-cloud-content .cloud-lt>p {
    margin: 0;
    max-width: 640px;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-light);
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
  }

  .tp-cmn-cloud-content .tp-cmn-cloud-points {
    margin: 22px 0 0;
    gap: 10px;
  }

  .tp-cmn-cloud-content .tp-cmn-cloud-points li {
    gap: 10px;
    color: #31515f;
    font-family: var(--tnp-font-family-light);
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
  }

  .tp-cmn-cloud-content .tp-cmn-cloud-points li::before {
    width: 16px;
    height: 16px;
    font-size: 10px;
    color: #fff;
    background: var(--tnp-primary);
    flex: 0 0 16px;
  }

  .cloud-rt #form-comment {
    max-width: 100%;
    border-radius: 6px;

  }

  .tp-cmn-cloud-illustration-wrap {
    margin-top: 28px;
    max-width: 390px;
  }

  .tp-cmn-cloud-illustration-wrap img {
    width: 100%;
    height: auto;
    display: block;
  }

  .tp-cmn-cloud-content .cloud-rt {
    padding: 18px;
    border: 2px dashed rgba(2, 186, 109, 0.75);
    border-radius: 0;
    box-shadow: none;
  }

  .tp-cmn-cloud-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .tp-cmn-cloud-form-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 2px;
  }

  .tp-cmn-cloud-form-head h2 {
    margin: 0;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
    font-size: clamp(30px, 2.2vw, 42px);
    line-height: 1.1;
    text-decoration: underline;
    text-decoration-color: var(--tnp-primary);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
  }

  .tp-cmn-cloud-response-pill {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(2, 186, 109, 0.1);
    color: var(--tnp-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: var(--tnp-font-family-light);
    font-size: 12px;
    line-height: 1;
  }

  .tp-cmn-cloud-form-subtext {
    grid-column: 1 / -1;
    margin: 0 0 10px;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-light);
    font-size: 16px;
    line-height: 1.45;
  }

  .tp-cmn-cloud-field {
    width: auto;
  }

  .tp-cmn-cloud-field.half {
    width: auto;
  }

  .tp-cmn-cloud-field.full {
    grid-column: 1 / -1;
  }

  .tp-cmn-cloud-field-textarea {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .tp-cmn-cloud-field label {
    margin: 0 0 6px;
    color: var(--tnp-secondary);
    font-size: 16px;
    line-height: 1.3;
    font-family: var(--tnp-font-family-regular);
  }

  .tp-cmn-cloud-content .cloud-rt .flexbox,
  .tp-cmn-cloud-content .cloud-rt .service-select,
  .tp-cmn-cloud-content .cloud-rt .flexbox0 {
    font-size: 16px;
    line-height: 1.35;
  }

  .tp-cmn-cloud-content .cloud-rt .flexbox,
  .tp-cmn-cloud-content .cloud-rt .service-select {
    height: 48px;
  }

  .tp-cmn-cloud-content .cloud-rt .service-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3 5.5L7 9.5L11 5.5' stroke='%23647683' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
  }

  .tp-cmn-cloud-content .cloud-rt .flexbox0 {
    min-height: 90px;
    max-height: 180px;
    padding-top: 10px;
  }

  .tp-cmn-cloud-policy {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-light);
    font-size: 14px;
    line-height: 1.45;
  }

  .tp-cmn-cloud-policy a {
    color: var(--tnp-primary);
    font-family: var(--tnp-font-family-bold);
    text-decoration: none;
  }

  .tp-cmn-cloud-policy a:hover {
    text-decoration: underline;
  }

  .tp-cmn-cloud-nda {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-light);
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
  }

  .tp-cmn-cloud-nda input {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(2, 186, 109, 0.6);
    border-radius: 3px;
    accent-color: var(--tnp-primary);
    margin: 0;
  }

  .tp-cmn-cloud-content .cloud-rt #submitbutton.orangebtn {
    grid-column: 1 / -1;
    margin-top: 6px;
    height: 50px;
    line-height: 50px;
    border-radius: 8px;
    font-size: 18px;
    font-family: var(--tnp-font-family-bold);
    text-transform: none;
  }

  .tp-cmn-cloud-content .errMsg {
    min-height: 14px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.2;
  }
}



/* ===== TenUp Intelligence Bento Section ===== */
.tp-cmn-bento-intelligence {
  --bento-radius-lg: 12px;
  --bento-radius-sm: 4px;
  font-family: var(--tnp-font-family-regular);

  .tnp-cmn-section-heading-typ1 {
    margin-bottom: 50px;
    align-items: flex-start;
  }

  .tp-cmn-bento-intelligence-title {
    font-size: var(--section-heading);
    line-height: var(--section-heading-lh);
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .tp-cmn-bento-intelligence-title-icon {
    width: 24px;
    height: 24px;
    background: var(--tnp-primary);
    border-radius: var(--bento-radius-sm);
    display: inline-block;
  }

  .tp-cmn-bento-intelligence-desc {
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
    color: var(--tnp-text-gray);
    font-family: var(--tnp-font-family-light);
    margin: 6px 0 0;
    max-width: 500px;
  }

  .tp-cmn-bento-intelligence-badge {
    text-align: right;
  }

  .tp-cmn-bento-intelligence-badge-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--tnp-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--tnp-font-family-bold);
  }

  .tp-cmn-bento-intelligence-badge-value {
    font-size: var(--banner-sub-heading);
    line-height: var(--banner-sub-heading-lh);
    font-weight: 700;
    color: var(--tnp-secondary);
    font-family: var(--tnp-font-family-bold);
  }

  .tp-cmn-bento-intelligence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
    width: 100%;
  }

  .tp-cmn-bento-card {
    background-color: var(--tnp-white);
    border-left: 3px solid var(--tnp-primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 43, 58, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0, 43, 58, 0.09);
    }
  }

  .tp-cmn-bento-card:hover .tp-cmn-bento-badge {
    background-color: var(--tnp-primary);
    color: var(--tnp-white);

  }

  .tp-cmn-bento-span-2x2 {
    grid-column: span 2;
    grid-row: span 2;
  }

  .tp-cmn-bento-span-1x2 {
    grid-column: span 1;
    grid-row: span 2;
  }

  .tp-cmn-bento-span-2x1 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .tp-cmn-bento-span-1x1 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .tp-cmn-bento-badge {
    background-color: rgba(2, 186, 109, 0.1);
    color: var(--tnp-primary);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .tp-cmn-bento-metric-big {
    font-size: 32px;
    font-weight: 700;
    color: var(--tnp-secondary);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
    font-family: var(--tnp-font-family-bold);
  }

  .tp-cmn-bento-metric-sub {
    font-size: 13px;
    color: var(--tnp-text-gray);
    font-weight: 500;
    font-family: var(--tnp-font-family-regular);
  }

  .tp-cmn-bento-card-title {
    font-size: var(--sub-section-custom-heading);
    line-height: var(--sub-section-custom-heading-lh);
    color: var(--tnp-secondary);
    margin: 12px 0 8px;
    font-family: var(--tnp-font-family-bold);
  }

  .tp-cmn-bento-card-text {
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--tnp-font-family-light);
    margin: 0;
  }

  .tp-cmn-bento-line-clamp-5 {
    -webkit-line-clamp: 5;
    line-clamp: 5;
  }

  .tp-cmn-bento-line-clamp-2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }

  .tp-cmn-bento-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 0;
    text-decoration: none;
    color: inherit;
    padding: 24px;
  }

  .tp-cmn-bento-card-img-wrap {
    display: flex;
    justify-content: center;
    margin-block: 20px;

    img {
      width: 100%;
      height: 120px;
      object-fit: cover;
    }
  }

  /* Hero card (dark) */
  .tp-cmn-bento-hero {
    background-color: var(--tnp-secondary);
    border: none;
    color: var(--tnp-white);

    .tp-cmn-bento-card-title,
    .tp-cmn-bento-metric-big {
      color: var(--tnp-white);
    }

    .tp-cmn-bento-card-text {
      color: rgba(255, 255, 255, 0.8);
    }

    .tp-cmn-bento-badge {
      background-color: rgba(255, 255, 255, 0.15);
      color: var(--tnp-primary-light);
    }
  }

  .tp-cmn-bento-hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
    opacity: 0.2;
    pointer-events: none;
  }

  .tp-cmn-bento-card-link.tp-cmn-bento-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .tp-cmn-bento-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .tp-cmn-bento-hero-icon {
    width: 24px;
    height: 24px;
    background: var(--tnp-primary-light);
    border-radius: var(--bento-radius-sm);
  }

  .tp-cmn-bento-hero-body {
    margin-top: auto;
    margin-bottom: auto;
  }

  .tp-cmn-bento-hero-metric {
    font-size: 56px;
  }

  .tp-cmn-bento-hero-title {
    font-size: 32px;
    margin-top: 8px;
  }

  .tp-cmn-bento-hero-text {
    font-size: var(--text-p);
    max-width: 80%;
  }

  .tp-cmn-bento-card-link.tp-cmn-bento-card-row-link {
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex: 1;
  }

  /* Small card variants */
  .tp-cmn-bento-card-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .tp-cmn-bento-metric-sm {
    font-size: 24px;
  }


  .tp-cmn-bento-icon-truck,
  .tp-cmn-bento-icon-gamepad {
    width: 20px;
    height: 20px;
    background: var(--tnp-primary);
    border-radius: var(--bento-radius-sm);
    display: inline-block;
  }

  /* Wide card with accent image */
  .tp-cmn-bento-card-row {
    flex-direction: row;
    gap: 24px;
    align-items: center;
  }

  .tp-cmn-bento-card-accent-img {
    width: 140px;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    position: absolute;
    right: 0;
    top: 0;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
    opacity: 0.3;
    pointer-events: none;
  }

  .tp-cmn-bento-card-row-content {
    flex: 1;
    z-index: 1;
  }

  .tp-cmn-bento-card-row-metric {
    z-index: 1;
    text-align: right;
    min-width: 100px;
  }

  /* Bottom CTA bar */
  .tp-cmn-bento-bottom-bar {
    margin-top: 60px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }

}

.faqs .faqs-inner .faqs-title {
  text-align: left;
}

/* Responsive Styles */

@media (max-width: 1199px) {
  .tp-cmn-cloud-Computing .tp-cmn-cloud-content {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-illustration-wrap {
    max-width: 460px;
  }
}

@media (max-width: 1024px) {
  .tp-cmn-roadmap-wrap-type2 .tp-cmn-roadmap-type2-steps {
    column-gap: 10px;
  }

  .tp-cmn-roadmap-wrap-type2 .tp-cmn-roadmap-type2-title {
    min-height: 125px;
  }

  .tp-cmn-roadmap-wrap-type2 .tp-cmn-roadmap-type2-card::before {
    height: 165px;
  }

  .tp-cmn-slider-with-text .feature-updated-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .tp-cmn-slider-with-text .feature-updated-section .featured-insights-sect-card.feature-item-3 {
    height: 363px;
  }

  .tp-cmn-slider-with-text .featured-insights-sect .feature-updated-section .featured-insights-sect-card.feature-item-3 .desc {
    height: 85px;
    -webkit-line-clamp: 3;
  }

  .tp-cmn-capabilities-typ2 {
    & .tnp-cmn-capabilities-tab-section {
      gap: 40px;

      & .tnp-cmn-capabilities-tab-content .tnp-cmn-capabilities-tab-panel {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;

        tnp-cmn-capabilities-tab-text {
          align-items: center;
          max-width: 100%;
        }
      }

    }
  }
}

@media (max-width: 991px) {
  .tp-cmn-risk-and-readiness-framework-wrapper {
    .tp-cmn-risk-and-readiness-framework-content {
      .tnp-cmn-section-heading-typ1 {
        margin-bottom: 32px;
      }
    }

    .tp-cmn-risk-framework-stage-list {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .tp-cmn-risk-framework-stage-content-wrap {
      padding: 22px 0 0;
    }

    .tp-cmn-risk-framework-stage-tabs {
      border-right: 0;
      border-bottom: 1px solid #c6d3d9;
      padding: 0 0 12px;
    }

    .tp-cmn-risk-framework-stage-tabs::before {
      top: 18px;
      bottom: 22px;
    }

    .tp-cmn-risk-framework-stage-content-title {
      font-size: clamp(30px, 4.2vw, 40px);
    }

    .tp-cmn-risk-framework-cta {
      font-size: 16px;
      min-height: 48px;
      padding: 11px 16px;
    }
  }

  .tp-cmn-roadmap-wrap-type2 {
    padding: 30px 0;

    .tp-cmn-roadmap-type2-content {
      padding: 0;
    }

    .tnp-cmn-section-heading-typ1 {
      margin-bottom: 26px;
    }

    .tp-cmn-roadmap-type2-connector {
      display: none;
    }

    .tp-cmn-roadmap-type2-steps {
      grid-template-columns: repeat(2, minmax(0, auto));
      gap: 14px;
      padding: 0 2px 8px;
    }

    .tp-cmn-roadmap-type2-title {
      min-height: 95px;
    }

    .tp-cmn-roadmap-type2-card::before {
      height: 115px;
    }


    .tp-cmn-roadmap-type2-step {
      flex: 0 0 248px;
      min-width: 248px;
      gap: 16px;
      scroll-snap-align: start;
    }

    .tp-cmn-roadmap-type2-step:not(:first-of-type)::before {
      display: none;
    }

    .tp-cmn-roadmap-type2-step-icon {
      display: none;
    }

    .tp-cmn-roadmap-type2-card {
      min-height: 252px;
      max-width: none;
    }

    .tp-cmn-roadmap-type2-card-icon {
      width: 34px;
      height: 34px;
    }
  }

  .tbp-cmn-section-xy {
    padding: var(--tnp-pg-section-pxy-mobile);
  }

  .tnp-ai2-hero {
    min-height: auto;
    padding: 70px 0px;
  }

  .tnp-ai2-hero h1 {
    font-size: var(--mob-banner-heading);
    line-height: var(--mob-banner-heading-lh);
  }

  .tnp-ai2-hero-subtext {
    font-size: var(--text-p);
    line-height: var(--text-p-line-height);
  }

  .tnp-aipages-wrap .tp-what-expert-says-wrap {
    padding: var(--tnp-pg-section-pxy-mobile);
  }

  .tnp-servicespage-wrap .faqs.tp-custome-faq {
    padding: var(--tnp-pg-section-pxy-mobile);
  }

  .tnp-servicespage-wrap .cloud-Computing .cloud-lt {
    display: block;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-content .cloud-rt {
    height: auto;
  }

  .tp-cmn-slider-with-text .feature-updated-section .featured-insights-sect-card.feature-item-3 {
    height: auto;
  }

  .tp-cmn-capabilities-typ2 {
    .tnp-cmn-capabilities-tab-text {
      align-items: center;
    }

    .tnp-cmn-capabilities-tab-link {
      margin: 0 auto;
    }

    .tnp-cmn-capabilities-tab-image {
      max-width: 640px;
      justify-content: center;
    }
  }

  .tp-cmn-cloud-content {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .tp-cmn-cloud-field.half {
    width: 100%;
  }

  .tp-cmn-bento-intelligence {
    .tp-cmn-bento-intelligence-grid {
      display: flex;
      flex-wrap: wrap;

      .tp-cmn-bento-card {
        flex: calc(50% - 20px);

        &#tp-bento-card-1 {
          order: 3
        }

        &#tp-bento-card-2 {
          order: 1
        }

        &#tp-bento-card-3 {
          order: 4
        }

        &#tp-bento-card-4 {
          order: 5
        }

        &#tp-bento-card-5 {
          order: 2
        }

        &#tp-bento-card-6 {
          order: 6
        }
      }
    }
  }
}

@media (max-width: 767px) {
  .container {
    padding: var(--tnp-pg-padding-x-mobile);
  }

  .tnp-heading-typ1-title {
    font-size: var(--mob-section-heading) !important;
    line-height: var(--mob-section-heading-lh) !important;
  }

  .tnp-ai2-hero-eyebrow {
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 18px;
  }

  .tnp-ai2-hero-subtext {
    margin-bottom: 24px;
  }

  .tnp-ai2-hero-actions {
    width: 100%;
  }

  .tnp-ai2-hero .tnp-cmn-btn-typ1,
  .tnp-ai2-btn-secondary {
    width: 100%;
  }

  .tp-cmn-bento-intelligence {

    .tp-cmn-bento-metric-big,
    .tp-cmn-bento-hero-title,
    .tp-cmn-bento-card-title {
      font-size: var(--mob-sub-section-heading);
      line-height: var(--mob-sub-section-heading-lh);
    }

  }

  .tp-cmn-two-line-text-swap {
    h2 {
      align-items: flex-start;

      b {
        margin: 0;

        .green-border-left-right {
          display: none;

        }
      }
    }

    p {
      text-align: left;
      font-size: var(--mob-sub-section-heading) !important;
      line-height: var(--mob-sub-section-heading-lh) !important;
    }
  }

  .tp-cmn-two-line-text-swap {
    & .text-swap {
      & li {
        .text-swap-li-text {
          font-size: 40px;
        }
      }
    }
  }

  .tp-cmn-capabilities-typ2 {
    .tnp-cmn-section-heading-typ1 {
      gap: 10px;
      text-align: left;
      margin-bottom: 30px;

      f .tnp-heading-typ1-description {
        font-size: var(--mob-text-p);
        line-height: var(--mob-line-height-p);
      }
    }
  }

  .tp-cmn-risk-and-readiness-framework-wrapper {
    .tp-cmn-risk-and-readiness-framework-content {
      .tnp-cmn-section-heading-typ1 {
        margin-bottom: 24px;
      }
    }

    .tp-cmn-risk-framework-stage-list {
      gap: 0;
    }

    .tp-cmn-risk-framework-stage-tabs {
      padding: 0;
      border: 0;
      overflow: visible;
    }

    .tp-cmn-risk-framework-stage-tabs::before,
    .tp-cmn-risk-framework-stage-tab+.tp-cmn-risk-framework-stage-tab::before,
    .tp-cmn-risk-framework-stage-tab::after {
      display: none;
    }

    .tp-cmn-risk-framework-stage-toggle {
      width: 100%;
      border: 0;
      background: #f4f6f5;
      color: var(--tnp-secondary);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 48px;
      padding: 12px 14px;
      font-size: var(--mob-text-p);
      line-height: var(--mob-line-height-p);
      font-family: var(--tnp-font-family-bold);
      cursor: pointer;
      text-align: left;
    }

    .tp-cmn-risk-framework-stage-toggle-label {
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .tp-cmn-risk-framework-stage-toggle-text {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .tp-cmn-risk-framework-stage-toggle-hint {
      display: block;
      text-transform: none;
      letter-spacing: 0;
      font-size: 16px;
      line-height: 20px;
      color: var(--tnp-secondary);
      font-family: var(--tnp-font-family-regular);
      font-weight: 400;
    }

    .tnp-risk-stages-tap-text {
      color: var(--tnp-primary);
      font-family: var(--tnp-font-family-bold);
    }

    .tp-cmn-risk-framework-stage-toggle-icon {
      width: 10px;
      height: 10px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 0.2s ease;
      flex-shrink: 0;
      margin-right: 2px;
    }

    .tp-cmn-risk-framework-stage-tabs.is-open .tp-cmn-risk-framework-stage-toggle-icon {
      transform: rotate(-135deg);
    }

    .tp-cmn-risk-framework-stage-tabs-menu {
      display: none;
      border-top: 1px solid #c6d3d9;
      background: #fff;
    }

    .tp-cmn-risk-framework-stage-tabs.is-open .tp-cmn-risk-framework-stage-tabs-menu {
      display: block;
    }

    .tp-cmn-risk-framework-stage-tab {
      display: flex;
      align-items: center;
      padding: 10px 12px;
    }

    .tp-cmn-risk-framework-stage-tab+.tp-cmn-risk-framework-stage-tab {
      border-top: 1px solid #e2e9ec;
    }

    .tp-cmn-risk-framework-stage-number {
      width: 24px;
      min-width: 24px;
      height: 24px;
      margin: 0 10px 0 0;
      font-size: 13px;
    }

    .tp-cmn-risk-framework-stage-text {
      gap: 0;
      padding: 0;
    }

    .tp-cmn-risk-framework-stage-tab .tp-cmn-risk-framework-stage-label {
      visibility: visible;
      font-size: var(--mob-text-p);
      line-height: var(--mob-line-height-p);
      color: var(--tnp-secondary);
      letter-spacing: 0.02em;
    }

    .tp-cmn-risk-framework-stage-tab .tp-cmn-risk-framework-stage-title,
    .tp-cmn-risk-framework-stage-tab .tp-cmn-risk-framework-stage-subtitle {
      display: none;
    }

    .tp-cmn-risk-framework-stage-content-title {
      font-size: var(--mob-sub-section-heading);
      line-height: var(--mob-sub-section-heading-lh);
    }

    .tp-cmn-risk-framework-riskline,
    .tp-cmn-risk-framework-bullets li,
    .tp-cmn-risk-framework-card-heading,
    .tp-cmn-risk-framework-stage-label {
      font-size: var(--mob-text-p);
      line-height: var(--mob-line-height-p);
    }

    .tp-cmn-risk-framework-stage-content-wrap {
      padding-top: 18px;
    }

    .tp-cmn-risk-framework-stage-chip {
      margin-bottom: 14px;
      padding: 4px 10px;
      font-size: 10px;
    }

    .tp-cmn-risk-framework-stage-content-title {
      margin-bottom: 16px;
    }

    .tp-cmn-risk-framework-card-heading,
    .tp-cmn-risk-framework-riskline {
      padding: 10px 12px;
    }

    .tp-cmn-risk-framework-bullets {
      padding: 10px 12px 12px;
      gap: 8px;
    }

    .tp-cmn-risk-framework-bullets li {
      padding-left: 30px;
    }

    .tp-cmn-risk-framework-bullets li::before {
      top: 3px;
      width: 12px;
      height: 12px;
    }

    .tp-cmn-risk-framework-bullets li::after {
      left: 3px;
      top: 7px;
      width: 6px;
      height: 3px;
    }

    .tp-cmn-risk-framework-cta {
      width: 100%;
      margin-top: 12px;
      font-size: var(--mob-text-p);
      line-height: var(--mob-line-height-p);
    }
  }

  .tp-cmn-roadmap-wrap-type2 {
    .tnp-cmn-section-heading-typ1 {
      margin-bottom: 18px;
      align-items: flex-start;
      text-align: left;

      .tnp-heading-typ1-description {
        margin: 0;
        color: #5f7480;
        font-size: var(--mob-text-p);
        line-height: var(--mob-line-height-p);
      }
    }

    .tp-cmn-roadmap-type2-steps {
      gap: 12px;
      padding-bottom: 6px;
      grid-template-columns: repeat(1, minmax(0, auto));
    }

    .tp-cmn-roadmap-type2-step {
      flex: 0 0 236px;
      min-width: 236px;
      gap: 14px;
    }

    .tp-cmn-roadmap-type2-step-icon {
      width: 50px;
      height: 50px;
      font-size: 34px;
      border-radius: 6px;
    }

    .tp-cmn-roadmap-type2-card {
      min-height: auto;
      padding: 10px 12px 12px;
    }

    .tp-cmn-roadmap-type2-card::before {
      content: none;
    }

    .tp-cmn-roadmap-type2-label {
      font-size: 9px;
      padding: 4px 8px;
    }

    .tp-cmn-roadmap-type2-title {
      font-size: var(--mob-sub-section-heading);
      line-height: var(--mob-sub-section-heading-lh);
      margin-bottom: 10px;
      min-height: 40px;
    }

    .tp-cmn-roadmap-type2-text {
      font-size: var(--mob-text-p);
      line-height: var(--mob-line-height-p);
    }

    .tp-cmn-roadmap-type2-card-icon {
      width: 30px;
      height: 30px;
      margin-top: 12px;
      display: none;
    }
  }

  .tp-cmn-capabilities-typ2 {
    .tnp-cmn-section-heading-typ2 .tnp-heading-typ2-title {
      font-size: 28px;
      line-height: 1.2;
    }

    .tnp-cmn-section-heading-typ2 .tnp-heading-typ2-description {
      font-size: 16px;
      line-height: 1.5;
    }

    .tnp-cmn-capabilities-tab-section {
      gap: 40px;
    }

    .tnp-cmn-capabilities-tab-nav {
      flex-direction: column;
    }

    .tnp-cmn-capabilities-tab {
      min-height: 56px;
      font-size: 14px;
      padding: 14px 16px;
      white-space: normal;
    }

    .tnp-cmn-capabilities-tab-text h3 {
      font-size: 24px;
      line-height: 1.3;
      padding-bottom: 10px;
    }

    .tnp-cmn-capabilities-tab-text h3::after {
      width: 100px;
      height: 3px;
    }

    .tnp-cmn-capabilities-tab-text p {
      font-size: 16px;
      line-height: 1.5;
    }

    .tnp-cmn-capabilities-tab-link {
      min-width: 0;
      width: 100%;
      justify-content: center;
      font-size: 16px;
    }
  }

  .tp-cmn-capabilities-typ2 {
    .tnp-cmn-capabilities-tab-section {
      gap: 30px;
    }

    .tnp-cmn-capabilities-tab-nav {
      padding: 6px;
      border-radius: 4px;
    }

    .tnp-cmn-capabilities-tab {
      font-size: 13px;
    }

    .tnp-cmn-capabilities-tab-text h3 {
      font-size: var(--mob-sub-section-heading);
      line-height: var(--mob-sub-section-heading-lh);
      padding-bottom: 12px;
    }

    .tnp-cmn-capabilities-tab-text h3::after {
      width: 70px;
      height: 3px;
    }

    .tnp-cmn-capabilities-tab-text p {
      font-size: var(--mob-text-p);
      line-height: var(--mob-line-height-p);
      font-family: var(--tnp-font-family-light);
    }
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion {
    gap: 0;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-content {
    display: none;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-nav {
    display: block;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab {
    width: 100%;
    min-height: 56px;
    margin: 15px 0;
    padding: 16px 18px;
    border: 1px solid rgba(2, 186, 109, 0.36);
    border-radius: 0;
    background: #fff;
    color: var(--tnp-secondary);
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    text-transform: uppercase;
    justify-content: space-between;
    position: relative;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab+.tnp-cmn-capabilities-tab {
    border-top: 0;
  }


  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab::after {
    content: "";
    width: 10px;
    height: 10px;
    margin-left: 14px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    flex-shrink: 0;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab.is-active {
    background: var(--tnp-primary);
    color: #fff;
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab.is-active::after {
    transform: rotate(-135deg) translate(-2px, 2px);
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel {
    display: none;
    padding: 18px 16px 20px;
    margin: 0 0 10px;
    border: 1px solid rgba(2, 186, 109, 0.36);
    border-top: 0;
    background: #fff;
    text-align: left;
    overflow: hidden;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel.is-active {
    display: flex;
    flex-direction: column;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel .tnp-cmn-capabilities-tab-text {
    max-width: 100%;
    align-items: flex-start;
    gap: 14px;
    order: 1
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel .tnp-cmn-capabilities-tab-text h3 {
    margin: 0;
    padding-bottom: 0;
  }


  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel .tnp-cmn-capabilities-tab-link {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel .tnp-cmn-capabilities-tab-image,
  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel .tnp-cmn-capabilities-tab-videobox {

    margin: 30px auto;
  }

  .tp-cmn-capabilities-typ2 .tnp-cmn-capabilities-tab-section.is-mobile-accordion .tnp-cmn-capabilities-tab-panel #agenticAiTabVideo {
    width: 200px !important;

  }


  .tp-cmn-cloud-Computing .tp-cmn-cloud-kicker {
    font-size: 11px;
    padding: 6px 10px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-content .cloud-lt h1 {
    font-size: 36px;
    line-height: 1.1;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-content .cloud-lt>p {
    font-size: 16px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-content .tp-cmn-cloud-points li {
    font-size: 18px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-content .cloud-rt {
    padding: 14px 12px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-form-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-form-subtext {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .tp-cmn-slider-with-text .feature-updated-section {
    grid-template-columns: repeat(1, 1fr);
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-field label {
    font-size: 15px;
  }

  .tp-cmn-cloud-Computing .tp-cmn-cloud-policy,
  .tp-cmn-cloud-Computing .tp-cmn-cloud-nda {
    font-size: 14px;
  }

  .tp-cmn-bento-intelligence {
    .tp-cmn-bento-intelligence-grid {
      .tp-cmn-bento-card {
        flex: 1 0 100%;
      }

      .tp-cmn-bento-card-link {
        padding: 12px;
      }

    }

    .tp-cmn-bento-bottom-bar {
      margin-top: 30px;
    }
  }



}