
    .nb-industry-section {
      padding: 60px 0 40px;
      background: #fff;
      color: #252525;
    }

    .nb-section-head {
      max-width: 1000px;
      margin: 0 auto 45px;
    }

    .nb-section-head h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .nb-section-head p {
      font-size: 16px;
      line-height: 1.6;
      color: #444;
      margin: 0;
    }

    /* Top icon tabs */
    .nb-icon-tabs {
      list-style: none;
      padding: 0;
      margin: 0 0 26px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border-bottom: 1px solid #E2E2E2 !important;
    }

    .nb-icon-tabs button {
      width: 100%;
      min-height: 100px;
      border: 0;
      background: transparent;
      color: #4c4c4c;
      font-size: 14px;
      line-height: 1.2;
      padding: 0 8px 15px;
      position: relative;
      transition: .25s ease;
    }

    .nb-icon-tabs button span {
      display: block;
      margin-bottom: 14px;
    }

    .nb-icon-tabs button span img {
      width: 34px;
      height: 34px;
      object-fit: contain;
      filter: grayscale(1) brightness(.45);
      transition: all .25s ease;
    }

    .nb-icon-tabs button:hover,
    .nb-icon-tabs button.active {
      color: #007f60;
    }

    .nb-icon-tabs button:hover span img,
    .nb-icon-tabs button.active span img {
      filter: brightness(0) saturate(100%) invert(31%) sepia(62%) saturate(1126%) hue-rotate(136deg) brightness(92%) contrast(101%);
    }

    .nb-icon-tabs button.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 3px;
      background: #007f60;
    }


    /* Panel */
    .nb-demo-panel {
      background: #F1F5F8;
      border-radius: 6px;
      padding: 18px;
      margin-top: 30px;
    }

    .nb-side-tabs {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .nb-side-tabs button {
      width: 100%;
      border: 0;
      background: transparent;
      color: #202020;
      text-align: left;
      padding: 13px 16px;
      border-radius: 7px;
      font-size: 16px;
      font-weight: 500;
      transition: .25s ease;
    }

    .nb-side-tabs button.active {
      background: #2f8b68;
      color: #fff;
    }

    .nb-side-tabs button.active::after {
      content: "â€º";
      float: right;
      font-size: 26px;
      line-height: 16px;
    }

    .nb-content-card {
      background: #fff;
      border: 1px solid #dfe4e8;
      border-radius: 6px;
      padding: 24px 26px 27px;
    }

    .nb-content-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .nb-content-card>p {
      font-size: 15px;
      color: #444;
      margin-bottom: 0;
    }


    .nb-visual-box {
      height: auto;
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      border: none;
    }

    .nb-visual-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-radius: 8px;
    }

    .nb-content-card h4 {
      font-size: 16px;
      font-weight: 500;
    }

    .nb-check-item {
      border: 1px solid #dfe4e8;
      border-radius: 7px;
      background: #fff;
      padding: 10px 11px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
    }

    .nb-check-item.active {
      background: #e3f4ef;
      border-color: #70bda6;
    }

    .nb-check-box {
      width: 17px;
      height: 17px;
      border: 1px solid #c8d2dc;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: transparent;
      font-size: 12px;
      flex: 0 0 17px;
    }

    .nb-check-item.active .nb-check-box {
      background: #2f8b68;
      border-color: #2f8b68;
      color: #fff;
    }

    /* Wishlist */
    .nb-wishlist {
      position: fixed;
      right: 24px;
      bottom: 24px;
      width: 370px;
      background: #fff;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 18px 42px rgba(47, 139, 104, .25);
      z-index: 9999;
      display: none;
    }

    .nb-wishlist.show {
      display: block;
    }

    .nb-wishlist-head {
      background: #2f8b68;
      color: #fff;
      padding: 15px 18px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .nb-wishlist-head button {
      border: 0;
      background: transparent;
      color: #fff;
      font-weight: 800;
    }

    .nb-wishlist-body {
      padding: 16px 18px;
      background: #f8fffc;
    }

    #wishlistItems {
      max-height: 125px;
      overflow-y: auto;
      margin-bottom: 12px;
    }

    #wishlistItems div {
      font-size: 13px;
      color: #3e5068;
      padding: 5px 0;
      border-bottom: 1px solid #e6f2ed;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
    }


    .nb-wish-remove {
      border: none;
      background: transparent;
      color: #b0b7c0;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      padding: 0 4px;
    }

    .nb-wish-remove:hover {
      color: #e04a4a;
    }

    .nb-demo-btn {
      display: block;
      text-align: center;
      background: #202a34;
      color: #fff;
      text-decoration: none;
      border-radius: 9px;
      padding: 13px;
      font-weight: 800;
    }

    .nb-demo-btn:hover {
      color: #fff;
    }

    .nb-wishlist-body p {
      text-align: center;
      font-size: 12px;
      color: #69788a;
      margin: 10px 0 0;
    }

    @media(max-width: 991px) {
      .nb-icon-tabs {
        grid-template-columns: repeat(4, 1fr);
      }

      .nb-side-tabs {
        margin-bottom: 20px;
      }

      .nb-visual-box {
        height: 220px;
      }
    }

    @media(max-width: 575px) {
      .nb-icon-tabs {
        grid-template-columns: repeat(2, 1fr);
      }

      .nb-wishlist {
        width: calc(100% - 30px);
        right: 15px;
        bottom: 15px;
      }
    }

    .clients-lg-wrap {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .clients-lg-wrap img {
      height: 34px;
      width: 100px;
      object-fit: contain;
      transition: .25s;
      margin-right: 15px;
      opacity: .95;
    }

    .clients-lg-wrap img:hover {
      opacity: 1;
      transform: translateY(-2px);
    }

    /* New industry section redesign */
    .in-nb-sec {
      padding: 64px 0 78px;
      background: #fff;
      color: #242529;
      overflow: hidden;
    }

    .in-nb-sec *,
    .in-nb-sec *::before,
    .in-nb-sec *::after {
      box-sizing: border-box;
    }

    .in-nb-sec [hidden] {
      display: none !important;
    }

    .in-nb-sec__head {
      margin: 0 auto 38px;
      text-align: center;
    }

    .in-nb-sec__head h2 {
      margin: 0 0 16px;
      color: #242529;
      font-size: 34px;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: 0;
    }

    .in-nb-sec__head p {
      margin: 0;
      color: #414141;
      font-size: 17px;
      line-height: 1.65;
    }

    .in-nb-sec__tabs-wrap {
      display: flex;
      justify-content: center;
      margin: 0 auto 34px;
      overflow-x: auto;
      padding: 0 0 2px;
      scrollbar-width: none;
    }

    .in-nb-sec__tabs-wrap::-webkit-scrollbar {
      display: none;
    }

    .in-nb-sec__tabs {
      display: inline-flex;
      align-items: center;
      min-width: min(100%, 770px);
      margin: 0;
      padding: 0;
      list-style: none;
      border: 1px solid #dfe4e2;
      border-radius: 999px;
      background: #fff;
      overflow: hidden;
    }

    .in-nb-sec__tabs li {
      flex: 1 0 auto;
    }

    .in-nb-sec__industry-btn {
      width: 100%;
      min-height: 50px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      color: #646464;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.1;
      padding: 0 22px;
      white-space: nowrap;
      transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    }

    .in-nb-sec__industry-btn:hover {
      color: #008060;
      outline: none;
    }

    .in-nb-sec__industry-btn:focus-visible,
    .in-nb-sec__industry-btn.is-active {
      border-color: #80BFAF;
      background: #E5F2EF;
      color: #008060;
      outline: none;
    }

    .in-nb-sec__trusted {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 35px;
      margin: 0 auto 54px;
      flex-wrap: wrap;
    }

    .in-nb-sec__trusted-label {
      color: #646464;
      font-size: 16px;
      font-weight: 600;
    }
.in-nb-sec__logos img {
    height: 50px;
    object-fit: contain !important;
    width: 121px;
    /* background: #fafafad9; */
    padding: 5px 10px;
    border-radius: 5px;
}
    .in-nb-sec__logos {
      display: flex;
      align-items: center;
      gap: 25px;
      flex-wrap: wrap;
    }
    .in-nb-sec__body {
      display: grid;
      grid-template-columns: minmax(262px, 262px) minmax(0, 1fr);
      gap: 60px;
      align-items: center;
    }

    .in-nb-sec__body--story {
      align-items: start;
    }

    .in-nb-sec__goal-tabs {
      display: flex;
      flex-direction: column;
      align-self: stretch;
      gap: 20px;
    }

    .in-nb-sec__goal-btn {
      position: relative;
      width: 100%;
      min-height: 63px;
      border: 0;
      display: flex;
      background: transparent;
      color: #646464;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.3;
      padding: 0 0 0 22px;
      text-align: left;
      transition: color .2s ease;
      font-family: "Poppins", sans-serif;
    }

    .in-nb-sec__goal-btn span {
      display: flex;
      align-items: center;
    }

    .in-nb-sec__goal-btn::before {
      content: "";
      position: absolute;
      height: 100%;
      left: 0;
      top: 0px;
      bottom: 0px;
      width: 2px;
      background: #D9D9D9;
    }

    .in-nb-sec__goal-btn.is-active {
      color: #212121;
      font-size: 22px;
      line-height: 1.25;
      font-weight: 600;
    }

    .in-nb-sec__goal-progress {
      position: absolute;
      left: 0;
      top: 0px;
      width: 2px;
      height: calc(100% - 16px);
      background: #212121;
      border-radius: 999px;
      transform: scaleY(var(--in-nb-progress, 1));
	 transition: transform 0.6s ease;
      transform-origin: top;
    }

    .in-nb-sec__main-grid {
      display: grid;
      grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
      gap: 79px;
      align-items: center;
    }

    .in-nb-sec__visual {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 270px;
    }

    .in-nb-sec__visual img {
      display: block;
      width: min(100%, 480px);
      height: auto;
      object-fit: contain;
    }

    .in-nb-sec__copy h3,
    .in-nb-sec__story h3 {
      margin: 0 0 20px;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2em;
    }

    .in-nb-sec__copy p,
    .in-nb-sec__story p {
      margin: 0 0 24px;
    }

    .in-nb-sec__checks {
      display: grid;
      gap: 9px;
      margin: 0 0 28px;
      padding: 0;
      list-style: none;
    }

    .in-nb-sec__checks li {
      position: relative;
      color: #2b2c31;
      font-size: 15px;
      line-height: 1.35;
      padding-left: 26px;
      padding-left: 24px;
    }


    .in-nb-sec__checks li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      width: 14px;
      height: 12px;
      background: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.9574 0L5.54258 8.28482L1.75 4.57232L0 6.28661L5.83242 12L14 1.71429L11.9574 0Z' fill='%23008060'/%3E%3C/svg%3E") no-repeat center;
      background-size: contain;
    }

    .in-nb-sec__cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 146px;
      min-height: 50px;
      border: 1px solid #00806080;
      border-radius: 999px;
      color: #008060;
      background: #fff;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color .2s ease, color .2s ease;
    }

    .in-nb-sec__cta:hover,
    .in-nb-sec__cta:focus-visible {
      background: #008060;
      color: #fff;
      text-decoration: none;
      outline: none;
    }

    .in-nb-sec__story {
      max-width: 910px;
    }

    .in-nb-sec__story h3 {
      margin-bottom: 18px;
    }

    .in-nb-sec__story p {
      max-width: 820px;
    }

    .in-nb-sec__card-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(145px, 1fr));
      gap: 22px;
      margin-top: 30px;
    }

    .in-nb-sec__step-card {
      border-radius: 20px;
      padding: 25px 20px 35px 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }

    .in-nb-sec__step-card:nth-child(1) {
      background: #E5F2EF;
    }

    .in-nb-sec__step-card:nth-child(2) {
      background: #E0F5FF;
    }

    .in-nb-sec__step-card:nth-child(3) {
      background: #FFF2CF;
    }

    .in-nb-sec__step-card:nth-child(4) {
      background: #FFE7DC;
    }

    .in-nb-sec__step-card:nth-child(1) .in-nb-sec__step-icon {
      background: #CCE6DF;
    }

    .in-nb-sec__step-card:nth-child(2) .in-nb-sec__step-icon {
      background: #C7EDFF;
    }

    .in-nb-sec__step-card:nth-child(3) .in-nb-sec__step-icon {
      background: #FFE8AA;
    }

    .in-nb-sec__step-card:nth-child(4) .in-nb-sec__step-icon {
      background: #FADACA;
    }

    .in-nb-sec__step-icon {
      width: 65px;
      height: 65px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: auto;
      background: rgba(255, 255, 255, .42);
      color: #00836b;
      font-size: 26px;
      font-weight: 800;
    }

    .in-nb-sec__step-icon img {
      width: 30px;
      height: 30px;
    }

    .in-nb-sec__step-card:nth-child(2) .in-nb-sec__step-icon {
      color: #1ca8e8;
    }

    .in-nb-sec__step-card:nth-child(3) .in-nb-sec__step-icon {
      color: #b88412;
    }

    .in-nb-sec__step-card:nth-child(4) .in-nb-sec__step-icon {
      color: #ba633e;
    }

    .in-nb-sec__step-card h4 {
      margin: 26px 0 7px;
      color: #212121;
      font-size: 15px;
      font-weight: 600;
      line-height: 1.25;
    }

    .in-nb-sec__step-card p {
      margin: 0;
      color: #4f5055;
      font-size: 13px;
      line-height: 1.35;
    }

    .in-nb-sec__image-story {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
    }

    .in-nb-sec__image-story .in-nb-sec__visual {
      justify-content: flex-start;
      min-height: 220px;
    }

    /* .in-nb-sec__image-story .in-nb-sec__visual img {
      width: min(100%, 668px);
    } */

    @media (max-width: 1199px) {
      .in-nb-sec__body {
        gap: 34px;
      }

      .in-nb-sec__main-grid {
        gap: 38px;
      }
    }

    @media (max-width: 991px) {
      .in-nb-sec {
        padding: 54px 0 62px;
      }

      .in-nb-sec__tabs-wrap {
        justify-content: flex-start;
      }

      .in-nb-sec__tabs {
        min-width: 720px;
      }

      .in-nb-sec__trusted {
        margin-bottom: 38px;
      }

      .in-nb-sec__head h2 {
        font-size: 32px;
      }

      .in-nb-sec__body,
      .in-nb-sec__main-grid {
        grid-template-columns: 1fr;
      }

      .in-nb-sec__goal-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 16px;
      }

      .in-nb-sec__goal-btn.is-active {
        font-size: 18px;
      }

      .in-nb-sec__main-grid {
        gap: 22px;
      }

      .in-nb-sec__copy {
        text-align: left;
      }

      .in-nb-sec__copy h3,
      .in-nb-sec__story h3 {
        font-size: 40px;
      }

      .in-nb-sec__card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 575px) {
      .in-nb-sec {
        padding: 46px 0 50px;
      }

      .in-nb-sec__head {
        margin-bottom: 28px;
      }

      .in-nb-sec__head h2 {
        font-size: 30px;
      }

      .in-nb-sec__tabs {
        min-width: 640px;
      }

      .in-nb-sec__industry-btn {
        padding: 0 18px;
      }

      .in-nb-sec__logos {
        gap: 16px;
      }

      .in-nb-sec__logos img {
        max-width: 118px;
        height: 30px;
      }

      .in-nb-sec__goal-tabs {
        grid-template-columns: 1fr;
      }

      .in-nb-sec__goal-btn {
        min-height: 55px;
        padding-left: 22px;
      }

      .in-nb-sec__visual {
        min-height: 210px;
      }

      .in-nb-sec__copy h3,
      .in-nb-sec__story h3 {
        font-size: 34px;
      }

      .in-nb-sec__card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .in-nb-sec__step-card {
        min-height: 150px;
      }
    }

    /* Use Case Css Start From Here */
    /* Tab Navigation Wrapper (Pill container) */
    .in-nb-use-case-tabs-container {
      display: inline-flex;
      align-items: center;
      min-width: min(100%, 770px);
      margin: 0;
      padding: 0;
      list-style: none;
      border: 1px solid #dfe4e2;
      border-radius: 999px;
      background: #fff;
      overflow: hidden;
    }
  .in-nb-use-case-personalize-section .row.mb-3 h2 {
      margin: 0 0 16px;
      color: #242529;
      font-size: 34px;
      font-weight: 600;
      line-height: 1.15;
      letter-spacing: 0;
  }
    .in-nb-use-case-tabs-container::-webkit-scrollbar {
      display: none;
    }

    /* Individual Tab Button */
    .in-nb-use-case-tab-btn {
      width: 100%;
      min-height: 50px;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
      color: #646464;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      line-height: 1.1;
      padding: 0 22px;
      white-space: nowrap;
      transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    }

    .in-nb-use-case-tab-btn:hover {
      color: #008060;
      outline: none;
    }

    .in-nb-use-case-tab-btn.in-nb-use-case-active {
      border-color: #80BFAF;
      background: #E5F2EF;
      color: #008060;
      outline: none;
    }

    /* Tab Panes */
    .in-nb-use-case-tab-pane {
      display: none;
      animation: inNbUseCaseFadeIn 0.4s ease-in-out;
    }

    .in-nb-use-case-tab-pane.in-nb-use-case-active {
      display: block;
    }

    @keyframes inNbUseCaseFadeIn {
      from {
        opacity: 0;
        transform: translateY(6px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Cards Grid Layout */
    .in-nb-use-case-cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    /* Individual Feature Card */
    .in-nb-use-case-solution-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      flex-direction: column;
      box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
      border-radius: 15px;
      padding: 27px;
      background: #fff;
      width: 100%;
    }

    .in-nb-use-case-solution-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    }

    /* Card Icon Box */
    .in-nb-use-case-card-icon {
      color: #f59e0b;
      margin-bottom: 18px;
      display: inline-flex;
    }

    /* Card Typography */
    .in-nb-use-case-solution-card h3 {
      color: #272727;
      margin: 15px 0 10px;
      font-size: 22px;
      line-height: 1.4;
    }

    .in-nb-use-case-solution-card a {
      color: #008060;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
      cursor: pointer;
      font-weight: 600;
    }

    /* Responsive Breakpoints */
    @media (max-width: 1024px) {
      .in-nb-use-case-cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .in-nb-use-case-header-content h2 {
        font-size: 1.75rem;
      }

      .in-nb-use-case-tabs-container {
        justify-content: flex-start;
        border-radius: 12px;
        padding: 4px;
      }

      .in-nb-use-case-tab-btn {
        padding: 8px 16px;
        white-space: nowrap;
        flex: 0 0 auto;
      }

      .in-nb-use-case-cards-grid {
        grid-template-columns: 1fr;
      }
    }
    .industry-section {
      padding: 60px 0;
      background: #f8fafc;
    }

    .industry-tabs {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center
    }

    .industry-tab {
      border: 1px solid #d7dde5;
      background: #fff;
      border-radius: 999px;
      padding: 10px 16px
    }

    .industry-tab.active {
      background: #7c9d19;
      color: #fff;
      border-color: #7c9d19
    }

    .workflow-card,
    .industry-dashboard,
    .industry-competitor {
      background: #fff;
      border-radius: 14px;
      padding: 22px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
      height: 100%
    }

    .workflow-card {
      width: 20%;
      min-width: 220px
    }

    .dash-metric {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #eef1f4;
      padding: 10px 0
    }

    .dash-metric em {
      font-style: normal;
      color: #7c9d19
    }

    .industry-competitor {
      text-align: center
    }

    .checklist-note {
      color: #596575
    }

    @media(max-width:991px) {
      .workflow-card {
        width: 100%
      }
    }

    .in-nb-use-case-personalize-section .container.overflow-visible {
      overflow: visible !important;
    }

    /* Image on left; list and engagement statistic on right */
.in-nb-sec__image-story .in-nb-sec__visual {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 460px);
  grid-template-rows: auto auto;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
  justify-content: initial;
  width: 100%;
}

/* Image occupies the full left column */
.in-nb-sec__image-story .in-nb-sec__visual > img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
}

/* List sits at the top right */
.in-nb-sec__image-story .in-nb-sec__visual > ul {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  margin-bottom: 0;
}

/* Statistic sits directly below the list */
.in-nb-sec__image-story .in-nb-sec__visual > .stat-row {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  margin: 0;
}

/* Override Bootstrap col-lg-10 and offset-lg-1 */
.in-nb-sec__image-story .stat-row > .col-lg-10 {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  flex: 0 0 100%;
}

section#features-sections {
    padding-top: 2rem;
}

h4.heading-alg {
    position: relative;
    top: -80px;
}

.container.bt-1 {
    border-top: 1px solid #e2e2e2;
    padding-top: 4rem;
}
    .in-nb-sec__main-grid > .stat-row {
  grid-column: 1 / -1;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.row.stat-row h4 {
    background: #f1f7f2;
    padding: 12px 20px;
    width: auto;
    font-size: 20px;
    border-radius: 4px;
}
.in-nb-sec__copy .acc-list li {
    font-size: 16px;
}

 .compare-tb {
            padding: 90px 0;
            background: #F9F7F2;
            font-family: Poppins, sans-serif;
            overflow: hidden;
        }

        .compare-tb .container {
            overflow: visible !important;
        }

        .compare-tb-heading {
            text-align: center;
            margin-bottom: 55px;
        }

        .compare-tb-heading h2 {
            font-size: 42px;
            margin: 0;
            font-weight: 700;
            color: #222;
        }

        .compare-tb-heading p {
            margin-top: 12px;
            color: #666;
            font-size: 17px;
        }

        .compare-tb-wrap {
            display: flex;
            align-items: stretch;
            background: #fff;
            border-radius: 18px;
            overflow: visible;
            margin-top: 80px;
        }

        .compare-tb-col {
            flex: 1;
            position: relative;
            display: flex;
            flex-direction: column;
            background: #fff;
        }

        .compare-tb-features {
            flex: 1.35;
            border-radius: 18px 0 0 18px;
        }

        .compare-tb-col:last-child {
            border-radius: 0 18px 18px 0;
        }

        .compare-tb-col.compare-tb-active {
            margin-top: -30px;
            margin-bottom: -30px;
            background: #FEF9F5;
            border-radius: 20px;
            box-shadow: 0 0 24px #0000000D;
            border: 1px solid #ECD4C0;
            z-index: 10;
            flex: 1.2;
        }

        .compare-tb-head {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 600;
            border-bottom: 1px solid #ececec;
        }

        .compare-tb-active .compare-tb-head {
            height: 102px;
            padding-top: 30px;
        }

        .compare-tb-features .compare-tb-head {
            justify-content: flex-start;
            padding-left: 25px;
            font-size: 18px;
        }

        .compare-tb-cell {
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid #ececec;
            font-size: 14px;
            color: #555;
            font-weight: 500;
        }

        .compare-tb-features .compare-tb-cell {
            justify-content: flex-start;
            padding: 0 25px;
            line-height: 1.5;
            text-align: left;
        }

        .compare-tb-col .compare-tb-cell:last-child {
            border-bottom: none;
        }

        .compare-tb-active .compare-tb-cell:last-child {
            height: 102px;
            padding-bottom: 30px;
            border-bottom: none;
        }

        .compare-tb-logo {
            color: #f28b00;
            font-size: 32px;
            gap: 10px;
        }

        .compare-tb-logo img {
            width: 164px;
            height: 36px;
            object-fit: contain;
        }

        .compare-tb-logo span {
            font-size: 34px;
            font-weight: 700;
        }

        .compare-tb-check {
            color: #18b857;
            font-size: 32px;
            font-weight: 700;
        }

        .compare-tb-col:not(.compare-tb-active) .compare-tb-cell {
            color: #414141;
        }

        .compare-tb-col:not(.compare-tb-active) .compare-tb-head {
            color: #414141;
        }

        @media (max-width: 991px) {
            .compare-tb {
                padding: 60px 0;
            }

            .compare-tb-wrap {
                overflow-x: auto;
                overflow-y: visible !important;
                padding: 30px 0;
                margin-top: 40px;
                background: transparent;
            }

            .compare-tb-col {
                min-width: 220px;
            }

            .compare-tb-features {
                min-width: 330px;
            }

            .compare-tb-col.compare-tb-active {
                margin-top: -15px;
                margin-bottom: -15px;
            }
        }

        @media (max-width: 767px) {
            .compare-tb-heading h2 {
                font-size: 32px;
            }

            .compare-tb-heading p {
                font-size: 15px;
            }

            .compare-tb-cell {
                height: 82px;
            }

            .compare-tb-active .compare-tb-head {
                height: 112px;
            }

            .compare-tb-active .compare-tb-cell:last-child {
                height: 112px;
            }
        }

  /* Video With logos css */
    .nb-trusted-brand-switch {
      background: #f2f7fb;
      clear: both;
      font-family: "Poppins", sans-serif;
      padding: 50px 0 52px;
      width: 100%;
    }

    .nb-trusted-brand-switch *,
    .nb-trusted-brand-switch *::before,
    .nb-trusted-brand-switch *::after {
      box-sizing: border-box;
    }

    .nb-trusted-brand-switch__wrap {
      align-items: center;
      display: grid;
      gap: 111px;
      grid-template-columns: 1fr 1fr;
    }

    .nb-trusted-brand-switch__video-btn {
      aspect-ratio: 335 / 203;
      background: #dce6ec;
      border: 0;
      border-radius: 16px;
      cursor: pointer;
      display: block;
      overflow: hidden;
      padding: 0;
      position: relative;
      width: 100%;
    }

    .nb-trusted-brand-switch__video-btn img,
    .nb-trusted-brand-switch__video-btn video {
      display: block;
      height: 100%;
      object-fit: cover;
      width: 100%;
    }

    .nb-trusted-brand-switch__video-btn::after {
      background: rgba(0, 0, 0, 0.04);
      content: "";
      inset: 0;
      position: absolute;
      pointer-events: none;
    }

    .nb-trusted-brand-switch__play {
      align-items: center;
      background: rgba(255, 255, 255, 0.80);
      border-radius: 50%;
      box-shadow: 0 10px 22px rgba(25, 36, 45, 0.16);
      display: flex;
      height: 70px;
      justify-content: center;
      left: 50%;
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 70px;
      z-index: 1;
      transition: opacity 0.2s ease;
    }

    .nb-trusted-brand-switch__play::before {
      border-bottom: 10px solid transparent;
      border-left: 15px solid #079f82;
      border-top: 10px solid transparent;
      content: "";
      margin-left: 4px;
    }

    .nb-trusted-brand-switch__title {
      color: #212121;
      font-size: 30px;
      font-weight: 600;
      letter-spacing: 0;
      line-height: 1.25;
      margin: 0 0 15px;
    }

    .nb-trusted-brand-switch__copy {
      color: #414141;
      font-size: 17px;
      line-height: 1.45;
      margin: 0 0 15px;
    }

    .nb-trusted-brand-switch__logo-grid {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(3, minmax(0, 166px));
    }

    .nb-trusted-brand-switch__logo-card {
      background-color: #fff;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      border: 1px solid #DAE5ED;
      min-height: 88px;
      height: 88px;
      box-sizing: border-box;
    }

    .nb-trusted-brand-switch__logo-card img {
      max-width: 85%;
      max-height: 42px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      transition: opacity 0.6s ease-in-out;
    }

    .nb-trusted-brand-switch.is-switching .nb-trusted-brand-switch__logo-card img {
      opacity: 0;
    }

    @media (max-width: 767px) {
      .nb-trusted-brand-switch {
        padding: 38px 0 42px;
      }

      .nb-trusted-brand-switch__wrap {
        gap: 28px;
        grid-template-columns: minmax(0, 1fr);
        max-width: 430px;
      }

      .nb-trusted-brand-switch__content,
      .nb-trusted-brand-switch__copy {
        max-width: none;
      }

      .nb-trusted-brand-switch__logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 420px) {
      .nb-trusted-brand-switch__wrap {
        padding: 0 15px;
      }

      .nb-trusted-brand-switch__title {
        font-size: 17px;
      }

      .nb-trusted-brand-switch__logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }