
 body {
    background-color: #fff;
 }
 
 .hero {
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 100dvh;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background: url("/services/cobol-to-csharp/images/cobolbg.webp");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /* ════════════════════════════════════════════════
   FLOATING CLOUD SVG
════════════════════════════════════════════════ */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-16px);
            }
        }

        /* ════════════════════════════════════════════════
   MAIN CONTENT GRID
════════════════════════════════════════════════ */
        .hero-content {
            position: relative;
            z-index: 2;
            flex: 1;
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            align-items: center;
            gap: clamp(24px, 4vw, 60px);
            width: 100%;
            max-width: 1380px;
            margin: 0 auto;
            padding: clamp(64px, 9vh, 110px) clamp(20px, 6vw, 0px) clamp(40px, 6vh, 72px);
        }

        /* ════════════════════════════════════════════════
   LEFT — COPY
════════════════════════════════════════════════ */
        .copy {
            display: flex;
            flex-direction: column;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px 10px;
            font-size: clamp(11px, 1.1vw, 13px);
            color: var(--muted);
            margin-bottom: clamp(16px, 2.5vh, 28px);
        }

        .breadcrumb .star {
            color: var(--green);
        }

        .breadcrumb a {
            color: #FFF;
            font-family: Manrope;
            font-size: 16px;
            font-style: normal;
            text-decoration: none;
            font-weight: 500;
            line-height: 24px;
            /* 150% */
            text-transform: capitalize;
        }

        .breadcrumb a:hover {
            color: var(--white);
        }

        .breadcrumb .cur {
            color: #BEFF00;
            font-family: Manrope;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 24px;
            text-transform: capitalize;
        }

        

        .headline {
            color: #FFF;
            font-family: "FONTSPRING DEMO - Roc Grotesk";
            font-size: 62px;
            font-style: normal;
            font-weight: 700;
            line-height: 74px;
            /* 102.778% */
            letter-spacing: -1px;
            margin-bottom: clamp(14px, 2vh, 22px);
        }

        .body-copy {
            color: #FFF;
            font-family: Manrope;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 26px;
            /* 150% */

            margin-bottom: clamp(24px, 4vh, 40px);
        }

        .btns {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: clamp(10px, 1.2vh, 14px) clamp(16px, 1.8vw, 24px);
            border-radius: 50px;
            font-size: clamp(12px, 1vw, 14px);
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            white-space: nowrap;
            transition: background .22s, color .22s, border-color .22s, transform .15s;
        }

        .btn:active {
            transform: scale(.97);
        }

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.btn-primary {
  border-radius: 50px;
  border: 2px solid transparent;
  background:
    linear-gradient(#0D1100, #0D1100) padding-box,
    conic-gradient(
      from var(--angle),
      rgba(190, 255, 0, 0.15) 0deg,
      #BEFF00 60deg,
      #FFFFFF 90deg,
      #BEFF00 120deg,
      rgba(190, 255, 0, 0.15) 200deg,
      rgba(190, 255, 0, 0.15) 360deg
    ) border-box;
  color: #BEFF00;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  padding: 15px;
  text-transform: capitalize;
  text-decoration: none;
  box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
  animation: border-spin 3s linear infinite;
}

@keyframes border-spin {
  to { --angle: 360deg; }
}


        .btn-secondary {
            border-radius: 50px;
            border: 1px solid #000;
            background: #FFF;
            padding: 15px 35px;
            color: #000;
            font-family: Roboto;
            font-size: 15px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            /* 133.333% */
            text-transform: capitalize;
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.40);
                text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, .6);
        }

        /* ════════════════════════════════════════════════
   RIGHT — STAT CARDS
════════════════════════════════════════════════ */
        .cards {
            display: flex;
            flex-direction: column;
            gap: clamp(12px, 1.8vh, 20px);
            align-items: flex-end;
        }

        .card {
            border-radius: 130px;
            border: 1px solid rgba(190, 255, 0, 0.24);
            background: rgba(0, 0, 0, 0.67);
            padding: 30px 40px;

            position: relative;
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
            width: clamp(190px, 22vw, 270px);
        }

        .card.forward-card {
            transform: translateX(-100px) !important;
        }

        

        .stat-num {
            color: #BEFF00;
            font-family: "FONTSPRING DEMO - Roc Grotesk";
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            line-height: 40px;
            /* 80% */
            letter-spacing: -1px;
        }

        .stat-num sup {
            font-size: .55em;
            font-weight: 700;
            vertical-align: super;
        }

        .stat-lbl {
            color: #FFF;
            font-family: Manrope;
            font-size: 16px;
            font-style: normal;
            font-weight: 500;
            line-height: 25px;
            /* 156.25% */
            margin-top: 5px;

        }

        

        

        /* ════════════════════════════════════════════════
   TRUSTED BY + INFINITE SLIDER
════════════════════════════════════════════════ */
        .trusted {
            position: relative;
            z-index: 2;

            padding: 40px 0px 60px;
        }

        .trusted-label {
            color: #FFF;
            text-align: center;
            font-family: Helvetica;
            font-size: 14.021px;
            font-style: normal;
            font-weight: 700;
            line-height: 14.021px;
            /* 100% */
            letter-spacing: 2.003px;
            text-transform: uppercase;
            margin-bottom: clamp(16px, 2.4vh, 24px);
        }

        .slider-outer {
            position: relative;
            overflow: hidden;
        }

        .slider-outer::before,
        .slider-outer::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: clamp(60px, 10vw, 140px);
            z-index: 4;
            pointer-events: none;
        }

        .slider-outer::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg), transparent);
        }

        .slider-outer::after {
            right: 0;
            background: linear-gradient(270deg, var(--bg), transparent);
        }

        .slider-track {
            display: flex;
            align-items: center;
            width: max-content;
            animation: marquee 10s linear infinite;
            will-change: transform;
        }

        .slider-track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            flex-shrink: 0;
            opacity: 1;
            filter: grayscale(1) brightness(1.4);
            transition: opacity .25s, filter .25s;
            cursor: default;
        }

        .logo-item:hover {
            opacity: 1;
            filter: none;
        }

        .logo-text {
            font-size: clamp(13px, 1.2vw, 16px);
            font-weight: 700;
            letter-spacing: .045em;
            color: var(--white);
            white-space: nowrap;
            line-height: 1.3;
        }

        .logo-item svg {
            height: clamp(22px, 2.2vw, 30px);
            width: auto;
            display: block;
        }

        /* ════════════════════════════════════════════════
   RESPONSIVE — HERO
════════════════════════════════════════════════ */
        @media (max-width: 900px) {
            .hero-content {
                grid-template-columns: 1fr;
                padding-top: clamp(56px, 8vh, 80px);
                gap: 32px;
            }

            .cards {
                flex-direction: row;
                flex-wrap: wrap;
                align-items: stretch;
                justify-content: flex-start;
            }

            .card,
            

            .headline {
                max-width: 100%;
            }

            .body-copy {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .hero-content {
                padding: 56px 18px 32px;
            }

            .cards {
                flex-direction: column;
                align-items: stretch;
            }

            .card,
            

            .btns {
                flex-direction: column;
            }

            .btn {
                justify-content: center;
                text-align: center;
            }

            .headline {
                font-size: clamp(28px, 8vw, 38px);
                line-height: 40px;
            }
            .card.forward-card {
    transform: translateX(0px) !important;
}
.card {
    width: 100%;
}

            .trusted-label {
                padding: 0 16px;
            }

            .logo-item {
                padding: 0 20px;
            }
        }

        @media (min-width: 1400px) {
            .hero-content {
                padding: 120px 30px 80px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .slider-track {
                animation: none;
            }
        }

        /* section 2 css  */


        :root{
    --ink: #0C021D;
    --ink-60: rgba(12, 2, 29, 0.60);
    --badge-green: #297907;
    --rule: rgba(0, 0, 0, 0.20);
    --display: "FONTSPRING DEMO - Roc Grotesk", "Roc Grotesk", "Archivo", "Helvetica Neue", Arial, sans-serif;
    --body: "Roboto", Arial, Helvetica, sans-serif;
  }
 
  *, *::before, *::after { box-sizing: border-box; }
 
  body{
    margin: 0;
    background: #fff;
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
  }
 
  .platform{
    padding: 90px 20px;
  }
 
  .platform__inner{
    max-width: 1205px;
    margin: 0 auto;
  }
 
  /* ---------- Head ---------- */
  .platform__head{
    text-align: center;
  }
 
  .platform__badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--badge-green);
    color: #FFF;
    font-family: var(--body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    text-transform: capitalize;
  }
 
  .platform__title{
    margin: 14px 0 0;
    color: var(--ink);
    text-align: center;
    font-family: var(--display);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    letter-spacing: -1.44px;
  }
 
  .platform__subtitle{
    margin: 10px auto 0;
    max-width: 100%;
    color: var(--ink-60);
    text-align: center;
    font-family: var(--body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    letter-spacing: -0.2px;
  }
 
  /* ---------- Columns ---------- */
  .platform__grid{
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 36px;
    row-gap: 44px;
  }
 
  .platform__col + .platform__col{
    border-left: 0.8px solid var(--rule);
    padding-left: 24px;
  }
 
  .platform__colTitle{
    margin: 0;
    color: var(--ink);
    font-family: var(--body);
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 115.385% */
    letter-spacing: -1.44px;
  }
 
  .platform__colText{
    margin: 14px 0 0;
    color: var(--ink-60);
    font-family: var(--body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.2px;
  }
 
  /* ---------- Responsive ---------- */
  @media (max-width: 1024px){
    .platform__title{ font-size: 40px; line-height: 42px; letter-spacing: -1px; }
    .platform__colTitle{ font-size: 22px; line-height: 26px; letter-spacing: -0.6px; }
  }
 
  @media (max-width: 860px){
    .platform{ padding: 64px 20px; }
    .platform__grid{ grid-template-columns: repeat(2, 1fr); }
    .platform__col + .platform__col{ border-left: 0; padding-left: 0; }
    .platform__col:nth-child(2n){
      border-left: 0.8px solid var(--rule);
      padding-left: 24px;
    }
  }
 
  @media (max-width: 560px){
    .platform__title{ font-size: 32px; line-height: 36px; }
    .platform__subtitle{ font-size: 16px; line-height: 24px; }
    .platform__grid{ grid-template-columns: 1fr; row-gap: 32px; }
    .platform__col:nth-child(2n){ border-left: 0; padding-left: 0; }
  }

  /* section 3  */


  :root{
    --bg:        #192400;
    --pill:      #297907;
    --lime:      #BEFF00;
    --card:      #F4F4F4;
    --card-hover:#F1FFD3;
    --title:     #0C021D;
    --li:        rgba(12, 2, 29, 0.60);
 
    --font-display: "FONTSPRING DEMO - Roc Grotesk", "Roc Grotesk", "Archivo", sans-serif;
  }
 
 
  /* ==================================================== section shell */
  .approach{
    background: var(--bg);
    padding: 56px 24px 72px;
  }
 
  .approach-inner{
    width: 100%;
    max-width: 1312px;               /* 646*2 + 20 gap */
    margin-inline: auto;
  }
 
  .approach-pill{
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;               /* 100% */
    text-transform: capitalize;
    white-space: nowrap;
    border-radius: 50px;
    border: 1px solid #C7CBDB;
    background: var(--pill);
    box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
    padding: 8px 12.7px 8px 13px;
  }
 
  .approach-title{
    margin: 0 0 44px;
    color: #FFF;
    text-align: center;
    font-family: var(--font-display);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;               /* 100% */
    letter-spacing: -1.44px;
  }
 
  .approach-title .lime{ color: var(--lime); }
 
  /* ========================================================= two cards */
  .approach-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
 
  .approach-card{
    min-height: 251px;
    padding: 40px;
    border-radius: 20px;
    background: var(--card);
    transition: background 0.25s ease;
  }
 
  .approach-card:hover{ background: var(--card-hover); }
 
  .approach-card h3{
    margin: 0;
    color: var(--title);
    font-family: "Roboto", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 50px;               /* 192.308% */
    letter-spacing: -1.44px;
  }
 
  .approach-card ul{
    margin: 6px 0 0;
    padding-left: 22px;
  }
 
  .approach-card .para-class{
    color: #0C021D99;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;               /* 155.556% */
    letter-spacing: -0.2px;
  }

  .para {
    margin-top: 40px;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;               /* 155.556% */
    letter-spacing: -0.2px;
    text-align: center;
  }

 
  .approach-card li::marker{
    color: var(--li);
    font-size: 14px;
  }
 
  /* ======================================================== responsive */
  @media (max-width: 1100px){
    .approach-title{ font-size: 38px; line-height: 44px; letter-spacing: -1.1px; margin-bottom: 32px; }
    .approach-card{ padding: 32px; }
    .approach-card h3{ font-size: 23px; line-height: 34px; letter-spacing: -0.8px; }
  }
 
  @media (max-width: 860px){
    .approach{ padding: 44px 18px 56px; }
    .approach-grid{ grid-template-columns: minmax(0, 1fr); gap: 16px; }
    .approach-card{ min-height: 0; }
    .approach-title{ font-size: 30px; line-height: 34px; letter-spacing: -0.9px; }
  }
 
  @media (max-width: 520px){
    .approach-title{ font-size: 24px; line-height: 28px; letter-spacing: -0.6px; }
    .approach-pill{ font-size: 14px; }
    .approach-card{ padding: 24px; border-radius: 16px; }
    .approach-card h3{ font-size: 20px; line-height: 28px; }
    .approach-card li{ font-size: 16px; line-height: 26px; }
  }
 
  /* no hover on touch — show the tinted state on the second card as designed */
  @media (hover: none){
    .approach-card:hover{ background: var(--card); }
  }

  /*section table  */

    :root{
    --green:      #297907;
    --green-tint: rgba(127, 184, 8, 0.10);
    --ink:        #000D2F;
    --muted:      rgba(12, 2, 29, 0.60);
    --heading-2:  #8A898A;
    --line:       #C5C6D1;

    --font-display: "FONTSPRING DEMO - Roc Grotesk", "Roc Grotesk", "Archivo", sans-serif;

    /* gap between the 48px divider and the bullet list.
       Your spec said 48px — that measured too wide against the
       screenshot, so this is set to 18px. Change here to tune. */
    --list-gap: 18px;
  }

  /* ================================================= shared section bits */
  .jv{ 
    background-color: #fff;
    padding: 72px 24px; 

}

  .jv-inner{
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
  }

  .jv-pill{
    display: block;
    width: fit-content;
    margin: 0 auto 24px;
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;                /* 100% */
    text-transform: capitalize;
    white-space: nowrap;
    border-radius: 50px;
    border: 1px solid #C7CBDB;
    background: var(--green);
    box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
    padding: 8px 12.7px 8px 13px;
  }

  .jv-title{
    color: #000;
    text-align: center;
    font-family: var(--font-display);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;                /* 100% */
    letter-spacing: -1.44px;
    margin: 0;
  }

  .jv-title .muted{ color: var(--heading-2); }

  .jv-lede{
    margin: 22px auto 0;
    max-width: 1174px;
    color: var(--muted);
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;                /* 138.889% */
    letter-spacing: -0.2px;
  }

  /* ============================================== 1. DIALECT CARD GRID */
  

  

  

  

  

  

  

  

  /* ================================================= 2. MAPPING TABLE */
  .constructs{ padding-top: 80px; }

  .table-wrap{
    margin-top: 44px;
    border-radius: 8px;
    border: 1px solid rgba(197, 198, 209, 0.50);
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }

  .map-table{
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .map-table th{
    background: var(--green);
    color: #FFF;
    text-align: left;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    padding: 16px 24px;
  }

  .map-table th:first-child,
  .map-table td:first-child{ width: 44%; }

  .map-table td{
    padding: 15px 24px;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    line-height: 22px;
    vertical-align: top;
    border-top: 1px solid rgba(197, 198, 209, 0.40);
  }

  .map-table tbody td:first-child{
    background: var(--green-tint);
    color: var(--ink);
    font-weight: 600;
  }

  .map-table tbody td:last-child{
    background: #FFF;
    color: var(--body);
    font-weight: 400;
  }

  /* ===================================================== 3. FOOTNOTE */
  

  

  

  /* ==================================================== RESPONSIVE */
  @media (max-width: 1100px){
    
  }

  @media (max-width: 900px){
    .jv{ padding: 56px 20px; }
    .jv-title{ font-size: 36px; line-height: 40px; letter-spacing: -1px; }
    .jv-lede{ font-size: 16px; line-height: 24px; }
    .jv-pill{ font-size: 14px; }
    .map-table th{ font-size: 15px; padding: 14px 18px; }
    .map-table td{ font-size: 14px; padding: 13px 18px; }
  }

  @media (max-width: 640px){
    .jv{ padding: 44px 16px; }
    .jv-title{ font-size: 28px; line-height: 32px; letter-spacing: -0.8px; }
    
    
    

    /* table becomes stacked label / value pairs */
    .table-wrap{ border: 0; box-shadow: none; border-radius: 0; }
    .map-table,
    .map-table tbody,
    .map-table tr,
    .map-table td{ display: block; width: 100% !important; }
    .map-table thead{ display: none; }

    .map-table tr{
      margin-bottom: 12px;
      border-radius: 8px;
      border: 1px solid rgba(197, 198, 209, 0.50);
      overflow: hidden;
    }

    .map-table td{ border-top: 0; padding: 12px 16px; }

    .map-table tbody td:last-child{
      border-top: 1px solid rgba(197, 198, 209, 0.40);
    }

    .map-table tbody td::before{
      content: attr(data-label);
      display: block;
      margin-bottom: 3px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.6px;
      text-transform: uppercase;
      color: var(--green);
    }
  }

  /* section table  */

  .tbl {
  background: #FFFFFF;
  color: #16201a;
  padding: 30px 40px;
}
.tbl-head-block { max-width: 1180px; margin: 0 auto; text-align: center; }
.tbl-badge { display: flex; justify-content: center; margin-bottom: clamp(18px, 2.6vh, 28px); }
.tbl-badge span {
  display: inline-block;
 border-radius: 50px;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
  text-transform: uppercase;
  padding: 7px 16px;
  color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
}
.tbl-title {

text-align: center;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px;
  margin-bottom: clamp(12px, 1.8vh, 18px);
}
.tbl-title .dark  { color: #000; }
.tbl-title .muted { color: #8A898A; }
.tbl-caption {
  color: rgba(12, 2, 29, 0.60);
text-align: center;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
}
.tbl-wrap {
  max-width: 1300px;
  margin: 40px auto 0;
    overflow: hidden;
border-radius: 50px;
border: 0.8px solid #ABABAB;
background: #F6F6F6;
box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.20);
}
.tbl-grid-cols {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.35fr;
}
.tbl-head {
  padding : 0px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.tbl-head .tbl-h {

font-family: Roboto;
font-size: 24px;
font-style: normal;
padding:40px;
font-weight: 600;
line-height: 35px; /* 134.615% */
letter-spacing: -1.44px;
}
.tbl-h.is-cobol   { color: #297907; }
.tbl-h.is-problem { color: #CB0000;  border-right:1px  solid rgba(0,0,0,.08);
  border-left:1px  solid rgba(0,0,0,.08); }
.tbl-h.is-dms     { color: #297907; }
.tbl-row {
  padding: 0px;
  border-top: 1px solid rgba(0,0,0,.07);
}
.tbl-row:first-child { border-top: none; }
.tbl-construct {
color: #0C021D;
font-family: Roboto;
font-size: 20px;
font-style: normal;
padding: 40px;
font-weight: 600;
line-height: 35px; /* 134.615% */
letter-spacing: -1.44px;
  padding-right: 16px;
}
.tbl-cell.col-problem {
  border-right:1px  solid rgba(0,0,0,.08);
  border-left:1px  solid rgba(0,0,0,.08);

}
.tbl-cell {
 color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 15px;
padding:40px;
font-style: normal;
font-weight: 400;
line-height: 23px; /* 155.556% */
letter-spacing: -0.2px;
 
}
/* .tbl-cell:last-child { padding-right: 0 } */

.tbl-more {
  border-radius: 0 0 50px 50px;
background: #1A4B05;
padding:40px;
display:flex;
}
.tbl-more p {
color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
}
.tbl-more .lead {
  color: #BEFF00;
font-family: Roboto;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 35px; /* 134.615% */    width: 406px;
  margin-right: 6px;
}

@media (max-width: 760px) {
  .tbl-head { display: none; }
  .tbl-grid-cols { display: block; }
  .tbl-row { padding: 22px 20px; }
  .tbl-construct { font-size: 16px; margin-bottom: 14px; color: #2f9438; }
  .tbl-cell { padding-right: 0; margin-top: 14px; }
  
  
  
}

/* verification section */

 :root{
    --navy: #000D2F;
    --slate: #444650;
    --num: #206393;
    --rail: #D5E2EB;
    --card-border: #D9D9D9;
    --display: "FONTSPRING DEMO - Roc Grotesk", "Roc Grotesk", "Archivo", "Helvetica Neue", Arial, sans-serif;
    --body: "Roboto", Arial, Helvetica, sans-serif;
    --ui: "Inter", Arial, Helvetica, sans-serif;
  }
 
  *, *::before, *::after{ box-sizing: border-box; }
 
  body{
    margin: 0;
    background: #fff;
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
  }
 
  .verify{ padding: 60px 20px 80px; }
 
  .verify__inner{ max-width: 1110px; margin: 0 auto; }
 
  /* ---------- head ---------- */
  .verify__head{ text-align: center; }
 
  .badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: var(--body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    text-transform: capitalize;
    border-radius: 50px;
    border: 1px solid #C7CBDB;
    background: #297907;
    box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
    padding: 8px 12.7px 8px 13px;
  }
 
  .verify__title{
    margin: 12px 0 0;
    color: #0C021D;
    text-align: center;
    font-family: var(--display);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    letter-spacing: -1.44px;
  }
 
  .verify__subtitle{
    margin: 16px auto 0;
    max-width: 780px;
    color: rgba(12, 2, 29, 0.60);
    text-align: center;
    font-family: var(--body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 138.889% */
    letter-spacing: -0.2px;
  }
 
  /* ---------- timeline rail ---------- */
  .rail{
    position: relative;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
 
  /* horizontal line connecting the numbers */
  .rail::before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--rail);
  }
 
  .rail__node{
    position: relative;
    z-index: 1;
    display: flex;
    width: 64px;
    height: 64px;
    padding: 14.5px 0 15.5px 0;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 9999px;
    border: 1px solid #C5C6D1;
    background: #FFF;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    color: var(--num);
    text-align: center;
    font-family: var(--ui);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
  }
 
  /* small vertical line pointing down to the copy */
  .rail__node::after{
    content: "";
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 16px;
    background: var(--rail);
  }
 
  /* ---------- steps ---------- */
  .steps{
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
  }
 
  .step__title{
    margin: 0;
    color: #000D2F;
    font-family: var(--body);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 136.364% */
  }
 
  .step__text{
    margin: 10px 0 0;
    color: #444650;
    font-family: var(--ui);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
 
  /* ---------- bottom cards ---------- */
  .notes{
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
 
  .note{
    padding: 36px 48px 40px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: #FFF;
  }
 
  .note__title{
    margin: 0;
    color: #000D2F;
    font-family: var(--body);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 136.364% */
  }
 
  .note__text{
    margin: 10px 0 0;
    color: #444650;
    font-family: var(--ui);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
  }
 
  /* ---------- responsive ---------- */
  @media (max-width: 1024px){
    .verify__title{ font-size: 40px; line-height: 42px; letter-spacing: -1px; }
    .steps{ gap: 32px; }
    .note{ padding: 32px 32px 36px; }
  }
 
  @media (max-width: 860px){
    .verify{ padding: 64px 20px 72px; }
    .verify__title{ font-size: 34px; line-height: 38px; }
 
    /* rail turns into a per-step marker so numbers stay with their copy */
    .rail{ display: none; }
 
    .steps{ grid-template-columns: repeat(2, 1fr); gap: 40px 32px; margin-top: 40px; }
 
    .step{ position: relative; padding-top: 84px; }
 
    .step::before{
      content: attr(data-step);
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      width: 64px;
      height: 64px;
      justify-content: center;
      align-items: center;
      border-radius: 9999px;
      border: 1px solid #C5C6D1;
      background: #FFF;
      box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      color: var(--num);
      font-family: var(--ui);
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
    }
 
    .step::after{
      content: "";
      position: absolute;
      top: 68px;
      left: 32px;
      width: 1px;
      height: 12px;
      background: var(--rail);
    }
 
    .notes{ grid-template-columns: 1fr; }
  }
 
  @media (max-width: 560px){
    .steps{ grid-template-columns: 1fr; }
    .note{ padding: 28px 24px 32px; }
  }


/* control section  */

 :root{
    --green: #297907;
    --green-dark: #1A4906;
    --lime: #BEFF00;
    --ink: #000;
    --navy: #000D2F;
    --slate: #444650;
    --muted: #5B5D66;
    --label: #72747C;
    --value: #1A1B20;
    --hairline: #E2E2E8;
    --card-border: #ECECEC;
    --display: "FONTSPRING DEMO - Roc Grotesk", "Roc Grotesk", "Archivo", "Helvetica Neue", Arial, sans-serif;
    --body: "Roboto", Arial, Helvetica, sans-serif;
    --ui: "Inter", Arial, Helvetica, sans-serif;
  }
 
  *, *::before, *::after{ box-sizing: border-box; }
 
  body{
    margin: 0;
    background: #fff;
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
  }
 
  .control{ padding: 0px 20px 110px; }
 
  .control__inner{ max-width: 1456px; margin: 0 auto; }
 
  /* ---------- top gradient rule ---------- */
  .control__rule{
    width: 100%;
    max-width: 1574px;
    height: 1px;
    margin: 0 auto;
    opacity: 0.42;
    background: linear-gradient(90deg, #FFF 0%, #444650 48.0769%, #FFF 100%);
  }
 
  /* ---------- head ---------- */
  .control__head{ text-align: center; margin-top: 56px; }
 
  .badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-family: var(--body);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 100% */
    text-transform: capitalize;
    border-radius: 50px;
    border: 1px solid #C7CBDB;
    background: #297907;
    box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
    padding: 8px 12.7px 8px 13px;
  }
 
  .control__title{
    margin: 14px 0 0;
    color: #000;
    text-align: center;
    font-family: var(--display);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    letter-spacing: -1.44px;
  }
 
  /* ---------- feature cards ---------- */
  .control__cards{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
  }
 
  .fcard{
    display: flex;
    width: 100%;
    min-height: 287px;
    padding: 48px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 24px;
    border: 1px solid rgba(209, 250, 229, 0.50);
    background: var(--green);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
  }
 
  .fcard:nth-child(even){ background: var(--green-dark); }
 
  .fcard__mark{
    width: 48px;
    height: 6px;
    border-radius: 24px;
    background: var(--lime);
  }
 
  .fcard__title{
    margin: 28px 0 0;
    color: #FFF;
    font-family: var(--body);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.6px;
  }
 
  .fcard__text{
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--body);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
 
  /* ---------- proof panel ---------- */
  .panel{
    margin-top: 60px;
    display: grid;
    grid-template-columns: 47% 53%;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    background: #FFF;
    overflow: hidden;
  }
 
  .panel__left{ padding: 48px 80px 64px 72px; }
 
  .panel__right{
    padding: 70px 96px 72px 120px;
    border-left: 1px solid var(--card-border);
  }
 
  .panel__title{
    margin: 22px 0 0;
    color: #000;
    font-family: var(--display);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px; /* 100% */
    letter-spacing: -1.44px;
  }
 
  .panel__text{
    margin: 20px 0 0;
    color: #444650;
    font-family: var(--ui);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 29.25px; /* 162.5% */
  }
 
  .facts{ margin-top: 42px; }
 
  .fact{
    position: relative;
    padding: 4px 0 4px 14px;
  }
 
  /* 0.8px rule + 6px dot */
  .fact::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.8px;
    background: rgba(0, 0, 0, 0.20);
  }
 
  .fact::after{
    content: "";
    position: absolute;
    left: -2.6px;
    top: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.30);
  }
 
  .fact + .fact{ margin-top: 26px; }
 
  .fact__label{
    display: block;
    color: #444650;
    font-family: var(--ui);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px; /* 133.333% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
 
  .fact__value{
    display: block;
    margin-top: 4px;
    color: #1A1B20;
    font-family: var(--ui);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
  }
 
  /* right side */
  .metrics__title{
    margin: 0;
    color: #000D2F;
    font-family: var(--ui);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px; /* 133.333% */
    letter-spacing: 0.6px;
    text-transform: uppercase;
  }
 
  .metric{
    border-top: 0.8px solid rgba(0, 0, 0, 0.20);
    margin-top: 28px;
    padding-top: 28px;
  }
 
  .metric__value{
    display: block;
    color: #000D2F;
    font-family: var(--ui);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 56px; /* 116.667% */
    letter-spacing: -0.96px;
  }
 
  .metric__label{
    display: block;
    margin-top: 4px;
    color: #444650;
    font-family: var(--ui);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 142.857% */
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }
 
  .clients{
    border-top: 0.8px solid rgba(0, 0, 0, 0.20);
    margin-top: 28px;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 0;
  }
 
  .clients span{
    color: #191C1D;
    font-family: var(--ui);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
  }
 
  .clients i{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 13.973px;
    height: 13.973px;
    aspect-ratio: 1 / 1;
    margin: 0 6px;
  }
 
  .clients i::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.30);
  }
 
  /* ---------- responsive ---------- */
  @media (max-width: 1280px){
    .panel__left{ padding: 40px 48px 56px 48px; }
    .panel__right{ padding: 48px 48px 56px 56px; }
    .panel__title{ font-size: 40px; line-height: 42px; letter-spacing: -1px; }
    .metric__value{ font-size: 40px; line-height: 48px; }
  }
 
  @media (max-width: 1100px){
    .control__cards{ grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .fcard{ padding: 40px; min-height: 0; }
  }
 
  @media (max-width: 860px){
    .control{ padding: 0px 20px 72px; }
    .control__title{ font-size: 34px; line-height: 38px; letter-spacing: -1px; }
    .panel{ grid-template-columns: 1fr; }
    .panel__right{ border-left: 0; border-top: 1px solid var(--card-border); }
  }
 
  @media (max-width: 620px){
    .control__cards{ grid-template-columns: 1fr; }
    .fcard{ padding: 32px; }
    .panel__left{ padding: 32px 28px 40px; }
    .panel__right{ padding: 36px 28px 40px; }
    .panel__title{ font-size: 32px; line-height: 36px; }
    .metric__value{ font-size: 36px; line-height: 44px; }
  }

  /* assement section */

  .as { background: #fff; padding: clamp(24px, 4vh, 56px) clamp(20px, 5vw, 64px);
 background:url("/services/cobol-to-csharp/images/start-your.webp") ;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
border-radius:40px;
}
.as-card {
  position: relative;
   margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;

  padding: clamp(36px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.as-left, .as-right { position: relative; z-index: 1; }
.as-title { color: #FFF;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px;
text-transform: capitalize;
 margin-bottom: clamp(18px, 2.6vh, 26px); }
.as-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 35px;
 border-radius: 50px;
  border-radius: 1000px;
background: rgba(255, 255, 255, 0.20);
 color: #FFF;
text-align: center;
font-family: Roboto;
border:none;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px;
  cursor: pointer;
  margin-bottom: clamp(16px, 2.4vh, 22px);
  transition: background .2s, border-color .2s;
}
.as-steps { position: relative; }
.as-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 20px;
  bottom: 20px;
border-left: 3px dashed #FFFFFF33;
  width: 2px;
  background: none;
  z-index: 0;
}
.as-step { position: relative; z-index: 1; display: flex; gap: clamp(16px, 1.8vw, 24px); }
.as-step + .as-step { margin-top: clamp(26px, 4vh, 42px); }
.as-num { flex-shrink: 0; width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000;
font-family: Inter;
font-size: 23px;
font-style: normal;
font-weight: 500;
line-height: 40.669px; /* 101.673% */ }
.as-num.is-on { background: url("/services/cobol-to-csharp/images/ellipse-white.svg"); background-size:cover;background-position:center;background-repeat:no-repeat; color: #0a2c10; box-shadow: 0 0 18px rgba(143,232,52,.5); }
.as-num.is-off { background: url("/services/cobol-to-csharp/images/ellipse-green.svg"); background-size:cover;background-position:center;background-repeat:no-repeat; border: 2px solid rgba(255,255,255,.35); color: #000; }
.as-step-title { color: #FFF;
font-family: Inter;
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 40.669px; /* 184.86% */ margin-bottom: 7px; }
.as-step-body  { color: #D2CFCF;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28.708px; /* 179.423% */ }


@media (max-width: 860px) {
  .as-card { grid-template-columns: 1fr; gap: 36px; }
}

/*  */

/* SECTION 13  ·  FAQ */


   .faq {
  position: relative;
  background: #ffffff;
  color: #16201a;
  padding: clamp(56px, 9vh, 100px) clamp(20px, 6vw, 80px) clamp(64px, 10vh, 110px);
  overflow: hidden;
}
.faq::before {
  content: '';
  position: absolute;
  left: 0%; top: 0%;
  width: 100%;
height:100%;
opacity:0.3;
  z-index: 0;
  background: url("/services/cobol-to-csharp/images/bg-gradient.svg");
background-size:cover;
background-position:center;
background-repeat: no-repeat;
  pointer-events: none;
}
.faq-inner { position: relative; z-index: 1; max-width: 840px; margin: 0 auto; }
.faq-badge { display: flex; justify-content: center; margin-bottom: clamp(16px, 2.4vh, 24px); }
.faq-badge span {
  display: inline-block;
  border-radius: 50px;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
    padding: 12px 25px;
color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
}
.faq-title { color: #000;
text-align: center;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px; /* 100% */
letter-spacing: -1.44px;
 margin-bottom: clamp(26px, 4vh, 44px); }

.faq-label { color: #676D79;
font-family: Inter;
font-size: 15px;
font-style: normal;
text-align:center;
font-weight: 500;
line-height: 20px; /* 133.333% */
 margin-bottom: clamp(16px, 2.4vh, 22px); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border-radius: 12px;
background: #FFF;
box-shadow: 0 0 1px 0 rgba(31, 34, 41, 0.24), 0 2px 6px 0 rgba(31, 34, 41, 0.04);
 overflow: hidden; }
.faq-item.is-extra { display: none; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1A1D23;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 28px; /* 155.556% */
  padding: clamp(15px, 2vh, 19px) clamp(18px, 2vw, 24px);
  
}
.faq-icon { flex-shrink: 0; width: 18px; height: 18px; position: relative; transition: transform .3s ease; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: #3a7afe; border-radius: 2px; }
.faq-icon::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq-icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.faq-q[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p { padding: 0 clamp(18px, 2vw, 24px) clamp(16px, 2.2vh, 20px); font-size: 16px; line-height: 1.7; color: #6a766f; font-family: 'Inter'; }
.faq-q:focus-visible,
.faq-more button:focus-visible { outline: 2px solid #2f9438; outline-offset: 2px; }

/*  */

.hpe-cta{
    position:relative;
    overflow:hidden;
    border-radius:34px 34px 0 0;
    min-height:430px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:90px 20px;
    background:#020202;
}

.hpe-cta-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hpe-cta-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.38);
}

.hpe-cta-content{
    position:relative;
    z-index:2;
    width:69%;
}

.hpe-cta-heading{
    color: #FFF;
    text-align: center;
    font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -0.9px;
    margin-bottom: 20px;
}

.hpe-cta-description{
    font-family: Roboto;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom:40px;
}

.hpe-cta-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.green-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    border-radius: 50px;
    background: #0D1100;
    padding: 20px;
    font-family: Inter, sans-serif;
    color: #BEFF00;
    box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-transform: capitalize;
    cursor: pointer;
    border: none;
}

/* Rotating light — square, oversized, centered */
.green-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    aspect-ratio: 1;
    translate: -50% -50%;

    background: conic-gradient(
        from 0deg,
        rgba(190, 255, 0, 0) 0deg,
        #BEFF00 45deg,
        rgba(190, 255, 0, 0) 90deg,
        rgba(190, 255, 0, 0) 360deg
    );

    animation: rotateBorder 2.5s linear infinite;
    z-index: -2;
}

/* Inner fill — the gap left around it is your border */
.green-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 50px;
    background: #0D1100;
    z-index: -1;
}

@keyframes rotateBorder {
    to { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .hpe-cta-content {
        width: 100%;
    }
}
/*  footer sec hide  */

.cobol-to-java-csharp .footer-cta {
  display: none;
}


.cobol-to-java-csharp .footer-section{
  border-radius: 0px !important;
}