* { 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 20px;
    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: 44px;
    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: 40px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    outline: none;
    background: transparent;
    color: white;
    transition: color 0.3s ease;
}
.demo-btn-long {
   
    width: 280px !important;
    margin: auto !important;
   
}

/* 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/mststream-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: 440px;
    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;
}
.logo-marquee-section {
    overflow: hidden;
    position: relative;
}
.logo-marquee-section::before,
.logo-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.logo-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, #fff 60%, transparent);
}
.logo-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, #fff 60%, transparent);
}
.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 50px;
    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);
    }
}

.end-to-end {
    font-size: 30px;
    font-weight: 700;
    color: #1F0067;
    margin-top: 80px;
    text-align: center;
    margin-bottom: 0px;
    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 */
}
@keyframes marquee-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════
   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: 300px;
        margin-top: -20px;
    }
    .hero-heading-1 {
        font-size: 30px;
    }
    .hero-subtext-1 {
        font-size: 14px;
        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: 340px;
    }
    .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;
    }
    .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;
}



    .dot-icon{
        display: none !important;
    }
    .end-to-end {
        font-size: 24px !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;
        margin-bottom: -10px !important;
        line-height: 35px;
    }
.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;
        
    }
    .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;
    }
    .Actually{
        margin-top:-220px;
    }
    .sticky-blocks-img {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 70vh !important;
  display: flex;
  position: sticky;
  top: 0;
}

} /* ← END tablet 1024px */
/* Section spacing */
/* ═══════════════════════════════════════
   SECTION
═══════════════════════════════════════ */
.impact-section {
    padding: 0px 0;
    margin-top: -50px;
    padding-bottom: 50px;
}

/* ═══════════════════════════════════════
   HEADING
═══════════════════════════════════════ */
.impact-title {
    font-family: 'Oswald', Sans-Serif;
    font-size: 36px;
    font-weight: 700;
    color:#162456;
}

/* ═══════════════════════════════════════
   NUMBER (REPLACES IMAGE)
═══════════════════════════════════════ */
.impact-number {
    font-size: 49px;
    font-weight: 800;
    font-family: 'Oswald',Sans-Serif;
    background: #162456;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* ═══════════════════════════════════════
   TEXT
═══════════════════════════════════════ */
.impact-label {
    font-size:20px;
    font-weight: 600;
    color:#000000;
    font-family: 'Graphik Trial', Sans-Serif;
    line-height: 1.4;
}

/* ═══════════════════════════════════════
   BOX
═══════════════════════════════════════ */
.impact-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:30px;
}

/* ═══════════════════════════════════════
   MOBILE (≤767px)
═══════════════════════════════════════ */
@media (max-width:767px) {
    
    .impact-section {
        margin-top:-50px !important;
    }

    .impact-title {
        font-size: 24px;
        padding: 0px !important;
        max-width: 320px;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: 100% !important;
        line-height:35px;
    }

    .impact-number {
        font-size: 49px;
    }

    .impact-label {
        font-size: 20px;
        text-align: center;
    }

    .impact-box {
        margin-top:20px !important;
    }

    /* ✅ FIX ORDER ISSUE */
    .impact-box:nth-child(1) { order: 1; }
    .impact-box:nth-child(2) { order: 2; }
    .impact-box:nth-child(3) { order: 3; }
}

/* ═══════════════════════════════════════
   TABLET (768px — 1024px)
═══════════════════════════════════════ */
@media (min-width: 768px) and (max-width:1024px) {
 
    .impact-section {
        padding: 0px 0;
        margin-top: 30px;
    }
 
    .impact-title {
        font-size: 28px;
    }
 
    .impact-number {
        font-size: 32px;
    }
 
    .impact-label {
        font-size: 14px;
    }
 
    .impact-box {
        margin-top:30px;
        margin-bottom: 24px;
    }
}
.lm-section {
  background: #fff;
  padding-bottom: 100px;
  margin-top:-20px;
  
}

.lm-heading {
  font-size: 36px;
  font-weight: 700;
  color:#162456;
  margin-bottom: 20px;
  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;
}

/* 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;
  }
}
/* ── 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;
  height: 270px;
}

/* ── 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: 30px 20px 0;
  font-family: 'DM Sans', Sans-Serif;
  padding-bottom: 10px;
}

/* ── Body ── */
.uc-card__body {
  padding: 10px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.uc-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.uc-card__list-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 16px; /* adjust to match your design */
  color:#151515;
  font-family: 'Dm sans', Sans-Serif;
}

.uc-card__list-item::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #E40078, #4D00FF);
}

/* ── 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-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__list-item {
    font-size: 13px;
  }

  .uc-card__list-item::before {
    left: 0;
  }

  .uc-card {
    margin-bottom: 10px;
  }

  .uc-card__cta img {
    height: 30px;
    margin-bottom: 5px !important;
  }

  /* ── Interleave fix ── */
  .uc-section .row.justify-content-center {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
  }

  /* Remove Bootstrap col behaviour so cards flow into parent */
  .uc-section .uc-col-left,
  .uc-section .uc-col-right {
    display: contents !important;
  }

  /* Each card becomes full-width */
  .uc-section .uc-col-left .uc-card,
  .uc-section .uc-col-right .uc-card {
    width: calc(100% - 24px) !important;   /* 24px = Bootstrap container padding x2 */
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px !important;
    flex-shrink: 0 !important;
  }

  /* Left column: positions 1, 3, 5 */
  .uc-section .uc-col-left .uc-card:nth-child(1) { order: 1; }
  .uc-section .uc-col-left .uc-card:nth-child(2) { order: 3; }
  .uc-section .uc-col-left .uc-card:nth-child(3) { order: 5; }

  /* Right column: positions 2, 4 (only 2 cards on right) */
  .uc-section .uc-col-right .uc-card:nth-child(1) { order: 2; }
  .uc-section .uc-col-right .uc-card:nth-child(2) { order: 4; }
}
.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;

  }
/* ── 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/mststream-img/enterprise-workflow-section-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:50px;
}
.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-sub{
        font-size: 16px;
    }
 
    /* Button */
    .demo-btn img {
        max-width: 150px;
    }
}
@media (max-width:640px){
    .demo-section {
  background: url('/images/mststream-img/enterprise-workflow-section-mbl-bg.png') no-repeat center center;
  background-size: cover;
  padding: 20px 0;
}
.demo-title{
     font-size:24px !important;
  font-family: 'Oswald',Sans-Serif;
  color:#ffffff;
  font-weight: 700 !important;
  padding:0px 20px;
  line-height: 35px;
  margin-bottom:20px !important;
  max-width: 300px;
  margin: 0 auto;
}
.demo-sub{
    font-size:16px !important;
    max-width:300px;
    margin:0 auto;
}
.demo-inside {
 padding: 30px 30px;
}
}

 /* ── Section ── */
.testimonial-section1 {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    background-image: url('/images/mststream-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);
}

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

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


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

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

        /* @media screen and (min-width: 1400px){
                
        } */

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

            .Actually {
                padding-bottom: 0 !important;
            }
        }

        .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-right: 50px;
            position: relative;
            top: 0;
        }

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

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

        /* . {
      border: 1px solid #E6E6E6;
      background-color: #FFFFFF !important;
      border-radius: 15px;
      padding: 33px;
    } */

        .sticky-blocks-content {
            z-index: 2;
            grid-column-gap: 175px;
            grid-row-gap: 100px;
            flex-flow: column;
            margin-top: 12vh;
            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:#162456;
            font-size: 18px;
            font-family: 'Dm sans',Sans-Serif;
            max-width:300px !important;
        }

        .text-navy-blue {
            color: #23305F;
            /* your navy color */
        }

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

        .fs-22px {
            font-size: 21px !important;
        }
        .esign-sub{
            font-size:18px;
            color: #162456;
            font-family: 'Dm sans', Sans-Serif;
        }
        .fs-20px {
            font-size: 24px !important;
            color: #000000;
            font-family: 'Oswald',Sans-Serif;
        }

        .image-text-card {
            display: flex;
            flex-direction: column;
            box-shadow: 0px 3px 6px #00000029;
            padding: 0;
            border-radius: 30px 30px 20px 20px;
        }

        /* TEXT AREA */
        .image-text-card .content {
            padding: 33px 20px 20px 24px;
        }

        .image-wrapper {
            flex: 1;
            /* image fills remaining height */
            overflow: hidden;
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            padding: 0px;
            border-radius: 0px !important;
        }

.section-divider {
  border: none;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2.5px solid #C7C7C7 !important;
  width: 90%;
  margin: 20px 0;
}
.blogs-row .custom-card {
      background: #FFFFFF;
      box-shadow: 0px 3px 8px #00000029;
      border-radius: 14px;
      border: none;
      padding: 0;
      margin-bottom: 24px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .blogs-row .custom-card-img {
      border-radius: 14px;
      height: 150px;
      object-fit: cover;
      margin: auto;
      margin: 10px;
    }
    .blogs-row .custom-card-body {
      padding: 16px 18px 0 18px;
      flex: 1 1 auto;
    }
    .blogs-row .custom-card-title {
      font-weight: bold;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }
    .blogs-row .custom-card-link {
      color: #154AFF;
      font-weight: 500;
      text-decoration: none;
      padding: 16px 20px 16px 18px;
      display: block;
      font-size: 1rem;
      display: block;
      text-align: right;
    }
    .blogs-row .custom-card-link:hover {
      text-decoration: underline;
    }
    /* Mobile: hide cards 5-9 by default */
@media (max-width: 767px) {
  .mobile-hidden-card {
    display: none !important;
  }
  .mobile-hidden-card.show {
    display: block !important;
  }
  .esign-title{
      color: #000000;
      font-size: 24px;
      font-family: 'Oswald', Sans-Serif;
      margin-bottom:10px !important;
  }
  .section-divider {
  border: none;
    border-top-width: medium;
    border-top-style: none;
    border-top-color: currentcolor;
  border-top: 2.5px solid #C7C7C7 !important;
  width: 100% !important;
  margin: 20px 0;
}
}


/* Prevent horizontal scroll */
/*html, body {*/
/*  overflow-x: hidden;*/
/*}*/

/* ===== Why MStream Section ===== */
.why-mstream-section {
  background-image: url('/images/mststream-img/why-mstream-section-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top:50px;
  padding-bottom: 100px;
}

.why-mstream-title {
  font-size: 32px;
  font-weight: 800;
  color: #162456;
  font-family: 'Oswald', Sans-Serif;
}

/* Simple text card */
.why-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 40px !important;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* Split card */
.why-card-split {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 16px;
  align-items: flex-start;
}

/* Text */
.why-card-split-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  padding-left: 40px !important;
}

/* ✅ IMPORTANT FIX */
.why-card-split-img {
  flex: 0 0 auto;
  width: 359px;
  height: auto;
  overflow: hidden;
  display: block; /* <-- default visible */
  padding: 12px;
}

.why-split-image {
  width: 100%;
  height: 259px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
  padding-right:12px;
}

/* Icon */
.why-card-icon {
  width: 17px;
  height: 20px;
  object-fit: contain;
  margin-top:35px;
}

/* Title */
.why-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 10px;
}

/* Description (same as yours) */
.why-card-desc-1 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 310px;
}
.why-card-desc-2 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 350px;
}
.why-card-desc-3 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 310px;
}
.why-card-desc-4 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 1.65;
  margin-bottom: 0;
  max-width: 290px;
}

/* ===== Mobile ONLY ===== */
@media (max-width: 767px) {

  /* Prevent horizontal scroll completely */
  html, body {
    overflow-x: hidden;
  }
  .why-mstream-section {
 display: none;
}
.why-mstream-section-mbl {
    padding-top:50px;
    padding-bottom: 80px;
  background: linear-gradient(165deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
}
  .why-mstream-title {
    font-size: 24px;
  }
  .why-card-desc-1 {
      font-size: 16px;
      margin-bottom: 30px;
  }
  .why-card-desc-2 {
      font-size: 16px;
      max-width: 220px;
      margin-bottom: 30px;
  }
  .why-card-desc-3 {
      font-size: 16px;
      max-width: 225px;
      margin-bottom: 0px;
  }
  .why-card-desc-4 {
      font-size: 16px;
      max-width: 250px;
      margin-bottom: 40px;
  }
 .why-card-title{
    font-size: 20px;
}
.why-card-icon{
    margin-top:10px;
}
  .why-card-split {
    flex-direction: column;
    width: 100%;
  }

  .why-card {
    padding-left: 35px !important;
    padding-right: 15px !important; /* ✅ important fix */
    box-sizing: border-box;        /* ✅ prevents overflow */
    width: 100%;
  }
  .why-card-split-text{
      padding-left:0px !important;
  }

  /* Hide image */
  .why-card-split-img {
    display: none;
  }
}
/* ===== TABLET ONLY (768px–1024px) ===== */
@media (min-width: 768px) and (max-width: 1024px) {
    .why-mstream-section{
        padding-top:30px;
        padding-bottom: 50px;
        margin-top:-100px;
    }

  /* Hide images in tablet */
  .why-card-split-img {
    display: none;
  }

  /* Make text take full width */
  .why-card-split-text {
    flex: 1 1 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin-top:-20px;
  }
.why-card-icon{
    margin-top:2px;
}
  /* Keep card layout clean */
  .why-card-split {
    flex-direction: row;
  }

  /* Optional: improve spacing */
  .why-card {
    padding-left: 30px !important;
    padding-right: 30px;
  }
  .why-card-title{
      font-size: 20px;
  }
  .why-card-desc-1,
  .why-card-desc-2,
  .why-card-desc-3,
  .why-card-desc-4{
      max-width:100%;
  }

}

/* ===== Workflow Nodes Section ===== */
.workflow-nodes-section {
    padding-top:80px;
    padding-bottom: 20px;
  background-color: #F4F4F8;
}

.workflow-nodes-title {
  font-size: 42px;
  font-weight: 700;
  color:#000000;
  font-family: 'Oswald', Sans-Serif;
  margin-bottom: 30px;
}

.workflow-nodes-sub {
  font-size: 18px;
  color:#000000;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 0;
  margin-top:-20px;
}

/* Carousel Wrapper — overflow hidden, no padding needed inside container */
.workflow-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 40px;
}

/* Track */
.workflow-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
}

.workflow-carousel-track:active {
  cursor: grabbing;
}

/* Each slide — 3 visible + partial 4th peek */
.workflow-slide {
  flex: 0 0 calc((100% - 24px * 2) / 3.2);
  min-width: 0;
}

/* Card */
.workflow-card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 3px 6px #00000029;
  height: 100%;
}

/* Image wrap */
.workflow-card-img-wrap {
  width: 100%;
  height: 220px;
  background: #ffffff;
  overflow: hidden;
  padding: 12px;
  border-radius: 16px 16px 0 0;
}

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

/* Card body */
.workflow-card-body {
  padding: 24px;
}

.workflow-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  font-family: 'Dm sans', Sans-Serif;
  margin-bottom: 8px;
  margin-top:-12px;
}

.workflow-card-desc {
  font-size: 15px;
  color: #000000;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 1.6;
  margin-bottom: 15px;
  max-width: 300px;
}

/* Dot Navigation */
.workflow-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}

.workflow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #CCCCCC;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.workflow-dot.active {
  background-color: #6C3AEF;
  transform: scale(1.2);
}

/* Mobile */
@media (max-width: 767px) {
    .workflow-nodes-section{
        padding-top:50px;
        padding-bottom: 30px;
    }
  .workflow-nodes-title {
    font-size: 24px;
    color: #162456;
  }

  .workflow-nodes-sub {
    font-size: 15px;
    white-space: nowrap;
  }

  /* Center the carousel with padding */
  .workflow-carousel-wrapper {
    padding-left: 5%;
    padding-right: 0;
  }

  /* 1 card visible + small peek of 2nd */
  .workflow-slide {
    flex: 0 0 96%;
  }

  .workflow-card-img-wrap {
    height: 180px;
    padding: 10px;
  }

  .workflow-card-body {
    padding: 16px;
  }

  .workflow-card-title {
    font-size: 17px;
    margin-top: -8px;
  }

  .workflow-card-desc {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 10px;
  }

  .workflow-dots {
    margin-top: 24px;
  }

  .workflow-dot {
    width: 8px;
    height: 8px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .workflow-nodes-title {
    font-size: 34px;
  }

  .workflow-nodes-sub {
    font-size: 16px;
  }

  /* 2 cards visible + small peek of 3rd */
  .workflow-slide {
    flex: 0 0 calc((100% - 24px) / 2.2);
  }

  .workflow-card-img-wrap {
    height: 200px;
    padding: 10px;
  }

  .workflow-card-body {
    padding: 20px;
  }

  .workflow-card-title {
    font-size: 18px;
    margin-top: -10px;
  }

  .workflow-card-desc {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .workflow-dots {
    margin-top: 28px;
  }
}


  .how-it-works {
    background: #f0f2f5;
    padding: 100px 0 70px;
  }
  .section-heading {
    font-family: 'Oswald', Sans-Serif;
    font-weight: 800;
    font-size: 42px;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
  }
  .try-btn {
    display: inline-block;
    padding: 8px 35px;
    border: 1px solid #363636;
    border-radius: 6px;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Dm Sans', Sans-Serif;
    color: #080808;
    margin-bottom: 30px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }
  .try-btn:hover { background: #1a1a2e; color: #fff; }

  /* ── Timeline (desktop/tablet only) ── */
  .hiw-timeline-wrapper {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
  }
  .hiw-timeline-base-line {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 2px;
    background: #c8ccd4;
    transform: translateY(-50%);
    z-index: 0;
  }
  .hiw-timeline-fill-line {
    position: absolute;
    top: 50%; left: 0;
    height: 2px;
    width: 0px;
    background: #2b2d8e;
    transform: translateY(-50%);
    z-index: 1;
    transition: width 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .hiw-timeline-dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .hiw-timeline-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #c8ccd4;
    flex-shrink: 0;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }
  .hiw-timeline-dot.passed { background: #2b2d8e; }
  .hiw-timeline-dot.active {
    background: #6c63ff;
    transform: scale(1.35);
    box-shadow: 0 0 0 5px rgba(108,99,255,0.2);
  }

  /* ── Desktop Cards ── */
  .hiw-cards-outer { overflow: hidden; width: 100%; }
  .hiw-cards-track {
    display: flex;
    gap: 20px;
    transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .hiw-step-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px 32px;
    flex: 0 0 calc(22% - 16px);
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s;
  }
  @media (max-width: 991px) and (min-width: 768px) {
    .hiw-step-card { flex: 0 0 calc(33.33% - 14px); }
  }
  .hiw-step-card.hiw-active-card {
    box-shadow: 0 8px 32px rgba(108,99,255,0.18);
  }

  /* ── FIX: number + title on same line (desktop) ── */
  .hiw-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .hiw-step-number {
    font-size: 3rem; font-weight: 800;
    line-height: 1; color: #d0d3db;
    flex-shrink: 0;
    margin-bottom: 0; /* removed old bottom margin */
  }
  .hiw-step-title {
    font-weight: 700; font-size: 1.05rem;
    color: #0d0d1a; margin-bottom: 0;max-width: 200px;
  }
  .hiw-step-desc {
    font-size: 0.88rem; color: #555;
    line-height: 1.6; margin-bottom: 0;max-width: 220px;
  }

  /* ── Mobile: hide timeline, show dot-slider ── */
  .hiw-mobile-slider { display: none; }
  .hiw-desktop-block { display: block; }

@media (max-width: 767px) {
  .section-heading {
    font-size: 24px;
    margin-bottom: 5px;
  }

  .how-it-works {
    padding: 40px 0 50px;
  }

  .hiw-desktop-block {
    display: none !important;
  }

  .hiw-mobile-slider {
    display: block;
    overflow: hidden;
  }

  .hiw-mob-track-wrapper {
    overflow: hidden;
    padding: 0 !important;
  }

  #hiwMobTrack {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  }

  /* col-8 centered effect */
  .hiw-mob-step-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    flex-shrink: 0;
    padding: 0 13.665%;
  }

  .hiw-mob-card-inner {
    background: #fff;
    border-radius: 14px;
    padding: 14px 20px 40px;
   box-shadow: 0px 3px 6px #00000029;
    transition: box-shadow 0.3s;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .try-btn {
    display: none;
  }

  .hiw-mob-step-card.hiw-mob-active-card .hiw-mob-card-inner {
    box-shadow: 0px 3px 6px #00000029;
  }

  .hiw-mob-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .hiw-mob-step-number {
    font-size: 60px;
    font-weight: 800;
    line-height: 1;
    color: #d0d3db;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .hiw-mob-step-title {
    font-weight: 700;
    font-size: 1rem;
    color: #0d0d1a;
    margin-bottom: 0;
  }

  .hiw-mob-step-desc {
    font-size:16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0px;
  }

  .hiw-mob-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
  }

  .hiw-mob-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c8ccd4;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s, width 0.3s;
    flex-shrink: 0;
  }

  .hiw-mob-dot.active {
    background: #6c63ff;
    width: 9px;
    border-radius: 5px;
  }
}

.bg-smoke-white{
    background-color: #F8F7FF;
    padding-top:30px;
    padding-bottom: 30px;
}
.digitalStamp-box h3{
    font-size:20px !important;
    color:#272729;
    font-family: 'Oswald', Sans-Serif;
    font-weight:500px !important;
}
@media (max-width: 767px) {
    .bg-smoke-white{
    background-color: #ffffff;
    padding-top:20px;
    padding-bottom: 0px;
}
.bg-smoke-white h2{
    font-size:24px;
    margin-bottom:-60px !important;
    font-family: 'Oswald',sans-serif;
    margin-bottom: 0px !important;
}
}

             .input-wrapper {
            position: relative;
            /* display: inline-block; */
        }
        .required-star {
            position: absolute;
            /* right: 263px; */
            left: 170px;
            top: 45%;
            bottom: 10px;
            transform: translateY(-50%);
            color: red !important;
            font-weight: bold;
            pointer-events: none;
            /* clicks go to input */
            transition: opacity 0.3s;
        }

          .required-star3 {
            position: absolute;
            /* right: 263px; */
            left: 122px;
            top: 45%;
            bottom: 10px;
            transform: translateY(-50%);
            color: red !important;
            font-weight: bold;
            pointer-events: none;
            /* clicks go to input */
            transition: opacity 0.3s;
        }
        .required-star4{
            position: absolute;
            /* right: 263px; */
            left: 110px;
            top: 45%;
            bottom: 10px;
            transform: translateY(-50%);
            color: red !important;
            font-weight: bold;
            pointer-events: none;
            /* clicks go to input */
            transition: opacity 0.3s;
        }

        .required-star1 {
            position: absolute;
            /* right: 263px; */
            left: 177px;
            top: 45%;
            transform: translateY(-50%);
            color: red !important;
            font-weight: bold;
            pointer-events: none;
            /* clicks go to input */
            transition: opacity 0.3s;
        }

        .required-star2 {
            position: absolute;
            /* right: 263px; */
            left: 252px;
            top: 45%;
            transform: translateY(-50%);
            color: red !important;
            font-weight: bold;
            pointer-events: none;
            /* clicks go to input */
            transition: opacity 0.3s;
        }
        
#usaForm .form-control{
  background: #f2f2f2 !important;
  box-shadow: none;
  font-size: 14px;
  border-radius: 5px !important;
}
#usaForm .form-control:focus{
  background: #f2f2f2 !important;
  box-shadow: none;
}
.fs-10px{
  font-size: 10px;
}

