* { 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: 200px;
    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);
}



.business, .business-1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 28px; /* better readability */
    letter-spacing: 0;
    color: #000000;
    text-align: center;
     margin-bottom: 30px;
}


.main-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 52px;
    color: #000000;
    text-align: center;
    max-width:800px;
    margin:0 auto ;
    margin-top:80px !important;
}

/* ══════════════════════════════════════════════════
   HERO SECTION — DESKTOP
══════════════════════════════════════════════════ */
 
/* ══════════════════════════════════════════════════
   HERO SECTION — DESKTOP
══════════════════════════════════════════════════ */
.herosection {
    padding-top: 130px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg,#DAD3F6CB,#FFFFFF);;
}
.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: 600px;
    margin-top: -50px;
}
.hero-heading-1 {
    width: 624px;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Oswald', Sans-Serif;
    background:#6C3AEF;
    -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: flex-start; /* changed from center */
}
.hero-right picture {
    display: flex;
    float: left; /* changed from right to left */
}
.hero-right-img {
    max-width: 100%;
    height: 404px;
    float: left;
}
/* ══════════════════════════════════════════════════
   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) {
    .hero-title{
        font-size:22px;
        line-height:35px;
        max-width:300px;
        margin: 0 auto;
        margin-bottom: 20px !important;
    }
    .hero-text{
        font-size: 16px;
        line-height:25px;
        margin-bottom: 20px;
    }
    .herosection{
        padding-top:120px;
        background: #ffffff !important;
        padding-bottom: 20px;
    }
.business, .business-1 {
    font-size: 20px;
    line-height: 28px; /* better readability */
     margin-bottom: 10px;
}
.hero-btn{
    margin-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;
    }
    .main-heading {
        font-size:22px;
        line-height:35px;
        margin-top:2px !important;
    }
    /*.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;*/
    /*}*/
    .marquee .track {
        gap: 10px;
    }
    .marquee .track img {
        height: 80px;
         margin: 5px 0px;
    }
    .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: -10px !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: -10px !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;
    }

    .end-to-end {
        font-size: 24px;
        margin-top: 36px;
        padding: 0 20px;
    }

}
    /* ── SECTION ── */
    .impact-section-table {
      padding: 60px 0;
      background-color: #ffffff;
      font-family: 'DM Sans', sans-serif;
    }

    .impact-title-1 {
      font-weight: 700;
      font-size: 36px;
      color: #000000;
      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: #000000;
      text-align: center;
      margin-bottom: 50px;
    }

    /* ── WRAPPER: border + radius + mobile scroll ── */
    .impact-table-wrapper-1 {
      border: 1px solid #DAD3FC;
      border-radius: 20px;
      overflow: hidden;
    }

    /* ── TABLE ── */
    .impact-table-1 {
      width: 100%;
      border-collapse: collapse;
      margin: 0;
      background: #fff;
    }

    .impact-table-1 th,
    .impact-table-1 td {
      border: none;
    }

    /* ── THEAD ── */
    .impact-table-1 thead th {
      background-color: #EAE4F8;
      font-weight: 700;
      font-size: 18px;
      padding: 18px 20px;
      vertical-align: middle;
      text-align: left;
      color: #171B38;
    }

    /* ── TBODY ── */
    .impact-table-1 tbody tr td {
      vertical-align: middle;
      padding: 18px 20px;
      background-color: #ffffff;
      border-bottom: 1px solid #ede9fb;
    }

    .impact-table-1 tbody tr:last-child td {
      border-bottom: none;
    }

    /* ── Category col ── */
    .td-category-1 {
      font-weight: 700;
      font-size: 16px;
      color:#000000;
      font-family: 'Dm sans', Sans-Serif;
      white-space: nowrap;
    }

    /* ── Feature col ── */
    .td-metric-1 {
      font-size: 16px;
      font-family: 'Dm sans', Sans-Serif;
      color: #444444;
    }

    /* ── Melento S2O col ── */
    .td-after-1 {
      font-size: 16px;
      color: #6C3AEF;
      font-weight: 500;
       font-family: 'Dm sans', Sans-Serif;
      line-height: 1.5;
    }

    /* ── Traditional CLM col ── */
    .td-before-1 {
         font-family: 'Dm sans', Sans-Serif;
      font-size: 16px;
      color: #444444;
    }

    /* =========================
       TABLET VIEW (≤1024px)
    ========================= */
    @media (max-width: 1024px) {
      .impact-section-table {
        padding: 40px 0;
      }
      .impact-title-1 {
        font-size: 28px;
      }
      .impact-subtitle-1 {
        font-size: 24px;
        margin-bottom: 30px;
      }
      .impact-table-1 thead th {
        font-size: 15px;
        padding: 14px 16px;
      }
      .td-category-1,
      .td-metric-1,
      .td-after-1,
      .td-before-1 {
        font-size: 14px;
        padding: 14px 16px !important;
      }
    }

    /* =========================
       MOBILE VIEW (≤767px)
    ========================= */
    @media (max-width: 767px) {
      .impact-section-table {
        padding: 30px 0;
      }
      .impact-title-1 {
        font-size: 20px;
      }
      .impact-subtitle-1 {
        font-size: 20px;
        margin: 0 auto 24px;
        max-width: 300px;
      }

      /* horizontal scroll */
      .impact-table-wrapper-1 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 16px;
      }

      .impact-table-1 {
        min-width: 600px;
      }

      .impact-table-1 thead th {
        font-size: 13px;
        padding: 12px 14px;
        white-space: nowrap;
      }

      .impact-table-1 tbody tr td {
        padding: 12px 14px !important;
        line-height: 1.4;
      }

      .td-category-1 {
        font-size: 12px;
        white-space: nowrap;
      }

      .td-metric-1,
      .td-after-1,
      .td-before-1 {
        font-size: 12px;
        white-space: normal;
      }
    }


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

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


/* SECTION BACKGROUND */
.demo-section {
  background: url('/images/sourceobligation-img/source-obligation-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-title-1 {
  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: 1200px;
  margin: 0 auto;
}
.demo-btn img {
  max-width: 180px;
}

/* ── 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-title-1 {
        font-size: 28px;
    }
    .demo-sub{
        font-size: 16px;
    }
 
    /* Button */
    .demo-btn img {
        max-width: 150px;
    }
}
@media (max-width:640px){
    .demo-section {
  background: url('/images/sourceobligation-img/source-obligation-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;
  max-width: 300px;
  margin: 0 auto;
}
.demo-title-1{
     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;
}
}

  @media(max-width:767.98px){
    .aic-right-panel { display: none !important; }
  }
  
  
.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: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    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: #ffffff;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0px 3px 6px #00000029;
    position: relative; z-index: 2;
    transition: none;
  }
  .hcw-circle picture {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hcw-circle img {
    width: 32px; height: 32px;
    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) !important;
    transition: filter 0.4s;
  }
  .hcw-circle.hcw-on picture img {
    filter: brightness(0) invert(1) !important;
    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; }

  /* ── 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: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 2;
    transition: none;
  }
  .hcw-mob-circle picture {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .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) !important;
    transition: filter 0.4s;
  }
  .hcw-mob-circle.hcw-on picture img {
    filter: brightness(0) invert(1) !important;
    transition: filter 0.4s;
  }

  .hcw-mob-seg {
    width: 6px;
    flex: 1;
    min-height: 95px;
    background: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    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:70px; }
  .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: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; z-index: 2;
    transition: none;
  }
  .hcw-mob-circle picture {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .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) !important;
    transition: filter 0.4s;
  }
  .hcw-mob-circle.hcw-on picture img {
    filter: brightness(0) invert(1) !important;
    transition: filter 0.4s;
  }

  .hcw-mob-seg {
    width: 6px;
    flex: 1;
    min-height: 95px;
    background: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    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; }
}
  
  
 
  .feature-section {
  padding: 100px 0;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
}

/* ── LEFT: STICKY TAB LIST ── */
.vtab-col {
  position: relative;
}

.vtab-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: sticky;
  top: 100px; /* adjust this to match your navbar height */
}

.vtab-item {
  border-bottom: 2px solid #e5e2f0;
}

.vtab-item:first-child {
  border-top: none;
}

.vtab-item:last-child {
  border-bottom: none;
}

.vtab-btn {
  display: flex;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #4b4869;
  line-height: 1.4;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 0;
  margin-bottom: 10px;
  margin-top: 10px;
}

.vtab-btn:hover {
  color: #7c3aed;
}

/* Arrow — hidden by default */
.vtab-btn .tab-arrow {
  display: none;
  font-size: 13px;
  color: #2d1b6e;
  margin-left: 8px;
  flex-shrink: 0;
  line-height: 1;
}

/* Active tab */
.vtab-btn.active {
  background: linear-gradient(135deg, #F0EAFF 20%, #ffffff 60%, #ffffff 100%);
  color: #2d1b6e;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.vtab-btn.active .tab-arrow {
  display: inline;
}

/* ── RIGHT: CONTENT PANELS — all stacked, all visible ── */
.vcontent-panel {
  display: block; /* all visible now */
  padding-left: 100px;
  padding-bottom: 60px; /* space between panels */
  border-bottom: 1px solid #f0eaff;
  margin-bottom: 20px;
}

.vcontent-panel:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* remove old animation since panels are always shown */
.vcontent-panel.active {
  display: block;
}

.vcontent-panel .panel-title {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #32006C;
  margin-bottom: 16px;
  line-height: 1.2;
}

.vcontent-panel .panel-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  color: #2E2E2E;
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 650px;
}

.vcontent-panel .panel-desc-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #2E2E2E;
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 650px;
}

.vcontent-panel .panel-desc-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #2E2E2E;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 650px;
}

.panel-divider {
  border: none;
  border-top: 1px solid #707070;
  margin-bottom: 22px;
  width: 80%;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #2A0F71;
  font-weight: 500;
  line-height: 1.55;
  max-width: 550px;
}

.feature-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7B4FED;
  margin-top: 7px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .feature-section { padding: 60px 0; }
  .vtab-btn { font-size: 14px; padding: 14px 16px; }
  .vtab-list { top: 80px; }
}

@media (max-width: 767.98px) {
  .feature-section { padding: 40px 0; }
  .vtab-btn { font-size: 13.5px; padding: 13px 14px; }
  .vcontent-col { margin-top: 20px; }
  .vcontent-panel .panel-title { font-size: 20px; }
  .vcontent-panel .panel-desc { font-size: 14px; }
  .feature-list li { font-size: 13.5px; }
  .vcontent-panel { padding-left: 10px; }
}

@media (max-width: 575.98px) {
  .vtab-btn { font-size: 13px; padding: 12px 12px; }
  .vtab-btn.active { border-radius: 8px; }
}
    
    
    
.outcomes-section {
  background: #F4F4F5;
  padding: 70px 0 60px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  border-bottom: 2px solid white;
}

.outcomes-heading {
  font-size:36;
  font-weight: 800;
  color:#000000;
  line-height: 1.25;
  font-family: 'Oswald', Sans-Serif;
  margin-bottom: 36px;
  max-width: 500px;
}

.outcomes-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 22px;
  border: 1.5px solid #7c3aed;
  border-radius: 50px;
  background: transparent;
  color: #111;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.outcomes-btn:hover {
  background: #7c3aed;
  color: #fff;
}

.outcomes-btn .btn-icon {
  width: 30px;
  height: 30px;
  background: #7c3aed;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.outcomes-btn:hover .btn-icon {
  background: #fff;
}

.outcomes-btn .btn-icon i {
  font-size: 12px;
  color: #fff;
  transition: color 0.2s ease;
}

.outcomes-btn:hover .btn-icon i {
  color: #7c3aed;
}

/* Carousel */
.outcomes-carousel-wrap {
  overflow: hidden;
}

.outcomes-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.outcome-card {
  flex: 0 0 calc((100% - 30px) / 4);
  width: calc((100% - 30px) / 4);
  background: #fff;
  border-radius: 18px;
 padding: 20px 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px #00000029;
  margin-bottom: 20px;
}

.outcome-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  margin-top:10px;
}

.outcome-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.outcome-card .card-text {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  font-family: 'Dm sans', Sans-Serif;
  line-height: 1.6;
  padding-left:10px;
  padding-right:10px;
}

/* Arrows */
.carousel-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 42px;
  margin-top: 28px;
}

.carr-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid #7c3aed;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.carr-btn i {
  font-size: 20px;
  color: #7c3aed;
  transition: color 0.2s ease;
}

.carr-btn:hover {
  background: #7c3aed;
}

.carr-btn:hover i {
  color: #fff;
}

.carr-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 991.98px) {
  .outcomes-section { padding: 55px 0 44px; }
  .outcome-card {
    flex: 0 0 calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
  }
}

@media (max-width: 767.98px) {
  .outcomes-section { padding: 40px 0 36px; }
  .left-col { margin-bottom: 32px; }
  .outcome-card {
    flex: 0 0 calc(80%);
    width: calc(80%);
  }
}

@media (max-width: 575.98px) {
  .outcome-card {
    flex: 0 0 88%;
    width: 88%;
  }
}
 
 
 
 
.clm-audit-title{
margin:auto;
font-size:28px !important;
font-weight:700;
font-family:'Oswald', sans-serif;
}
.clm-desc {
  font-family: 'DM Sans',sans-serif;
  font-size: 18px !important;
  margin-bottom: 15px;
  color: #080808;
}
.clm-subtitle {
  font-family: 'DM Sans',sans-serif;
  font-weight: 600;
  font-size: 22px !important;
  margin-bottom: 20px;
  color: #080808;
}
.clm-item img {
  width: 10px !important;
  margin-top: 7.5px !important;
}
.clm-item p {
  margin: 0;
  color: #080808;
  font-size: 18px !important;
  font-family: 'DM Sans',sans-serif;
}
.cta-green-title {
  font-family: 'Oswald', sans-serif;
  font-size: 28px !important;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  margin: 0 auto 30px;
}
.cta-green-desc {
  margin: 0 auto 40px;
  font-size: 18px !important;
  line-height: 26px;
  color: #ffffff;
}
.cta-heading {
  font-family: 'Oswald',sans-serif;
  font-weight: 700;
  font-size: 28px !important;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.carousel{
    margin-top:-40px;
}


/* SECTION WRAPPER */
.clm-audit-section-bg{
    background: #F4F4F5;
}
.clm-audit-wrapper{
margin:auto;
margin-top:50px;
margin-bottom: 30px;
}


/* TITLE */

.clm-audit-title{
max-width:840px;
margin:auto;
line-height:50px;
font-size:36px !important;
font-weight:700;
font-family:'Oswald', sans-serif;
}


/* CARD BASE */

.clm-audit-card{
background:#ffffff;
box-shadow: 0px 3px 6px #00000029;
border-radius:20px;
padding:25px;
display:flex;
flex-direction:column;
}


/* CARD SIZES */

.clm-audit-card-small{
width:296px;
height:191px;
}

.clm-audit-card-medium{
width:296px;
height:205px;
}

.clm-audit-card-tall{
width:296px;
height:416px;
padding:16px;
align-items:center;
text-align:center;
}


/* ICONS */

.clm-audit-icon-small{
width:32px;
height:32px;
}

.clm-audit-icon-medium{
width:32px;
height:32px;
}


/* IMAGE */

.clm-audit-image{
width:272px;
height:222px;
border-radius:16px;
object-fit:cover;
display:block;
margin-bottom:25px;
}


/* TEXT WIDTHS */

.clm-audit-text-one{
max-width:253px;
margin-top:20px;
font-size:16px;
color:#000000;
font-weight:600;
font-family:'DM Sans', sans-serif;
}

.clm-audit-text-two{
max-width: 400px;
margin-top:20px;
font-size:16px;
color:#000000;
font-weight:600;
font-family:'DM Sans', sans-serif;
}

.clm-audit-text-three{
max-width:225px;
margin-top:20px;
font-size:16px;
color:#000000;
font-weight:600;
font-family:'DM Sans', sans-serif;
}

.clm-audit-text-four{
max-width:254px;
margin-top:20px;
font-size:16px;
color:#000000;
font-weight:600;
font-family:'DM Sans', sans-serif;
}

.clm-audit-tall-text{
max-width:252px;
margin:auto;
font-size:16px;
color:#000000;
font-weight:600;
font-family:'DM Sans', sans-serif;
}


/* HIGHLIGHT TEXT */

.clm-audit-highlight{
color:#2a8a6a;
display:block;
font-size:18px;
margin-bottom:4px;
font-weight:600;
font-family:'DM Sans', sans-serif;
}


/* ROW SPACING */

.clm-audit-row-gap{
margin-bottom:0px;
}

@media (max-width:640px){
    .marquee-title{
    font-size: 22px;
    margin-top:60px !important;
    margin-bottom: 0px !important;
}
    .clm-audit-title{
        font-size:22px !important;
        line-height: 35px;
    }
    .clm-audit-wrapper{
        margin-left: 20px;
  margin-right: 20px;
    }
    .clm-audit-icon-small,
  .clm-audit-icon-medium {
    display: block;
    margin: 0 auto;
  }

  .clm-audit-text-one,
  .clm-audit-text-two,
  .clm-audit-text-three,
  .clm-audit-text-four,
  .clm-audit-tall-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
.card4{
    margin-left: 0px !important;
    margin-top:-20px;
}
  .audit-image{
      width:100%;
      height:300px;
      margin-top:0px;
      margin-bottom:20px;
  }
  .worth-result-wrapper{
      margin-top:40px;
      margin-bottom:20px;
  }
  .clm-btn {
    display: block !important;
    margin: 40px auto 0 auto; /* center */
  }
}
/* RESPONSIVE */

@media (max-width:992px){

.clm-audit-card-small,
.clm-audit-card-medium,
.clm-audit-card-tall{
width:100%;
height:auto;
}

.clm-audit-image{
width:100%;
height:auto;
}

}


/* ══════════════════════════════════════════
   MOBILE ACCORDION — shown only below 768px
   ══════════════════════════════════════════ */
.marquee-title{
    color:#000000;
    font-size: 22px;
    font-family: 'Dm sans', Sans-Serif;
    font-weight: bold;
    margin-top:60px !important;
    margin-bottom: -40px;
}
.feature-section-mobile {
  padding: 40px 0;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
}

/* ── Each row ── */
.mob-acc-item {
  border-bottom: 1.5px solid #e5e2f0;
}

.mob-acc-item:first-child {
  border-top: none;
}

.mob-acc-item:last-child {
  border-bottom: none;
}

/* ── Button ── */
.mob-acc-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* text starts from left */
  width: 100%;
  background: transparent;
  border: none;
  padding: 15px 14px;
  text-align: left;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #4b4869;
  line-height: 1.4;
  border-radius: 0;
  margin: 6px 0;
  transition: color 0.2s ease, background 0.2s ease;
}

.mob-acc-btn:hover {
  color: #7c3aed;
}

/* ── Active button ── */
.mob-acc-btn.active {
  background: linear-gradient(to right, #F0EAFF 0%, #ffffff 100%);
  color: #2d1b6e;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 10px;
  margin-bottom: 0;
}

/* ── Arrow — hidden by default ── */
.mob-acc-btn .mob-arrow {
  display: none;
  font-size: 13px;
  color: #2d1b6e;
  flex-shrink: 0;
  line-height: 1;
  margin-left: 8px; /* just small gap after text — no auto */
}

/* ── Arrow — visible only on active ── */
.mob-acc-btn.active .mob-arrow {
  display: inline;
}

/* ── Panel ── */
.mob-acc-panel {
  display: none;
  padding: 0 14px 20px 14px;
  animation: mobFadeUp 0.3s ease both;
}

.mob-acc-panel.active {
  display: block;
}

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

/* ── Title ── */
.mob-panel-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #32006C;
  margin-top: 14px;
  margin-bottom: 12px;
  line-height: 1.2;
}

/* ── Descriptions ── */
.mob-panel-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2E2E2E;
  line-height: 1.75;
  margin-bottom: 16px;
}

.mob-panel-desc-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2E2E2E;
  line-height: 1.75;
  margin-top: 10px;
  margin-bottom: 10px;
}

.mob-panel-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #2E2E2E;
  font-weight: 600;
  line-height: 1.75;
  margin-top: 10px;
  margin-bottom: 8px;
}

/* ── Divider ── */
.mob-panel-divider {
  border: none;
  border-top: 1px solid #707070;
  margin-bottom: 16px;
  width: 80%;
}

/* ── Feature List ── */
.mob-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mob-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #2A0F71;
  font-weight: 500;
  line-height: 1.55;
}

.mob-feature-list li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7B4FED;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Extra small screens ── */
@media (max-width: 575.98px) {
  .mob-acc-btn {
    font-size: 13px;
    padding: 12px 12px;
  }
  .mob-acc-btn.active {
    border-radius: 8px;
  }
  .mob-panel-title {
    font-size: 20px;
  }
  .mob-panel-desc {
    font-size: 13.5px;
  }
  .mob-feature-list li {
    font-size: 13px;
  }
  
}
.logo-marquee-section {
    overflow: hidden;
}

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