/* Loan amount slider */
.range__slider {
	width: 100%;
	margin-bottom: 10px;
}

.range__value {
	width: auto;
	font-size: 1rem;
}

.range__value span {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
}

.range__emi {
	width: auto;
	font-size: 0.8rem;
}

.range__emi span {
	font-size: 0.8rem;
	font-weight: 700;
	color: #f8f9fa;
}

.range__slider [type="range"] {
	width: 100%;
	-webkit-appearance: none;
	height: 11px;
	border-radius: 6px;
	background: #f1f1f1;
	outline: none;
	padding: 0;
	margin: 0;
}

/* custom thumb */
.range__slider [type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #f0f8ff;
	border: #f58220 1px solid;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}

.range__slider [type="range"]::-webkit-slider-thumb:hover {
	background: #f58220;
}

.range__slider [type="range"]::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border: 0;
	border-radius: 50%;
	background: #104e69;
	border: #104e69 10px solid;
	cursor: pointer;
	-webkit-transition: background 0.15s ease-in-out;
	transition: background 0.15s ease-in-out;
}

/* Loan amount slider */

.size-details ul li {
	/* background: #d4aeff5a; */
	padding: 10px;
	border-radius: 1px;
	margin-left: 5px;
	display: inline-block;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #131731;
}

.process li.active-size {
	background-color: #e81026;
	border: 1px solid #e81026;
	color: #fff;
	border-radius: 4px !important;
}

.process li {
	background: #fff;
	color: #fff;
	border: 1px solid #e81026;
	border-radius: 4px !important;
}

/* process step radio button css start */
:root {
	--card-line-height: 1.2em;
	--card-padding: 1em;
	--card-radius: 0.5em;
	--color-skyblue: #04a377;
	--color-gray: #e2ebf6;
	--color-dark-gray: #c4d1e1;
	--radio-border-width: 1px;
	--radio-size: 1.2em;
}

.grid {
	display: grid;
	grid-gap: var(--card-padding);
	margin: 0 auto;
	max-width: 60em;
	padding: 0;
}

@media (min-width: 42em) {
	.grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.card {
	border-radius: var(--card-radius);
	position: relative;
}

/* .card:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.15);
} */

.radio {
	font-size: inherit;
	margin: 0;
	position: absolute;
	right: calc(var(--card-padding) + var(--radio-border-width));
	top: calc(var(--card-padding) + var(--radio-border-width));
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	.radio {
		-webkit-appearance: none;
		-moz-appearance: none;
		background: #fff;
		border: var(--radio-border-width) solid var(--color-gray);
		border-radius: 50%;
		cursor: pointer;
		height: var(--radio-size);
		outline: none;
		transition:
			background 0.2s ease-out,
			border-color 0.2s ease-out;
		width: var(--radio-size);
	}

	.radio::after {
		border: var(--radio-border-width) solid #fff;
		border-top: 0;
		border-left: 0;
		content: "";
		display: block;
		height: 0.75rem;
		left: 25%;
		position: absolute;
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
		width: 0.375rem;
	}

	.radio:checked {
		background: var(--color-skyblue);
		border-color: var(--color-skyblue);
	}

	.card:hover .radio {
		border-color: var(--color-dark-gray);
	}

	.card:hover .radio:checked {
		border-color: var(--color-skyblue);
	}
}

.plan-details {
	border: var(--radio-border-width) solid var(--color-gray);
	border-radius: var(--card-radius);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	padding: var(--card-padding);
	transition: border-color 0.2s ease-out;
}

.card:hover .plan-details {
	border-color: var(--color-dark-gray);
}

.radio:checked ~ .plan-details {
	border-color: var(--color-skyblue);
}

.radio:focus ~ .plan-details {
	box-shadow: 0 0 0 2px var(--color-dark-gray);
}

.radio:disabled ~ .plan-details {
	color: var(--color-dark-gray);
	cursor: default;
}

.radio:disabled ~ .plan-details .plan-type {
	color: var(--color-dark-gray);
}

.card:hover .radio:disabled ~ .plan-details {
	border-color: var(--color-gray);
	box-shadow: none;
}

.card:hover .radio:disabled {
	border-color: var(--color-gray);
}

.plan-type {
	color: var(--color-skyblue);
	font-size: 20px;
	font-weight: bold;
	line-height: 1em;
}

.plan-cost {
	font-size: 2.5rem;
	font-weight: bold;
	padding: 0.5rem 0;
}

.slash {
	font-weight: normal;
}

.plan-cycle {
	font-size: 2rem;
	font-variant: none;
	border-bottom: none;
	cursor: inherit;
	text-decoration: none;
}

.hidden-visually {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

/* Additional styles for selected radio button */
.radio:checked + .plan-details {
	border-color: var(--color-skyblue);
	background-color: #effdfc;
	/* Light blue background for selected option */
}

.radio:checked + .plan-details .plan-type {
	color: var(--color-skyblue);
}

.radio:checked + .plan-details .plan-cost {
	color: var(--color-skyblue);
}

/* process step radio button css end */

.elliptical-image-1 {
	border-radius: 50% / 25%;
	border: 5px solid #244864;
}

.elliptical-image-2 {
	object-fit: cover;
	border-radius: 5%;
}

.elliptical-image-3 {
	object-fit: cover;
	border-radius: 5%;
}

.elliptical-image-4 {
	object-fit: cover;
	border: 5px solid #003a2a;
	border-radius: 150px 0px 0px 0px;
	padding: 68px 0px 0px 0px;
}

.elliptical-image-5 {
	object-fit: cover;
	border: 5px solid #003a2a;
	border-radius: 150px 0px 0px 0px;
	padding: 11px 0px 0px 0px;
}

.text-dark {
	color: #000;
}

.benefits-section .benefit-box .services-icon {
	border-radius: 99px;
	border: 4px solid #003a2a;
	padding: 10px;
	width: 62px;
}

.bg-content {
	background-color: #f7f9fb;
}

.service-section {
	max-width: 992px;
	margin: auto;
}

.bg-image {
	position: absolute;
	top: 0px;
	right: 0;
	z-index: 999;
}

.rs-services.services-style3 .services-item.service-item-wrapper {
	border: 1px solid #ebebeb;
	border-radius: 8px;
}

.rs-services.services-style3
	.services-item.service-item-wrapper
	.services-wrap {
	padding: 16px;
}

.rs-services.services-style3
	.services-item.service-item-wrapper
	.services-wrap
	.services-content
	.title {
	font-size: 20px;
	line-height: 30px;
}

.rs-services.services-style3 .services-item.service-item-wrapper:hover {
	background-color: #fbfbfb;
}

.rs-services.services-style3
	.services-item.service-item-wrapper:hover
	.services-content
	.title {
	color: #000;
}

.eligible-section .rs-addon-services .services-icon {
	min-width: 180px;
}

#tandc {
	accent-color: #003a2a !important;
}

.title-border {
	display: inline-block;
	border-bottom: 1px solid #f0f0f0;
}

@media screen and (min-width: 767px) {
	.bg-image .desktop-image {
		display: block;
	}
	.bg-image .mobile-image {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.bg-image .desktop-image {
		display: none;
	}
	.bg-image .mobile-image {
		display: block;
	}
}

.info-bar {
	max-width: 900px;
	margin: auto;
	background: linear-gradient(90deg, #17c3a5, #3a78ff);
	border-radius: 30px;
	padding: 12px 20px;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.info-item i {
	font-size: 16px;
}

@media (max-width: 600px) {
	.info-bar {
		gap: 10px;
		border-radius: 15px;
		font-size: 12px;
	}
}
.loan-wrapper {
	background: #fff;
	border: 2px solid #e71122;
	border-radius: 18px;
	padding: 25px 30px 30px;
	max-width: 1200px;
	margin: auto;
}

.loan-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.loan-title {
	font-size: 16px;
	font-weight: 600;
	color: #1f2937;
}

.loan-step {
	font-size: 13px;
	color: #6b7280;
}

/* Steps */
.steps {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 40px;
}

.step {
	text-align: center;
	position: relative;
	width: 100%;
}

.step-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-size: 16px;
}

.step.active .step-icon {
	background: #1fb6aa;
	color: #fff;
}

.step-label {
	font-size: 13px;
	color: #374151;
}

/* Connector lines */
.step::after {
	content: "";
	position: absolute;
	top: 18px;
	right: -51px;
	width: 70px;
	height: 3px;
	background: #e5e7eb;
}

.step:last-child::after {
	display: none;
}

.step.active::after {
	background: #e5e7eb;
	z-index: -1;
}

@media (max-width: 768px) {
	.steps {
		gap: 20px;
	}
	.step::after {
		width: 40px;
		right: -25px;
	}
}

.emi-card {
	width: 100%;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	padding: 12px;
}

.emi-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 8px;
	color: #000;
}

.emi-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #dfe9e6;
	border-radius: 10px;
	padding: 17px 33px;
	margin-bottom: 8px;
	cursor: pointer;
}

.emi-option input {
	display: none;
}

.emi-left {
	display: flex;
	align-items: center;
	gap: 0px;
	font-size: 16px;
	color: #000;
	font-weight: 700;
}

/* Custom radio */
.radio {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid #9ca3af;
	position: relative;
	background: #fff;
	top: -50%;
}

.emi-option input:checked + .radio {
	border-color: #0b5ed7;
}

.emi-option input:checked + .radio::after {
	content: "";
	width: 13px;
	height: 13px;
	background: #0b5ed7;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.emi-amount {
	font-weight: 600;
	font-size: 16px;
	color: #000;
}

.offer-wrapper {
	max-width: 420px;
	font-family: Arial, sans-serif;
	text-align: center;
	margin: 20px auto;
}

.offer-top {
	display: flex;
	justify-content: center;
	gap: 25px;
	font-size: 14px;
	color: #000;
	margin-bottom: 10px;
}

.offer-top i {
	margin-right: 6px;
	color: #000;
}

.offer-box {
	border: 2px dashed #f7941d;
	border-radius: 25px;
	padding: 8px 15px;
	font-size: 14px;
	color: #000;
	display: inline-block;
	background: #fff;
}
