body {
  font-family: "Cabinet Grotesk", sans-serif !important;
  padding: 0px;
  padding-top: 90px;
  margin: 0px;
  font-size: 1rem;
}

span.headingLabel {
  display: inline-block;
  background: rgba(106, 92, 255, 0.15);
  color: #5a31f4;
  padding: 6px 26px !important;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.navbar-custom {
  background-color: #ffffff;
  padding: 20px 0;
}
.navbar-custom.sticky {
  background-color: #e3dbff;
  padding: 12px 0 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.navbar-brand {
  font-size: 32px;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  margin-right: 20px;
  color: #000 !important;
  font-size: 1.2rem;
}

.login-btn {
  background: #5a31f4;
  color: #fff;
  padding: 10px 30px;
  border-radius: 8px;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  a {
    color: #ffffff;
    display: block;
    text-decoration: none;
    &:hover {
      color: #fff;
    }
  }
}

.login-btn:hover {
  opacity: 0.9;
}

/* Remove margin on mobile */
@media (max-width: 991px) {
  .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .login-btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* HERO SECTION */
.hero-section {
  padding: 100px 0;
  background: #f7f5fe;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
}

.hero-sub {
  font-size: 1.2rem;
  margin-top: 25px;
  color: #444;
  max-width: 500px;
}

.hero-btn {
  margin-top: 30px;
  background: #5a31f4;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  a {
    color: #fff;
    display: block;
    text-decoration: none;
    .bi-arrow-up-right {
      transform: rotate(45deg);
      &::before {
        content: "\f144";
        font-weight: 600 !important;
        font-size: 16px;
      }
    }
    &:hover {
      color: #fff;
    }
  }
  &:hover {
    opacity: 0.9;
    transform: translateY(-3px);
  }
}

/* IMAGE SHAPE */
.hero-img-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(10% 0%, 100% 0%, 100% 85%, 100% 100%, 0% 100%, 0% 0%);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-section {
    padding: 60px 0;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.commitment {
  background: #ffffff;
  padding: 100px 0;

  .commitment__title {
    font-size: 36px;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 20px;
  }

  .commitment__item {
    transition: all 0.3s ease;

    .image {
      margin-bottom: 1rem;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      img {
        filter: brightness(0);
        transition: all 0.3s ease;
      }
    }

    h5 {
      font-weight: 600;
      margin-bottom: 5px;
      strong {
        font-weight: 600;
        display: block;
      }
    }

    p {
      font-size: 18px;
      margin: 0;
    }

    &:hover {
      transform: translateY(-8px);
      h5,
      p {
      }

      .image {
      }
    }
  }

  @media (max-width: 768px) {
    padding: 70px 0;

    .commitment__title {
      font-size: 28px;
    }
  }
}

.difference {
  background: #f7f5fe;
  padding: 100px 0;

  .difference__image-wrapper {
    border-radius: 20px;
    overflow: hidden;

    .image {
      img {
        width: 100%;
        display: block;
      }
    }
  }

  .difference__banner {
    margin-top: 25px;
    background: #5a31f4;
    color: #fff;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;

    .icon {
      background: #ffffff;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      .bi {
        font-size: 20px;
        color: #5a31f4;
      }
    }
  }

  .difference__content {
    @media (min-width: 992px) {
      padding-left: 20px;
    }

    h2 {
      font-size: 2.8rem;
      max-width: 80%;
      font-weight: 700;
      margin-bottom: 20px;
    }

    p {
      font-size: 1.2rem;
      color: #000000;
      margin-bottom: 25px;
    }

    .list {
      list-style: none;
      padding: 0;
      margin-bottom: 30px;

      li {
        margin-bottom: 15px;
        position: relative;
        padding-left: 2.5rem;
        font-size: 1.2rem;
        display: flex;
        align-items: center;

        &:before {
          content: "\f26a";
          font-family: bootstrap-icons !important;
          position: absolute;
          left: 0;
          color: #5a31f4;
          font-size: 1.7rem;
        }
      }
    }

    .btn-outline {
      display: inline-block;
      padding: 12px 28px;
      border: 2px solid #5a31f4;
      border-radius: 30px;
      color: #5a31f4;
      text-decoration: none;
      transition: 0.3s;
      .bi-arrow-up-right {
        transform: rotate(45deg);
        &::before {
          content: "\f144";
          font-weight: 600 !important;
          font-size: 16px;
        }
      }

      &:hover {
        background: #5a31f4;
        color: #fff;
      }
    }
  }

  @media (max-width: 992px) {
    padding: 70px 0;

    .difference__content {
      h2 {
        font-size: 32px;
      }
    }
  }
}

.problem {
  background: #ffffff;
  padding: 100px 0;

  .label {
    display: inline-block;
    background: rgba(106, 92, 255, 0.15);
    color: #5a31f4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    margin: 0 auto;
    color: #0f172a;
  }

  .problem__card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow:
      0 4px 6px rgba(0, 0, 0, 0.02),
      0 10px 15px rgba(0, 0, 0, 0.03);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);

    @media (max-width: 1399px) {
      min-height: 16rem;
    }
    @media (max-width: 1199px) {
      min-height: 18rem;
    }
    @media (max-width: 991px) {
      min-height: initial;
    }

    .icon {
      width: 60px;
      height: 60px;
      background: #eef0f6;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;

      img {
        width: 40px;
      }
    }

    p {
      font-size: 18px;
      color: #333;
      margin: 0;
      line-height: 1.6;
    }

    &:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    }
  }

  @media (max-width: 992px) {
    padding: 70px 0;

    h2 {
      font-size: 34px;
    }
  }
}

.process {
  background: #f7f5fe;
  padding: 100px 0;

  .image {
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;

    @media (max-width: 991px) {
      padding: 0px;
    }

    img {
      width: 100%;
      display: block;
    }
  }

  .label {
    display: inline-block;
    background: rgba(106, 92, 255, 0.15);
    color: #5a31f4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .description {
    color: #444;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #000000;
  }

  .timeline {
    position: relative;

    .timeline-item {
      position: relative;
      padding-left: 90px;
      margin-bottom: 60px;
    }

    /* Vertical Line */
    .timeline-item:not(:last-child)::before {
      content: "";
      position: absolute;
      left: 30px;
      top: 30px;
      width: 3px;
      height: 80px;
      background: #000000;
    }

    .circle {
      position: absolute;
      left: 0;
      top: -6px;
      width: 63px;
      height: 63px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      color: #5a31f4;
    }

    /* Inner white circle */
    .circle::after {
      content: "";
      position: absolute;
      width: 46px;
      height: 46px;
      background: #fff;
      border-radius: 50%;
      z-index: 1;
    }

    .circle span {
      position: relative;
      z-index: 2;
    }

    /* Progress fills */
    .step-25 .circle {
      background: conic-gradient(#5a31f4 0% 25%, #000 25% 100%);
    }

    .step-50 .circle {
      background: conic-gradient(#5a31f4 0% 50%, #000 50% 100%);
    }

    .step-75 .circle {
      background: conic-gradient(#5a31f4 0% 75%, #000 75% 100%);
    }

    .step-100 .circle {
      background: conic-gradient(#5a31f4 0% 100%);
    }

    .timeline-item h5 {
      font-weight: 700;
      margin-bottom: 0px;
      font-size: 1.5rem;
      color: #000000;
    }

    .timeline-item p {
      margin: 0;
      font-size: 1.1rem;
      color: #000000;
    }

    @media (max-width: 1199px) {
      .timeline-item p {
        font-size: 1rem;
      }
    }

    @media (max-width: 991px) {
      .main-title {
        font-size: 34px;
      }
      .timeline-item {
        padding-left: 100px;
      }
    }
    @media (max-width: 767px) {
      .timeline-item:not(:last-child)::before {
        top: 55px;
      }
    }
  }

  @media (max-width: 992px) {
    padding: 70px 0;

    h2 {
      font-size: 32px;
    }

    .timeline {
      .step {
        .circle {
          width: 60px;
          height: 60px;
        }
      }
    }
  }
}

.partner-boxes {
  background: #ffffff;
  padding: 120px 0;

  .box {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;

    .box-header {
      background: #5a31f4;
      color: #ffffff;
      padding: 18px;
      text-align: center;
      font-weight: 600;
      font-size: 1.5rem;
    }

    .box-body {
      padding: 35px;

      ul {
        list-style: none;
        padding: 0;
        margin: 0;

        li {
          position: relative;
          padding-left: 35px;
          min-height: 62px;
          font-size: 1.2rem;
          color: #333;

          &:before {
            content: "\f26a";
            font-family: bootstrap-icons !important;
            position: absolute;
            left: 0;
            top: 0;
            width: 22px;
            height: 22px;
            color: #5a31f4;
            font-size: 1.7rem;

            display: flex;
            align-items: center;
            justify-content: center;
          }
        }
      }
    }

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }
  }

  @media (max-width: 992px) {
    padding: 70px 0;
  }
}

.respect {
  background: #f7f5fe;
  padding: 100px 0;

  .label {
    display: inline-block;
    background: rgba(106, 92, 255, 0.15);
    color: #5a31f4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0f172a;
    strong {
      font-weight: 700;
    }
  }

  .features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;

    .card {
      background: #ffffff;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;

      .icon {
        width: 55px;
        height: 55px;
        background: #f0f0ff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;

        img {
          width: 28px;
          filter: brightness(0) invert(36%) sepia(88%) saturate(2950%)
            hue-rotate(235deg);
        }
      }

      p {
        margin: 0;
        font-weight: 500;
        color: #222;
      }

      &:hover {
        transform: translateY(-8px);
      }
    }
  }

  .image-large {
    border-radius: 20px;
    overflow: hidden;
    padding: 25px;

    img {
      width: 100%;
      display: block;
    }
  }

  .image-small {
    position: absolute;
    top: 40px;
    left: -40px;
    width: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

    img {
      width: 100%;
      display: block;
    }
  }

  @media (max-width: 992px) {
    padding: 70px 0;

    h2 {
      font-size: 34px;
    }

    .features {
      grid-template-columns: 1fr;
    }

    .image-small {
      position: static;
      margin-top: 20px;
      width: 100%;
    }
  }
}

.cta {
  background: #ffffff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;

  .img-line {
    position: absolute;
    &.up-img {
      top: 20px;
      left: 20px;
    }
    &.down-img {
      bottom: 20px;
      right: 20px;
    }
  }
  @media (max-width: 1600px) {
    .img-line {
      img {
        width: 70%;
      }
    }
  }
  @media (max-width: 850px) {
    .img-line {
      display: none;
    }
  }

  .label {
    display: inline-block;
    background: rgba(106, 92, 255, 0.15);
    color: #5a31f4;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
  }

  h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000;
  }

  p {
    color: #000000;
    font-size: 18px;
    margin-bottom: 30px;
  }

  .btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #5a31f4;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
    .bi-arrow-up-right {
      transform: rotate(45deg);
      &::before {
        content: "\f144";
        font-weight: 600 !important;
        font-size: 16px;
      }
    }

    &:hover {
      opacity: 0.9;
      transform: translateY(-3px);
      color: #ffffff;
    }
  }

  .network {
    text-align: center;
  }

  @media (max-width: 992px) {
    padding: 80px 0;

    h2 {
      font-size: 34px;
    }

    .network {
      max-width: 400px;

      margin-bottom: 40px;
      margin: auto;
      margin-bottom: 4rem;
    }
  }
}

.site-footer {
  background: #f7f5fe;
  padding-top: 80px;

  .logo {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  p {
    color: #000000;
    font-size: 1.2rem;
    max-width: 400px;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 40px;

    li {
      a {
        text-decoration: none;
        color: #111;
        font-size: 1.2rem;
        transition: 0.3s;

        &:hover {
          color: #5a31f4;
        }
      }
    }
  }

  .footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 60px;
    padding: 25px 0;
    text-align: center;

    p {
      margin: 0;
      font-size: 15px;
      color: #555;
      max-width: initial;

      span {
        color: #5a31f4;
        cursor: pointer;
        font-weight: 600;
      }
    }
  }

  @media (max-width: 992px) {
    .footer-links {
      justify-content: center;
      margin-top: 20px;
      flex-wrap: wrap;
      gap: 20px;
    }

    p {
      text-align: center;
      margin: 0 auto;
    }

    .logo {
      text-align: center;
    }
  }
}

.contact-section {
  background: #f7f5fe;
  padding: 120px 0;
  position: relative;

  h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    transform: translateY(-50%);
  }

  .radioBtns {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: 100%;
  }

  .form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);

    label {
      font-weight: 600;
      font-size: 1.15rem;
      margin-bottom: 6px;
      display: block;
    }

    input,
    textarea {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1.1rem;
      transition: 0.3s;

      &:focus {
        border-color: #5a31f4;
        outline: none;
      }
    }

    textarea {
      resize: none;
    }

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding-left: 0px;
      padding-right: 60px;
      position: relative;
      align-items: center;

      input {
        width: 25px;
        height: 25px;
        border: 2px solid #a0a0a0;
        padding: 10px;
        border-radius: 5px;
      }
      .form-check-input + span {
        position: relative;
        top: 2px;
      }

      .invalid-feedback {
        position: absolute;
        bottom: -30px;
        left: -25px;
      }
      label {
        font-weight: 400;
        font-size: 1rem;

        a {
          color: #5a31f4;
          text-decoration: none;

          &:hover {
            text-decoration: underline;
          }
        }
      }
    }

    button {
      padding: 12px 40px;
      background: #5a31f4;
      color: #ffffff;
      border: none;
      border-radius: 8px;
      font-weight: 600;
      transition: 0.3s;

      &:hover {
        opacity: 0.9;
      }
    }
  }

  @media (max-width: 992px) {
    padding: 80px 0;

    h2 {
      font-size: 36px;
      margin-bottom: 40px;
      text-align: center;
    }
  }
}

.dark-cta {
  background: #ffffff;
  padding: 100px 0;

  .cta-box {
    position: relative;
    background: #5a31f4;
    border-radius: 20px;
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;

    .overlay {
      position: absolute;
      inset: 0;
      /* background: rgba(0, 0, 0, 0.75); */
    }

    .content {
      position: relative;
      z-index: 2;
      color: #fff;
      max-width: 700px;
      margin: 0 auto;

      h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #ffffff;
      }

      p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #ddd;
      }

      .cta-button {
        display: inline-block;
        padding: 12px 30px;
        font-weight: 600;
        font-size: 1.1rem;
        border: 2px solid #ffffff;
        border-radius: 8px;
        color: #5a31f4;
        text-decoration: none;
        transition: 0.3s;
        background: #ffffff;

        &:hover {
          background: #5a31f4;
          color: #ffffff;
        }
      }
    }
  }

  @media (max-width: 992px) {
    .cta-box {
      padding: 80px 20px;

      .content {
        h2 {
          font-size: 32px;
        }
      }
    }
  }
}

.customCheckbox {
  label {
    width: 25px;
    height: 25px;
    border: 3px solid #5a31f4;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    span {
      padding-left: 30px;
    }
  }

  label::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #5a31f4;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: scale(0) translate(-50%, -50%);
    transition: 0.2s ease-out;
    transform-origin: top left;
  }

  .radio:checked + label::before {
    transform: scale(1) translate(-50%, -50%);
  }

  .radio {
    display: none;
  }

  /* Checkbox starts here */
  /* Hide the default checkbox */
  .checkbox {
    appearance: none;
    width: 32px;
    height: 32px;
    border: 3px solid #ccf0e1;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
  }

  /* Create a custom checkbox */
  .checkbox:checked::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 25px;
    width: 25px;
    background-color: #5a31f4;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out; /* Transition for smooth animation */
  }

  /* Style the checkmark/indicator */
  .checkbox:checked::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 2px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.34); /* Icon drop shadow */
  }
}

.video-section {
  .video-box {
    position: relative;
    background: url("/assets/images/videoPlay.png") center/cover no-repeat;
    border-radius: 0px;
    overflow: hidden;
    padding: 180px 20px;
    text-align: center;
  }

  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
  }

  .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #ffffff;

    h2 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffffff;
    }

    p {
      font-size: 1.25rem;
      color: #ffffff;
      margin-bottom: 40px;
    }

    .video-bar {
      position: relative;
      background: rgba(0, 0, 0, 0.6);
      height: 60px;
      border-radius: 8px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      padding: 0 20px;

      .play-icon {
        font-size: 30px;
        margin-right: 20px;
        color: #ffffff;
      }

      .progress {
        height: 4px;
        background: #ff3c3c;
        width: 60%;
        border-radius: 2px;
      }
    }

    .watch-btn {
      display: inline-block;
      padding: 14px 35px;
      background: #5a31f4;
      border-radius: 8px;
      color: #ffffff;
      text-decoration: none;
      transition: 0.3s;
      border: 0;
      .bi-arrow-up-right {
        transform: rotate(45deg);
        &::before {
          content: "\f144";
          font-weight: 600 !important;
          font-size: 16px;
        }
      }

      &:hover {
        opacity: 0.9;
        transform: translateY(-3px);
      }
    }
  }

  @media (max-width: 992px) {
    .video-box {
      padding: 80px 20px;
    }

    .content {
      h2 {
        font-size: 32px;
      }
    }
  }
}

#successModal {
  .modal-dialog {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-content {
    padding: 40px;
    .modal-header {
      border-bottom: none;
      padding-bottom: 0px;
      button.close {
        position: absolute;
        right: 10px;
        background: transparent;
        border: 0px;
        font-size: 2rem;
        top: 0px;
      }
    }
    p {
      font-size: 1.5rem;
      font-family: "Cabinet Grotesk", sans-serif;
      text-align: center;
      color: #000;
      font-weight: 600;
      span {
        font-size: 1rem;
        display: block;
        font-weight: 400;
        color: #272727;
      }
    }
  }
}

#demovideoView {
  .modal-dialog {
    max-width: initial;
    margin: auto;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    .modal-content {
      height: 100%;
      border-radius: 0;
      background: #000000;
      .modal-body {
        height: calc(100% - 50px);
      }
    }
    .btn.close {
      right: 0px;
      position: absolute;
      font-size: 2rem;
      top: -8px;
      color:#ffffff;
    }
  }
}
