* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Manrope', sans-serif; background: #fff; overflow-x: hidden; }

/* ══════════════════════════════════════════════════
   BUTTON STYLES
══════════════════════════════════════════════════ */
.hover-btn1 {
    font-weight: bold !important;
}
.hover-btn1:hover {
    background: linear-gradient(to right, #E40078, #4D00FF);
    color: #FFFFFF !important;
}
.hover-btn1:hover svg circle {
    fill: white;
}
.hover-btn1:hover svg path {
    stroke: #7b00ff;
}
.hover-btn:hover {
    background: linear-gradient(to right, #E40078, #4D00FF);
    border: none !important;
}

/* ══════════════════════════════════════════════════
   DEMO BUTTON
══════════════════════════════════════════════════ */
.demo-btn {
    margin-top: 20px;
    border: 1px solid #7b00ff;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    white-space: nowrap;
    width: 180px;
    height: 40px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    outline: none;
    background: transparent;
    color: white;
    transition: color 0.3s ease;
}
.demo-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(to right, #ff0080, #7b00ff);
    transition: opacity 0.3s ease;
    z-index: 0;
}
.demo-btn:hover::after {
    opacity: 0;
}
.demo-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.demo-btn:hover::before {
    opacity: 1;
}
.demo-btn .demo-default-text,
.demo-btn .demo-hover-text,
.demo-btn-icon {
    position: relative;
    z-index: 1;
}
.demo-btn .demo-btn-label {
    position: relative;
    flex: 1;
    height: 1.2em;
    overflow: hidden;
}
.demo-btn .demo-default-text,
.demo-btn .demo-hover-text {
    position: absolute;
    left: 0;
    top: -3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.demo-btn .demo-default-text {
    transform: translateY(0);
    opacity: 1;
}
.demo-btn .demo-hover-text {
    transform: translateY(100%);
    opacity: 0;
}
.demo-btn:hover .demo-default-text {
    transform: translateY(-100%);
    opacity: 0;
}
.demo-btn:hover .demo-hover-text {
    transform: translateY(0);
    opacity: 1;
}
.demo-btn:hover {
    color: black;
}
.demo-btn-icon {
    background: white;
    color: #7b00ff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.demo-btn:hover .demo-btn-icon {
    background: linear-gradient(to right, #ff0080, #7b00ff);
    color: white;
    transform: translateX(-10px);
}
/* ══════════════════════════════════════════════════
   DEMO BUTTON
══════════════════════════════════════════════════ */
.demo-btn-1 {
    margin: 20px auto 0; /* ✅ centers button */
    border: 1px solid #7b00ff;
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex; /* ✅ changed from inline-flex */
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    white-space: nowrap;
    width: 200px;
    height: 44px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    outline: none;
    background: transparent;
    color: white;
    transition: color 0.3s ease;
}

/* KEEP EVERYTHING BELOW SAME */
.demo-btn-1::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(to right, #ff0080, #7b00ff);
    transition: opacity 0.3s ease;
    z-index: 0;
}
.demo-btn-1:hover::after {
    opacity: 0;
}
.demo-btn-1::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}
.demo-btn-1:hover::before {
    opacity: 1;
}
.demo-btn-1 .demo-default-text-1,
.demo-btn-1 .demo-hover-text-1,
.demo-btn-icon-1 {
    position: relative;
    z-index: 1;
}
.demo-btn-1 .demo-btn-label-1 {
    position: relative;
    flex: 1;
    height: 1.2em;
    overflow: hidden;
}
.demo-btn-1 .demo-default-text-1,
.demo-btn-1 .demo-hover-text-1 {
    position: absolute;
    left: 0;
    top: -3px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.demo-btn-1 .demo-default-text-1 {
    transform: translateY(0);
    opacity: 1;
}
.demo-btn-1 .demo-hover-text-1 {
    transform: translateY(100%);
    opacity: 0;
}
.demo-btn-1:hover .demo-default-text-1 {
    transform: translateY(-100%);
    opacity: 0;
}
.demo-btn-1:hover .demo-hover-text-1 {
    transform: translateY(0);
    opacity: 1;
}
.demo-btn-1:hover {
    color: black;
}
.demo-btn-icon-1 {
    background: white;
    color: #7b00ff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.demo-btn-1:hover .demo-btn-icon-1 {
    background: linear-gradient(to right, #ff0080, #7b00ff);
    color: white;
    transform: translateX(-10px);
}

/* ══════════════════════════════════════════════════
   HERO SECTION — DESKTOP
══════════════════════════════════════════════════ */
.herosection {
    padding-top: 130px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    background-image: url('/images/contractintelligence-img/hero-section-bg.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
.herosection .row {
    min-height: 50vh;
    align-items: center;
}

/* LEFT COLUMN */
.hero-left {
    padding-left: 100px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Heading */
.hero-heading {
    width: 624px;
    font-size: 42px;
    font-weight: 700;
    color: #1F0067;
    margin-bottom: 0;
    font-family: 'Oswald', Sans-Serif;
    max-width: 500px;
    margin-top: -50px;
}
.hero-heading-1 {
    width: 624px;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Oswald', Sans-Serif;
    background: linear-gradient(90deg, #F2007F, #4D00FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtext */
.hero-subtext {
    width: 573px;
    font-size: 20px;
    color: #2B2B2B;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 0;
    font-family: 'DM Sans', Sans-Serif;
}

/* Button desktop */
.hero-btn-desktop {
    width: 188px;
    height: 32px;
    display: block;
    object-fit: contain;
    object-position: left top;
    margin-top: 20px;
    cursor: pointer;
}
.hero-btn-desktop:hover {
    content: url('images/Component 11 – 27.svg');
}

/* Button mobile — hidden on desktop */
.hero-btn-mobile {
    background: linear-gradient(to right, #ff0080, #7b00ff);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 8px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}
.hero-btn-mobile span {
    background: white;
    color: #7b00ff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}
.hero-btn-mobile:hover {
    background: #ffffff;
    color: black;
    border: 1px solid #7b00ff;
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.hero-btn-mobile:hover span {
    background: linear-gradient(to right, #ff0080, #7b00ff);
    color: white;
    transition: all 0.3s ease;
}

/* RIGHT COLUMN */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-right picture {
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-right-img {
    max-width: 100%;
    height: 500px;
    display: block;
}

/* ══════════════════════════════════════════════════
   CLIENTS SECTION — DESKTOP
══════════════════════════════════════════════════ */
.clients-section {
    padding: 40px 0 40px;
    background: #fff;
}
.clients-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #162456;
    text-align: center;
    margin-bottom: 24px;
    font-family: 'Oswald', Sans-Serif;
}

.end-to-end {
    font-size: 36px !important;
    font-weight: 700;
    color: #1F0067;
    margin-top: 80px;
    text-align: center;
    margin-bottom: -20px !important;
    font-family: 'Oswald', Sans-Serif;
}
.end-to-end-sub {
    font-size: 20px;
    font-weight: 400;
    color: #2B2B2B;
    text-align: center;
    margin: 0 auto;          /* ✅ centers horizontally */
    margin-bottom: 0px;
    font-family: 'DM Sans', Sans-Serif;
    max-width: 950px;        /* ✅ adjust as needed */
}


/* ══════════════════════════════════════════════════
   MOBILE — max-width: 767px
══════════════════════════════════════════════════ */
@media (max-width: 767px) {
    .herosection{
        padding-top:120px;
        background: #ffffff !important;
        padding-bottom: 20px;
    }

    .hero-left {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
        align-items: center;
    }
    .hero-heading {
        font-size: 30px;
        width: 350px;
        margin-top: -20px;
    }
    .hero-heading-1 {
        font-size: 30px;
    }
    .hero-subtext-1 {
        font-size: 16px;
        color: #2B2B2B;
        font-weight: 400;
        line-height: 1.6;
        margin-top: 10px;
        margin-bottom: 0;
        font-family: 'DM Sans', Sans-Serif;
        text-align: center;
        word-spacing: 1px;
        max-width: 320px;
    }
    .hero-right {
        margin-top: 30px;
    }
     .hero-right img {
    max-width: 100%;
    height: 300px !important;
  }
    .hero-btn-desktop {
        display: none;
    }
    .hero-btn-mobile {
        display: inline-flex !important;
    }
    .hero-btn-mobile span:hover {
        background: linear-gradient(#ff0080, #7b00ff);
    }
    .clients-section {
        margin-top: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    .business-1 {
        font-size: 24px !important;
        font-family: 'Oswald', Sans-Serif;
        color: #162456;
        margin-bottom: 6px !important;
        margin-top: 0px;
        text-align: center;
        padding: 0px 0px !important;
        line-height: 35px;
        font-weight: 600;
        max-width: 300px;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .dot-icon{
        display: none !important;
    }
    .end-to-end {
        font-size: 30px !important;
        font-weight: 700;
        color: #162456;
        margin-top: 30px !important;
        font-family: 'Oswald', sans-serif;
        padding: 0px 0px !important;
        max-width: 350px;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
        line-height: 45px;
        margin-bottom: 20px !important;
    }
.end-to-end-sub {
        font-size: 16px !important;
        font-weight: 400;
        color:#2B2B2B;
        margin-top: 30px !important;
        font-family: 'Dm sans', sans-serif;
        padding: 0px 0px !important;
        max-width: 315px;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        line-height: 35px;
    }
    .demo-btn-1{
        margin-top:50px;
    }

} /* ← END mobile 767px */

/* ══════════════════════════════════════════════════
   TABLET — min-width: 768px AND max-width: 1024px
══════════════════════════════════════════════════ */
@media (min-width: 768px) and (max-width: 1024px) {

    .herosection {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
        background-position: center top;
    }
    .herosection .row {
        min-height: auto;
        align-items: center;
        flex-wrap: nowrap;
    }
    .hero-left {
        padding-left: 30px !important;
        padding-right: 15px;
        flex: 0 0 55%;
        max-width: 55%;
    }
    .hero-heading {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 30px !important;
        margin-top: 0 !important;
    }
    .hero-heading-1 {
        width: 100% !important;
        font-size: 30px !important;
    }
    .hero-subtext {
        width: 100% !important;
        font-size: 16px !important;
        margin-top: 16px !important;
    }
    .hero-btn-desktop {
        display: none !important;
    }
    .demo-btn {
        display: inline-flex !important;
    }
    .hero-right {
        flex: 0 0 45%;
        max-width: 45%;
        justify-content: center;
        padding-right: 15px;
        overflow: hidden;
    }
    .hero-right-img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    .clients-section {
        padding: 24px 0 32px;
    }
    .clients-section h2 {
        font-size: 24px;
        margin-bottom: 18px;
        padding: 0 20px;
    }
    .logo-marquee-section::before,
    .logo-marquee-section::after {
        width: 60px;
    }
    .end-to-end {
        font-size: 24px;
        margin-top: 36px;
        padding: 0 20px;
    }

}
.impact-section-table {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}

.impact-title-1 {
  font-weight:700;
  font-size:36px;
  color:#162456;
  font-family: 'Oswald',Sans-Serif;
  text-align: center;
  margin-bottom: 5px;
}

.impact-subtitle-1 {
  font-family: 'Oswald',Sans-Serif;
  font-weight: 700;
  font-size:36px;
  color:#162456;
  text-align: center;
  margin-bottom: 50px;
}

.impact-table-wrapper-1 {
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0px 2px 4px #00000029;
border: 1px solid #DAD3FC;
border-radius: 28px;
}

/* IMPORTANT: row gap for rounded effect */
.impact-table-1 {
  border-collapse: separate;
  border-spacing: 0 12px; /* vertical spacing between rows */
  width: 100%;
  max-width:90%;
  margin:0 auto;
  margin-top:20px;
  margin-bottom: 20px;
}

/* remove all borders */
.impact-table-1,
.impact-table-1 th,
.impact-table-1 td {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ── THEAD ── */
.impact-table-1 thead th {
  background-color: #EAE4F8 !important;
  font-weight: 700;
  font-size: 22px;
  padding: 16px 20px;
  vertical-align: middle;
  text-align: center;
}

/* thead border radius */
.impact-table-1 thead th:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
}

.impact-table-1 thead th:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.th-metric-1 {
  color: #000000;
  text-align:center;
}

.th-before-1 {
  color:#3808B5;
  text-align: center;
}

.th-after-1 {
  color: #000000;
  text-align: center;
}

/* ── TBODY ── */

/* move background from tr → td */
.impact-table-1 tbody tr td {
  background-color: #ffffff;
}

/* even rows */
.impact-table-1 tbody tr:nth-child(even) td {
  background-color: #F8F8F8;
}

/* apply row radius using td */
.impact-table-1 tbody tr td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
  text-align: center;
}

.impact-table-1 tbody tr td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

/* base td */
.impact-table-1 tbody td {
  vertical-align: middle;
  color: #333;
  padding: 0;
}

/* ── Column 1 ── */
.td-metric-1 {
  font-weight:600;
  font-size: 18px;
  color:#101010;
  text-align: left;
  white-space: nowrap;
  padding: 16px 20px !important;
}

/* odd rows spacing */
.impact-table-1 tbody tr:nth-child(odd) .td-metric-1 {
  padding: 26px 80px !important;
}

/* ── Column 2 ── */
.td-before-1 {
  font-size: 16px;
  color: #444444;
  text-align: center;
  padding: 16px 20px !important;
}

.impact-table-1 tbody tr:nth-child(odd) .td-before-1 {
  padding: 26px 80px !important;
}

/* ── Column 3 ── */
.td-after-1 {
  font-size: 16px;
  text-align: center;
  padding: 0 !important;
  padding-left: 30px !important;
  padding-right:20px !important;
}

/* inner box */
.after-inner-1 {
  background-color: #F0EAFF;
  border-radius: 10px;
  font-size: 16px;
  color: #101010;
  text-align: center;
  line-height: 1.5;
  padding: 16px 18px;
  margin: 0;
}

/* odd rows gap */
.impact-table-1 tbody tr:nth-child(odd) .after-inner-1 {
  margin: 10px 0;
}

/* even rows flush */
.impact-table-1 tbody tr:nth-child(even) .after-inner-1 {
  margin: 0;
}



/* =========================
   TABLET VIEW (≤1024px)
========================= */
@media (max-width: 1024px) {
    .impact-section-table{
        padding-top:10px;
    }

  .impact-title-1 {
    font-size: 1.4rem;
  }

  .impact-subtitle-1 {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .impact-table-1 thead th {
    font-size: 16px;
    padding: 14px 16px;
  }

  .td-metric-1 {
    font-size: 14px;
    padding: 14px 16px !important;
  }
  .td-before-1 {
    font-size: 14px;
    padding: 14px 16px !important;
  }

  /* ── Column 3 ── */
.td-after-1 {
  font-size: 14px;
  text-align: center;
  padding: 0 !important;
  padding-left: 0px !important;
}

/* inner box */
.after-inner-1 {
  background-color: #F0EAFF;
  border-radius: 10px;
  font-size: 14px;
  color: #1a0066;
  text-align: center;
  line-height: 1.5;
  padding: 16px 18px;
  margin: 0;
}

/* odd rows gap */
.impact-table-1 tbody tr:nth-child(odd) .after-inner-1 {
  margin: 10px 0;
}

/* even rows flush */
.impact-table-1 tbody tr:nth-child(even) .after-inner-1 {
  margin: 0;
}

  /* reduce big spacing */
  .impact-table-1 tbody tr:nth-child(odd) .td-metric-1,
  .impact-table-1 tbody tr:nth-child(odd) .td-before-1 {
    padding: 20px 20px !important;
  }

}


/* =========================
   MOBILE VIEW (≤767px)
========================= */
@media (max-width: 767px) {

  .impact-section-table {
    padding: 0px 12px;
  }

  .impact-title-1 {
    font-size: 30px !important;
  }
    .impact-table{
        margin-top:50px;
        margin-bottom:50px;
    }
  .impact-subtitle-1 {
    font-size: 30px !important;
    margin:0 auto;
    max-width: 300px;
    margin-bottom: 10px !important;
  }
.impact-table-1 thead th {
    font-size: 14px;
}
  /* Scroll wrapper */
  .impact-table-wrapper-1 {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding:20px !important;
  }

   .impact-table-1 {
    min-width: 820px;
    border-spacing: 0 6px; /* tighter rows */
  }

  /* ALL TD compact */
  .impact-table-1 tbody td {
    padding: 6px px !important;   /* reduce height */
    line-height: 1.3;              /* tighter text */
  }

  /* Column 1 */
  .td-metric-1 {
    font-size: 12px;
    padding: 8px !important;
    white-space: normal; /* allow wrap */
  }

  /* Column 2 */
  .td-before-1 {
    font-size: 12px;
    padding: 8px !important;
  }


/* ── Column 3 ── */
.td-after-1 {
  font-size: 12px;
  text-align: center;
  padding: 0 !important;
  padding-left: 0px !important;
}

/* inner box */
.after-inner-1 {
  background-color: #F0EAFF;
  border-radius: 10px;
  font-size: 12px;
  color: #1a0066;
  text-align: center;
  line-height: 1.5;
  padding: 16px 18px;
  margin: 0;
}

/* odd rows gap */
.impact-table-1 tbody tr:nth-child(odd) .after-inner-1 {
  margin: 10px 0;
}

/* even rows flush */
.impact-table-1 tbody tr:nth-child(even) .after-inner-1 {
  margin: 0;
}

  /* remove big odd row padding */
  .impact-table-1 tbody tr:nth-child(odd) .td-metric-1,
  .impact-table-1 tbody tr:nth-child(odd) .td-before-1 {
    padding: 10px !important;
  }
}


/* ── SECTION ── */
.clm-audit-section {
  padding: 30px 0 80px;
}

/* ── TITLE ── */
.clm-audit-title {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  color: #162456;
}

/* ── GRADIENT WRAPPER ── */
.clm-audit-wrapper{
  background: linear-gradient(113deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
  border-radius: 24px;
  padding: 74px;
}

/* ── CARD BASE ── */
.clm-audit-card {
  background: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ── 4 EQUAL LEFT CARDS ── */
.clm-audit-card-equal {
  height: 180px;
}

/* ── TALL COL ── */
.clm-tall-col {
  display: flex;
  flex-direction: column;
}

/* ── TALL CARD — total height = top card + gap + bottom card ── */
/* TALL CARD */
.clm-audit-card-tall {
  height: calc(190px + 12px + 190px);
  padding: 0; /* REMOVE padding */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* IMPORTANT */
  border-radius: 16px;
}


/* IMAGE WRAPPER */
.clm-tall-img-wrap {
  width: 100%;
  height: 180px;
  margin: 0; /* REMOVE margin */
  overflow: hidden;
  border-radius: 16px 16px 0 0; /* only top corners */
  margin-bottom: 35px;
}


/* IMAGE */
.clm-audit-tall-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* TEXT WRAP */
.clm-tall-text-wrap {
  padding: 16px; /* move padding here instead */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.clm-audit-wrapper .row.g-4 {
  --bs-gutter-y: -185px; /* reduce from 12px — less space between top and bottom card rows */
  --bs-gutter-x: 32px;
}

/* ── ICONS ── */
.clm-audit-icon-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.clm-audit-icon-medium {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── CARD TEXT ── */
.clm-audit-card-text {
  font-size: 18px;
  color: #000000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 16px;
  line-height: 1.5;
}

/* ── TALL CARD TEXT ── */
.clm-audit-tall-text {
  font-size: 18px;
  color: #000000;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

/* ── HIGHLIGHT ── */
.clm-audit-highlight {
  color: #2a8a6a;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
}

/* ── MOBILE CARD ── */
.clm-audit-card-mbl {
  min-height: 130px;
}

/* ── TABLET ── */
@media (max-width: 991px) {
  .clm-audit-title {
    font-size: 26px;
  }

  .clm-audit-wrapper,
  .clm-audit-wrapper-mbl {
    padding: 14px;
  }
   
  .clm-audit-card-equal {
    height: auto;
    min-height: 150px;
  }

  .clm-audit-card-tall {
    height: auto;
  }

  .clm-tall-img-wrap {
    height: 150px;
  }
}

/* ── MOBILE ── */
@media (max-width: 767px) {
  .clm-audit-section {
      margin-top:30px;
      background: linear-gradient(159deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
    padding: 30px 0 20px;
  }

  .clm-audit-title {
    font-size: 30px;
    margin:0 auto;
    max-width:300px;
  }

  .clm-audit-card-text {
    font-size: 14px;
  }
 .clm-audit-card{
        padding-left: 22px;
  padding-right: 22px;
  padding-top: 30px;
  padding-bottom: 40px;
    }
  .clm-audit-card-equal {
    height: auto;
    min-height: 130px;
  }

  .clm-audit-card-tall {
    height: auto;
  }

  .clm-tall-img-wrap {
    height: 120px;
  }
}

.lm-section {
  background: #fff;
  padding-bottom: 50px;
  margin-top: -120px;
}

.lm-heading {
  font-size: 36px;
  font-weight: 700;
  color:#162456;
  margin-bottom: 30px;
  font-family:'Oswald',Sans-Serif;
}

.lm-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.lm-logo--sm {
  height: 70px;
  width: 70px;
  object-fit: contain;
}

/* ── Section ── */
.uc-section {
  padding: 0px 0 120px;
  background: #fff;
}

.uc-heading {
  color:#162456 !important;
  font-size:36px;
  font-weight: 700;
  margin-top:60px;
  margin-bottom: 70px;
  font-family:'Oswald',Sans-Serif;
}

/* ── Stagger: right col pushed down on desktop ── */
@media (min-width: 992px) {
  .uc-col-left  { margin-top: 60px; }
  .uc-col-right { margin-top: 0;    }

  .uc-col-left  { padding-right: 30px; }
  .uc-col-right { padding-left: 30px;  }
}

/* ── Card ── */
.uc-card {
  background:#EFEFEF;
  border-radius: 16px;
  overflow: hidden;
  border:1px solid #CE9DCE;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  box-shadow: 2px 3px 6px #EFEFEF;
}

/* ── Image wrapper ── */
.uc-card__img-wrap {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.uc-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}


/* ── Title ── */
.uc-card__title {
  font-size: 18px;
  font-weight: 600;
  color:#2B2B2B;
  margin: 50px 20px 0;
  font-family: 'DM Sans', Sans-Serif;
}

/* ── Body ── */
.uc-card__body {
  padding: 10px 20px 52px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.uc-card__desc {
  font-size: 16px;
  color:#151515;
  line-height: 1.55;
  margin-bottom: 14px;
  font-family: 'DM Sans', Sans-Serif;
  padding-right: 20px;
  max-width:390px;
}
/* ── CTA image button ── */
.uc-card__cta img {
  height: 38px;
  width: auto;
  transition: opacity 0.25s ease;
  margin-bottom: 30px;
}

.uc-card__cta:hover img {
  opacity: 0.85;
}

/* ── TABLET (768px — iPad Portrait) ── */
@media (min-width:768px) and (max-width: 1024px) {
 
    /* Section */
    .uc-section {
        padding: 40px 0 0px;
    }
 
    /* Heading */
    .uc-heading {
        font-size: 26px;
        margin-top: 36px;
        margin-bottom: 28px;
        padding: 0 10px;
    }
 
    .uc-col-left  { margin-top: 60px; }
  .uc-col-right { margin-top: 0;    }

  .uc-col-left  { padding-right: 20px; }
  .uc-col-right { padding-left: 20px;  }
 
    /* Card */
    .uc-card {
        margin-bottom: 24px;
    }
 
    /* Image wrapper */
    .uc-card__img-wrap {
        height: 200px;
    }
 
    /* Title */
    .uc-card__title {
        font-size: 15px;
        margin: 30px 16px 0;
    }
 .uc-card__list-item {
      font-size: 13px;
  }
    /* Body */
    .uc-card__body {
        padding: 8px 16px 18px;
    }
 
    /* Description */
    .uc-card__desc {
        font-size: 13px;
        margin-bottom: 10px;
    }
 
    /* CTA button */
    .uc-card__cta img {
        height: 32px;
        margin-bottom: 20px;
    }
}
 

/* ── Mobile (< 768px) ── */
@media (max-width:767px) {
    .uc-col-left,
  .uc-col-right {
    margin-bottom:20px !important;
  }
  .uc-section {
    padding: 0px 0 70px;
  }

  .uc-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .uc-card__img-wrap {
    height: 200px;
  }
  .uc-card__title {
  font-size: 14px;
  margin-top:30px;
  }
  .uc-card__desc {
  font-size: 10px;
  max-width:220px;
  }
  /* ── Card ── */
.uc-card {
  margin-bottom:10px;
}
.uc-card__cta img{
    height:30px;
    margin-bottom:5px !important;
}
}
.uc-heading--mobile {
  display: none;
}

.uc-heading--desktop {
  display: inline;
}

@media (max-width:640px) {
  .uc-heading--desktop {
    display: none;
  }

  .uc-heading--mobile {
        display: block;
        font-size: 24px;
        font-family: 'Oswald', Sans-Serif;
        margin-top: 20px;
        max-width: 320px !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
    }
}
.faq-section {
  background-color: #F4F4F5;
  padding: 60px 0;
}

.faq-item {
  background: #FFF;
  border-radius: 14px;
  padding: 30px 35px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #292C31;
  font-family: 'Dm sans', Sans-Serif;
  font-size: 20px;
}

.faq-answer {
  margin-top: 12px;
  color: #737C87;
  font-size: 14px;
  line-height: 1.6;
  font-family: 'Dm sans', Sans-Serif;
  max-width: 950px;
}

.faq-heading {
  color: #162456;
  font-size: 36px;
  font-family: 'Oswald', Sans-Serif;
  margin-top: 30px;
  margin-bottom: 70px;
}

.faq-icon img {
  width: 18px;
}

.icon-minus {
  display: none;
}

.faq-question:not(.collapsed) .icon-plus {
  display: none;
}

.faq-question:not(.collapsed) .icon-minus {
  display: inline-block;
}
.faq-btn {

    display: inline-flex;

    align-items: center;
    font-family: 'Dm sans', Sans-Serif;
    gap: 10px;

    background: transparent;

    border: none;

    font-size:20px;

    font-weight: 600;

    color:#292C31;

    cursor: pointer;

    padding: 10px 0;

    text-decoration: none;
margin-top:30px;
    transition: color 0.2s ease;

  }

  .faq-btn:hover {

    color: #5a5aff;

  }

  .faq-btn .arrow-icon {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    transition: transform 0.2s ease;

  }

  .faq-btn:hover .arrow-icon {

    transform: translateY(2px);

  }

  .faq-btn .arrow-icon svg {

    transition: stroke 0.2s ease;

  }

  .faq-btn:hover .arrow-icon svg {

    stroke: #5a5aff;

  }



/* SECTION BACKGROUND */
.demo-section {
  background: url('/images/contractintelligence-img/contract-work-bg.webp') no-repeat center center;
  background-size: cover;
  padding: 100px 0;
}


.wrapper {
  max-width: 1140px; /* similar to container */
  margin: 0 auto;
  padding: 0 15px;
}

.demo-title {
  font-size:42px;
  font-family: 'Oswald',Sans-Serif;
  color:#ffffff;
  font-weight: 700;
  margin-bottom:20px;
}
.demo-sub {
    font-size:20px;
  font-family: 'DM sans',Sans-Serif;
  color:#ffffff;
  font-weight: 400;
  margin-bottom:30px !important;
  max-width: 850px;
  margin: 0 auto;
}
.demo-btn img {
  max-width: 180px;
}


 /* ── Section ── */
.testimonial-section1 {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
    background-image: url('/images/contractintelligence-img/real-result-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ── Headline ── */
.testimonial-section1 .headline {
    font-family: 'Dm sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #162456;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: -40px;
}

.testimonial-section1 .headline .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: blue;
    border-radius: 50%;
    margin: 0 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* ── Card Wrapper ── */
.card-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto 36px;
}

.bg-card {
    position: absolute;
    left: 50%;
    border-radius: 20px;
    background: #fff;
}

.bg-card-1 {
  width: calc(100% - 1px);
  height: 100%;
  top: -5px;
  opacity: 1;
  background: #ffffff;
  box-shadow: 9px 9px 0px #00000014;
  transform: rotate(-3.5deg) translate(-12px, 8px);
  left: 20px;
  max-width: 900px !important;
}

/* ── Main Card ── */
.main-card {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    background-color: #402F6C;
    overflow: hidden;
    height: 350px; /* Fixed height — prevents layout shift between slides */
    box-shadow: 9px 9px 0px #00000014;
}

/* ── Slides ── */
.slide {
    display: none;
    flex-direction: row;
    height: 100%;
    padding: 48px 40px 48px 36px;
    text-align: left;
    animation: fadeSlide .35s ease;
    overflow-y: auto;
    box-sizing: border-box;
}

@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.slide.active { display: flex; }

/* left column */
.slide-left {
    flex: 0 0 180px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 15px;
    padding-left: 30px;
}

.logo-box {
    width: 130px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.logo-box img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin-top: 80px;
}

/* right column */
.slide-right {
    flex: 1;
    padding-left: 16px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 15px;
}

.slide-right h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.4;
    padding-right: 30px;
}

.slide-right p {
    font-family: 'Dm sans', sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.75;
    margin-bottom: 0;
    padding-right: 40px;
}

/* ── Quote mark ── */
.quote-mark {
    position: absolute;
    bottom: -18px;
    right: 40px;
    z-index: 3;
}

/* ── Dots ── */
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 88px;
    margin-bottom: 0px;
}

.dot-btn {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #6c3aef;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: background .25s, transform .2s;
}

.dot-btn.active,
.dot-btn:hover {
    background: #6c3aef;
    border: 2px solid white;
    transform: scale(1.2);
}


 .-bg-dradian-black {
        background: linear-gradient(319deg, #3c3c3c 0%, #0f0f0f 100%) !important;
    }

    .bg-our-product {
        background-color: #C4C4C414;
    }



    .text-gradient-pink-purple {
        background: linear-gradient(to right, #E40078, #4D00FF);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .sticky-blocks-grid {
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        grid-template-rows: auto;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        display: grid;
        position: relative;
        overflow: visible;
    }

    #left-container,
    #right-container {
        grid-area: span 1 / span 6 / span 1 / span 6;
    }

    .sticky-blocks-text-container {
        padding-left: 50px;
        padding-right:50px;
        position: relative;
        top: 0;
    }

    .sticky-blocks-img {
        flex-flow: column;
        justify-content: center;
        align-items: flex-start;
        height: 100vh;
        display: flex;
        float: right;
        width:550px;
        position: sticky;
        top: 0;
    }

    .container-fluid {
        background: none !important;
    }

    .sticky-blocks-content {
        z-index: 2;
        grid-column-gap: 175px;
        grid-row-gap: 100px;
        flex-flow: column;
        margin-top: 20vh;
        margin-bottom: 10vh;
        display: flex;
        position: relative;
    }

    .sticky-blocks-content div.visible {
        transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
        opacity: 1;
        visibility: visible;
    }

    .sticky-blocks-content div {
        will-change: transform, opacity;
        transform: translate3d(0px, 0px, 0px) scale3d(0.8, 0.8, 1);
        transform-style: preserve-3d;
        opacity: 0.3;
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }

    .text-navy-blue {
        color: #23305F;
        font-size: 18px;
        font-family: 'DM Sans', Sans-Serif;
        max-width: 300px !important;
    }

    .feature-block p {
        margin-bottom: 0;
    }

    .fs-22px {
        font-size: 21px !important;
    }

    .esign-sub {
        font-size: 16px;
        color: #162456;
        font-family: 'DM Sans', Sans-Serif;
    }

    .fs-20px {
        font-size: 24px !important;
        color:#162456;
        font-family: 'Oswald', Sans-Serif;
        margin-bottom: 15px !important;
    }

    .section-divider {
        border: none;
        border-top: 2.5px solid #C7C7C7 !important;
        width: 70%;
        margin: 20px 0;
    }

    /* ── NEW: sub-bullet rows (icon + text) ── */
    .feature-sub-list {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 18px;
        padding-top: 4px;
    }

    .feature-sub-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .feature-sub-icon {
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        display: flex;
        margin-top: 8px;
        align-items: center;
        justify-content: center;
    }

    .feature-sub-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-sub-text {
        font-size: 14px;
        color: #23305F;
        font-family: 'DM Sans', Sans-Serif;
        line-height: 1.5;
        margin: 0;
        padding-top: 4px;
    }
    .feature-sub-text-1 {
        font-size: 14px;
        color: #23305F;
        font-family: 'DM Sans', Sans-Serif;
        line-height: 1.5;
        margin: 0;
        padding-top: 4px;
        margin-top:8px;
    }
.mobile-hidden-card{
    display: none;
}

    /* ── Mobile ── */
  
.aic-wrapper { padding: 64px 0; background: #FAF8FF; }

  .aic-heading {
    font-size: 36px;
    font-family: 'Oswald',Sans-Serif;
    font-weight: 800;
    color: #162456;
    text-align: center;
    margin-bottom: 56px;
  }

  .aic-list { display: flex; flex-direction: column; gap: 36px; }

  .aic-row {
  display: flex;
  align-items: center; /* change stretch → center */
  gap: 40px;
}
.aic-row-1 {
  display: flex;
  align-items: center; /* change stretch → center */
  gap: 40px;
}
.aic-row-2 {
  display: flex;
  align-items: center; /* change stretch → center */
  gap: 40px;
}
.aic-row-3 {
  display: flex;
  align-items: center; /* change stretch → center */
  gap: 40px;
  margin-top:-15px;
}

  .aic-indicator {
  flex-shrink: 0;
  width: 5px;
  height: 60px; /* fixed height for all bars */
  border-radius: 4px;
  background: #d1d5e0;
  position: relative;
  overflow: hidden;
}

  .aic-indicator::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0%;
    background: linear-gradient(180deg, #E40078, #4D00FF);
    border-radius: 4px;
    transition: height 0.6s cubic-bezier(0.4,0,0.2,1);
  }

  .aic-indicator.aic-lit::after {
    height: 100%;
  }

  .aic-label {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Dm sans', Sans-Serif;
    line-height: 1.55;
    display: flex;
    align-items: center;
    margin-top:10px;
  }
  .aic-label-1 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Dm sans', Sans-Serif;
    line-height: 1.55;
    display: flex;
    align-items: center;
    margin-top:10px;
  }
  .aic-label-2 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Dm sans', Sans-Serif;
    line-height: 1.55;
    display: flex;
    align-items: center;
    margin-top:10px;
  }
  .aic-label-3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    font-family: 'Dm sans', Sans-Serif;
    line-height: 1.55;
    display: flex;
    align-items: center;
    margin-top:15px;
    max-width: 440px;
  }

  /* ── Right card ── */
  .aic-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px 24px 28px 28px;
    box-shadow: 0 8px 40px rgba(100,80,200,0.10);
    border: 1.5px solid #e8e4f7;
    position: relative;
    max-width: 370px;
    margin: auto;
  }

 .aic-right-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: auto;
}



.hcw-wrapper { padding-top:30px;padding-bottom:100px; background: #fff; }
  .hcw-heading {
    font-size:36px;
    font-weight: 800; color: #162456;
    font-family: 'Oswald',Sans-Serif;
    text-align: center; margin-bottom: 52px;
  }

  .hcw-desktop { display: block; }
  .hcw-mobile  { display: none; }

  /* ── DESKTOP TRACK ── */
  .hcw-track-wrap { position: relative; margin-bottom: 32px; }

  .hcw-base-line {
    position: absolute;
    top: 50%; left: 36px; right: 36px;
    height: 6px;
    background: #e5e7eb;
    border-radius: 6px;
    transform: translateY(-50%);
    z-index: 0;
  }

  .hcw-icons-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }

  .hcw-step {
    display: flex;
    align-items: center;
    flex: 1;
  }
  .hcw-step:last-child { flex: 0 0 auto; }

  .hcw-circle {
    width: 76px; height: 76px;
    border-radius: 50%;
    background: #ececf3;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative; z-index: 2;
    transition: none;
  }
  .hcw-circle img {
    width: 18px; height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(0.55);
    transition: none;
  }
  .hcw-circle.hcw-on {
    background: linear-gradient(135deg, #f72585, #7c3aed);
    box-shadow: 0 6px 24px rgba(124,58,237,0.30);
    transition: background 0.6s ease, box-shadow 0.6s ease;
  }
  .hcw-circle.hcw-on img {
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
  }

  .hcw-seg {
    flex: 1; height: 6px;
    position: relative; overflow: hidden; z-index: 1;
  }
  .hcw-seg-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, #f72585, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: none;
  }
  .hcw-seg-fill.hcw-on {
    transform: scaleX(1);
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
  }

  /* ── LABELS using Bootstrap row/col ── */
  .hcw-lbl {
    text-align: center;
    font-size: 16px;
    color: #000000;
    font-family: 'Dm sans', Sans-Serif;
    line-height: 1.6;
    padding: 0 4px;
    margin-right: 10px;
  margin-left: 20px;
  }
  .hcw-lbl strong { color: #0d1a45; font-weight: 800; }



/* ── TABLET (641px to 768px — iPad Portrait, won't affect mobile) ── */
@media (min-width:768px) and (max-width: 1024px) {
 
    /* Section */
    .faq-section {
        padding: 40px 0;
    }
 
    /* Heading */
    .faq-heading {
        font-size: 26px;
        margin-top: 20px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
 
    /* Item */
    .faq-item {
        padding: 22px 24px;
        margin-bottom: 14px;
    }
 
    /* Question */
    .faq-question {
        font-size: 16px;
    }
 
    /* Answer */
    .faq-answer {
        font-size: 13px;
        margin-top: 10px;
        max-width: 100%;
    }
 
    /* Icon */
    .faq-icon img {
        width: 14px;
    }
}
@media (max-width:767px) {
  .faq-section {
    background-color: #fff;
    padding: 40px 0;
  }

  .faq-heading {
    display: none;
  }

  .faq-item {
    margin-right: 20px;
    margin-left: 20px;
  }

  .faq-question {
    font-size: 12px;
    display: flex;
    align-items: center;
  }

  .faq-text {
    max-width: 75%;
  }

  .faq-icon {
    margin-left: auto;
    flex-shrink: 0;
  }

  .faq-answer {
    font-size: 10px;
  }

  .faq-icon img {
    width: 10px;
    margin-top: -20px;
  }
}

/* ── TABLET (641px to 768px — iPad Portrait, won't affect mobile) ── */
@media (min-width:768px) and (max-width:1024px) {
 
    /* Section */
    .demo-section {
        padding: 30px 0;
    }
 
    /* Inner box */
    .demo-inside {
        padding: 50px 30px;
        border-radius: 16px;
    }
 
    /* Title */
    .demo-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .demo-sub{
        font-size: 16px;
    }
 
    /* Button */
    .demo-btn img {
        max-width: 150px;
    }
}
@media (max-width:640px){
    .demo-section {
  background: url('/images/contractintelligence-img/contract-work-mbl-bg.png') no-repeat center center;
  background-size: cover;
  padding: 20px 0;
}
.demo-title{
     font-size:30px !important;
  font-family: 'Oswald',Sans-Serif;
  color:#ffffff;
  font-weight: 700 !important;
  padding:0px 20px;
  line-height: 40px;
  margin-bottom:20px !important;
  max-width: 300px;
  margin: 0 auto;
}
.demo-sub{
    font-size:16px !important;
    max-width:304px;
    margin:0 auto;
}
.demo-inside {
 padding: 30px 30px;
}
}
/* ── TABLET (768px to 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial-section1 {
        padding: 50px 0 40px;
    }
    .testimonial-section1 .headline {
        font-size: 26px;
        margin-bottom: 32px;
        padding: 0 20px;
    }
    .card-wrapper {
        max-width: 100%;
        margin: 0 20px 28px;
    }
    .bg-card-1 {
        width: calc(100% - 15px);
        transform: rotate(-3.5deg) translate(-10px, 6px);
        left: 30px;
        top: -5px;
    }
    .main-card {
        height: 300px;
        overflow: hidden;
    }
    .slide {
        padding: 36px 28px 36px 24px;
        height: 340px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    .slide-left {
        flex: 0 0 140px;
        padding-top: 20px;
        padding-left: 16px;
    }
    .logo-box {
        width: 100px;
        height: 65px;
    }
    .logo-box img {
        max-width: 110px;
        max-height: 110px;
        margin-top: 50px;
    }
    .slide-right {
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 12px;
    }
    .slide-right h3 {
        font-size: 18px;
        margin-bottom: 10px;
        padding-right: 16px;
    }
    .slide-right p {
        font-size: 13px;
        line-height: 1.7;
        padding-right: 16px;
    }
    .quote-mark {
        right: 24px;
        bottom: -14px;
    }
    .quote-mark svg {
        width: 52px;
        height: auto;
    }
    .dots {
        margin-top: 60px;
        gap: 8px;
    }
    .dot-btn {
        width: 11px;
        height: 11px;
    }
}

/* ── TABLET (641px to 768px — iPad Portrait, won't affect mobile) ── */
@media (min-width:768px) and (max-width:1024px) {
 
    /* Section */
    .demo-section {
        padding: 30px 0;
    }
 
    /* Inner box */
    .demo-inside {
        padding: 50px 30px;
        border-radius: 16px;
    }
 
    /* Title */
    .demo-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    .demo-sub{
        font-size: 16px;
    }
 
    /* Button */
    .demo-btn img {
        max-width: 150px;
    }
}
@media (max-width:640px){
    .demo-section {
  background: url('/images/contractintelligence-img/contract-work-mbl-bg.png') no-repeat center center;
  background-size: cover;
  padding: 20px 0;
}
.demo-title{
     font-size:30px !important;
  font-family: 'Oswald',Sans-Serif;
  color:#ffffff;
  font-weight: 700 !important;
  padding:0px 20px;
  line-height: 40px;
  margin-bottom:20px !important;
  max-width: 300px;
  margin: 0 auto;
}
.demo-sub{
    font-size:16px !important;
    max-width:304px;
    margin:0 auto;
}
.demo-inside {
 padding: 30px 30px;
}
}
/* ── TABLET (768px to 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
    .testimonial-section1 {
        padding: 50px 0 40px;
    }
    .testimonial-section1 .headline {
        font-size: 26px;
        margin-bottom: 32px;
        padding: 0 20px;
    }
    .card-wrapper {
        max-width: 100%;
        margin: 0 20px 28px;
    }
    .bg-card-1 {
        width: calc(100% - 15px);
        transform: rotate(-3.5deg) translate(-10px, 6px);
        left: 30px;
        top: -5px;
    }
    .main-card {
        height: 300px;
        overflow: hidden;
    }
    .slide {
        padding: 36px 28px 36px 24px;
        height: 340px;
        overflow-y: auto;
        box-sizing: border-box;
    }
    .slide-left {
        flex: 0 0 140px;
        padding-top: 20px;
        padding-left: 16px;
    }
    .logo-box {
        width: 100px;
        height: 65px;
    }
    .logo-box img {
        max-width: 110px;
        max-height: 110px;
        margin-top: 50px;
    }
    .slide-right {
        padding-top: 20px;
        padding-right: 20px;
        padding-left: 12px;
    }
    .slide-right h3 {
        font-size: 18px;
        margin-bottom: 10px;
        padding-right: 16px;
    }
    .slide-right p {
        font-size: 13px;
        line-height: 1.7;
        padding-right: 16px;
    }
    .quote-mark {
        right: 24px;
        bottom: -14px;
    }
    .quote-mark svg {
        width: 52px;
        height: auto;
    }
    .dots {
        margin-top: 60px;
        gap: 8px;
    }
    .dot-btn {
        width: 11px;
        height: 11px;
    }
}

    @media (min-width: 992px) {
        .sticky-blocks-grid {
            position: relative;
            bottom: 40px;
        }

        .Actually {
            padding-bottom: 0 !important;
        }
    }
@media (max-width: 360px) {
.clm-audit-section {
      margin-top:30px;
      background: linear-gradient(159deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
    padding: 30px 0 20px;
  }

  .clm-audit-title {
    font-size: 30px;
    margin:0 auto;
    max-width:300px;
  }

  .clm-audit-card-text {
    font-size: 14px;
    max-width:255px;
  }
 .clm-audit-card{
        padding-left: 15px !important;
  padding-right: 0px !important;
  padding-top: 30px;
  padding-bottom: 40px;
  max-width: 300px;
    margin: 0 auto;
    }
  .clm-audit-card-equal {
    height: auto;
    min-height: 130px;
  }

  .clm-audit-card-tall {
    height: auto;
  }

  .clm-tall-img-wrap {
    height: 120px;
  }
}


@media (max-width: 321px) {
.clm-audit-section {
      margin-top:30px;
      background: linear-gradient(159deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
    padding: 30px 0 20px;
  }

  .clm-audit-title {
    font-size: 30px;
    margin:0 auto;
    max-width:300px;
  }

  .clm-audit-card-text {
    font-size: 14px;
    max-width:255px;
  }
 .clm-audit-card{
        padding-left: 22px !important;
  padding-right: 0px !important;
  padding-top: 30px;
  padding-bottom: 40px;
    }
  .clm-audit-card-equal {
    height: auto;
    min-height: 130px;
  }

  .clm-audit-card-tall {
    height: auto;
  }

  .clm-tall-img-wrap {
    height: 120px;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width:1024px) {
  .lm-heading { font-size: 24px; }
  .lm-logo, .lm-logo--sm { height: 55px; }
  .lm-logo--sm { width: 55px; }
}

/* Mobile */
@media (max-width:767px) {
  .lm-heading { font-size:24px; margin-bottom: 30px; padding-left:20px;padding-right:20px;}
  .lm-logo, .lm-logo--sm { height: 42px; }
  .lm-logo--sm { width: 42px; }
  .lm-section{
      margin-top:-50px !important;
      padding-bottom: 20px;
  }
}
/* ── Mobile (max 767px) ── */
@media (max-width: 767px) {

    .testimonial-section1 {
        padding: 8px 0 40px;
        background: #ffffff !important;
    }

     .testimonial-section1 .headline-1 {
        margin-bottom: 28px;
        color: #162456;
        font-family: 'Oswald', Sans-Serif;
        font-size: 24px;
        font-weight: 500;
        gap: 2px;
        max-width: 250px;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
    }

    .card-wrapper {
        padding: 0 16px;
        margin-bottom: 20px;
    }
    .main-card{
        height: auto !important;
        box-shadow: none !important;
    }
   .bg-card-1 {
    width: calc(100% - 35px);
    height: 100%;
    top: -5px;
    transform: translateX(-48%);
    opacity: .45;
    background: #E8E8E8;
    opacity: 1;
    transform: rotate(-3.5deg) translate(-12px, 8px);
    left: 29px;
    box-shadow: none !important;
  }

    .slide {
        flex-direction: column;
        padding: 28px 20px 36px;
        gap: 0;
    }

    .slide-left {
        flex: unset;
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
        justify-content: flex-start;
        margin-bottom: 10px;
        margin-top:-20px;
    }

   .logo-box {
    width: 100px;
    height: 56px;
    margin: 0 auto !important;
    padding: 0px !important;
    display: block;
  }

.logo-box img {
    max-width: 90px;
    max-height: 90px;
    margin-top: 0;
}

    .slide-right {
        padding-left: 0;
    }

    .slide-right h3 {
        font-size:18px;
        margin-bottom: 10px;
        padding-left:5px;
        padding-right:0px !important;
        font-family: 'Dm sans', Sans-Serif;
        font-weight:500 !important;
    }

    .slide-right p {
        font-size:12px;
        line-height: 1.65;
         padding-left:5px;
        padding-right:0px !important;
    }

    .quote-mark {
        right: 26px;
        bottom: -12px;
    }

    .quote-mark svg {
        width: 50px;
        height: auto;
    }

    .dots {
        display: none;
    }
    .left-side-image{
        display: none;
    }
}
/* Mobile View */
@media (max-width: 640px) {
    .faq-btn {
      font-size: 0.88rem;
      gap: 7px;
      padding: 8px 12px;
      white-space: normal;
      text-align: center;
      justify-content: center;
      width: 100%;
    }

    .faq-btn .arrow-icon svg {
      width: 12px;
      height: 12px;
    }
  }

@media (max-width: 767px) {
      .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

        .mobile-hidden-card {
            display: none !important;
        }

        .mobile-hidden-card.show {
            display: block !important;
        }

        .esign-title {
            color:#2B2B2B;
            font-size: 17px;
            font-family: 'Dm sans', Sans-Serif;
            margin-bottom: 10px !important;
        }

        .section-divider {
            width: 100% !important;
            margin: 30px 0;
        }

        .text-navy-blue {
            max-width: 100% !important;
            color:#38353C;
            font-size: 14px;
        }

        .feature-sub-text {
            font-size: 14px;
            color: #38353C;
        }
         .feature-sub-text-1 {
            font-size: 14px;
            color: #38353C;
            margin-top:8px;
    }
}
@media (min-width:361px) and (max-width: 767px) {
      .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

     .aic-list {
    gap: 24px;
    margin-left: 10px;
  }

}
@media (max-width: 767px) {
  .aic-wrapper {
    padding: 40px 0;
  }

  .aic-heading {
    font-size: 30px;
    max-width:350px;
    margin:0 auto;
    margin-bottom: 36px !important;
  }

 
  .aic-row{
    gap: 20px;
    margin-top: 0;
  }
  .aic-row-1{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-2{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-3{
    gap: 20px;
    margin-top:-25px;
  }

  .aic-indicator {
    width: 4px;
    height: 50px;
  }

  .aic-label{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:200px;
    margin-top:14px;
  }
  .aic-label-1{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:260px;
    margin-top: 14px;
  }
  .aic-label-2{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:250px;
    margin-top: 14px;
  }
  .aic-label-3{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
     max-width:300px;
    margin-top: 14px;
  }

  .aic-right-img {
    display: none;
  }

  .aic-right-panel {
    display: none !important;
  }
}
@media (max-width: 321px) {
      .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

  .aic-wrapper {
    padding: 40px 0;
  }

  .aic-heading {
    font-size: 30px;
    max-width:350px;
    margin:0 auto;
    margin-bottom: 36px !important;
  }

  .aic-list {
    gap: 24px;
    margin-left: 10px !important;
  }

  .aic-row{
    gap: 20px;
    margin-top: 0;
  }
  .aic-row-1{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-2{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-3{
    gap: 20px;
    margin-top:-25px;
  }

  .aic-indicator {
    width: 4px;
    height: 50px;
  }

  .aic-label{
    font-size: 16px;
    line-height: 1.5;
    max-width:200px !important;
    margin-top:14px;
  }
  .aic-label-1{
    font-size: 16px;
    line-height: 1.5;
    max-width:260px !important;
    margin-top: 14px;
  }
  .aic-label-2{
    font-size: 16px;
    line-height: 1.5;
    max-width:250px !important;
    margin-top: 14px;
  }
  .aic-label-3{
    font-size: 16px;
    line-height: 1.5;
     max-width:300px !important;
    margin-top: 14px;
  }

  .aic-right-img {
    display: none;
  }

  .aic-right-panel {
    display: none !important;
  }
}
@media  (min-width:414px) and (max-width: 440px) {
      .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

  .aic-wrapper {
    padding: 40px 0;
  }

  .aic-heading {
    font-size: 30px;
    max-width:350px;
    margin:0 auto;
    margin-bottom: 36px !important;
  }

  .aic-list {
    gap: 24px;
    margin-left: 50px;
  }

  .aic-row{
    gap: 20px;
    margin-top: 0;
  }
  .aic-row-1{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-2{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-3{
    gap: 20px;
    margin-top:-25px;
  }

  .aic-indicator {
    width: 4px;
    height: 50px;
  }

  .aic-label{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:200px;
    margin-top:14px;
  }
  .aic-label-1{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:260px;
    margin-top: 14px;
  }
  .aic-label-2{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:250px;
    margin-top: 14px;
  }
  .aic-label-3{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
     max-width:300px;
    margin-top: 14px;
  }

  .aic-right-img {
    display: none;
  }

  .aic-right-panel {
    display: none !important;
  }
}
@media (min-width:414px) and (max-width: 440px) {
      .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

.clm-audit-section {
      margin-top:30px;
      background: linear-gradient(159deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
    padding: 30px 0 20px;
  }

  .clm-audit-title {
    font-size: 30px;
    margin:0 auto;
    max-width:300px;
  }

  .clm-audit-card-text {
    font-size: 14px;
    max-width:255px;
  }
 .clm-audit-card{
        padding-left: 22px !important;
  padding-right: 22px !important;
  padding-top: 30px;
  padding-bottom: 40px;
  max-width: 300px;
    margin: 0 auto;
    }
  .clm-audit-card-equal {
    height: auto;
    min-height: 130px;
  }

  .clm-audit-card-tall {
    height: auto;
  }

  .clm-tall-img-wrap {
    height: 120px;
  }
}
@media  (min-width:414px) and (max-width: 440px) {
      .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

    
  .hcw-mob-list { display: flex !important; flex-direction: column !important; margin-left:0px !important;}
  .hcw-mob-step { display: flex !important; align-items: flex-start !important; gap: 50px !important; }
  .hcw-mob-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0;margin-left: 30px !important; }

  .hcw-mob-circle {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #ececf3;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 2;
    transition: background 0.6s ease, box-shadow 0.6s ease;
  }
  .hcw-mob-circle img {
    width: 18px; height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(0.55);
    transition: filter 0.4s;
  }
  .hcw-mob-circle.hcw-on {
    background: linear-gradient(135deg, #f72585, #7c3aed);
    box-shadow: 0 6px 20px rgba(124,58,237,0.28);
  }
  .hcw-mob-circle.hcw-on img { filter: brightness(0) invert(1); }

  .hcw-mob-seg {
  width: 6px;
  flex: 1;
  min-height: 95px;
  background: #e5e7eb;
  border-radius: 6px;
  margin-top: -6px; /* FIX: attach line to circle */
  position: relative;
  overflow: hidden;
}
  .hcw-mob-seg-fill {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0%;
    background: linear-gradient(180deg, #f72585, #7c3aed);
    transition: height 0.8s cubic-bezier(0.4,0,0.2,1);
  }
  .hcw-mob-seg-fill.hcw-on { height: 100%; }

  .hcw-mob-step:last-child .hcw-mob-seg { display: none; }

  .hcw-mob-text { padding-top: 8px; font-size: 15px; color: #374151; line-height: 1.6;padding-bottom:70px; max-width:180px;}
  .hcw-mob-text strong { color: #0d1a45; font-weight: 800; }
}
@media (max-width: 360px) {
  .aic-wrapper {
    padding: 40px 0;
  }

  .aic-heading {
    font-size: 30px;
    max-width:350px;
    margin:0 auto;
    margin-bottom: 36px !important;
  }

  .aic-list {
    gap: 24px;
    margin-left: 35px;
  }

  .aic-row{
    gap: 20px;
    margin-top: 0;
  }
  .aic-row-1{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-2{
    gap: 20px;
    margin-top:-25px;
  }
  .aic-row-3{
    gap: 20px;
    margin-top:-25px;
  }

  .aic-indicator {
    width: 4px;
    height: 50px;
  }

  .aic-label{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:200px;
    margin-top:14px;
  }
  .aic-label-1{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:260px;
    margin-top: 14px;
  }
  .aic-label-2{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
    max-width:250px;
    margin-top: 14px;
  }
  .aic-label-3{
    font-size: 16px;
    margin-top: 0;
    line-height: 1.5;
     max-width:300px;
    margin-top: 14px;
  }

  .aic-right-img {
    display: none;
  }

  .aic-right-panel {
    display: none !important;
  }
  .marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 50px;
    margin: 5px 20px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

}
@media(max-width:767.98px){
    .aic-right-panel { display: none !important; }
  }

  /* ── MOBILE ── */
@media (max-width: 767px) {
    html,body{
        overflow-x: hidden;
    }
        
  .hcw-mob-list { display: flex; flex-direction: column; margin-left:20px;}
  .hcw-mob-step { display: flex; align-items: flex-start; gap: 30px; }
  .hcw-mob-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

  .hcw-mob-circle {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #ececf3;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 2;
    transition: none;
  }
  .hcw-mob-circle img {
    width: 18px; height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(0.55);
    transition: none;
  }
  .hcw-mob-circle.hcw-on {
    background: linear-gradient(135deg, #f72585, #7c3aed);
    box-shadow: 0 6px 20px rgba(124,58,237,0.28);
    transition: background 0.6s ease, box-shadow 0.6s ease;
  }
  .hcw-mob-circle.hcw-on img {
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
  }

  .hcw-mob-seg {
  width: 6px;
  flex: 1;
  min-height: 95px;
  background: #e5e7eb;
  border-radius: 6px;
  margin-top: -6px;
  position: relative;
  overflow: hidden;
}
  .hcw-mob-seg-fill {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0%;
    background: linear-gradient(180deg, #f72585, #7c3aed);
    transition: none;
  }
  .hcw-mob-seg-fill.hcw-on {
    height: 100%;
    transition: height 0.8s cubic-bezier(0.4,0,0.2,1);
  }

  .hcw-mob-step:last-child .hcw-mob-seg { display: none; }

  .hcw-mob-text { padding-top: 8px; font-size: 15px; color: #374151; line-height: 1.6;padding-bottom:0px; }
  .hcw-mob-text strong { color: #0d1a45; font-weight: 800; }
}

@media (max-width: 360px) {
      
  .hcw-mob-list { display: flex; flex-direction: column; margin-left:20px;}
  .hcw-mob-step { display: flex; align-items: flex-start; gap: 30px; }
  .hcw-mob-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }

  .hcw-mob-circle {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: #ececf3;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 2;
    transition: none;
  }
  .hcw-mob-circle img {
    width: 18px; height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(0.55);
    transition: none;
  }
  .hcw-mob-circle.hcw-on {
    background: linear-gradient(135deg, #f72585, #7c3aed);
    box-shadow: 0 6px 20px rgba(124,58,237,0.28);
    transition: background 0.6s ease, box-shadow 0.6s ease;
  }
  .hcw-mob-circle.hcw-on img {
    filter: brightness(0) invert(1);
    transition: filter 0.4s;
  }

  .hcw-mob-seg {
  width: 6px;
  flex: 1;
  min-height: 95px;
  background: #e5e7eb;
  border-radius: 6px;
  margin-top: -6px;
  position: relative;
  overflow: hidden;
}
  .hcw-mob-seg-fill {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0%;
    background: linear-gradient(180deg, #f72585, #7c3aed);
    transition: none;
  }
  .hcw-mob-seg-fill.hcw-on {
    height: 100%;
    transition: height 0.8s cubic-bezier(0.4,0,0.2,1);
  }

  .hcw-mob-step:last-child .hcw-mob-seg { display: none; }

  .hcw-mob-text { padding-top: 8px !important; font-size: 15px !important; color: #374151 !important; line-height: 1.6 !important;padding-bottom:0px !important;max-width:180px; }
  .hcw-mob-text-1 { padding-top: 8px !important; font-size: 15px !important; color: #374151 !important; line-height: 1.6 !important;padding-bottom:70px !important; max-width:200px;}
  .hcw-mob-text-2 { padding-top: 8px !important; font-size: 15px !important; color: #374151 !important; line-height: 1.6 !important;padding-bottom:70px !important; max-width:200px;}
  .hcw-mob-text-3 { padding-top: 8px !important; font-size: 15px !important; color: #374151 !important; line-height: 1.6 !important;padding-bottom:70px !important; max-width:180px;}
  .hcw-mob-text-4 { padding-top: 8px !important; font-size: 15px !important; color: #374151 !important; line-height: 1.6 !important;padding-bottom:70px !important; max-width:180px;}
  .hcw-mob-text strong { color: #0d1a45; font-weight: 800; }
}
@media (max-width: 767px) {
       
      .hcw-heading{
          font-size:22px;
          max-width: 300px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 80px;
    line-height:35px;
      }
      .hcw-wrapper{
          padding-bottom: 40px;
      }
    .hcw-desktop { display: none; }
    .hcw-mobile  { display: block; }
  }
.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.track {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}

.marquee-right .track {
    animation: scroll-right 30s linear infinite;
}

.track img {
    height: 90px;
    margin: 5px 30px;
    transition: opacity 0.3s ease;
}

.track img:hover {
    opacity: 1;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

