.process-section {
	display: flex;
	gap: 60px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 80px;
}

.process-step {
	position: relative;
	color: white;
	width: 320px;
	padding: 40px 40px 40px 30px;
	transition: transform .25s ease, box-shadow .25s ease;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	overflow: visible;
}

.process-step::after {
	content: "";
	position: absolute;
	top: 0;
	right: -50px;
	width: 50px;
	height: 100%;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.process-step.step1 {
	background: #2a4564 !important;
}

.process-step.step2 {
	background: #355575 !important;
}

.process-step.step3 {
	background: #406686 !important;
}

.step1::after {
	background: #2a4564;
}

.step2::after {
	background: #355575;
}

.step3::after {
	display: none;
}

.process-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Number Circle */
.step-number {
	position: absolute;
	top: -15px;
	left: 30px;
	width: 40px;
	height: 40px;
	background: #dfc768;
	color: #2a4564;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Typography */
.process-step h3 {
	margin-top: 10px;
	font-size: 20px;
}

.process-step {
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.process-step {
	overflow: visible;
}

.process-step {
	position: relative;
	width: 320px;
	transition: transform .25s ease, box-shadow .25s ease;
}

.process-step:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
.yw {
    background-color: #f2db81;
    color: #2a4564;
    border: 1px solid #ffffff;
    padding: none /* Adjust padding as needed */
    cursor: pointer;
    text-align: center;
    font-size: 16px; /* Adjust font size as needed */
    text-decoration: none; /* Remove underline if it's a link */
    display: inline-block; /* Ensure proper spacing */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.yw:hover {
    background-color: #ffffff;
    color: #2a4564;
    border: 1px solid #f2db81;
}
.yb {
    background-color: #f2db81;
    color: #2a4564;
    border: 1px solid #ffffff;
    padding: none /* Adjust padding as needed */
    cursor: pointer;
    text-align: center;
    font-size: 16px; /* Adjust font size as needed */
    text-decoration: none; /* Remove underline if it's a link */
    display: inline-block; /* Ensure proper spacing */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.yb:hover {
    background-color: #2a4564;
    color: #ffffff;
    border: 1px solid #f2db81;
}
.loan-card {
  position: relative;
}

.loan-desc {
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #2a4564;
  color: white;
  padding: 10px 15px;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
}

.loan-card:hover .loan-desc {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}