.process-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 2.5rem;
	right: -3rem;
	width: 6rem;
	height: 2px;
	background-color: #e5e7eb;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
}

.accordion-item.active .accordion-content {
	max-height: 500px;
}

.accordion-item.active .accordion-icon {
	transform: rotate(180deg);
}

.pricing-toggle input:checked+.toggle-slider {
	background-color: #3b82f6;
}

.pricing-toggle input:checked+.toggle-slider:before {
	transform: translateX(22px);
}

.custom-checkbox {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #d1d5db;
	border-radius: 4px;
	background-color: white;
	position: relative;
	cursor: pointer;
	transition: all 0.2s;
}

.custom-checkbox:checked {
	background-color: #3b82f6;
	border-color: #3b82f6;
}

.custom-checkbox:checked::after {
	content: '';
	position: absolute;
	left: 6px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

.custom-radio {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #d1d5db;
	border-radius: 50%;
	background-color: white;
	position: relative;
	cursor: pointer;
	transition: all 0.2s;
}

.custom-radio:checked {
	border-color: #3b82f6;
}

.custom-radio:checked::after {
	content: '';
	position: absolute;
	left: 3px;
	top: 3px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #3b82f6;
}

.portfolio-filter-btn.active {
	background-color: #3b82f6;
	color: white;
}

.portfolio-item {
	transition: all 0.3s ease;
}

.portfolio-item.hidden {
	display: none;
}