@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&family=Manrope:wght@400;500;600;700;800&family=Roboto:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900&display=swap');
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-extrabold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FONTSPRING DEMO - Roc Grotesk";
  src: url('/assets/css/fonts/Fontspring-DEMO-rocgrotesk-heavy.otf') format('opentype');
  font-weight: 950;
  font-style: normal;
  font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #060d0a;
  --green:   #a8f23a;
  --white:   #ffffff;
  --muted:   #7a9688;
  --border:  rgba(168,242,58,0.14);
  --card-bg: rgba(8,20,12,0.88);
}

html { scroll-behavior: smooth; }


/* ════════════════════════════════════════════════
   HERO SHELL
════════════════════════════════════════════════ */
.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-java/image/COBOL to Java.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, 80px) 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; }
.breadcrumb .sep    { opacity: .4; }

.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); }

.btn-primary {
border-radius: 50px;
border: 1px solid #BEFF00;
background: #0D1100;
color: #BEFF00;
font-family: Inter;
font-size: 15px;
padding:15px 35px;
font-style: normal;
font-weight: 500;
line-height: 20px; /* 133.333% */
text-transform: capitalize;
box-shadow: 0 0 10px 0 rgba(190, 255, 0, 0.40);
}
.btn-primary:hover { background: var(--green); color: #000; }

.btn-secondary {
 border-radius: 50px;
border: 1px solid #000;
background: #FFF;
padding:15px 35px;
color: #000;
font-family: Inter;
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);
}
.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);
}

.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;
  
}

.card-accent {
  color: #FFF;
font-family: Manrope;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 25px; /* 156.25% */
}
.card-accent strong { color: var(--white); font-weight: 600; }

/* ════════════════════════════════════════════════
   TRUSTED BY + INFINITE SLIDER
════════════════════════════════════════════════ */

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════
   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, .card-icon { width: auto; flex: 1 1 clamp(150px, 40%, 300px); }
  .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, .card-icon { width: 100% !important; flex: none; }
  .btns { flex-direction: column; }
  .btn  { justify-content: center; text-align: center; }
  .headline { font-size: clamp(28px, 8vw, 38px); }
}

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


/* ════════════════════════════════════════════════
   SECTION 2 — THE STATE / PROBLEM
════════════════════════════════════════════════ */
.state {
  position: relative;
  background: #fff;
  color: #16201a;
  padding: 120px 40px 60px;
}

.state-inner { max-width: 1350px; margin: 0 auto; }

.state-badge {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(20px, 3vh, 34px);
}
.state-badge span {
  display: inline-block;
color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 16px; /* 100% */
text-transform: capitalize;
  padding: 15px 35px;
  border-radius: 50px;
border: 1px solid #C7CBDB;
background: #297907;
box-shadow: 0 1px 4px 0 rgba(32, 41, 76, 0.10);
}

.state-headline {
  text-align: center;
  color: #0C021D;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px;
letter-spacing: -1.44px;
  max-width: 900px;
  margin: 0 auto clamp(22px, 3.5vh, 38px);
}
.state-headline .pct   { color: #8A898A;
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; }

.state-headline .brand { color: #2f9438; }
.state-headline .dark  { color: #0C021D;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 50px;
letter-spacing: -1.44px; }

.state-intro { max-width: 1000px; margin: 0 auto; text-align: center; }
.state-intro p {
  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;
}
.state-intro p + p { margin-top: clamp(14px, 2vh, 22px); }

.state-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  margin-top: 70px;
}

.state-card {
  border-radius: 0px;
  padding: 30px;
background: url("/services/cobol-to-java/image/38 of COBOL to Java migrations miss the budget or the deadline  bg.webp");
background-size:cover;
background-repeat:no-repeat;

  height: 330px;
}
.state-card:hover {
transform: translateY(-12px);
  border-radius: 0px;
  padding: 30px;
background: url("/services/cobol-to-java/image/COBOL to Java migrations miss the budget or the deadline bg.webp");
background-size:cover;
background-repeat:no-repeat;
}


.state-card-title {
  color: #0C021D;
font-family: Roboto;
font-size: 22px;
font-style: normal;
font-weight: 600;
line-height: 50px; /* 192.308% */
letter-spacing: -1.44px;
  margin-bottom: clamp(12px, 1.6vh, 16px);
}
.state-card-body {
color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
}

.state-card:hover .state-card-title , .state-card:hover .state-card-body {
color:#fff;
}


@media (max-width: 860px) {
  .state-cards { grid-template-columns: 1fr; gap: 16px; }
  .state-card.is-feature { margin-top: 0; min-height: 0; }
  .state-card { min-height: 0; }
}

/* ════════════════════════════════════════════════
   SECTION 3 — CTA BAND
════════════════════════════════════════════════ */
.cta {
  position: relative;
width:89%;
margin: 0 auto;
  overflow: hidden;
  background: #0a2c0e;
  padding: clamp(48px, 8vh, 90px) clamp(20px, 6vw, 80px);
  text-align: center;
margin-bottom:50px;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("/services/cobol-to-java/image/Find out where your codebase falls before.webp");
background-size:cover;
background-repeat:no-repeat;
}.cta-btn 
.cta-figures {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .18;
  pointer-events: none;
  mix-blend-mode: screen;
}
.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cta-headline {
color: #BEFF00;
text-align: center;
font-family: "FONTSPRING DEMO - Roc Grotesk";
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 45px; /* 112.5% */
letter-spacing: -1.44px;
  margin-bottom: clamp(14px, 2.2vh, 22px);

}
.cta-body {
 color: rgba(255, 255, 255, 0.96);
text-align: center;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
  max-width: 800px;
  margin: 0 auto clamp(22px, 3.5vh, 34px);
}
button{
  font-family:"roboto" !important;
  font-size: 15px !important;
}
.cta-btn {
  display: inline-flex;
  align-items: center;

  color: #16201a;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  font-family: inherit;
  padding: clamp(12px,1.4vh,15px) clamp(22px,2.4vw,30px);
 border-radius: 50px;
border: 1px solid #000;
background: #FFF;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.40);
  cursor: pointer;
  transition: transform .15s, box-shadow .25s;
  gap:10px;

}
.cta-btn:hover  { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(0,0,0,.42); }
.cta-btn:active { transform: scale(.97); }

/* ════════════════════════════════════════════════
   SECTION 4 — OUR APPROACH / DMS
════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════
   SECTION 5 — CONSTRUCTS TABLE
════════════════════════════════════════════════ */
.tbl {
  background: #FFFFFF;
  color: #16201a;
  padding: 120px 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-cell-label { display: none; }
.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; }
  .tbl-cell-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .04em; margin-bottom: 4px; }
  .tbl-cell.col-problem .tbl-cell-label { color: #a32c22; }
  .tbl-cell.col-dms     .tbl-cell-label { color: #2f9438; }
}

/* ════════════════════════════════════════════════
   SECTION 6 — ENGAGEMENT PHASES (TAB SYSTEM)
════════════════════════════════════════════════ */
.eng-tab-sub {
  color: rgba(12, 2, 29, 0.60);
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 155.556% */
letter-spacing: -0.2px;
  transition: color .2s;
}
.eng-tab[aria-selected="true"] .eng-tab-num,
.eng-tab[aria-selected="true"] .eng-tab-sub { color: #297907; }


/* ════════════════════════════════════════════════
   SECTION 7 — SELECTED WORK
════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════
   SECTION 8 — CLIENT IMPACT (TESTIMONIAL CAROUSEL)
════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════
   SECTION 9 — BLOGS & INSIGHTS
════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════
   SECTION 10 — VENDOR QUESTIONS
════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════
   SECTION 11 — WHEN YOU SHOULDN'T MIGRATE
════════════════════════════════════════════════ */
.nm-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 52px); }

@media (max-width: 760px) {
  .nm-cols { grid-template-columns: 1fr; gap: 0; }
}

/* ════════════════════════════════════════════════
   SECTION 12 — START YOUR ASSESSMENT (STEPPER)
════════════════════════════════════════════════ */
.as { background: #fff; padding: clamp(24px, 4vh, 56px) clamp(20px, 5vw, 64px);
 background:url("/services/cobol-to-java/image/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-java/image/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-java/image/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 ACCORDION
════════════════════════════════════════════════ */
.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-java/image/bg gradient SVG.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-more { display: flex; justify-content: center; margin-top: clamp(24px, 4vh, 38px); }
.faq-more button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
border-radius: 48px;
background: #FFF;
box-shadow: 0 0 0 1px #E1E5EB inset, 0 1px 3px 0 rgba(31, 34, 41, 0.08);
  padding: 11px 22px;
  color: #2D3139;
text-align: center;
border:none;
font-family: Inter;
font-size: 17px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 141.176% */
  cursor: pointer;
   transition: background .2s, border-color .2s;
}
.faq-more button:hover { background: #f5f6f3; border-color: #c9cfc4; }
.faq-more button svg { width: 16px; height: 16px; color: #3a7afe; }
.faq-q:focus-visible,
.faq-more button:focus-visible { outline: 2px solid #2f9438; outline-offset: 2px; }

/* ════════════════════════════════════════════════
   DIALECTS
════════════════════════════════════════════════ */


/* ════════════════════════════════════════════════
   CAPACITY BANNER
════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════ */

/* last Footer sec */

.COBOL-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;
}

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

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

.COBOL-cta-content{
    position:relative;
    z-index:2;
    width:66%;
}

.COBOL-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;
}

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

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

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

    border-radius: 50px;
    background: #0D1100;
    padding: 20px 20px;
font-family: Inter;
    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;

    z-index: 1;
}

/* Smooth Animated Border */
.green-btn::before{
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 50px;

    background: conic-gradient(
        from 00deg,
        transparent,
        #BEFF00,
        transparent,
        transparent
    );

    animation: rotateBorder 2.5s linear infinite;

    z-index: -2;
}

/* Inner Background */
.green-btn::after{
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 50px;
    background: #0D1100;
    z-index: -1;
}

/* Smooth Rotation */
@keyframes rotateBorder{
    100%{
        transform: rotate(360deg);
    }
}

/*  footer sec hide  */

.COBOL-javapage .footer-cta {
  display: none;
}


.COBOL-javapage .footer-section{
  border-radius: 0px !important;
}

.maintainable-java{
    padding: 80px 0 0 0;
    background:#fff;
}

.mj-container{
    width: 1300px;
    margin:auto;

    display:grid;
    grid-template-columns:50% 50%;
    align-items:center;
    gap:40px;
}

.mj-content h2{
   color: #0C021D;
    font-family: "FONTSPRING DEMO - Roc Grotesk";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: -1.44px;
    padding-bottom: 20px;
}

.mj-content p{
       color: rgba(12, 2, 29, 0.60);
    text-align: left;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.2px;
}

.mj-content p:last-child{
    margin-bottom:0;
}

.mj-image img{
    width:100%;
    display:block;
    border-radius:28px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

@media (max-width:1100px){

.mj-container{
    grid-template-columns:1fr;
    gap:50px;
}

.mj-image{
    order:-1;
}

.mj-content h2{
    font-size:3rem;
}

.mj-content p{
    font-size:1.15rem;
}

}

@media (max-width:768px){

.maintainable-java{
    padding:60px 0;
}

.mj-container{
    width:92%;
    gap:35px;
}

.mj-content h2{
    font-size:2.4rem;
    margin-bottom:25px;
}

.mj-content p{
    font-size:1rem;
    line-height:1.8;
    margin-bottom:24px;
}

.mj-image img{
    border-radius:18px;
}

}