.mhero-points {
  display: flex;
  flex-direction: column;
  /*gap: 8px;*/
  margin-top: 25px;
}

.mhero-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0b1c39;
  font-size: 15px;
}

/* checkbox style icon */
.mhero-points i {
  width: 18px;
  height: 18px;
  background: black;       /* blue */
  color: #ffffff;
  border-radius: 4px;        /* square checkbox */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.mgst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #f6f8ff;
  padding: 40px;
  border-radius: 20px;
}

/* common box */
.mgst-box {
  /* background: #ffffff; */
  padding: 35px;
  border-radius: 18px;
}

/* headings */
.mgst-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 25px;
  line-height: 1.4;
}

/* list */
.mgst-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mgst-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
}

/* green checkbox */
.mgst-list i {
  width: 18px;
  height: 18px;
  background: #22c55e;
  color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}




.mprocess-wrapper {
  background: #f6f8ff;
  padding: 40px 30px;
  border-radius: 20px;
}

.mprocess-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 35px;
}

.mprocess-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

/* step card */
.mprocess-step {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 15px;
  text-align: center;
  width: 100%;
  max-width: 220px;
}

.mprocess-step p {
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  margin-top: 12px;
}

/* icon area */
.mstep-icon {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background: #e9efff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mstep-icon i {
  font-size: 26px;
  color: #1e40af;
}

/* step number */
.mstep-number {
  position: absolute;
  top: -8px;
  left: -8px;
  background: #2563eb;
  color: #ffffff;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

/* arrows */
.mprocess-arrow {
  font-size: 28px;
  color: #94a3b8;
  font-weight: 600;
}




.mtrust-wrapper {
  background: #f6f8ff;
  padding: 45px 30px;
  border-radius: 22px;
}

.mtrust-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #0b1c39;
  margin-bottom: 35px;
}

/* grid */
.mtrust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* card */
.mtrust-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

/* icon */
.mtrust-icon {
  width: 52px;
  height: 52px;
  background: #e9efff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.mtrust-icon i {
  font-size: 26px;
  color: #1e40af;
}

/* text */
.mtrust-card h4 {
  font-size: 17px;
  font-weight: 600;
  color: #0b1c39;
  margin-bottom: 8px;
}

.mtrust-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}




@media (max-width: 768px) {
  .mprocess-grid {
    flex-direction: column;
  }

  .mprocess-arrow {
    transform: rotate(90deg);
  }

  .mprocess-step {
    max-width: 100%;
  }
}


/* responsive */
@media (max-width: 768px) {
  .mgst-grid {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}



@media (max-width: 768px) {
  .mtrust-grid {
    grid-template-columns: 1fr;
  }

  .mtrust-wrapper {
    padding: 30px 20px;
  }

  .mtrust-card {
    text-align: center;
  }

  .mtrust-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

.sticky-book-btn {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 9999;
  display: none;
}

/* sirf mobile pe */
@media (min-width: 769px) {
  .sticky-book-btn {
    display: none !important;
  }
}


.purpose-black label,
.purpose-black .form-check-label {
    color: #000 !important;
}

.purpose-black .form-check-input {
    border-color: #000;
}


