:root {
	--primary: #800020;
	--primary-dark: #4f46e5;
	--secondary: #ec4899;
	--accent: #8b5cf6;
	--success: #10b981;
	--error: #ef4444;
	--dark: #1e293b;
	--light: #f8fafc;
	--card: #ffffff;
	--text: #334155;
	--border: #e2e8f0;
	--input-bg: #f1f5f9;
}   
.donate {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	color: var(--text);
	font-size: 16px;
	line-height: 1.5;
	padding-top: 100px;
	padding-bottom: 100px;
}   
.donate-section {
	width: 100%;
	max-width: 1000px;
	display: flex;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	position: relative;
	background: var(--card);
	min-height: 600px;
}    
.sidebar {
	width: 50%;
	background: #800020;
	color: white;
	padding: 40px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}    
.sidebar::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
	z-index: 0;
}    
.sidebar-content {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
}    
.logo {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 1px;
}    
.logo svg {
	margin-right: 10px;
}    
.sidebar-title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.2;
	color: #fff;
	letter-spacing: 1px;
}    
.sidebar-text {
	margin-bottom: 10px;
	opacity: 0.9;
	letter-spacing: 1px;
}    
.impact-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 35px;
}    
.stat {
	flex: 1 0 calc(50% - 10px);
	background: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 15px;
	backdrop-filter: blur(5px);
}    
.stat-number {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 5px;
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 1px;
}    
.stat-label {
	font-size: 13px;
	opacity: 0.9;
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 1px;
}    
.main-content {
	width: 65%;
	padding: 40px;
	position: relative;
	overflow-y: auto;
}
.steps-container {
	position: absolute;
	top: 40px;
	right: 40px;
	display: flex;
	align-items: center;
	gap: 5px;
}    
.step-indicator {
	width: 40px;
	height: 4px;
	background: var(--border);
	border-radius: 2px;
	transition: all 0.3s ease;
}
.step-indicator.active {
	background: var(--primary);
}
.form-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 30px;
	color: var(--dark);
}    
.form-step {
	display: none;
	animation: fadeIn 0.5s ease;
}    
.form-step.active {
	display: block;
}    
@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}    
.form-group {
	margin-bottom: 20px;
}    
.form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--dark);
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 1px;
	font-size: 16px;
}    
.form-control {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--input-bg);
	font-size: 16px;
	transition: all 0.3s;
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 1px;
}    
.form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}    
.form-row {
	display: flex;
	gap: 20px;
}
.form-row .form-group {
	flex: 1;
}    
.btn {
	padding: 14px 24px;
	border: none;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}    
.btn-primary {
	background: var(--primary);
	color: white;
}    
.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5);
}    
.btn-secondary {
	background: var(--input-bg);
	color: var(--text);
}    
.btn-secondary:hover {
	background: var(--border);
	transform: translateY(-2px);
}
.buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}    
.radio-cards {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
}    
.radio-card {
	flex: 1;
	position: relative;
	border: 2px solid var(--border);
	border-radius: 12px;
	padding: 20px;
	cursor: pointer;
	transition: all 0.3s;
	text-align: center;
}    
.radio-card:hover {
	border-color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
}    
.radio-card.selected {
	border-color: var(--primary);
	background-color: rgba(99, 102, 241, 0.05);
}    
.radio-card input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}    
.radio-card-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
}    	
.radio-card-title {
	font-weight: 600;
	margin-bottom: 5px;
	color: var(--dark);
}    
.radio-card-text {
	font-size: 14px;
	color: var(--text);
	opacity: 0.8;
}    
.payment-details {
	background: var(--input-bg);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	display: none;
}    
.payment-details.active {
	display: block;
	animation: fadeIn 0.5s ease;
}    
.qr-container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 20px;
}    
.qr-code {
	background: white;
	padding: 15px;
	border-radius: 12px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 15px;
}    
.qr-code img{
	width:250px;
} 
.bank-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bank-detail {
	display: flex;
	justify-content: space-between;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}    
.bank-detail:last-child {
	border-bottom: none;
}    
.bank-detail-label {
	font-weight: 500;
	color: var(--dark);
}
.bank-detail-value {
	font-weight: 600;
	color: var(--primary);
}
.file-upload {
	border: 2px dashed var(--border);
	border-radius: 12px;
	padding: 30px;
	text-align: center;
	position: relative;
	transition: all 0.3s;
	background: var(--input-bg);
	margin-bottom: 20px;
}    
.file-upload:hover {
	border-color: var(--primary);
	background: rgba(99, 102, 241, 0.05);
}    
.file-upload input {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	cursor: pointer;
}    
.file-upload-icon {
	margin-bottom: 15px;
	color: var(--primary);
}    
.file-upload-text {
	margin-bottom: 5px;
	font-weight: 500;
	color: var(--dark);
}    
.file-upload-subtext {
	font-size: 14px;
	color: var(--text);
	opacity: 0.8;
}    
.preview-container {
	display: none;
	margin-top: 20px;
	animation: fadeIn 0.5s ease;
}
.preview-container.active {
	display: block;
}
.preview-image {
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.preview-image img {
	width: 100%;
	height: auto;
	display: block;
}    
.verification-status {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 15px;
	padding: 15px;
	border-radius: 12px;
	font-weight: 500;
}
.verification-status.verifying {
	background: rgba(234, 179, 8, 0.1);
	color: #b45309;
}
.verification-status.success {
	background: rgba(16, 185, 129, 0.1);
	color: var(--success);
}    
.verification-status.error {
	background: rgba(239, 68, 68, 0.1);
	color: var(--error);
}
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	backdrop-filter: blur(5px);
}    
.modal.active {
	opacity: 1;
	visibility: visible;
}    
.modal-content {
	background: white;
	border-radius: 20px;
	width: 90%;
	max-width: 500px;
	padding: 40px;
	text-align: center;
	transform: translateY(20px);
	transition: all 0.3s;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}    
.modal.active .modal-content {
	transform: translateY(0);
}    
.modal-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 40px;
}    
.modal.success .modal-icon {
	background: rgba(16, 185, 129, 0.1);
	color: var(--success);
}
.modal.error .modal-icon {
	background: rgba(239, 68, 68, 0.1);
	color: var(--error);
}    
.modal-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--dark);
}    
.modal-text {
	margin-bottom: 30px;
	color: var(--text);
}
.amount-slider {
	width: 100%;
	margin-bottom: 20px;
}
.amount-presets {
	display: flex;
	gap: 10px;
	margin-bottom: 20px;
}
.amount-preset {
	flex: 1;
	padding: 12px;
	border: 2px solid var(--border);
	border-radius: 12px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	font-weight: 600;
}
.amount-preset:hover {
	border-color: var(--primary);
	transform: translateY(-2px);
}    
.amount-preset.selected {
	border-color: var(--primary);
	background: rgba(99, 102, 241, 0.05);
	color: var(--primary);
}    
.custom-amount {
	position: relative;
}
.custom-amount span {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 600;
	color: var(--text);
}
.custom-amount input {
	padding-left: 30px;
}    
.tax-rebate-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
}    
.toggle {
	position: relative;
	width: 50px;
	height: 26px;
}    
.toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}    
.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--border);
	transition: .4s;
	border-radius: 34px;
}    
.toggle-slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}    
input:checked + .toggle-slider {
	background-color: var(--primary);
}    
input:checked + .toggle-slider:before {
	transform: translateX(24px);
}    
.toggle-label {
	font-weight: 500;
	color: var(--dark);
}    
.verification-animation {
	width: 100px;
	height: 100px;
	border: 5px solid rgba(99, 102, 241, 0.1);
	border-radius: 50%;
	border-top-color: var(--primary);
	animation: spin 1s linear infinite;
	margin: 0 auto 20px;
}    
@keyframes spin {
	to { transform: rotate(360deg); }
}
.confetti {
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: var(--primary);
	opacity: 0;
}    
@media (max-width: 900px) {
	.donate-section {
		flex-direction: column;
	}
	.sidebar {
		width: 100%;
		padding: 30px;
	}
	.main-content {
		width: 100%;
		padding: 30px;
	}
	.form-row {
		flex-direction: column;
		gap: 0;
	}
	.radio-cards {
		flex-direction: column;
	}
}