/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   HERO SECTION — DESKTOP
══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════
   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;
}
.herosection {
    padding-top: 120px;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    background-image: url('../images/los-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;
    line-height: 1.3;
    color: #1F0067;
    margin-bottom: 0;
    font-family: 'Oswald', Sans-Serif;
    max-width: 450px;
    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;
}
/* ══════════════════════════════════════════════════
   DEMO BUTTON
══════════════════════════════════════════════════ */
.demo-btn {
    margin-top: 20px;
   border:none;
    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);
}

/* ══════════════════════════════════════════════════
   RIGHT COLUMN — FORM
══════════════════════════════════════════════════ */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 40px;
  padding-left: 20px;
}

/* ── FORM CARD ── */
.form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 3px 6px #00000029;
  padding: 20px 36px 30px 36px;
  width: 100%;
  max-width: 432px;
}

.form-card h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #000;
  text-align: center;
  margin-bottom: 5px;
}

/* ── FORM INPUTS ── */
.form-card .form-control {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  background:#f2f2f2;
  font-size: 13px;
  color: #444;
  padding: 10px 32px 10px 15px; /* right padding for star space */
  height: 30px;
  font-family: 'DM Sans', sans-serif;
}
.form-card .form-control:focus {
  border: 1px solid #6C3AEF;
  background: #f2f2f2;
  box-shadow: none;
  outline: none;
}
.form-card textarea.form-control {
  height: 40px;
  padding: 5px 15px;        /* proper padding, no star needed */
  background: #f2f2f2;       /* make sure matches other inputs */
  border: 1px solid #dee2e6; /* ensure border matches */
}

.form-card textarea.form-control:hover {
  border-color: #2563EB;     /* hover border like other inputs */
  background: #f2f2f2;
}

.form-card textarea.form-control:focus {
  border-color: #6C3AEF;
  box-shadow: 0 0 0 2px rgba(108, 58, 239, 0.12);
  background: #f2f2f2;
  outline: none;
}
/* ── REQUIRED STAR ── */
.input-wrapper {
  position: relative;
}

.required-star {
  position: absolute;
  left:120px;
  top: 50%;
  transform: translateY(-50%);
  color:red !important;   /* Force red — overrides any inherited color */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.required-star-1 {
  position: absolute;
  left:170px;
  top: 50%;
  transform: translateY(-50%);
  color:red !important;   /* Force red — overrides any inherited color */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.required-star-2 {
  position: absolute;
  left:105px;
  top: 50%;
  transform: translateY(-50%);
  color:red !important;   /* Force red — overrides any inherited color */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.required-star-3 {
  position: absolute;
  left:110px;
  top: 50%;
  transform: translateY(-50%);
  color:red !important;   /* Force red — overrides any inherited color */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.required-star-4 {
  position: absolute;
  left:110px;
  top: 50%;
  transform: translateY(-50%);
  color:red !important;   /* Force red — overrides any inherited color */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.required-star-5 {
  position: absolute;
  left:115px;
  top: 50%;
  transform: translateY(-50%);
  color:red !important;   /* Force red — overrides any inherited color */
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

/* Phone input wrapper — star vertically centered in phone field */
.phone-input-wrapper {
  flex: 1;
}
.phone-input-wrapper .required-star {
  top: 50%;
  transform: translateY(-50%);
}

/* ── PHONE ROW ── */
.phone-number-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

#country-code {
  padding: 5px 12px;
  border-radius: 8px;
  background-color: #f2f2f2;
  border: 1px solid #dee2e6;
  outline: none;
  width: 40%;
  font-size: 14px;
  height: 30px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  color: #444 !important;
}

/* ── COUNTRY DROPDOWN ── */
#country-dropdown {
  position: absolute;
  top: 48px;
  left: 0;
  width: 44%;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

#country-search {
  width: 95%;
  font-size: 12px;
  margin: 5px auto;
  display: block;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-family: 'DM Sans', sans-serif;
}

#country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #222;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
}
#country-list li {
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.15s;
}
#country-list li:hover {
  background: #f0ecff;
  color: #6C3AEF;
}

/* ── SUBMIT BUTTON ── */
.btn-submit {
  background: #2563EB !important;
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-size: 14px !important;
  font-weight: 600;
  height: 35px;
  font-family: 'DM Sans', sans-serif !important;
  letter-spacing: 0.3px;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-submit:hover {
  background: #1741b0;
  color: #fff;
}

/* ── DISCLAIMER ── */
.form-disclaimer {
  font-size: 10px;
  color: #000000;
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.5;
}
.form-disclaimer a {
  font-size: 10px;
  color: #2563EB;
  text-decoration: underline;
}

/* ── MARQUEE TITLE ── */
.marquee-title {
  font-size: 25px;
  font-weight: 700;
  color: #162456;
  text-align: center;
  margin-bottom: 0px;
  font-family: 'Oswald', Sans-Serif;
  padding-top: 10px;
}
.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);
    }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .hero-left {
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    text-align: center;
  }
  .hero-heading,
  .hero-subtext {
    width: 100%;
    max-width: 100%;
  }
  .demo-btn {
    display: none !important;
  }
  .hero-btn-mobile {
    display: inline-flex !important;
  }
  .hero-right {
    padding: 20px;
    justify-content: center;
  }
  .herosection {
    padding-top: 80px;
  }
  .form-card {
    padding: 28px 20px 20px 20px;
  }
}

@media (max-width: 640px) {
  .hero-heading {
    font-size: 28px;
    margin-top:50px;
    margin-bottom: 20px;
  }
  .hero-subtext-1 {
    font-size: 14px;
    margin-bottom: 0px;
  }
  .marquee-title{
      font-size: 28px;
      padding-top:10px;
  }
   .marquee .track img {
    height: 50px;
    margin: 5px 0px;
  }
}




/* ══════════════════════════════════════════════════
   FEATURES SECTION
══════════════════════════════════════════════════ */
.features-section {
  padding: 0px 0;
  background: #fff;
}
.end-to-end {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #162456;
    text-align: center;
    margin-bottom: 0;
    font-family: 'Oswald', Sans-Serif;
    max-width: 600px;
    margin: 0 auto;
    margin-top:50px !important;
}

/* ── LEFT IMAGE ── */
.features-img-col {
  display: flex;
  align-items: stretch;
}

.features-img-wrapper {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  min-height: 419px;
}

.features-img {
  object-fit: cover;
  object-position: center;
  display: block;
  float: right;
  border-radius: 20px;
}

/* ── FEATURE CARD ── */
.feature-card {
  background: #fff;
  box-shadow: 0px 3px 6px #00000029;
border-radius: 12px;
 
  border-radius: 16px;
  padding: 24px 22px 55px 22px;
  padding-right:10px;
  height: 100%;
  position: relative;
  transition: box-shadow 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 6px 24px rgba(108, 58, 239, 0.10);
}

/* ── ICON — top right ── */
.feature-icon {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  /* Tint icon purple — works for SVG/PNG with transparency */
  filter: invert(30%) sepia(80%) saturate(500%) hue-rotate(230deg) brightness(90%);
}

/* ── TITLE ── */
.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color:#000000;
  margin-top:15px !important;
  margin-bottom: 10px;
  margin-top: 8px;
 
  line-height: 1.4;
}

/* ── DIVIDER ── */
.feature-divider {
  border: none;
  border-top: 2px solid #00000029;
  margin: 0 0 14px 0;
  opacity: 1;
  width:90%;
}

/* ── DESCRIPTION ── */
.feature-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #2B2B2B;
  font-weight: 400;
  margin-bottom: 0;
  max-width: 215px;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
  .features-img-wrapper {
    min-height: 320px;
    max-height: 340px;
  }
  .features-section {
    padding: 40px 0;
  }
  
}

/* Mobile */
@media (max-width: 640px) {
  .features-img-wrapper {
    min-height: 260px;
    max-height: 280px;
    border-radius: 16px;
  }
  .features-img {
    border-radius: 16px;
  }
  .feature-card {
    padding: 20px 18px 22px 18px;
  }
  .feature-title {
    font-size: 15px;
  }
 
}

@media (max-width: 640px) {

  .features-section {
    padding: 0px 0;
  }
 .end-to-end {
    font-size: 28px;
    margin-top:20px !important;
    margin-bottom: 20px;
  }
  /* LEFT IMAGE */
  .features-img-col {
    margin-bottom: 25px;
  }

  .features-img-wrapper {
    min-height: 419px;
    border-radius: 16px;
  }

  .features-img {
    float: none;
    margin-left:20px;
    border-radius: 16px;
  }

  /* FEATURE CARD */
  .feature-card {
    padding: 20px 18px 25px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    height: auto;
  }

  /* ICON */
  .feature-icon {
    top: 12px;
    right: 14px;
    width: 24px;
    height: 24px;
  }

  .feature-icon img {
    width: 20px;
    height: 20px;
  }

  /* TITLE */
  .feature-title {
    font-size: 17px;
    line-height: 1.4;
    margin-top: 15px !important;
    margin-bottom: 10px;
    padding-right: 5px;
  }

  /* DIVIDER */
  .feature-divider {
    width: 100%;
    margin-bottom: 12px;
  }

  /* DESCRIPTION */
  .feature-desc {
    font-size: 15px;
    line-height: 1.7;
  }

}



/* ══════════════════════════════════════════════════
   STICKY BLOCKS SECTION — FULL CSS
══════════════════════════════════════════════════ */

.-bg-dradian-black {
  background: linear-gradient(319deg, #3c3c3c 0%, #0f0f0f 100%) !important;
}

.bg-our-product {
  background-color: #C4C4C414;
}


.text-gradient-pink-purple {
  background: linear-gradient(to right, #E40078, #4D00FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── GRID LAYOUT ── */
.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;
}

/* ── LEFT STICKY IMAGE ── */
.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: 80vh;
  display: flex;
  position: sticky;
  top: 0;
  float: right;
}

.sticky-blocks-img .mac-img {
  width: 100%;
  max-width: 433px;
  height: 393px;
}

/* ── RIGHT CONTENT ── */
.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;
}

/* ── ANIMATION STATES ── */
.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;
}

.sticky-blocks-content div.visible {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
  opacity: 1;
  visibility: visible;
}

/* ── DESKTOP CARDS — BORDER ── */
.sticky-blocks-content div.pvisible {
  box-shadow: 0px 3px 6px #00000029;
border: 1px solid #E6E6E6;
border-radius: 23px;
  padding: 24px 28px 16px 40px;
  background: #fff;
  max-width: 556px;
  padding-bottom: 24px !important;
}

/* ── SECTION DIVIDER ── */
.section-divider {
  border: none;
  border-top: 2.5px solid #C7C7C7 !important;
  width: 90%;
  margin: 20px 0;
  opacity: 1;
}

/* ── TYPOGRAPHY ── */
.text-navy-blue {
  color: #23305F;
  font-size: 18px;
  font-family: 'DM Sans', Sans-Serif;
  max-width: 300px !important;
}

.esign-sub {
  font-size: 18px;
  color: #212121;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 22px;
  max-width:450px;
}

.esign-title {
  font-family: 'Oswald', Sans-Serif;
  color: #000;
}

.fs-18px {
  font-size: 18px !important;
}

.fs-20px {
  font-size: 20px !important;
  color:#162456;
  font-family: 'Dm sans', Sans-Serif;
  padding-top: 10px;
  padding-bottom: 10px;
}

.fs-22px {
  font-size: 21px !important;
}

.feature-block p {
  margin-bottom: 0;
}

/* ══════════════════════════════════════════════════
   MOBILE SECTION
══════════════════════════════════════════════════ */

/* ── MOBILE CARDS — BORDER ── */
.left-side-block .pvisible {
  border: 1px solid #E6E6E6;
  border-radius: 16px;
  padding: 20px 20px 12px 20px;
  background: #fff;
  margin-bottom: 16px;
}

/* ── MOBILE HIDDEN CARDS (show more) ── */
.mobile-hidden-card {
  display: none;
}

.mobile-hidden-card.show {
  display: block;
}

/* ── VIEW MORE BUTTON ── */
#mobileViewMoreBtn {
  border: none;
  background: none;
  color: #23305F;
  font-size: 16px;
  font-family: 'DM Sans', Sans-Serif;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */

@media (min-width: 992px) {
  .sticky-blocks-grid {
    position: relative;
    bottom: 40px;
  }

  .Actually {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .sticky-blocks-content {
    margin-top: 6vh;
    margin-bottom: 6vh;
  }

  .sticky-blocks-text-container {
    padding-right: 20px;
  }
}

@media (max-width: 640px) {
  .left-side-block {
    padding: 0 1px;
  }

  .left-side-block .pvisible {
    padding: 16px 16px 10px 16px;
    border-radius: 12px;
  }
.sticky-blocks-content div.pvisible {
    width:100%;
}
  .text-navy-blue {
    font-size: 16px;
    max-width: 100% !important;
  }

  .fs-18px {
    font-size: 16px !important;
  }
}


/* ══════════════════════════════════════════════════
   BUILT FOR EVERY TEAM SECTION
══════════════════════════════════════════════════ */
.team-section {
    padding: 20px 0 80px;
    background: linear-gradient(119deg, #F6F2FF, #FFFFFF, #FFFFFF, #FDFDFD, #F0EAFF);
    margin-top:-50px;
}

.team-section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #162456;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.25;
}

/* ── CARD ── */
.team-card {
    background: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding:15px 20px 15px 20px;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.team-card:hover {
    box-shadow: 0 6px 28px rgba(108, 58, 239, 0.13);
    transform: translateY(-2px);
}

/* ── ILLUSTRATION BOX ── */
.team-card-img {
    flex-shrink: 0;
    width: 160px;
    height: 200px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* ── TEXT ── */
.team-card-body {
    flex: 1;
    min-width: 0;
}
.team-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color:#000000;
    margin-bottom: 10px;
}
.team-card-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #212121;
    margin-bottom: 0;
}


/* Mobile: sm and below (< 768px) — single column, image on top */
@media (max-width: 640px) {
    .team-section {
        padding: 48px 0 56px;
        margin-top:0px;
    }
    .team-section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    .team-card {
        flex-direction: row;
        gap: 16px;
        padding: 18px;
    }
    .team-card-img {
        width: 100px;
        height: 90px;
        border-radius: 12px;
    }
    .team-card-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    .team-card-desc {
        font-size: 13px;
    }
}

/* ===== Why MStream Section ===== */
.why-mstream-section {
 background: #F4F4F5;
  padding-top:80px;
  padding-bottom: 100px;
}

.why-mstream-title {
  font-size: 32px;
  font-weight: 800;
  color: #162456;
  font-family: 'Oswald', Sans-Serif;
  margin-bottom: 20px;
}

/* 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: 20px !important;
  padding-left: 20px !important;
}

/* ✅ IMPORTANT FIX */
.why-card-split-img {
  flex: 0 0 auto;
  width: 300px;
  height: auto;
  overflow: hidden;
  display: block; /* <-- default visible */
  padding: 8px;
}

.why-split-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 26px;
  padding-right:12px;
}

/* Icon */
.why-card-icon {
  width: 17px;
  height: 20px;
  object-fit: contain;
  margin-top:-5px;
}
.why-card-icon-1 {
  width: 17px;
  height: 20px;
  object-fit: contain;
  margin-top:-30px;
}
.why-card-icon-2 {
  width: 17px;
  height: 20px;
  object-fit: contain;
  margin-top:-30px;
}
/* Title */
.why-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 10px;
}
/* Title */
.why-card-title-1 {
  font-size: 22px;
  font-weight: 700;
  color: #2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 10px;
  margin-top:-10px;
}

/* Description (same as yours) */
.why-card-desc-1 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 0;
  max-width: 310px;
}
.why-card-desc-2 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 0;
  max-width: 300px;
}
.why-card-desc-3 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 0;
  max-width: 310px;
}
.why-card-desc-4 {
  font-size: 18px;
  color:#2B2B2B;
  font-family: 'DM Sans', Sans-Serif;
  margin-bottom: 0;
  max-width: 250px;
}

/* ===== Mobile ONLY ===== */
@media (max-width: 640px) {

  /* 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;
      margin-bottom: 30px;
  }
  .why-card-desc-3 {
      font-size: 16px;
      margin-bottom: 30px;
  }
  .why-card-desc-4 {
      font-size: 16px;
      margin-bottom: 30px;
  }
 .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: 0px !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;
  }
}



.outcomes-section {
  background: #ffffff;
  padding: 70px 0 30px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  border-bottom: 2px solid white;
  margin-bottom: 50px;
}
.outcomes-heading {
  font-size: 36px;
  font-weight: 800;
  color: #000000;
  line-height: 1.25;
  font-family: 'Oswald', Sans-Serif;
  margin-bottom: 36px;
  max-width: 500px;
  margin-bottom: 100px;
}
.outcomes-sub{
    color:#000000;
    font-family: 'DM Sans', sans-serif;
    font-size:16px;
    line-height: 20px;
    margin-top:5px;
}
.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% - 20px) / 5);
  width: calc((100% - 20px) / 5);
  background: #fff;
  border-radius: 18px;
  border: 1px solid #00000029;
  padding: 20px 14px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  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;
  margin-left:10px;
}
.outcome-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.outcome-card .card-text {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  font-family: 'DM Sans', Sans-Serif;
  line-height: 1.5;
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}
/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.2s;
}

.dot.active {
  background: #7c3aed;
  transform: scale(1.1);
}
/* 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: 640px) {
  .outcomes-section { padding: 40px 0 36px; }
  .left-col { margin-bottom: 32px; }
  .outcome-card {
    flex: 0 0 calc(100%);
    width: calc(100%);
  }
  .outcomes-heading{
      font-size: 28px;
      margin-bottom: 20px;
  }
  .outcomes-sub{
      font-szie:14px;
       margin-bottom: 0px;
  }
}



/* SECTION BACKGROUND */
.demo-section {
  background: url('../images/los-img/los-bg.webp') no-repeat center center;
  background-size: cover;
  padding: 120px 0;
  padding-bottom: 150px;
}

.wrapper {
  max-width: 1140px; /* similar to container */
  margin: 0 auto;
  padding: 0 15px;
}

.demo-title {
  font-size:42px;
  font-family: 'Oswald',Sans-Serif;
  color:#ffffff;
  font-weight: 700;
  margin-bottom:20px;
}

.demo-sub {
    font-size:20px;
  font-family: 'DM sans',Sans-Serif;
  color:#ffffff;
  font-weight: 400;
  margin-bottom:30px !important;
  max-width: 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/los-img/los-bg.webp') 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 (min-width: 1200px) and (max-width: 1400px) {
   /* ── LEFT IMAGE ── */
.features-img-col {
    display: flex;
    align-items: stretch;
  }

  .features-img-wrapper {
    width: 90%;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
    max-height: 450px;
  }

  .features-img-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    min-height: 500px;
    max-height: 500px;
  }
.esign-sub{
    max-width:500px;
}
.sticky-blocks-content div.pvisible {
  padding: 24px 5px 10px 25px;
}
.hero-right{
    padding-left:150px !important;
}
}

.cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 14px;
            background: transparent;
            border-radius: 999px;
            border: 1px solid #000;
            color: #000;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
        }

        /* Arrow */
        .cta::after {
            content: "";
            width: 16px;
            height: 16px;
            background: url("/images/partnership/arrow-icon.svg") no-repeat center;
            background-size: contain;
            transition: background 0.3s ease;
        }

        /* Hover effect */
        .cta:hover {
            background: linear-gradient(to right, #E40078, #4D00FF);
            color: #fff;
            border: unset;
        }

        /* Change arrow image on hover */
        .cta:hover::after {
            background: url("/images/partnership/arrow-hover.svg") no-repeat center;
            background-size: contain;
        }

        