@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');

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

@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');

*, *::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("/products/dms/image/DMS Deterministic code transformation at an industrial scale hero bg.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);
}
@media (min-width: 1025px) {
.cards .card:nth-child(2),
.cards .card:nth-child(4) {
    transform: translateX(-60px); /* Adjust the value as needed */
}
}

.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-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 { 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 { width: 100% !important; flex: none; }
  .btns { flex-direction: column; }
  .btn  { justify-content: center; text-align: center; }
  .headline { font-size: clamp(28px, 8vw, 38px); }
  .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 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 .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 12 — START YOUR ASSESSMENT (STEPPER)
════════════════════════════════════════════════ */
.as { background: #fff; padding: clamp(24px, 4vh, 56px) clamp(20px, 5vw, 64px);
 background:url("/products/dms/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-blurb { color: #FFF;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 25px; /* 138.889% */
letter-spacing: -0.2px; max-width: 380px; }
.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("/products/dms/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("/products/dms/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; }
  .as-blurb { max-width: 100%; }
}

/* ════════════════════════════════════════════════
   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("/products/dms/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; }

/* ════════════════════════════════════════════════
   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;
}

/* ════════════════════════════════════════════════
   SECTION 3 — HOW DMS WORKS (7-STEP TABS)
════════════════════════════════════════════════ */
.hdw {
  background: linear-gradient(180deg, #031700 0%, #152800 55%, #0D2300 100%);
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.hdw-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hdw-title {
  text-align: center;
  color: #FFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.hdw-intro p {
  text-align: center;
  color: #C0C6BF;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.1px;
}

.hdw-intro p + p { margin-top: clamp(14px, 2vh, 20px); }

/* ── Tabs ── */
.hdw-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 14px);
  margin-top: clamp(30px, 4.5vh, 46px);
}

.hdw-tab {
  flex: 1 1 0;
  min-width: 84px;
  padding: 13px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #FFF;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hdw-tab:hover { border-color: rgba(255, 255, 255, 0.7); }

.hdw-tab.is-active {
  background: #FFF;
  border-color: #FFF;
  color: #0C021D;
}

/* ── Content panel ── */
.hdw-panel {
  background: #FFF;
  border-radius: 10px;
  margin-top: clamp(18px, 2.6vh, 28px);
  padding: clamp(28px, 3.6vw, 46px) clamp(24px, 3vw, 44px);
}

.hdw-panel-title {
  color: #000;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: clamp(14px, 2vh, 20px);
}

.hdw-p {
  color: #666;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.1px;
}

.hdw-p + .hdw-p,
.hdw-p + .hdw-list,
.hdw-list + .hdw-p { margin-top: clamp(12px, 1.8vh, 18px); }

/* bullets with small dot markers */
.hdw-list {
  list-style: none;
  padding-left: 4px;
}

.hdw-list > li {
  position: relative;
  padding-left: 18px;
  color: #666;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.1px;
  margin-top: 8px;
}

.hdw-list > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #999;
}

/* nested bold sub-list */
.hdw-list .hdw-list { margin-top: 6px; padding-left: 8px; }

.hdw-list--bold > li {
  color: #333;
  font-weight: 700;
}

.hdw-list--bold > li::before { background: #333; }

/* ── Responsive ── */
@media (max-width: 760px) {
  .hdw-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
  .hdw-tabs { gap: 8px; }
  .hdw-tab { flex: 1 1 calc(25% - 8px); min-width: 72px; padding: 11px 8px; font-size: 13px; }
  .hdw-panel { padding: 24px 20px; }
}


/* ════════════════════════════════════════════════
   SECTION 2 — WHAT IS DMS
════════════════════════════════════════════════ */
.wdms {
  background: #ffffff;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
  overflow: hidden;
}

.wdms-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

/* ── Stacked cards ── */
.wdms-cards {
  display: grid;
  gap: clamp(16px, 2.2vh, 22px);
  padding-block: 10px;
}

.wdms-card {
  position: relative;
  background: #223500;
  border-radius: 10px;
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 30px);
  z-index: 1;
  border-right: 8px solid #7FB808;
}


.wdms-card--bright { background: #297907; }

.wdms-card-title {
  color: #FFF;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}

.wdms-card-text {
  color: rgba(255, 255, 255, 0.80);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* ── Copy side ── */
.wdms-title {
  color: #0C021D;
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  margin-bottom: clamp(16px, 2.4vh, 24px);
}

.wdms-text p {
  color: rgba(12, 2, 29, 0.55);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.15px;
}

.wdms-text p + p { margin-top: clamp(14px, 2vh, 20px); }

/* ── Responsive ── */
@media (max-width: 980px) {
  .wdms-inner { grid-template-columns: 1fr; gap: 44px; }
  .wdms-copy  { order: 1; }
  .wdms-cards { order: 2; max-width: 520px; }
}

@media (max-width: 520px) {
  .wdms-title { font-size: 32px; line-height: 40px; letter-spacing: -1px; }
}


/* ════════════════════════════════════════════════
   SECTION 5 — WHAT IS DMS
════════════════════════════════════════════════ */
/* ===== dch: When DMS is the right choice ===== */
.dch {
  background: #1A2501;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
}

.dch-container {
  max-width: 1160px;
  margin: 0 auto;
}

.dch-title {
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 clamp(32px, 5vh, 56px);
}

.dch-accent {
  color: #BEFF00;
}

.dch-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: clamp(32px, 5vh, 48px);
}

.dch-card {
  border-radius: 24px;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 36px);
}

.dch-card--light {
  background: #F5F5F5;
}

.dch-card--lime {
  background: #F1FFD3;
}

.dch-card-title {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0C021D;
  margin: 0 0 20px;
}

.dch-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dch-list li {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(12, 2, 29, 0.6);
  padding-left: 16px;
  position: relative;
}

.dch-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(12, 2, 29, 0.6);
}

.dch-coverage {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 850px;
  margin: 0 auto clamp(24px, 4vh, 36px);
}

.dch-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.dch-pill {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: #0C021D;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 55px;
  white-space: nowrap;
}

/* ~980px breakpoint */
@media (max-width: 980px) {
  .dch-cards {
    grid-template-columns: 1fr;
  }
}

/* ~520px breakpoint */
@media (max-width: 520px) {
  .dch-card {
    padding: 24px 20px;
  }

  .dch-pill {
    font-size: 13px;
    padding: 8px 16px;
  }
}


/* ════════════════════════════════════════════════
     SECTION 6 — Modernization Projects
════════════════════════════════════════════════ */
/* ===== prf: Proof ===== */
.prf {
  background: #FFFFFF;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 4vw, 40px);
}

.prf-container {
  max-width: 1160px;
  margin: 0 auto;
}

.prf-badge-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.prf-badge {
  display: inline-block;
  background: #297907;
  color: #FFFFFF;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 6px 20px;
}

.prf-title {
  font-family: "FONTSPRING DEMO - Roc Grotesk", Arial, sans-serif;
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -1.44px;
  color: #0C021D;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
}

.prf-para {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 2, 29, 0.6);
  text-align: center;
  max-width: 1250px;
  margin: 0 auto 20px;
}

.prf-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.prf-card {
  background: #FFFFFF;
  border: 1px solid rgba(12, 2, 29, 0.08);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.prf-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.prf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prf-card-title {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0C021D;
  margin: 14px 14px 8px;
}

.prf-card-desc {
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(12, 2, 29, 0.6);
  margin: 0 14px 16px;
}

.prf-summary {
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(12, 2, 29, 0.6);
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 36px;
}

.prf-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(40px, 6vh, 64px);
}

.prf-logo {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(12, 2, 29, 0.5);
  position: relative;
  padding-left: 16px;
}

.prf-logo:first-child {
  padding-left: 0;
}

.prf-logo::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(12, 2, 29, 0.3);
}

.prf-logo:first-child::before {
  display: none;
}

.prf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.prf-num {
  display: block;
  font-family: Roboto;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #297907;
  line-height: 1.2;
}

.prf-stat-label {
  display: block;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(12, 2, 29, 0.5);
  margin-top: 6px;
}

/* ~980px breakpoint */
@media (max-width: 980px) {
  .prf-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prf-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
}

/* ~520px breakpoint */
@media (max-width: 520px) {
  .prf-grid {
    grid-template-columns: 1fr;
  }

  .prf-logos {
    gap: 8px 14px;
  }
}