.banner-section2 {
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
  padding: 132px 0 60px;
  margin-top: -73px;
}
@media (min-width: 768px) {
  .banner-section2 {
    padding: 160px 0 96px;
    margin-top: -81px;
  }
}
@media (min-width: 992px) {
  .banner-section2 {
    padding: 200px 0 108px;
  }
}
@media (min-width: 1600px) {
  .banner-section2 {
    padding: 250px 0 120px;
    margin-top: -102px;
  }
}
.banner-section2 .banner-svg-top,
.banner-section2 .banner-svg-bottom {
  position: absolute;
  left: 0%;
  transform: translateX(-40%);
  width: 150%;
  max-width: 1908px;
  pointer-events: none;
  opacity: 0.9;
  filter: blur(54.4375px);
}
.banner-section2 .banner-svg-top svg,
.banner-section2 .banner-svg-bottom svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .banner-section2 .banner-svg-top,
  .banner-section2 .banner-svg-bottom {
    width: 100%;
  }
}
.banner-section2 .banner-svg-top {
  top: 0;
  animation: rotateSvg 20s linear infinite;
}
.banner-section2 .banner-svg-bottom {
  bottom: 0;
  left: 50%;
  animation: rotateSvgReverse 28s linear infinite;
}
.banner-section2 .hdr-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.bnr-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .bnr-tag {
    font-size: 16px;
    margin-bottom: 14px;
  }
}
@media (min-width: 1200px) {
  .bnr-tag {
    margin-bottom: 17px;
  }
}

.bnr-heading {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}
@media (min-width: 768px) {
  .bnr-heading {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .bnr-heading {
    font-size: 48px;
  }
}

.sasi-card {
  background: #fff;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  height: auto;
  width: 100%;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .sasi-card {
    border-radius: 40px;
    padding: 30px 40px;
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .sasi-card:hover {
    box-shadow: var(--box-shadow-3);
  }
}
@media (min-width: 1200px) {
  .sasi-card {
    padding: 39px 42px;
    gap: 46px;
  }
}
.sasi-card .icon-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 768px) {
  .sasi-card .icon-wrap {
    width: 60px;
    height: 60px;
  }
}
.sasi-card .icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.sasi-card .content-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .sasi-card .content-wrap {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.sasi-card .content-wrap .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #001f61;
  margin: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .sasi-card .content-wrap .title {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .sasi-card .content-wrap .title {
    font-size: 22px;
    flex: 0 0 342px;
  }
}
.sasi-card .content-wrap .desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4a5d73;
  margin-top: 8px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .sasi-card .content-wrap .desc {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .sasi-card .content-wrap .desc {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .sasi-card .content-wrap .desc {
    font-size: 18px;
  }
}

/* --- Reusable Grid & Utilities --- */
.sasi-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .sasi-grid {
    gap: 24px;
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .sasi-grid {
    gap: 30px;
    margin-top: 60px;
  }
}

.gov-gap-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
@media (min-width: 768px) {
  .gov-gap-grid {
    margin-top: 24px;
    gap: 24px;
  }
}
@media (min-width: 992px) {
  .gov-gap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .gov-gap-grid {
    gap: 159px;
  }
}
@media (min-width: 992px) {
  .gov-gap-grid.align-items-center {
    align-items: center;
  }
}

.txt-bold-primary {
  font-weight: 600 !important;
  color: #001f61 !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

/* --- Reusable Feature Cards & Grids --- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}
@media (min-width: 1200px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px 30px;
    margin-top: 60px;
  }
}

.feature-card {
  background: #fff;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 768px) {
  .feature-card {
    border-radius: 40px;
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  .feature-card {
    padding: 40px;
  }
}
.feature-card:hover {
  box-shadow: var(--box-shadow-3);
}
.feature-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .feature-card .icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 34px;
  }
}
@media (min-width: 1200px) {
  .feature-card .icon-wrap {
    margin-bottom: 60px;
  }
}
.feature-card .icon-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.feature-card .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #001f61;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .feature-card .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .feature-card .title {
    font-size: 22px;
  }
}
.feature-card .desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4a5d73;
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .feature-card .desc {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .feature-card .desc {
    font-size: 18px;
  }
}

/* --- How It Works Section --- */
.how-works-section {
  background-color: #001f61;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.how-works-section .hd-typ1 {
  color: #fff;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .how-works-section .hd-typ1 {
    margin-bottom: 60px;
  }
}

.how-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .how-works-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .how-works-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 12px;
  }
  .how-works-grid .card-6 {
    order: 4;
  }
  .how-works-grid .card-5 {
    order: 5;
  }
  .how-works-grid .card-4 {
    order: 6;
  }
}

.how-works-card {
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 24px 64px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  min-height: 220px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.how-works-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(45deg, rgba(0, 31, 97, 0.5) 0%, rgba(255, 255, 255, 0.3) 22%, rgba(255, 255, 255, 0.3) 78%, rgba(0, 31, 97, 0.2) 100%);
  /* Hollow center */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
@media (min-width: 768px) {
  .how-works-card {
    border-radius: 40px;
    padding: 32px;
  }
}
@media (min-width: 1200px) {
  .how-works-card {
    padding: 40px;
  }
}
.how-works-card .card-num {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .how-works-card .card-num {
    top: 30px;
    right: 40px;
    font-size: 42px;
  }
}
.how-works-card .icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .how-works-card .icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1200px) {
  .how-works-card .icon-wrap {
    margin-bottom: 60px;
  }
}
.how-works-card .icon-wrap .scrutiny-svg {
  width: 100%;
  height: 100%;
}
.how-works-card .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .how-works-card .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media (min-width: 1200px) {
  .how-works-card .title {
    font-size: 22px;
  }
}
.how-works-card .desc {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .how-works-card .desc {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .how-works-card .desc {
    font-size: 18px;
  }
}

.arrow-divider {
  display: block;
  position: absolute;
  pointer-events: none;
  z-index: 3;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (min-width: 1200px) {
  .arrow-divider.arrow-top-right {
    top: 50%;
    left: calc(100% + 15px);
    transform: translate(-50%, -50%);
  }
  .arrow-divider.arrow-bottom-left {
    top: 50%;
    left: -15px;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .arrow-divider.arrow-down {
    top: calc(100% + 15px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.btn-white-blue {
  border: 1px solid rgba(0, 31, 97, 0.3) !important;
  background: #fff !important;
  color: #001f61 !important;
}
.btn-white-blue .btn-arrow {
  background: #425DE8 !important;
}
.btn-white-blue .btn-arrow svg path {
  fill: #fff !important;
}
.btn-white-blue:hover {
  border-color: #425DE8 !important;
}

.mlro-list-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mlro-list-wrap ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #001f61;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .mlro-list-wrap ul li {
    font-size: 16px;
    padding-left: 40px;
  }
}
@media (min-width: 1200px) {
  .mlro-list-wrap ul li {
    font-size: 18px;
    padding-left: 48px;
  }
}
.mlro-list-wrap ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 19px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.89624 2.89277e-05H19V10.8494C19 10.8494 16.2382 16.0394 11.7793 18V7.01054H0C0 7.01054 6.8796 -0.016447 6.89624 2.89277e-05Z' fill='url(%23paint0_linear_1151_2214)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_1151_2214' x1='-2.17226' y1='4.19084' x2='19.4216' y2='5.61054' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%231D3694'/%3E%3Cstop offset='1' stop-color='%23425DE8'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .mlro-list-wrap ul li::before {
    width: 24px;
    height: 22px;
    top: 2px;
  }
}
.mlro-list-wrap ul li:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .how-works-grid .card-1 {
    order: 1;
  }
  .how-works-grid .card-2 {
    order: 2;
  }
  .how-works-grid .card-4 {
    order: 3;
  }
  .how-works-grid .card-3 {
    order: 4;
  }
  .how-works-grid .card-5 {
    order: 5;
  }
  .how-works-grid .card-6 {
    order: 6;
  }
  .how-works-card .arrow-divider.arrow-top-right, .how-works-card .arrow-divider.arrow-bottom-left, .how-works-card .arrow-divider.arrow-down {
    transform: translate(-50%, -50%);
  }
  .how-works-card.card-1 .arrow-divider {
    top: 50%;
    left: calc(100% + 12px);
  }
  .how-works-card.card-2 .arrow-divider {
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .how-works-card.card-3 .arrow-divider {
    top: 50%;
    left: -12px;
    transform: translate(-50%, -50%) rotate(180deg);
  }
  .how-works-card.card-4 .arrow-divider {
    top: calc(100% + 12px);
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .how-works-card.card-5 .arrow-divider {
    top: 50%;
    left: calc(100% + 12px);
    transform: translate(-50%, -50%);
  }
}
.mrgn-top-4 {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .mrgn-top-4 {
    margin-top: 18px;
  }
}
@media (min-width: 1200px) {
  .mrgn-top-4 {
    margin-top: 24px;
  }
}
@media (min-width: 1600px) {
  .mrgn-top-4 {
    margin-top: 30px;
  }
}

.desk-only-disp {
  display: none;
}
@media (min-width: 1200px) {
  .desk-only-disp {
    display: block;
  }
}

.background-dark {
  background: #F4F7FE !important;
}

.background-light {
  background: #fff !important;
}

.mrgn-top-5 {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .mrgn-top-5 {
    margin-top: 24px;
  }
}
@media (min-width: 1200px) {
  .mrgn-top-5 {
    margin-top: 30px;
  }
}

.txt-2 {
  color: #4A5D73;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
}
@media (min-width: 768px) {
  .txt-2 {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .txt-2 {
    font-size: 18px;
  }
}/*# sourceMappingURL=reusable.css.map */