body {
		background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
		min-height: 100vh;
	}
	
	.payment-container {
		min-height: 100vh;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 20px;
	}
	
	.payment-card {
		background: white;
		border-radius: 20px;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
		max-width: 1000px;
		width: 100%;
		overflow: hidden;
	}
	
	.payment-content {
		display: flex;
		min-height: 500px;
	}
	
	.payment-left {
		flex: 1;
		padding: 40px 30px;
		border-right: 2px solid #f1f3f4;
	}
	
	.payment-right {
		flex: 1;
		padding: 40px 30px;
		background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	}
	
	.payment-form-container {
		min-height: 400px;
		align-items: center;
		justify-content: center;
	}
	
	.payment-form-placeholder {
		text-align: center;
		color: #6c757d;
	}
	
	.payment-form-placeholder i {
		font-size: 64px;
		margin-bottom: 20px;
		color: #dee2e6;
	}
	.bg-modal-custom{
			
		background: linear-gradient(135deg, #4F0AC9 0%, #4F0AC9 100%);
	}
	.payment-header {
		background: linear-gradient(135deg, #4F0AC9 0%, #4F0AC9 100%);
		color: white;
		padding: 20px 30px;
		width: 100%;
		display: flex;
		align-items: center;
		gap: 20px;
	}
	
	.logo-container {
		flex: 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-left: -30px;
	}
	
	.logo-container img {
		max-height: 245px;
		width: auto;
		object-fit: contain;
		margin: -20px 0px;
	}
	
	.header-text {
		flex: 1;
		text-align: left;
	}
	
	.header-text h3 {
		margin: 0 0 8px 0;
		font-size: 3.5rem;
		font-weight: 600;
	}
	
	.header-text p {
		margin: 0;
		opacity: 0.9;
		font-size: 0.95rem;
	}
	
	/* Responsive adjustments */
	@media (max-width: 576px) {
		.payment-header {
			flex-direction: column;
			text-align: center;
			gap: 15px;
			padding: 20px 15px;
		}
		
		.header-text {
			text-align: center;
		}
		
		.logo-container img {
			max-height: 50px;
		}
	}
	
	.payment-body {
		padding: 0;
	}
	
	.amount-input-group {
		position: relative;
	}
	
	.amount-input-group .form-control {
		padding-left: 40px;
		padding-right: 15px;
		height: 50px;
		border: 2px solid #e9ecef;
		border-radius: 10px;
		font-size: 18px;
		font-weight: 500;
		transition: all 0.3s ease;
	}
	
	.amount-input-group .form-control:focus {
		border-color: #0A5B7A;
		box-shadow: 0 0 0 0.2rem rgba(10, 91, 122, 0.25);
	}
	
	.amount-input-group .currency-symbol {
		position: absolute;
		left: 15px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 18px;
		font-weight: 600;
		color: #6c757d;
		z-index: 10;
	}
	
	.payment-methods {
		margin-bottom: 30px;
	}
	
	.customer-details, .billing-address {
		margin-bottom: 30px;
		padding: 20px;
		background: #f8f9fa;
		border-radius: 12px;
		border: 1px solid #e9ecef;
	}
	
	.customer-details label, .billing-address label {
		font-weight: 600;
		color: #495057;
		margin-bottom: 8px;
		display: block;
	}
	
	.customer-details .form-control, .billing-address .form-control {
		border: 2px solid #e9ecef;
		border-radius: 8px;
		padding: 12px 15px;
		font-size: 16px;
		transition: all 0.3s ease;
		background-color: white;
		height: auto;
		min-height: 48px;
		line-height: 1.5;
	}
	
	.customer-details .form-control:focus, .billing-address .form-control:focus {
		border-color: #0A5B7A;
		box-shadow: 0 0 0 0.2rem rgba(10, 91, 122, 0.25);
		background-color: white;
	}
	
	.customer-details .form-control.is-invalid, .billing-address .form-control.is-invalid {
		border-color: #dc3545;
	}
	
	.customer-details .form-control.is-valid, .billing-address .form-control.is-valid {
		border-color: #28a745;
	}
	
	.customer-details select.form-control, .billing-address select.form-control {
		height: 48px !important;
		line-height: 1.5 !important;
		padding: 12px 15px !important;
	}
	
	.payment-method-option {
		border: 2px solid #e9ecef;
		border-radius: 12px;
		padding: 20px;
		margin-bottom: 15px;
		cursor: pointer;
		transition: all 0.3s ease;
		position: relative;
	}
	
	.payment-method-option:hover {
		border-color: #0A5B7A;
		background-color: #f8f9fa;
	}
	
	.payment-method-option.selected {
		border-color: #0A5B7A;
		background-color: rgba(10, 91, 122, 0.05);
	}
	
	.payment-method-option input[type="radio"] {
		position: absolute;
		opacity: 0;
	}
	
	.payment-method-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.payment-method-info {
		display: flex;
		align-items: center;
	}
	
	.payment-method-icon {
		width: 40px;
		height: 40px;
		background: #0A5B7A;
		border-radius: 8px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 15px;
		color: white;
		font-size: 18px;
	}
	
	.payment-method-details h6 {
		margin: 0;
		font-weight: 600;
		color: #212529;
	}
	
	.payment-method-details p {
		margin: 0;
		font-size: 14px;
		color: #6c757d;
	}
	
	.payment-method-check {
		width: 20px;
		height: 20px;
		border: 2px solid #0A5B7A;
		border-radius: 50%;
		position: relative;
	}
	
	.payment-method-option.selected .payment-method-check::after {
		content: '';
		width: 10px;
		height: 10px;
		background: #0A5B7A;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	
	.pay-button {
		background: linear-gradient(135deg, #0A5B7A 0%, #0e6b8a 100%);
		border: none;
		border-radius: 12px;
		color: white;
		font-weight: 600;
		font-size: 16px;
		padding: 15px 30px;
		width: 100%;
		transition: all 0.3s ease;
		position: relative;
		overflow: hidden;
	}
	
	.pay-button:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 25px rgba(10, 91, 122, 0.3);
	}
	
	.pay-button:disabled {
		background: #6c757d;
		cursor: not-allowed;
		transform: none;
		box-shadow: none;
	}
	
	.security-info {
		text-align: center;
		margin-top: 20px;
		padding: 15px;
		background-color: #f8f9fa;
		border-radius: 8px;
		font-size: 14px;
		color: #6c757d;
	}
	
	.security-info i {
		color: #28a745;
		margin-right: 5px;
	}
	
	.error-message {
		color: #dc3545;
		font-size: 14px;
		margin-top: 5px;
		display: none;
	}
	
	.success-message {
		color: #28a745;
		font-size: 14px;
		margin-top: 5px;
		display: none;
	}
	
	/* Loading spinner */
	.spinner {
		border: 2px solid #f3f3f3;
		border-top: 2px solid #0A5B7A;
		border-radius: 50%;
		width: 20px;
		height: 20px;
		animation: spin 1s linear infinite;
		display: none;
		margin-right: 10px;
	}
	
	@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
	}
	
	/* Responsive design */
	@media (max-width: 768px) {
		.payment-content {
			flex-direction: column;
		}
		
		.payment-left {
			border-right: none;
			border-bottom: 2px solid #f1f3f4;
			padding: 30px 20px;
		}
		
		.payment-right {
			padding: 30px 20px;
		}
	}
	
	@media (max-width: 576px) {
		.payment-left, .payment-right {
			padding: 20px 15px;
		}
		
		.payment-method-content {
			flex-direction: column;
			align-items: flex-start;
		}
		
		.payment-method-check {
			margin-top: 10px;
		}
	}
	
	/* Credit Card Form Styles */
	#creditCardForm, #achForm, #billing-address {
		display: none;
		animation: slideInRight 0.4s ease-in-out;
	}
	
	#creditCardForm.show, #achForm.show, #billing-address.show {
		display: block;
	}
	
	.payment-form-title {
		display: flex;
		align-items: center;
		margin-bottom: 25px;
		padding-bottom: 15px;
		border-bottom: 2px solid #e9ecef;
	}
	
	.payment-form-title i {
		font-size: 24px;
		margin-right: 15px;
		color: #0A5B7A;
	}
	
	.payment-form-title h5 {
		margin: 0;
		font-weight: 600;
		color: #212529;
	}
	
	.form-group {
		margin-bottom: 20px;
	}
	
	.form-group label {
		font-weight: 600;
		color: #495057;
		margin-bottom: 8px;
		display: block;
	}
	
	.payment-right .form-control {
		border: 2px solid #e9ecef;
		border-radius: 8px;
		padding: 12px 15px;
		font-size: 16px;
		transition: all 0.3s ease;
		background-color: white;
		height: auto;
		min-height: 48px;
		line-height: 1.5;
	}
	
	.payment-right .form-control select,
	.payment-right select.form-control {
		height: 48px !important;
		line-height: 1.5 !important;
		padding: 12px 15px !important;
	}
	
	.payment-right .form-control:focus {
		border-color: #0A5B7A;
		box-shadow: 0 0 0 0.2rem rgba(10, 91, 122, 0.25);
		background-color: white;
	}
	
	.payment-right .form-control.is-valid {
		border-color: #28a745;
	}
	
	.payment-right .form-control.is-invalid {
		border-color: #dc3545;
	}
	
	.payment-right .input-group-text {
		background-color: white;
		border: 2px solid #e9ecef;
		border-left: none;
		padding: 12px 15px;
	}
	
	.card-brand-icon {
		font-size: 20px;
		color: #6c757d;
		transition: color 0.3s ease;
	}
	
	.card-brand-visa { color: #1a1f71; }
	.card-brand-mastercard { color: #eb001b; }
	.card-brand-amex { color: #006fcf; }
	.card-brand-discover { color: #ff6000; }
	
	.fee-breakdown {
		background: #f8f9fa;
		border: 1px solid #e9ecef;
		border-radius: 8px;
		padding: 15px;
		margin-top: 20px;
		display: none;
	}
	
	.fee-breakdown.show {
		display: block;
		animation: slideDown 0.3s ease-in-out;
	}
	
	.fee-breakdown h6 {
		color: #0A5B7A;
		margin-bottom: 15px;
		font-weight: 600;
	}
	
	.fee-row {
		display: flex;
		justify-content: space-between;
		margin-bottom: 8px;
		font-size: 14px;
	}
	
	.fee-row.total {
		border-top: 1px solid #dee2e6;
		padding-top: 8px;
		margin-top: 8px;
		font-weight: 600;
		font-size: 16px;
		color: #0A5B7A;
	}
	
	.bank-info {
		background: #f8f9fa;
		border: 1px solid #e9ecef;
		border-radius: 8px;
		padding: 15px;
		margin-top: 20px;
	}
	
	.bank-info h6 {
		color: #0A5B7A;
		margin-bottom: 10px;
		font-weight: 600;
	}
	
	.bank-info p {
		font-size: 14px;
		color: #6c757d;
		margin: 0;
	}
	
	/* Card animation */
	@keyframes slideInRight {
		from {
			opacity: 0;
			transform: translateX(30px);
		}
		to {
			opacity: 1;
			transform: translateX(0);
		}
	}
	
	.invalid-feedback {
		display: block;
		color: #dc3545;
		font-size: 14px;
		margin-top: 5px;
	}
	
	.valid-feedback {
		display: block;
		color: #28a745;
		font-size: 14px;
		margin-top: 5px;
	}
	
	/* Card animation */
	#creditCardForm {
		animation: slideDown 0.4s ease-in-out;
	}
	
	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}