.features .feature-box {
  padding: 24px 20px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.features .feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  line-height: 0;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Alt Features Section
--------------------------------------------------------------*/
.alt-features .icon-box {
  display: flex;
}
.section-title{
    padding-top: 30px;
}
.alt-features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.alt-features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.alt-features .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}
/* E-KYC Intro Section */
.ekyc-intro-section {
  background-color: #161c66; /* Dark Blue */
  padding: 60px 0;
}

.ekyc-intro-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #b67b2d; /* Yellow */
}

.ekyc-intro-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #e2e8f0;
  text-align: justify;
}

.ekyc-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

/* Optional: Adjust image on mobile */
@media (max-width: 767px) {
  .ekyc-img {
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.section-heading {
  font-size: 28px;
  font-weight: 700;
  color: #161c66; /* matching blue for heading */
  margin-bottom: 10px;
}
.yellow-banner-section {
  /* background-color: #fcf2e5;  */
  padding: 60px 0;
}

.yellow-banner-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 576px) {
  .yellow-banner-section {
    padding: 40px 0;
  }

  .yellow-banner-img {
    width: 90%;
  }
}
