    * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #000;
	font-family: 'Segoe UI', sans-serif;
	color: #fff;
	min-height: 100vh;
}

.logo-website {
	display: flex;
	justify-content: center;
	padding: 50px 0 30px;
	border-bottom: 1px solid #ffffff80;
}
input[type="checkbox"] {
    opacity: 0;
}
.main-multistep {
	display: flex;
	justify-content: center;
	padding: 20px;
}

.form-container {
	width: 100%;
	max-width: 720px;
	padding-top: 20px;
	background: #000;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 25px 90px rgba(0, 0, 0, 0.9);
}

.header {
	padding: 50px 40px 0;
	position: relative;
}

.back-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 30px;
	top: -5px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}

.back-btn.show {
	opacity: 1;
	pointer-events: all;
}

.back-btn:hover {
	background: rgba(255, 255, 255, 0.2);
}

.progress-container {
	margin: 20px 0 0;
	height: 6px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	overflow: hidden;
}

.progress {
	height: 100%;
	width: 20%;
	background: linear-gradient(90deg, #fff, #ddd);
	border-radius: 50px;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
	transition: width .9s cubic-bezier(.65, 0, .35, 1);
	position: relative;
	overflow: hidden;
}

.progress::after {
	content: '';
	position: absolute;
	top: 0;
	left: -150%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .7), transparent);
	animation: shimmer 2.8s infinite;
}

@keyframes shimmer {
	0% {
		left: -150%
	}

	100% {
		left: 150%
	}
}

.step {
	padding: 30px 40px 50px;
	display: none;
	animation: slideIn .7s forwards;
}

.step.active {
	display: block;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(30px)
	}

	to {
		opacity: 1;
		transform: none
	}
}

h2 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 12px;
}

p.subtitle {
	font-size: 18px;
	opacity: 0.8;
	margin-bottom: 50px;
}

.options {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.option {
	padding: 28px 32px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	cursor: pointer;
	transition: all .4s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.option:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-5px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.option-label {
	font-size: 20px;
	font-weight: 500;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	pointer-events: none;
	gap: 15px;
}

.custom-radio {
	width: 30px;
	height: 30px;
	border: 2px solid #666;
	border-radius: 50%;
	flex-shrink: 0;
	transition: all .3s;
	position: relative;
}

input.It-checkbox {
	width: 30px;
	height: 22px;
	margin-right: 10px;
}

.logo-website img {
	width: 170px;
}

.option input:checked+.option-label .custom-radio {
	border-color: #fff;
	background: transparent;
}

input.attach-files {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	width: 100%;
	margin: 15px 0px 30px;
	padding: 30px 20px;
}

label.attach-lable {
	padding-top: 45px;
}

.option input:checked+.option-label .custom-radio::after {
	content: '';
	width: 14px;
	height: 14px;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"] {
	width: 100%;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	color: #fff;
	font-size: 18px;
	font-family: inherit;
	margin: 15px 0 35px;
	transition: all 0.3s;
}

textarea {
	min-height: 120px;
	resize: vertical;
}

textarea:focus,
input:focus {
	outline: none;
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

label {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
	font-weight: 500;
}

.submit-btn,
.next-btn {
	margin-top: 40px;
	padding: 18px 40px;
	background: #fff;
	color: #000;
	font-size: 20px;
	font-weight: 600;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	width: 100%;
	transition: 0.3s;
}

.submit-btn:hover,
.next-btn:hover {
	background: #eee;
	transform: translateY(-3px);
}

/* Style for custom checkboxes in IT Services */
.custom-checkbox {
	width: 30px;
	height: 30px;
	border: 2px solid #666;
	border-radius: 8px;
	flex-shrink: 0;
	transition: all .3s;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: transparent;
}

.option input[type="checkbox"]:checked+.option-label .custom-checkbox {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

/* Supplier sections styling */
.supplier-section {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
}

.supplier-section h3 {
	font-size: 24px;
	margin-bottom: 25px;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding-bottom: 15px;
}

.supplier-fields {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.supplier-fields label {
	font-size: 16px;
	opacity: 0.9;
}

.supplier-fields input {
	margin: 8px 0 20px;
}

.add-supplier-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px dashed rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 15px;
	border-radius: 12px;
	cursor: pointer;
	text-align: center;
	margin: 10px 0 30px;
	transition: all 0.3s;
}

.add-supplier-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Delivery/Warranty section styling */
.delivery-info {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 30px;
	margin: 20px 0;
}

.delivery-info h3 {
	font-size: 24px;
	margin-bottom: 25px;
	color: #fff;
}

.delivery-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

.delivery-fields.full-width {
	grid-template-columns: 1fr;
}

/* Make the entire date input field easily clickable */
input[type="date"] {
	width: 100%;
	cursor: pointer;
	/* Ensure the calendar icon is visible */
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 16px;
	padding-right: 40px;
	/* Space for icon */
}


/* Focus state - when clicked/tapped */
input[type="date"]:focus {
	border-color: #007bff;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* For mobile/touch devices */
@media (max-width: 768px) {
	input[type="date"] {
		min-height: 48px;
		/* Larger touch target on mobile */
		font-size: 16px;
		/* Prevents iOS zoom */
	}
}

/* Make the calendar dropdown/picker more accessible */
input[type="date"]::-webkit-calendar-picker-indicator {
	/* Make the tiny calendar icon clickable area larger */
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 0;
	/* Hide the default icon but keep it functional */
}

/* Create a custom, larger calendar icon */
.date-input-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.date-input-wrapper::after {
	content: "📅";
	position: absolute;
	right: 15px;
	top: 50px;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 18px;
	color: #666;
}

.delivery-fields {}

@media (max-width: 767px) {
	.delivery-fields {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {

	.delivery-info,
	.supplier-section {
		padding: 30px 15px;
	}

	.submit-btn,
	.next-btn {
		font-size: 17px;
	}

	.header {
		padding: 32px 15px 0;
	}

	.step {
		padding: 50px 15px 80px;
	}

	.back-btn {
		left: 8px;
	}

	h2 {
		font-size: 25px;
	}

	.main-multistep {
		min-height: auto;
	}

	.form-container {
		padding-top: 15px;
	}

	.logo-website {
		padding: 10px 0 10px;
	}

	.logo-website img {
		width: 120px;
	}

	.supplier-fields {
		grid-template-columns: 1fr;
	}
}
