/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body, html {
	height: 100%;
	font-family: 'Montserrat', sans-serif;
	background: url('../images/bg2.jpg') no-repeat center center fixed;
	background-size: cover;
	color: #fff;
}

/* Container */
.wrap {
	width: clamp(90%, 600px, 700px);
	margin: 3rem auto;
	padding: 2rem;
	background-color: rgba(0, 0, 0, 0.65);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

/* Header */
h1.agile_head {
	font-size: clamp(1.6rem, 2.5vw, 2.3rem);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 1.5rem;
	color: #fff;
}

.wrap h3 {
	font-size: 1rem;
	color: #f8f9fa;
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

/* Section Titles */
.agile_form h2, .agile_form h4 {
	color: #00B050;
	font-size: 1rem;
	margin: 1.5rem 0 0.5rem;
}

/* Inputs */
.agile_form input[type="text"],
.agile_form input[type="email"],
.agile_form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid #ccc;
	border-radius: 5px;
	color: #fff;
	font-size: 1rem;
}

.agile_form textarea {
	height: 6rem;
	resize: vertical;
}

/* Radio List (Yes/No/Multiple Options) */
.agile_form ul {
	list-style: none;
	padding: 0;
}

	.agile_form ul li {
		position: relative;
		margin: 0.75rem 0;
		padding-left: 2.5rem;
		color: #f8f9fa;
		line-height: 1.5;
	}

		.agile_form ul li input[type="radio"] {
			position: absolute;
			left: 0;
			top: 0.25rem;
			appearance: none;
			width: 18px;
			height: 18px;
			border: 2px solid #ccc;
			border-radius: 50%;
			background: transparent;
			cursor: pointer;
		}

			.agile_form ul li input[type="radio"]:checked {
				border-color: #c90d92;
				box-shadow: 0 0 5px rgba(201, 13, 146, 0.5);
			}

			.agile_form ul li input[type="radio"]::before {
				content: '';
				display: block;
				width: 10px;
				height: 10px;
				margin: 3px auto;
				border-radius: 50%;
				background-color: transparent;
			}

			.agile_form ul li input[type="radio"]:checked::before {
				background-color: #c90d92;
			}

		.agile_form ul li label {
			font-size: 0.95rem;
			margin-left: 0.25rem;
			cursor: pointer;
		}

/* Rating Scale Radio Group (1–5) */
.rating-options {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin: 0.5rem 0 1.5rem;
}

	.rating-options .custom-radio {
		display: flex;
		align-items: center;
		position: relative;
		padding-left: 28px;
		cursor: pointer;
		font-size: 1rem;
		color: #fff;
	}

		.rating-options .custom-radio input[type="radio"] {
			position: absolute;
			left: 0;
			top: 0.2rem;
			width: 18px;
			height: 18px;
			border: 2px solid #ccc;
			border-radius: 50%;
			background: transparent;
			appearance: none;
			transition: border-color 0.3s ease;
		}

			.rating-options .custom-radio input[type="radio"]:checked {
				border-color: #c90d92;
				box-shadow: 0 0 5px rgba(201, 13, 146, 0.4);
			}

			.rating-options .custom-radio input[type="radio"]::before {
				content: '';
				display: block;
				width: 10px;
				height: 10px;
				margin: 3px auto;
				border-radius: 50%;
				background-color: transparent;
				transition: background-color 0.3s ease;
			}

			.rating-options .custom-radio input[type="radio"]:checked::before {
				background-color: #c90d92;
			}

		.rating-options .custom-radio .rating-label {
			margin-left: 0.5rem;
			font-weight: 500;
		}

/* Submit Button */
.agile_form input[type="submit"] {
	display: inline-block;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	background: #c90d92;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}

	.agile_form input[type="submit"]:hover {
		background: #a70b78;
		box-shadow: 0 0 8px rgba(201, 13, 146, 0.5);
	}




/* Claims Improvement Checkboxes */
.checkbox-options {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.0251rem; /* Even tighter spacing */
}

.custom-checkbox {
	display: flex;
	align-items: center;
	position: relative;
	padding-left: 28px;
	font-size: 0.92rem;
	color: #f8f9fa;
	cursor: pointer;
	margin: 0; /* Remove default margin */
	line-height: 1.1; /* Tighter lines */
}

	.custom-checkbox input[type="checkbox"] {
		position: absolute;
		left: 0;
		top: 2px;
		width: 16px;
		height: 16px;
		border: 2px solid #ccc;
		border-radius: 4px;
		background: transparent;
		appearance: none;
		cursor: pointer;
		margin: 0; /* remove default spacing */
	}

		.custom-checkbox input[type="checkbox"]:checked {
			border-color: #c90d92;
			background-color: #c90d92;
			box-shadow: 0 0 5px rgba(201, 13, 146, 0.4);
		}

		.custom-checkbox input[type="checkbox"]::before {
			content: '';
			position: absolute;
			width: 5px;
			height: 9px;
			left: 5px;
			top: 1px;
			border: solid #fff;
			border-width: 0 2px 2px 0;
			transform: rotate(45deg);
			display: none;
		}

		.custom-checkbox input[type="checkbox"]:checked::before {
			display: block;
		}

	.custom-checkbox label {
		margin-left: 0.5rem;
		font-weight: 500;
		cursor: pointer;
		margin-bottom: 0; /* Prevent extra spacing */
		line-height: 1.01;
	}

/* Claims Improvement Checkboxes */

/*Slider Likelihood Recommend*/
/* Custom animated slider with tick marks */
input[type="range"].styled-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 6px;
	background: linear-gradient(to right, #c90d92, #00A145);
	border-radius: 5px;
	outline: none;
	transition: background 0.3s ease-in-out;
	margin-bottom: 1rem;
}

	input[type="range"].styled-slider::-webkit-slider-thumb {
		-webkit-appearance: none;
		appearance: none;
		width: 20px;
		height: 20px;
		background: #c90d92;
		border-radius: 50%;
		cursor: pointer;
		transition: transform 0.2s ease;
		box-shadow: 0 0 5px rgba(201, 13, 146, 0.6);
	}

		input[type="range"].styled-slider::-webkit-slider-thumb:hover {
			transform: scale(1.2);
		}

	input[type="range"].styled-slider::-moz-range-thumb {
		width: 20px;
		height: 20px;
		background: #c90d92;
		border: none;
		border-radius: 50%;
		cursor: pointer;
		transition: transform 0.2s ease;
	}

		input[type="range"].styled-slider::-moz-range-thumb:hover {
			transform: scale(1.2);
		}

/* Tick mark styling */
datalist#tickmarks {
	display: flex;
	justify-content: space-between;
	padding: 0 5px;
	font-size: 0.85rem;
	color: #ccc;
	margin-top: -8px;
}

	datalist#tickmarks option {
		display: inline;
	}


/*Slider Likelihood Recommend*/


/*Dropdown starts from here*/
.styled-input {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #ccc;
	background-color: #000;
	border-radius: 4px;
	font-size: 16px;
	box-sizing: border-box;
}
.styled-input {
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transition: border-color 0.3s ease;
}

	.styled-input:focus {
		border-color: #c90d92;
		outline: none;
	}

	/* Style the first option (placeholder) when nothing is selected */
.branch-select option:first-child {
	color: #333;
}

/* Optional: Set color back to normal once a real option is selected */
.branch-select {
	color: #fff;

}
	.branch-select:valid {
		color: #fff; /* Normal color once a branch is selected */
		/*background: #c4c2c2;*/
		background: rgba(51, 51, 51, 0.48);
	}

/*Dropdown ends*/



/* Footer */
.agileits_copyright {
	text-align: center;
	padding: 2rem 0;
	font-size: 0.9rem;
}

	.agileits_copyright a {
		color: #ccc;
	}

		.agileits_copyright a:hover {
			color: #fff;
			text-decoration: underline;
		}

/* Responsive Fixes */
@media (max-width: 768px) {
	.wrap {
		width: 90%;
		padding: 1.5rem;
	}

	h1.agile_head {
		font-size: 1.8rem;
	}

	.agile_form input,
	.agile_form textarea {
		font-size: 0.95rem;
	}

		.agile_form input[type="submit"] {
			width: 100%;
		}

	.rating-options {
		gap: 1rem;
	}

		.rating-options .custom-radio {
			font-size: 0.95rem;
		}
}
