
body {
  font-family: 'Roboto', sans-serif !important;
  color: #333;
}

/* Headings font (UPDATED) */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
}
:root {
  --primary-color: #00a86b;
  --secondary-color: #04774d;
  --black-color: #212121;
  --bg-light: #e3ebff;
  --accent-color: #c1ffcf;
}
.bg-theam{
  background-color: #006947;
}
.text-color{
  color: #00a86b;
}

.custom-navbar {
  padding: 10px 0;
  position: sticky !important;
  top: 0 !important;
  z-index: 999 !important;
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: #0d8f5f !important;
}

.nav-link.active {
  color: #0d8f5f !important;
  font-weight: 600;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    border: 1px solid var(--add-yellow, #F0B90B);
background: linear-gradient(142deg, #B49B65 3.78%, #E2C067 43.76%, #977C39 89.5%), #F0B90B !important;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500 !important;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(229, 255, 245, 0.6);
}

.apply-btn span {
  margin-left: 8px;
  font-size: 18px;
  line-height: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    border: 1px solid var(--add-yellow, #F0B90B);
background: linear-gradient(142deg, #B49B65 3.78%, #E2C067 43.76%, #977C39 89.5%), #F0B90B !important;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500 !important;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(229, 255, 245, 0.6);
}


.apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(229, 255, 245, 0.8);
  background: linear-gradient(90deg, #0a6a4a, #0f9d6a);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
  background: url('../images/Razorloan-BG-Banner.png') no-repeat center/cover;
  padding: 60px 0 0px;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 40px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
}

.eligibility-btn {
  border: 1px solid var(--add-yellow, #F0B90B);
background: linear-gradient(142deg, #B49B65 3.78%, #E2C067 43.76%, #977C39 89.5%), #F0B90B !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-icon {
  width: 18px;
}

.carousel-3d {
  perspective: 1000px;
  margin-top: 80px;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 360px;
  transform-style: preserve-3d;
}

.phone {
  position: absolute;
  left: 50%;
  transform: translateX(-10%) scale(0.7);
  width: 230px;
  opacity: 0.4;
  transition: all 0.8s ease;
}

.phone.active {
  transform: translateX(-50%) scale(1.1) translateZ(100px) !important;
  opacity: 1;
  z-index: 3;
}

.phone.prev {
  transform: translateX(-150%) rotateY(40deg) scale(0.8) !important;
  opacity: 0.6;
}

.phone.next {
  transform: translateX(50%) rotateY(-40deg) scale(0.8) !important;
  opacity: 0.6;
}

.carousel-track {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* banner section end  */

/* Why Choose section start  */
.rlx-process-section {
  position: relative;
  padding: 60px 0;
  min-height: 100vh;
  background: #fff;
  overflow: hidden;
}

.rlx-process-tabs {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  background: #fff;
  border-bottom: 2px solid #E5FFF5;
  padding: 18px 24px;
  margin-bottom: 30px;
}

.rlx-tab {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 600;
  color: #222;
  cursor: pointer;
  padding-bottom: 8px;
  position: relative;
  transition: .3s;
  white-space: nowrap;
}

.rlx-tab.active {
  color: #0d8b6f;
}

.rlx-process-wrapper {
  position: sticky;
  top: 140px;
  height: calc(100vh - 180px);
  min-height: 620px;
  overflow: visible;
}

/* CARD */
.rlx-process-content {
  position: absolute;
  inset: 0;
  transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.rlx-process-content .row {
  min-height: 530px;
  height: auto;
  padding: clamp(24px, 4vw, 55px);
  border-radius: 28px;
  border: 2px solid #13916e;
  background: #e8f5ef;
  margin: 0;
  align-items: center;
}

.rlx-process-content h2 {
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
}

.rlx-process-content p {
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.rlx-process-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

body.rlx-lock {
  overflow: visible;
}

/* Why Choose section End  */
/* Loan Calculator Start  */

.loan-section {
  padding: 80px 20px;
  background: #FFF7E0;
  text-align: center;
}

.title {
  font-size: 40px;
  font-weight: 700;
}

.title span {
  color: #098D61;
}

.top-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 15px 0 40px;
  font-size: 14px;
  color: #555;
}

.top-features img {
  width: 18px;
  margin-right: 6px;
}

.loan-card {
  background: #fff;
  border: 2px solid #0d8b6f;
  border-radius: 30px;
  padding: 50px;
  display: flex;
  gap: 140px;
  align-items: center;
  flex-wrap: wrap;
}

.loan-left {
  flex: 1;
  text-align: left;
}

.top-info {
  display: flex;
  justify-content: space-around;
  margin-bottom: 25px;
}

.info-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  color: #0d8b6f;
}

.info-box img {
  width: 28px;
  margin-bottom: 5px;
}

.field {
  margin-bottom: 30px;
}

.field-label {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  color: #098D61;
}

.range-value {
  position: absolute;
  top: -35px;
  left: 0;
  background: #ffc107;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.range-wrap {
  position: relative;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  background: #cfeee4 !important;
  border-radius: 10px;
  appearance: none;
  border-radius: 10px;
  appearance: none;
}

input::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: transparent;
  cursor: pointer;
}

.thumb {
  position: absolute;
  top: 56%;
  width: 20px;
  height: 20px;
  background: #144835;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #098D61;
}

.bottom-info {
  font-size: 13px;
  color: #666;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 25px;
  margin-top: 15px;
}

.bottom-info img {
  width: 16px;
  margin-right: 5px;
}

.bottom-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.bottom-item img {
  width: 16px;
}

/* RIGHT */
.loan-right {
  flex: 1;
  text-align: center;
}

.progress {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 10;
  stroke-dasharray: 440;
  stroke-dashoffset: 200;
  transform: rotate(-90deg);
  transform-origin: center;
}


.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 600;
}

.summary {
  margin-top: 20px;
  text-align: left;
}

.summary p,
.summary h3 {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  color: #606060;
  font-size: 20px;
  font-weight: 500;
}

.summary h3 {
  margin-top: 10px;
  color: #0d8b6f;
  border-top: 2px solid #ABFFE0;
  /* 🔥 important */
}

.note {
  margin-top: 10px;
  font-size: 12px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 6px;
}

.note img {
  width: 14px;
}

.circle-box {
  position: relative;
  width: 160px;
  height: 160px;
  margin: auto;
}

.circle-bg {
  position: absolute;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 50%;
}

.progress {
  position: relative;
  z-index: 2;
}

.range-value {
  position: absolute;
  top: -35px;
  left: 0;
  background: #ffc107;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 13px;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.range-value::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ffc107;
}

.range-value {
  display: flex;
  align-items: center;
  gap: 5px;
}

.range-icon {
  width: 14px !important;
  height: 14px !important;
}

.progress-bg {
  fill: none;
  stroke: #D9D9D9;
  stroke-width: 10;
}

.progress {
  fill: none;
  stroke: url(#progressGradient);
  stroke-width: 10;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;

  transform: rotate(-90deg);
  transform-origin: center;
}

/* Loan Calculator End  */
/* Smart Loan Solutions start  */
.smart-loan {
  background: #FFF7E0;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.smart-loan .row {
  min-height: 60vh;
}

/* LEFT CURVED BG */
.smart-loan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: url('../images/green-curve.png') no-repeat;
  background-size: 100% 100%;
  z-index: 0;
}

.smart-loan .container {
  position: relative;
  z-index: 2;
}

.icon {
  width: 55px;
  height: 55px;
}

.card {
  position: relative;
  overflow: visible;
  border-radius: 1.87rem !important;
}

.money-bag {
  position: absolute;
  top: 26%;
  right: -8%;
  width: 120px;
  z-index: 5;
  transform: translate(-0%, -50%);
}

/* Smart Loan Solutions end   */
/* Representative Example start  */
.step-circle {
  min-width: 45px;
  width: 45px;
  height: 45px;
  border: 5px solid #CECECE;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: #fff;
  z-index: 2;
}

.step-item .step-circle {
  color: #bbb;
}

.step-item.active .step-circle {
  border-color: #144835;
  color: #144835;
}

.step-item h6 {
  color: #bbb;
}

.step-item.active h6 {

  color: #144835;
}

.step-item {
  cursor: pointer;
  transition: 0.3s;
}

.step-item:hover {
  transform: translateX(5px);
}

.step-item p {
  color: #bbb;
}

.step-item.active p {
  color: #098D61;
}

#stepImage {
  transition: opacity 0.4s ease;
}

.my-border-start {
  border-left: 5px solid #CECECE !important;
  left: 20px;
}

.step-line {
  top: 25px;
  bottom: 25px;
  width: 2px;
  background: #ddd;
  height: 90% !important;
}

.bg-color {
  background-color: #D7EEE6;
}

.icon-sm {
  width: 22px;
  height: 22px;
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.6s ease;
}

.Representative-head {
  font-size: 18px;
  font-weight: 600;
}

.Representative-paragraph {
  font-weight: 500;
}

.secondry-text {
  color: #0F2854 !important;
}

/* Representative Example End  */

/* Financial Journey start  */
.banner-bg {
  background-image: url(../images/Financial-Journey-bg.png);
}

.Circle-bg1 {
  width: 356px;
  height: 356px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}


.Financial-img {
  position: absolute !important;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  /* 🔥 ye control karega position */
  max-width: 65% !important;
}

#ctaSection .position-relative {
  min-height: 356px;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.animate-scale.animate-show img {
  animation: float 3s ease-in-out infinite;
}

/* Financial Journey end  */

/* Our Recent Blogs start */
.blog-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  border: 2px solid transparent;
  transition: 0.3s ease;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-8px);
  border: 2px solid #ffc107;
}

.blog-top {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 14px;
}

.blog-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* remove old first-child image issue */
.blog-card img:first-child {
  width: 100%;
}

.blog-card h5 {
  line-height: 1.4;
}

.blog-card h5 a {
  display: block;
  margin-top: 6px;
}

.bottom-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: #0f7b55;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  transition: 0.3s ease;
}

.blog-card:hover .bottom-strip {
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
}

.read-btn {
  border-radius: 10px;
}

.blog-top {
  background: #F5FFFB;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  min-height: 176px;
  overflow: hidden;
}

.blog-top {
  background: #F5FFFB;
  border-radius: 15px;
  overflow: hidden;
  padding: 0;
}

.blog-banner-img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.read-more {
  background-color: #EEFFF9;
}

.blog-text {
  font-size: 21px;
}

/* Our Recent Blogs end */
/* FAQ SECTION START  */
.gradient-text {
  background: linear-gradient(90deg, #098D61 0%, #02271B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.faq-section {
  background: url("../images/FAQ-BG.png") no-repeat left center;
  background-size: cover;
}

.faq-btn {
  border-radius: 10px;
}

.custom-accordion .accordion-item {
  border: none;
  margin-bottom: 14px;
  background: transparent;
  border-color: #098D61 !important;
}

.custom-accordion .accordion-button {
  border-bottom: 1px solid #e5e5e5;
  /* border-radius: 10px; */
  padding: 16px 18px;
  font-size: 18px !important;
  font-weight: 500;
  box-shadow: none;
}

.custom-accordion .accordion-button,
.custom-accordion .accordion-body {
  padding-left: 18px;
}

.custom-accordion .accordion-body {
  color: #666;
  padding-top: 8px;
  padding-bottom: 16px;
}

.custom-accordion .accordion-item.active {
  border: 1px solid #198754;
  background: #eef7f2;
  border-radius: 10px;
  overflow: hidden;
}

.custom-accordion .accordion-item.active .accordion-button {
  border: none;
  border-bottom: none;
  box-shadow: none;
  color: #144835 !important;
  background-color: #F5F5F5 !important;
}

.custom-accordion .accordion-item.active .accordion-body {
  border-top: none;
  padding-top: 0;
  background-color: #F5F5F5;
}

.accordion-button::after {
  display: none !important;
}

.accordion-button {
  position: relative;
  padding-right: 40px;
}

.accordion-button::before {
  content: "\f282";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 15px;
  transition: 0.3s;
  color: #098D61;
}

.accordion-button:not(.collapsed)::before {
  transform: rotate(180deg);
  color: #098D61;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.accordion-button:focus,
.accordion-button:active {
  box-shadow: none !important;
  outline: none !important;
}

.animate-up {
  opacity: 1 !important;
  transform: translateY(40px);
  transition: 1.6s ease;
}

.animate-show {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.accordion-collapse {
  transition: height 0.4s ease !important;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease !important;
}


.accordion-body {
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.accordion-collapse.show .accordion-body {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ SECTION END  */

/* Footer section start  */
.footer {
  background: url('../images/Footer-bg.png') center/cover no-repeat;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #ccc;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.social-icons a {
  font-size: 1.2rem;
  margin-right: 10px;
}

.logo img {
  max-width: 180px;
}

.icon-circle {
  min-width: 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.icon-circle i {
  font-size: 16px;
  color: #144835;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
}

.social-icons a:hover {
  color: #ddd;
}

.list-unstyled li {
  padding-bottom: 5px;
}

/* Footer section End  */

/* About-us page start  */
.about-hero {
  background: #E4FFF5;
}

.button-bg {
  background: rgba(52, 182, 139, 0.1);
}

.corner-radious {
  border-radius: 20px !important;
}

.heading-text-color {
  color: #F0B90B !important;
}

.hero-img {
  max-width: 85%;
}

/* We  are Proud Member section start  */
.member-section {
  background: #ffffff78;
}

.mission-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.right-box .d-flex {
  align-items: center;
}

.right-box {
  background: #F7F9FF;
  border-radius: 20px;
}

.girl-img {
  max-width: 85%;
}

.plane-img {
  position: absolute;
  top: 52%;
  left: 44%;
  width: 55%;
}

.logo-img {
  position: absolute;
  top: 47%;
  left: 44%;
  width: 14%;
}

.font-w-600 {
  font-weight: 600;
}

/* We  are Proud Member section end  */

/* What sets us apart section start  */
.rzl-unique-horizontal-section {
  height: 280vh;
  background: #FFFEF9;
  position: relative;
}

.rzl-unique-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 30px;
}

.rzl-unique-sticky-wrap {
  position: sticky;
  top: 60px;
  height: 80vh;
  overflow: hidden;
}

.rzl-unique-bg {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rzl-unique-scroll {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  top: 65%;
  transform: translateY(-50%);
}

.rzl-unique-card {
  min-width: 550px;
  max-width: 550px;
  height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #E5FFF5;
  border: 2px solid #13916e;
  border-radius: 24px;
  padding: 40px;
}

.rzl-bg-main img {
  width: 360px;
}

.rzl-icon-rotator {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.rzl-icon {
  position: absolute;
  width: 70px;
  height: 70px;
}

.icon1 {
  top: 0;
  left: 42%;
  transform: translate(-46%, 12%);
}

.icon2 {
  top: 32%;
  right: 0;
  transform: translate(-37%, -50%);
}

.icon3 {
  bottom: 0;
  left: 29%;
  transform: translate(-50%, -45%);
}

.icon4 {
  top: 45%;
  left: 0;
  transform: translate(12%, -50%);
}

.icon5 {
  bottom: 17%;
  right: 0;
  transform: translate(-127%, 50%);
}


.rzl-icon {
  position: absolute;
  width: 70px;
  height: 70px;
}

.rzl-icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .08s linear;
  transform-origin: center;
}

/* Smart Loan, Smarter Terms section end  */
/* Rate and term section end  */

/* privacy policy page start */
.privacy-policy-section {
  background: #ffffff;
}

.privacy-policy-title {
  color: #2c2c2c;
}

.privacy-policy-content {
  padding: 40px;
  border-radius: 10px;
}

.privacy-policy-content h6 {
  font-weight: 700;
  margin-top: 25px;
  font-size: 14px;
  color: #2c2c2c;
}

.privacy-policy-content p,
.privacy-policy-content li {
  font-size: 14px;
  line-height: 1.7;
}

.ps-7 {
  padding-left: 90px;
}

.privacy-policy-content a {
  color: #0f9d6a;
  text-decoration: none;
}

.privacy-policy-content a:hover {
  text-decoration: underline;
}

/* privacy policy page end */

/* blog page start  */
#sortSelect {
  border-bottom: 3px solid #098D61;
  border-radius: 12px;
  box-shadow: none;
}

.bp-search-group {
  border-radius: 50px;
  overflow: hidden;
}

.bp-card {
  border-radius: 16px;
  transition: 0.3s;
  overflow: hidden;
}

.bp-card:hover {
  transform: translateY(-6px);
}

.bp-top {
  background: #F5FFFB;
  padding: 15px;
  border-radius: 12px;
  position: relative;
  min-height: 140px;
}

.bp-logo {
  width: 90px;
  margin-bottom: 10px;
}

.bp-img {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 120px;
}

.border-radious-19 {
  border-radius: 19px 0px 0px 19px !important;
  border: 1px solid #0F2854 !important;
}

.search-bitton-color {
  background: linear-gradient(90deg, #0f9d6a, #0a6a4a);
}

.repay-cards-row {
  gap: 16px;
}

/* blog page end  */

/* products page start  */
.road-section {
  padding: 80px 0;
  background: #f4f8f7;
}

.road-wrapper {
  position: relative;
}

.road {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 118px;
}

.road-img {
  width: 97%;
}

.car {
  position: absolute;
  width: 60px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  transition: transform 0.3s linear;
}

.cards-wrapper {
  position: relative;
}

.card-box {
  width: 42%;
  margin: 10px 0;
}

.card-box.left {
  margin-right: auto;
}

.card-box.right {
  margin-left: auto;
}

.product-card {
  background: #d9ebe4;
  padding: 18px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
}

.product-card h5 {
  font-weight: 600;
}

.product-card p {
  font-size: 14px;
  margin: 8px 0 15px;
  color: #333;
}

.road-section .container {
  max-width: 950px;
}

.product-card.active {
  border: 2px solid #198754;
  transform: scale(1.02);
}

/* products page end  */

/* Apply loan start  */
.an-hero-section {
  background: url('../images/apply-loan-hero-bg.png') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

.an-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.an-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFC107;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.an-icon {
  width: 35px;
}

.an-mobile-wrapper {
  position: relative;
  max-width: 340px;
  width: 100%;
}

.an-mobile-frame {
  width: 97%;
}

.an-mobile-form {
  position: absolute;
  top: 8%;
  left: 4%;
  width: 90%;
  background: #fff;
  padding: 20px;
  border-radius: 30px;
}

.an-mobile-form .form-control:focus {
  box-shadow: none;
}

.an-custom-btn {
  background: linear-gradient(90deg, #0f9d6a, #0a6a4a);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.an-custom-btn:hover,
.an-custom-btn:focus,
.an-custom-btn:active {
  color: #fff;
  text-decoration: none;
}

.an-divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: #999;
}

.an-divider::before,
.an-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.an-divider span {
  padding: 0 10px;
}

.text-color1 {
  font-size: 10px;
}

.phone-width {
  max-width: 100% !important;
  border-radius: 40px;
}

.an-label {
  font-size: 12px;
  font-weight: 600;
  color: #4E635D;
  letter-spacing: 0.3px;
}

.an-terms-text {
  font-size: 12px;
  color: #6c757d;
  font-weight: 400;
  line-height: 1.5;
}

.an-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.an-checkbox {
  width: 14px;
  height: 14px;
}

/* Apply loan end  */
/* Why People Choose Us start  */
.wp-section {
  background-color: #F2FFFA;
}

.wp-icon {
  width: 45px;
  height: 45px;
}

.wp-right-border {
  border-left: 1px solid #ddd;
  padding-left: 25px;
}

/* Why People Choose Us end  */
/* Key Benefits start  */
.feature-section {
  color: #00a86b;
}

.feature-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-subtext {
  font-size: 15px;
}

.feature-img {
  max-width: 85%;
}

.feature-item {
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
}

.feature-icon {
  width: 45px;
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  margin: 0;
  max-width: 320px;
}

.feature-number {
  font-size: 90px;
  font-weight: 700;
  color: #D6E4DF;
  line-height: 1;
  opacity: 0.9;
}

.feature-item:hover .feature-number {
  transform: scale(1.1);
  transition: 0.3s;
}

/* Key Benefits end  */

/* Smart Loan Solutions for Every Need start   */
.sl-section {
  background-color: #D7EEE6;
}

.sl-card {
  border-radius: 30px;
  padding: 30px;
  transition: 0.3s ease;
}

.sl-card:hover {
  transform: translateY(-5px);
}

/* Smart Loan Solutions for Every Need end   */

/* Terms and Conditions start  */
.tc-section {
  background: #F2F2F2;
}

.secondary-dark {
  color: #015B3D;
}

.tc-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  overflow: hidden;
}

.tc-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.tc-icon img {
  width: 60px;
}

.tc-link {
  color: #015B3D;
  font-weight: 600;
  text-decoration: none;
}

.tc-link:hover {
  text-decoration: underline;
}

.tc-shape {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

.tc-link {
  color: #098D61;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.tc-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #098D61;
  transform: scaleX(1);
  transform-origin: left;
}

.tc-link:hover,
.tc-link:focus {
  color: #098D61 !important;
  text-decoration: none;
}

.tc-link::after {
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tc-link:hover::after {
  transform: scaleX(1);
}

/* Terms and Conditions end  */
/* Are you eligible? start  */
.eligibility-section {
  background: #e9f0ec;
}

.eligibility-card {
  background: #F4F4F1;
  border-radius: 30px;
}

.quick-card {
  background: #ffffff;
  border-radius: 20px;
  border-left: 4px solid #0f5132;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.eglibility-btn {
  background: linear-gradient(90deg, #003121 0%, #144835 100%);
  padding: 12px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.eglibility-btn:hover {
  color: #fff;
  opacity: 0.9;
}

.eglibility-btn img {
  width: 16px;
  height: 16px;
}

.zero-card {
  background: url("../images/zero-paperwork-bg.png") no-repeat center;
  background-size: cover;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}

.zero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 15px;
}

.zero-list li {
  margin-bottom: 10px;
  font-size: 15px;
}

.zero-list li img {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
}

.zero-img {
  max-width: 280px;
}

/* Are you eligible? end  */

/* Rate and Fees start  */
.rf-heading {
  color: #0f5132;
}

.rf-card {
  background: #fff;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.rf-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  color: #0f5132;
}

.rf-card h3 {
  color: #006947;
  margin-top: 8px;
}

.rf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.text-color2 {
  color: #3E4942;
}

.rf-icon img {
  object-fit: contain;
}

/* Rate and Fees end  */
/* Sample Loan Charges start  */
.loan-calc-section {
  background: #ffffff;
}

.loan-table-wrapper {
  border-radius: 20px;
  overflow: hidden;
  background: #f3f5f4;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.loan-table thead {
  background: #0f7b55;
  color: #fff;
}

.loan-table thead th {
  padding: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.loan-table tbody td {
  padding: 18px 16px;
  vertical-align: middle;
  font-size: 15px;
  color: #333;
  border-top: 1px solid #e5e5e5;
}

.loan-table .text-success {
  color: #0f7b55 !important;
}

.loan-disclaimer {
  background: #cfe1da;
  border-radius: 12px;
  color: #1e3d34;
}

.disclaimer-icon {
  color: #0f7b55;
  font-size: 18px;
  margin-top: 2px;
}

.loan-disclaimer {
  position: relative;
  background: #cfe1da;
  border-radius: 12px;
  padding: 16px;
  color: #1e3d34;
  overflow: hidden;
  border-left: 4px solid #0f7b55;
  transition: color 0.3s ease;
}

.loan-disclaimer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #0f7b55;
  z-index: 0;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.loan-disclaimer:hover::before {
  width: 100%;
}

.loan-disclaimer p,
.loan-disclaimer .disclaimer-icon {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.loan-disclaimer:hover p,
.loan-disclaimer:hover strong,
.loan-disclaimer:hover .disclaimer-icon {
  color: #fff;
}

/* Sample Loan Charges end  */
/* Apply loan end  */

/* Get OTP Page start  */
.an-otp-boxes .otp-input {
  width: 50px;
  height: 50px;
  background: #f1f3f2;
  border: none;
  border-radius: 12px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.otp-input::placeholder {
  color: #999;
}

.otp-input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #0f7b55;
  background: #fff;
}

.an-resend-link {
  color: #0f7b55;
  font-weight: 500;
  text-decoration: none;
}

.an-resend-link:hover {
  text-decoration: underline;
}

/* Get OTP Page end  */
/* repay loan page start  */
.repay-wrapper {
  background: url('../images/repay-bg.png') no-repeat center center;
  background-size: cover;
  padding: 120px 0 !important;
}

.repay-wrapper .card {
  border-radius: 20px !important;
  background: #ffffff url('../images/repay-card.png') no-repeat center;
  background-size: cover;
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.repay-wrapper .card-body {
  padding: 60px 40px !important;
}

.repay-wrapper small {
  letter-spacing: 3px;
  color: #6c757d;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}

.repay-wrapper .card-title {
  font-size: 52px !important;
  color: #212121 !important;
  font-weight: 700;
  margin-bottom: 10px;
}

.repay-wrapper .form-label {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

.repay-wrapper .input-group {
  border-radius: 14px;
  overflow: hidden;
}

.repay-wrapper .input-group-text {
  border-radius: 14px 0 0 14px;
  background: #f5f7f6;
  border: 1px solid #198754;
  padding: 12px 16px;
}

.repay-wrapper .input-group-text:focus {
  box-shadow: none;
}

.repay-wrapper .form-control {
  border: 1px solid #198754;
  border-left: none;
  padding: 14px;
  font-size: 14px;
  border-radius: 0px 15px 15px 0px;
}

.repay-wrapper .form-control:focus {
  box-shadow: none;
}

.repay-wrapper .btn-secondary {
  background: linear-gradient(90deg, #0f7b55, #0a5c3f);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  padding: 14px 20px !important;
  color: #fff;
  transition: 0.3s;
}

.repay-wrapper .btn-secondary:hover {
  background: linear-gradient(90deg, #0a5c3f, #0f7b55);
}

.repay-wrapper p {
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
}

.repay-wrapper .primary-orange {
  color: #0f7b55;
  text-decoration: none;
}

.repay-wrapper .primary-orange:hover {
  text-decoration: underline;
}

/* card section repay loan start  */
.repay-steps {
  background: #EAF4F1;
}

.repay-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 60px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: visible;
  border: 1px solid #098D61;
}

.repay-card:hover .first-icon img,
.repay-card.active .first-icon img {
  filter: brightness(0) invert(1);
}

.repay-card:hover,
.repay-card.active {
  background: linear-gradient(135deg, #0f9d6a, #0a6a4a);
  color: #fff;
}

.repay-card:hover h6,
.repay-card.active h6,
.repay-card:hover p,
.repay-card.active p {
  color: #fff;
}

.step-circle1 {
  position: absolute;
  top: -25px;
  left: -20px;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #098D61;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0f9d6a;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.repay-card .first-icon img {
  width: 50px;
}

.repay-card p {
  font-size: 13px;
  color: #555;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 20px;
}

/* card section repay loan end  */
/* repay loan css end */

/* repay otp start */
.otp-input .form-control {
  width: 77px;
  height: 70px;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
}

/* repay otp end*/

/* .contact us css start */
.contact-us {
  color: #fff;
}

.common_heading {
  font-size: 42px;
  font-weight: 700;
  color: #1dbf73;
}

.common_heading span {
  color: #888;
}

.subhead-p {
  color: #aaa;
  font-size: 14px;
}

.contant-map iframe {
  border-radius: 10px;
  filter: grayscale(20%);
}

.contact-form {
  background: #ffffff;
  padding: 10px 30px;
  border-radius: 10px;
}

.contact-form .form-label {
  font-size: 13px !important;
  color: #333 !important;
  margin-bottom: 6px !important;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background: transparent;
  font-size: 14px;
  padding-left: 0;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: #198754;
}

.form-control1 {
  border: 2px solid #DDE2E7 !important
}

textarea.form-control {
  border: 1px solid #ddd !important;
  border-radius: 6px;
  padding: 10px !important;
}

.otp-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.otp_img img {
  border-radius: 4px;
}

.otp-resend {
  font-size: 12px;
  color: #777;
}

.otp-resend a {
  color: #198754;
  font-weight: 500;
}

.btn-secondary {
  background: linear-gradient(90deg, #0f9d6a, #0a6a4a);
  border: none;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 12px;
}

.btn-secondary:hover {
  opacity: 0.9;
}

.contact-card .card {
  background: linear-gradient(90deg, #0a6a4a, #0f9d6a);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-card .card-body {
  padding: 25px;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  margin-bottom: 0;
  color: #dcdcdc;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
}

.contact-card+.contact-card {
  margin-top: 20px;
}

/* contact us css end */

/* digital lending patner page start  */
.lending-partner .accordion-button:not(.collapsed)::after {
  background-image: url('../images/minus.svg') !important;
}

.lending-partner .accordion-button::after {
  background-image: url('../images/plus.svg') !important;
  filter: brightness(0) invert(1);
}

.lending-partner .accordion-button::after {
  content: '';
}

.lending-partner .accordion-button::after {}

/* digital lending patner page end  */
/* digital lead patner page start  */
.link-arrow {
  top: 10px;
  right: 10px;
}

/* digital lead patner page start  */

/* service area page start  */
.service-card {
  height: 240px;
  border-radius: 22px;
}

.service-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.service-overlay {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  margin: 10px;
}

.service-overlay h6 {
  color: #222;
}

.service-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
  border-radius: 22px !important;
}

.process-section {
  overflow: hidden;
}









/* CSS */

body {
  background: #F5FFFB;
  font-family: Arial, sans-serif;
}

.loan-process-section {
  padding: 80px 0;
}

/* LEFT IMAGE */

.process-image img {
  max-width: 100%;
}

/* RIGHT SIDE */

.process-wrapper {
  position: relative;
  padding-left: 40px;
}

/* VERTICAL LINE */

.process-line {
  position: absolute;
  left: 24px;
  top: 20px;
  width: 3px;
  height: 85%;
  background: #cfcfcf;
}

/* ITEM */

.process-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 45px;
  cursor: pointer;
}

/* NUMBER */

.step-number {
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 4px solid #6b6b6b;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #5a5a5a;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

/* CONTENT */

.process-content {
  width: 100%;
  padding: 25px 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.process-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #5d5d5d;
  transition: 0.3s;
}

.process-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #6c6c6c;
  margin: 0;
  transition: 0.3s;
}

/* ACTIVE */

.process-item.active .process-content,
.process-item:hover .process-content {
  background: #08935f;
}

.process-item.active .process-content h4,
.process-item.active .process-content p,
.process-item:hover .process-content h4,
.process-item:hover .process-content p {
  color: #fff;
}

.process-item.active .step-number,
.process-item:hover .step-number {
  border-color: #fff;
  color: #222;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .process-image {
    margin-bottom: 50px;
  }

}

@media(max-width:767px) {

  .loan-process-section {
    padding: 50px 0;
  }

  .process-wrapper {
    padding-left: 15px;
  }

  .process-line {
    left: 20px;
  }

  .process-item {
    gap: 15px;
  }

  .step-number {
    min-width: 42px;
    height: 42px;
    font-size: 14px;
    border-width: 3px;
  }

  .process-content {
    padding: 18px;
  }

  .process-content h4 {
    font-size: 18px;
  }

  .process-content p {
    font-size: 14px;
    line-height: 1.7;
  }

}










/* RZP LOAN PROCESS SECTION */

.rzp-loan-process-section {
  padding: 80px 0;
}

/* LEFT IMAGE */

.rzp-process-img img {
  max-width: 100%;
  height: auto;
}

/* TIMELINE */

.rzp-timeline-wrapper {
  position: relative;
}

.rzp-timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 46px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d9d9d9;
}

/* STEP */

.rzp-process-step {
  position: relative;
  padding: 8px 20px 8px 95px;
  margin-bottom: 22px;
  border-radius: 22px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* NUMBER */

.rzp-step-number {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid #676464;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #676464;
  z-index: 2;
  transition: 0.3s ease;
}

/* CONTENT */

.rzp-step-content {
  padding: 10px 10px;
  transition: 0.3s ease;
}

.rzp-step-content h5 {
  font-size: 22px;
  font-weight: 700;
  color: #676464;
  transition: 0.3s ease;
}

.rzp-step-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #676464;
  transition: 0.3s ease;
}

/* ACTIVE */

.rzp-process-step.active,
.rzp-process-step:hover {
  background: #07935f;
}

.rzp-process-step.active h5,
.rzp-process-step.active p,
.rzp-process-step:hover h4,
.rzp-process-step:hover p {
  color: #fff;
}

.rzp-process-step.active .rzp-step-number,
.rzp-process-step:hover .rzp-step-number {
  border-color: #fff;
  background: #fff;
  color: #222;
}

/* RESPONSIVE */

@media(max-width:991px) {

  .rzp-process-img {
    text-align: center;
    margin-bottom: 50px;
  }

}

@media(max-width:767px) {

  .rzp-loan-process-section {
    padding: 50px 0;
  }

  .rzp-timeline-wrapper::before {
    left: 35px;
  }

  .rzp-process-step {
    padding: 18px 15px 18px 75px;
  }

  .rzp-step-number {
    width: 42px;
    height: 42px;
    left: 14px;
    font-size: 15px;
  }

  .rzp-step-content h4 {
    font-size: 18px;
  }

  .rzp-step-content p {
    font-size: 14px;
    line-height: 1.7;
  }

}

/* service area page end  */
/* Website page css end  */

/* Journey Navbar start */
/* Web journey page css start  */

.journey-navbar {
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.logout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #198754, #0b3d2e);
  padding: 12px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s ease;
}

.logout-btn:hover {
  background: linear-gradient(90deg, #0a6a4a, #0f9d6a);
  transform: translateY(-2px);
}

/* Journey Navbar end */

/* dashboard journey page start  */
.loan-hero {
  padding: 40px 0;
}

.hero-box {
  background: url('../images/journey-dashboard-bg.png') no-repeat center;
  border-radius: 20px;
  padding: 60px 50px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  overflow: hidden;
}

.hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.hero-box>* {
  position: relative;
  z-index: 2;
}

.hero-img {
  max-height: 420px;
}

.custom-progress {
  height: 25px;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.custom-progress .progress-bar1 {
  background: #ABFFE0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  border-radius: 20px;
}

.custom-progress .progress-bar1 {}

/* dashboard journey page end  */

/* step journey page start  */
.journey-section {
  background: #F5FFFB;
}

.journey-title {
  font-size: 32px;
  font-weight: 700;
  color: #134e3a;
}

.journey-subtitle {
  color: #6c757d;
}

.journey-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.active-card {
  background: linear-gradient(90deg, #0f9d6a, #144835);
  color: #fff;
}

.active-card p {
  color: #e6f7f1;
}

.locked-card {
  opacity: 0.6;
}

.journey-card.active-card {
  opacity: 1;
}

.journey-card .step-done {
  opacity: 1 !important;
}

.icon-box {

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.icon-box img {
  width: 26px;
  width: 50px;
  height: 50px;
}

.journey-card h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.journey-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.status {
  position: absolute;
  right: 15px;
  top: 30px;
  background: #dfe4ea;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.journey-card:hover {
  transform: translateY(-5px);
}

.journey-footer {
  border-top: 1px solid #e5e5e5;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #f5fffb;
}

.origin-text {
  font-size: 12px;
  letter-spacing: 1px;
  color: #8a94a6;
  font-weight: 600;
}

.info-item {
  font-size: 14px;
  color: #6c757d;
  gap: 8px;
  transition: 0.3s;
}

.icon-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-img img {
  width: 18px;
  height: 18px;
}

.info-item:hover {
  color: #0d8f5f;
  transform: translateY(-2px);
}

.info-item:hover .icon-img {
  background: #0d8f5f;
}

.rounded-5 img {
  border-radius: 20px;
}

/* step journey page end  */
/* check eligibility start  */
.eligibility {
  background: #F5FFFB;
}

.form-control {
  border: 1px solid #6C757D;
  border-radius: 10px;
}

.form-control:focus {
  border-color: #198754;
  box-shadow: none;
}

.form-label {
  font-weight: 600;
  color: #198754;
}

.employment-toggle {
  display: flex;
}

.employment-toggle {
  background: #cfeee2;
  gap: 5px;
}

.rounded-4 {
  border-radius: 10px;
}

.employment-toggle .option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #0f5132;
  transition: 0.3s;
}

.employment-toggle .option.active {
  background: #fff;
  font-weight: 600;
}

.radio-circle {
  width: 18px;
  height: 18px;
  border: 2px solid #6C757D;
  border-radius: 50%;
  position: relative;
}

.option.active .radio-circle {
  border-color: #198754;
}

.option.active .radio-circle::after {
  content: "✔";
  font-size: 11px;
  color: #198754;
  position: absolute;
  top: 0px;
  left: 2px;
}

.right-img {
  height: 100%;
  min-height: 500px;
  background: url("../images/Eglibility-right-img.png") no-repeat center;
  background-size: cover;
  border-radius: 20px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .form-control {
  padding-right: 45px;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 18px;
}

.employment-toggle .option {
  cursor: default;
}

.btn-check:disabled+.option {
  pointer-events: none;
  opacity: 1;
  /* normal look rahega */
}

.salary-calendar-icon {
  cursor: pointer;
  z-index: 2;
}

.col-xl-3 .right-img,
.col-xl-3 .next-step-card {
  margin-top: -55px;
}

/* check eligibility end  */

/* aadhaar eky journey page start  */
.ekyc-otp {
  width: 60px;
  height: 60px;
  text-align: center;
  font-size: 20px;
  border: 2px solid #D3D3D3;
  border-radius: 10px;
}

.ekyc-otp:focus {
  border-color: #198754;
  box-shadow: none;
  outline: none;
}

.ekyc-aadhaar-img {
  max-width: 180px;
}

.ekyc-digi {
  max-width: 140px;
}

.ekyc-icon-box {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background: #E6F4EE;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ekyc-icon-box img {
  width: 55px;
}

.right-img-wrapper {
  width: 100%;
}

.ekyc-center-card {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ekyc-center-card1 {
  top: 28% !important;
}

.ekyc-center-card img {
  width: 40px !important;
}

/* aadhaar eky journey page end  */

/* Selfie verification journey page start  */
.selfie-box {
  height: 260px;
  border: 2px dashed #198754;
  border-radius: 20px;
  background: #f7fbfa;
  padding: 0px 100px;
  max-width: 500px;
  margin: 0 auto;
}

.camera-circle {
  width: 160px;
  height: 160px;
  border: 2px dashed #198754;
  border-radius: 50%;
}

.camera-circle img {
  width: 35px;
}

.alert-box {
  background: #E9F7F2;
  padding: 15px;
  border-radius: 12px;
  font-size: 14px;
}

.note-text-color {
  color: #064E3B;
}

/* Selfie verification journey page end  */

/* selfie click journey page start  */
.selfie-preview {
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.selfie-preview img {
  width: 100%;
  border-radius: 20px;
}

.face-overlay {
  position: absolute;
  inset: 0;
  border: 2px dashed #198754;
  border-radius: 20px;
}

.face-overlay::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px dashed #198754;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.face-box {
  width: 320px;
  height: 220px;
  border: 2px dashed #198754;
  border-radius: 20px;
  overflow: hidden;
}

.face-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
}

.corner.tl {
  top: 27px;
  left: 92px;
  border-right: none;
  border-bottom: none;
}

.corner.tr {
  top: 27px;
  right: 92px;
  border-left: none;
  border-bottom: none;
}

.corner.bl {
  bottom: 64px;
  left: 92px;
  border-right: none;
  border-top: none;
}

.corner.br {
  bottom: 64px;
  right: 92px;
  border-left: none;
  border-top: none;
}

.btn-use {
  border: 2px solid #198754;
  color: #198754;
  background: transparent;
  padding: 10px 30px;
}

.btn-use:hover {
  background: #198754;
  color: #fff;
  border: none;
}

/* selfie click journey page end  */

/* congratulation eligible journey page start  */
.congrats-card {
  background: #fff;
  border-radius: 30px;
}

.congrats-inner {
  background: #F3FBFF;
  border-radius: 20px;
  padding: 0px 30px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.congrats-inner {
  position: relative;
}

.congrats-right {
  position: absolute;
  top: 33px;
  right: 296px;
}

.girl-img {
  max-width: 280px;
}

.logo-img1 {
  max-width: 200px;
}

.plane-wrapper {
  position: relative;
}

.plane-img1 {
  max-width: 220px;
}

.plane-path {
  position: absolute;
  right: -183px;
  bottom: -82px;
  width: 110%;
  opacity: 0.8;
}

.btn-continue {
  background: linear-gradient(90deg, #198754, #0b3d2e);
  color: #fff;
  border: none !important;
  padding: 12px 35px;
  border-radius: 12px;
  font-weight: 500;
}

.btn-continue:hover {
  background: #146c43;
}

/* congratulation eligible journey page   */

/* loan offer journey page star  */
.loan-card1 {
  max-width: 850px;
  margin: 0 auto;
}

.loan-dropdown {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 10px;
}

.loan-dropdown img {
  width: 18px;
}

.loan-box {
  background: #eef5f4;
  padding: 20px;
  border-radius: 20px;
  border: 2px solid #E6F4F0;
  transition: 0.3s;
}

.loan-box:hover {
  transform: translateY(-3px);
}

.tag {
  background: #dff3ec;
  color: #198754;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
}

.loan-offer-section .range-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 10px;
  outline: none;
}

.loan-offer-section .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #198754;
  cursor: pointer;
}

.amount-value {
  font-weight: 700;
  color: #144835;
}

.info-tag {
  background: #f3f9f7;
  padding: 10px 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.summary-box {
  background-color: rgba(206, 255, 239, 0.5);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 10px;
}

.summary-box h3 {
  color: #144835;
  font-weight: 700;
}

.btn-accept {
  border: 2px solid #144835;
  padding: 10px 25px;
  color: #144835;
  background: #f5fffb;
}

.btn-accept:hover {
  background: #144835;
  color: #fff;
}

.btn-enhance {
  background: #144835;
  padding: 10px 25px;
}

.btn-enhance:hover {
  background: #198754;
}

.btn-decline {
  border: 1px solid #aaa;
  padding: 10px 25px;
  color: #333;
}

.btn-decline:hover {
  border-color: #144835;
  color: #144835;
}

.loan-offer-section .custom-select:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* fetch bank statement journey page start  */
.bank-card {
  max-width: 900px;
  margin: 0 auto;
}

.bank-option {
  height: 100%;
  border: 2px solid #ddd;
  border-radius: 16px;
  padding: 18px;
  position: relative;
  cursor: pointer;
  background: #fff;
  transition: 0.3s;
}

.bank-option.active {
  border-color: #198754;
  background: #EEF4FF;
}

.bank-option input {
  accent-color: #198754;
}

.recommended {
  position: absolute;
  top: -28px;
  left: 42px;
  background: #34C759;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
}

.secure-box {
  background: #E4FFF5;
  padding: 18px;
  border-radius: 16px;
}

.step-card {
  background: #E4FFF5;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.step-card span {
  min-width: 32px;
  width: 32px;
  height: 32px;
  background: #144835;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card.active {
  border: 2px solid #144835;
}

.bank-option h6 {
  font-weight: 600;
}

.bank-option p {
  line-height: 1.4;
}

.secure-heading {
  font-weight: 600;
  color: #144835;
}

.secure-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.secure-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #144835;
}

.secure-list img {
  width: 18px;
  margin-top: 2px;
}

/* fetch bank statement journey page end  */
/* upload pdf journey page start  */
.upload-box {
  border: 1px solid #198754;
  border-radius: 16px;
  padding: 40px 20px;
  cursor: pointer;
  background: #f6fffb;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: 0.3s;
}

.upload-box:hover {
  background: #eafff5;
}

.bank-option h6 {
  color: #144835;
}

.secure-box1 {
  background: #D6DBDA4D !important;
  border: 1px solid #D1EAE2;
}

.file-preview {
  border: 2px solid #198754;
  border-radius: 16px;
  padding: 15px;
}

.file-card {
  border: 1px solid #D9D9D9;
  padding: 12px;
}

.upload-success {
  background: #E6F9F0;
  font-size: 12px;
  border-radius: 10px;
  margin-left: 10px;
}

.file-actions img {
  width: 20px;
  cursor: pointer;
  margin-left: 10px;
}

.password-box {
  border: 1px solid #D9D9D9;
  padding: 10px;
}

.password-box input {
  border: none;
  outline: none;
  flex: 1;
  min-width: 150px;
}

.protected-tag {
  background: #E6F9F0;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 10px;
}

input[type="checkbox"] {
  accent-color: #198754;
}

#fileName {
  word-break: break-word;
}

/* upload pdf journey page end  */

/* analyzing bank statement journey page start  */
.analysis-card {
  max-width: 700px;
}

.timer-box {
  border: 2px solid #ABFFE0;
  border-radius: 14px;
  padding: 10px 30px;
  font-size: 28px;
  font-weight: 700;
  color: #198754;
  display: inline-block;
}

/* analyzing bank statement journey page end  */

/* analyzing statement rejected journey page start  */
.analysis-card {
  max-width: 700px;
}

.recommended-tag {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  background: #06B039;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
}

/* analyzing statement rejected journey page end  */
/* verify residence journey page start  */
.vr-upload-box {
  border: 1px solid #198754;
  border-radius: 16px;
  padding: 50px 20px;
  background: #f6fffb;
  cursor: pointer;
  transition: 0.3s;
}

.vr-upload-box:hover {
  background: #F9FEFC;
}

.file-card {
  border: 2px solid #198754;
  padding: 14px;
  background: #fff;
}

.upload-badge {
  background: #E6F9F0;
  color: #198754;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 8px;
  margin-left: 8px;
}

.vr-password-box {
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;

}

.vr-password-box .input-group-text {
  display: flex;
  align-items: center;
  height: 45px;
}

.vr-password-box input {
  height: 45px;
  width: 70% !important;
}

.form-check-input:focus {
  box-shadow: none !important;
  border-color: #198754 !important;
}

.form-check-input:checked {
  background-color: #198754 !important;
  border-color: #198754 !important;
}

.form-check-input:active {
  filter: none;
}

.vr-protected-tag {
  background: #E6F9F0;
  color: #198754;
  font-size: 11px;
  border-radius: 8px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
}

.req-box {
  background: #D6DBDA4D;
  border: 1px solid #D1EAE2;
}

.primary-color {
  color: #144835;
}

/* verify residence journey page end  */

/* add refrence journey page start  */
.ar-input {
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.ar-input .form-control,
.ar-input .form-select {
  padding: 12px;
}

.ar-right-box {
  background: #eef7f3;
}

.ar-input .form-control:focus,
.ar-input .form-select:focus {
  box-shadow: none;
  outline: none;
}

.ar-green-card {
  background: #eef7f3;
}

.ar-inner-card {
  background: #FFF9E5;
  height: 140px;
}

.ar-top-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
}

.bg-custom-gold {
  background-color: #F0B90B;
}

/* add refrence journey page end  */

/* base details journey page start  */
.bd-input {
  border: 1px solid #D9D9D9;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.bd-icon-box {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  padding: 12px;
  border-radius: 12px;
}

.bd-input input:focus,
.bd-input select:focus {
  outline: none;
  box-shadow: none;
}

.bd-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(2px);
  z-index: 1040;
}

.bd-modal {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1050;
  width: 100%;
  padding: 15px;
}

.bd-modal-card {
  max-width: 380px;
  margin: auto;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.bd-close {
  cursor: pointer;
  font-size: 20px;
}

.bd-modal-icon {
  width: 50px;
  height: 50px;
  border: 4px solid #198754;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-weight: bold;
  font-size: 20px;
  color: #198754;
}

.bd-details span {
  color: #6c757d;
  font-size: 14px;
}

/* base details journey page end  */
/* thank you journey page start  */
.ref-card {
  background: #EAF3FF;
  border-radius: 12px;
  padding: 14px 18px;
  width: fit-content;
  text-align: center;
}

.ref-card span {
  font-size: 16px;
  letter-spacing: 1px;
}

#copyBtn:hover {
  transform: scale(1.1);
  transition: 0.2s;
}

/* step application journey page start  */
.status-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 20px;
}

.status-steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 4px;
  background: #E0E0E0;
  z-index: 0;
}

.step1 {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
}

.circle2 {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step1.completed .circle2 {
  background: #3CCC0C;
  color: #fff;
  box-shadow: 0px -3px 4px rgba(60, 204, 12, 0.25);
}

.step1.completed::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  width: 100%;
  height: 4px;
  background: #3CCC0C;
  z-index: -1;
}

.step1.completed:last-of-type::after {
  display: none;
}

.step1.active .circle2 {
  background: #FFC107;
  border: 4px solid #fff;
  position: relative;
}

.step1.active .circle2::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
}

.step1:not(.completed):not(.active) .circle {
  background: #F1F3F5;
  border: 4px solid #fff;
}

.step1.no-dot .circle2::after {
  display: none;
}

.step1 p {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
}

.badge-progress {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 10px;
  background: #dbeafe;
  color: #1e3a8a;
  border-radius: 20px;
  font-size: 12px;
}


/* ================================Journey Css ============================================ */

.journey-wrapper .container,
.journey-wrapper .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.journey-wrapper {
  margin-top: 20px;
  min-height: 20vh;
}

/* Background */
.progress-hero {
  min-height: 84vh;
  background: var(--new-g1, linear-gradient(102deg, var(--Black, rgba(31, 31, 31, 0.55)) 26.72%, rgba(186, 166, 80, 0.55) 46.98%, rgba(31, 31, 31, 0.55) 74.62%), linear-gradient(172deg, #224035 -10.65%, #038056 44.36%, #A38D31 104.46%));
  background-repeat: no-repeat;
  background-size: cover;
}

/* Progress animation */
.progress-bar-path {
  stroke-dasharray: 314;
  stroke-dashoffset: 282; /* 10% progress */
  transition: stroke-dashoffset 0.6s ease;
}

.right-panel {
  background: #eef5ff;
  min-height: 89vh;
}

.progress {
  height: 20px;
  border-radius: 10px;
  border-radius: 30px;
  background: #eef4ff;
   transform: rotate(0deg) !important;
}

.progress-bar {
  border-radius: 30px;
  background: linear-gradient(90deg, #f7941d 0%, #febb6b 100%);
}

.help-box {
  background: linear-gradient(90deg, #f7941d 0%, #f98a05 100%);
  color: #fff;
  border-radius: 12px;
}

.textSecondary {
  color: var(--secondary-color);
}
/* top icon */
.loan-icons-circle {
  width: 60px;
  height: 60px;
  border: 4px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.darkGray {
  color: #404040;
}

.w-200 {
  width: 200px;
}

.play-circle {
  font-size: 35px;
}

.bi::before {
  vertical-align: middle;
}

.orange-bg {
  background-color: #f2f2f2;
}

.steps .bi::before {
  font-weight: 600 !important;
}

.fw-600 {
  font-weight: 600;
}

.success-bg {
  background-color: #e6f8ef;
}

.success-bg .card-title,
.success-bg .steps-status {
  color: #287f57 !important;
}

.active-bg {
  background-color: var(--primary-color);
  color: #fff !important;
}

.active-bg .card-title,
.active-bg small,
.active-bg .steps-status {
  color: #ffffff !important;
}

.step-resume {
  border: 1px solid #fff;
  border-radius: 10px;
}

.custom-form .input-group {
  border: 1px solid #6c757d;
  border-radius: 12px;
}

.custom-form .input-group .form-control,
.custom-form .input-group .form-select,
.custom-form .input-group .input-group-text {
  border: none;
  border-radius: 12px;
}

.progress {
  background: #e4e4e4;
}

.progress-bar {
  background: linear-gradient(87deg, #22c55e -4.5%, #6baf6c 110.25%);
}

.custom-form .input-group .form-select:focus {
  box-shadow: none;
}

.custom-form .input-group:focus-within {
  border-color: var(--primary-color);
}

.employment-wrapper .btn-check:checked + .btn {
  background-color: #ffffff;
  border-radius: 12px;
  color: var(--secondary-color);
  border: none;
}

.employment-wrapper .btn-group > .btn {
  padding: 10px 0px;
  border: none;
  color: #6c757d;
  border-radius: 12px;
}

.employment-wrapper .btn-outline-primary:hover {
  background: none !important;
  color: inherit;
  border-color: var(--secondary-color);
  border-radius: 12px;
}

.employment-wrapper .btn-outline-primary:focus {
  box-shadow: none;
}

.employment-wrapper .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-radius: 12px;
}

.employment-wrapper .btn-check:focus + .btn-outline-primary {
  box-shadow: none;
}

.employment-wrapper .btn-check:checked + .btn {
  background-color: #ffffff !important;
  color: #000000 !important;
}

/* Radio icon toggle for checked state */
.employment-wrapper .btn-check:checked + .btn .radio-icon-unchecked {
  display: none !important;
}

.employment-wrapper .btn-check:checked + .btn .radio-icon-checked {
  display: inline-block !important;
  color: var(--primary-color) !important;
}

.employment-wrapper .btn-check + .btn .radio-icon-unchecked {
  color: #6c757d;
}

.textPrimary {
  color: var(--primary-color);
}

.wh-70 {
  width: 70px;
  height: 70px;
}

.status-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../front/images/journey-images/Thankyou-bg.png) !important;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 82px;
  min-height: 88vh;
}

.thank-you-wrapper {
  background-image: url(../front/images/journey-images/Thank-you-bg.png) !important;
}

.rejected {
  background-image: url("../front/images/journey-images/rejected-bg.png") !important;
}

.success-img {
  width: 300px;
}

.selfie-box {
  width: 300px;
  height: 300px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--primary-color);
  margin: 0 auto;
}

.click-selfie {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.btn-outline-secondary,
.btn-outline-primary {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
  padding: 10px 14px;
  border-radius: 12px;
}

.btn-outline-secondary {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background: #eef4ff;
}

.btn-outline-primary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.timeout-bg {
  background-image: url("../front/images/journey-images/timeout-bg.png") !important;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.customCheck-radio .btn-check:checked + .btn-outline-primary {
  background-color: var(--light-blue) !important;
  border-color: var(--primary-color) !important;
}

.customCheck-radio .btn-outline-primary {
  border: 2px solid #cecece;
  border-radius: 12px !important;
}

.customCheck-radio .btn-outline-primary:hover {
  background-color: none !important;
}

.customCheck-radio .btn-outline-primary:active {
  /* color: #fff; */
  background: none !important;
}

.customCheck-radio .btn-outline-primary:hover {
  transition: all 0.1s ease-in-out;
  background: none !important;
}

.customCheck-radio .btn-check:focus + .btn-outline-primary,
.customCheck-radio .btn-outline-primary:focus {
  box-shadow: none;
}

.customCheck-radio .btn-check {
  clip: inherit;
  z-index: 2;
  right: 20px;
  top: 26px;
}

.equal-height-btn {
  height: 100%;
  width: 100%;
  min-height: 150px;
  justify-content: flex-start;
}

.customCheck-radio .btn-group {
  display: flex !important;
}

.customCheck-radio {
  display: flex;
}

.bg-light-gray {
  background-color: #eff6ff;
}

.counting-box {
  width: 40px;
  height: 40px;
}

/* upload css */
.upload-container {
  margin: 0px auto;
}

.upload-container {
  border: 2px dashed var(--primary-color);
  border-radius: 10px;
  padding: 20px 0px;
  text-align: center;
  width: 100%;
  background-color: #eff6ff;
}

/* Upload box */

.cursor-pointer {
  cursor: pointer;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #c7d2f4;
  border-radius: 50%;
  /* margin: 0 auto 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-text {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
}

/* File preview */
.file-preview {
  display: none;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px;
  margin: 0px 0px 35px 0px;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-info img {
  width: 32px;
}

.file-name {
  font-weight: 600;
  margin: 0;
  color: #07085e;
  text-align: left;
}

.file-size {
  font-size: 12px;
  color: #07085e;
  margin: 0;
  text-align: left;
}

.remove-btn {
  border: none;
  /* background: #f0f0f0; */
  /* border-radius: 50%; */
  /* width: 26px;
  height: 26px; */
  cursor: pointer;

  display: flex;
  align-items: center;
  gap: 10px;
  line-height: normal;
  background: none;
}

.custom-check .form-check-label {
  font-size: 12px;
  color: #07085e;
  font-weight: 400;
}

.img-none {
  background: none !important;
}

.timer {
  width: 220px;
  height: 220px;
  background-image: url("../front/images/journey-images/Progress-circle.svg");
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.custom-shadow {
  box-shadow:
    0 5px 5px 0 #d1eaff,
    0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.orange-primary {
  background-color: #fffaf4 !important;
}

.badge-top {
  font-size: 0.75rem;
  white-space: nowrap;
  max-width: 90%;
}

.custom-form-select .form-select:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.inputbg {
  background-color: #fcfcfc;
}

.confirm-close {
  position: absolute;
  top: 24px;
  right: 30px;
}

.esign-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 20px 50px;
}

.esign-step-box {
  width: 90px;
  height: 90px;
  border: 2px solid var(--secondary-color);
  border-radius: 14px;
  background-color: var(--light-blue) !important;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
}

.esign-step-box i {
  font-size: 34px;
}

.esign-step-number {
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  font-size: 14px;
}

.esign-wrapper .step-title {
  font-size: 15px;
  line-height: 1.3;
}

.esign-step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  left: calc(50% + 0px);
  width: 100%;
  height: 2px;
  background: #cfd6df;
  z-index: 1;
}

.status-wrapper-application {
  background: #fff;
  border-radius: 18px;
  /* padding: 50px 20px 60px; */
}

.status-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--secondary-color);
}

/* ===== Progress Stepper ===== */

.progress-steps {
  position: relative;
  margin-top: 40px;
}

.progress-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  height: 4px;
  background: #cfd6df;
  z-index: 1;
}

.progress-line-active {
  position: absolute;
  top: 22px;
  left: 0;
  height: 4px;
  background: #39b60a;
  z-index: 2;
  width: 66%;
  /* change based on step */
}

.step-col {
  position: relative;
  z-index: 3;
  text-align: center;
}

.step-circless {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 10px;
  font-size: 27px;
  font-weight: 600;
  border: 3px solid #d0d7e2;
  background: #6c7a92;
  color: #fff;
}

.step-complete {
  background: #3ccc0c;
  border-color: #3ccc0c;
  fill: #3ccc0c;
  filter: drop-shadow(0 4px 4px rgba(60, 204, 12, 0.25));
}

.step-active {
  border-color: #e6ebf2;
  box-shadow: 0 0 0 3px #e6ebf2 inset;
}

.step-label {
  font-size: 14px;
}

.step-label.done {
  color: #39b60a;
}

.badge-progress {
  background: #eef4ff;
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 13px;
  display: inline-block;
  margin-top: 8px;
}

.rounded_30 {
  border-radius: 30px;
}

.rounded_8 {
  border-radius: 8px;
}

.rounded_12 {
  border-radius: 12px;
}


.summary-card {
  background: #f5f8fb;
  padding: 28px 10px;
}

.summary-label {
  letter-spacing: 0.5px;
}

.text-success {
  color: #10b059 !important;
}

.loan-secure-box {
  border-radius: 13px;
border: 1px solid #EBEBEB;
background: #FCFCFC;
}

/* Step card */
.loan-step {
  background: #f5f6fa;
  border: 1px solid transparent;
  transition: 0.2s;
}
.loan-step:hover {
  background: #fff;
  border: 1px solid var(--primary-color);
  transition: 0.2s;
}

/* Active step (blue border like image) */
.active-step {
  border: 2px solid #00a86b !important;
  background: #ffffff;
}

/* Circle number */
.bank-step-circle {
  width: 36px;
  height: 36px;
  background: #00a86b;
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.loan-card-wrap {
  padding-top: 20px; /* space for badge */
}

.loan-recommended-badge {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: #28c76f;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
}

/* Upload box */
.loan-upload-box {
  border: 2px solid #00a86b;
  border-radius: 20px;
  padding: 31px 20px;
  background: #f4f7ff;
  cursor: pointer;
  display: block;
  transition: 0.2s;
}

.loan-upload-box:hover {
  background: #eef2ff;
}

/* File preview */
.loan-file-preview {
  border: 2px solid #28a745;
  background: #f6fff9;
}

/* Cursor */
.cursor-pointer {
  cursor: pointer;
}

/* Wrapper */
.loan-password-box {
  border: 1px solid #cde7d8;
  border-radius: 12px;
  overflow: hidden;
  background: #f7faf8;
}

/* Input */
.loan-password-box input {
  background: transparent;
  box-shadow: none;
}

.accept-offer {
  background: #e6f0ec!important;
  color: var(--primary-color) !important;
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  padding: 14px 18px;
  font-size: 14px;
  border: 1px solid var(--primary-color);
  border-radius: 12px ;
}

.accept-offer:hover {
  background: #e7f6f0 !important;
  color: var(--primary-color) !important;
}

.decline-offer {
  color: #8F8F8F !important;
  background-color: #f9fafb !important;
  border-color: #adadad !important;
  transition: all 0.4s ease-in-out;
  font-weight: 500;
  padding: 14px 18px;
  font-size: 14px;
}

.decline-offer:hover {
  color: #000 !important;
  background-color: #eaeaea !important;
  border-color: #adadad !important;
}

/* Upload box */
.residence-upload {
  padding: 60px 20px;
  cursor: pointer;
  display: block;
  transition: 0.2s;
  border-radius: 15px;
  border: 2px dashed #A7A7A7;
  background: #F4F4F4;
}

.residence-upload:hover {
  background: rgb(240, 241, 242);
}

.loan-footer {
  background: #ffffff;
  border-top: 1px solid #eee;
  font-size: 13px;
}


.active-step{
  background-color: #00a86b;
  opacity: 1 !important;
}
.active-step h6,.active-step small {
  color: #ffffff !important;
  
}


.step-done{
      background-color: #e6f8ef;
      opacity: 1!important;
      border-color: #198754 !important;
}

.step-done h6{
    color: #287f57 !important;
}

/* Range Slider */
input[type="range"] {
  border-radius: 3px;
  background: #ffffff;
  accent-color: var(--primary-color);
  border: 0px;
}

input[type="range"]::-moz-range-thumb {
  /* width: 22px;
  height: 22px; */
  border-radius: 50%;
  background: var(--secondary-color);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
  transition: all 0.2s ease;
}

input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.slider-icon {
  position: absolute;
  right: 0;
  top: -32px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff3e0;
  border-radius: 8px;
  color: var(--secondary-color);
}

.slider-value {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.slider-value-suffix {
  font-size: 1rem;
  color: #6b7280;
}

.slider-range {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #9ca3af;
  margin-top: 10px;
}

.breakdown-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.breakdown-dot.primary {
  background: #1f2937;
}

.breakdown-dot.interest {
  background: var(--secondary-color);
}

.breakdown-value {
  font-size: 1.25rem;
  color: var(--primary-color);
}

.loan-sliders,
.loan-breakdown,
.loan-summary {
  animation: slideIn 0.5s ease-out forwards;
}

.loan-breakdown {
  animation-delay: 0.1s;
  border-radius: 40px;
}

.loan-summary {
  animation-delay: 0.2s;
}
.loan-amount {
  /* border-radius: 42px; */
/* border: 1px solid #CECECE; */
background: #F3F4F5;
}

.loan-breakdown-exam {
  border-radius: 20px;
background: #F3F4F5;
}

.loan-summary {
  background: var(--primary-color);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* Amount */
.summary-amount {
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -1px;
}

/* ================================Journey Css end ============================================ */
