.slider-container {
		position: relative;
		width: 100%;
		background: #00598a;
		overflow: hidden;
		padding: 50px 0px;

	}

	.background-pattern {
		position: absolute;
		inset: 0;
		opacity: 0.1;
		pointer-events: none;
	}

	.bg-circle-1 {
		position: absolute;
		top: 80px;
		left: 80px;
		width: 128px;
		height: 128px;
		background: white;
		border-radius: 50%;
		filter: blur(40px);
	}

	.bg-circle-2 {
		position: absolute;
		bottom: 160px;
		right: 128px;
		width: 192px;
		height: 192px;
		background: white;
		border-radius: 50%;
		filter: blur(80px);
	}

	.bg-circle-3 {
		position: absolute;
		top: 50%;
		left: 25%;
		width: 96px;
		height: 96px;
		background: white;
		border-radius: 50%;
		filter: blur(32px);
	}

	.content-grid {
		position: relative;
		z-index: 10;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 16px 32px;
		max-width: 1280px;
		margin: 0 auto;
		gap: 64px;
	}

	.quote-section {
		flex: 1;
		color: white;
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.quote-icon {
		font-size: 64px;
		font-weight: bold;
		opacity: 0.3;
		line-height: 1;
	}

	.testimonial-content {
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.quote-text {
		font-size: 17px;
		line-height: 1.6;
		font-weight: 300;
		opacity: 0;
		transform: translateY(20px);
		transition: all 0.5s ease;
	}

	.quote-text.active {
		opacity: 1;
		transform: translateY(0);
	}

	.star-rating {
		display: flex;
		gap: 4px;
	}

	.star {
		color: #fbbf24;
		font-size: 24px;
	}

	.navigation-controls {
		display: flex;
		align-items: center;
		gap: 16px;
	}

	.nav-button {
		padding: 12px;
		background: rgba(255, 255, 255, 0.2);
		border: none;
		border-radius: 8px;
		color: white;
		cursor: pointer;
		transition: all 0.2s;
		backdrop-filter: blur(8px);
	}

	.nav-button:hover {
		background: rgba(255, 255, 255, 0.3);
	}

	.nav-button svg {
		width: 24px;
		height: 24px;
	}

	.dot-indicators {
		display: flex;
		gap: 8px;
		margin-left: 24px;
	}

	.dot {
		width: 12px;
		height: 12px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.4);
		cursor: pointer;
		transition: all 0.2s;
	}

	.dot.active {
		background: white;
	}

	.dot:hover {
		background: rgba(255, 255, 255, 0.6);
	}

	.card-section {
		flex: 1;
		display: flex;
		justify-content: flex-end;
	}

	.testimonial-card {
		position: relative;
		max-width: 384px;
		transition: all 0.5s ease;
		transform: scale(0);
		opacity: 0;
	}

	.testimonial-card.active {
		transform: scale(1);
		opacity: 1;
	}

	.card-background {
		position: relative;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(16px);
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	}

	.card-image-section {
		height: 300px;
		background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
		position: relative;
		overflow: hidden;
	}

	.card-image {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.5s ease;
	}

	.card-image:hover {
		transform: scale(1.1);
	}

	.placeholder-text {
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, #e5e7eb 0%, #9ca3af 100%);
		display: flex;
		align-items: center;
		justify-content: center;
		color: #6b7280;
		font-size: 32px;
		font-weight: bold;
		opacity: 0.5;
	}

	.geometric-overlay {
		position: absolute;
		inset: 0;
		opacity: 0.2;
	}

	.geo-shape-1 {
		position: absolute;
		top: 16px;
		right: 16px;
		width: 64px;
		height: 64px;
		border: 2px solid white;
		transform: rotate(45deg);
	}

	.geo-shape-2 {
		position: absolute;
		bottom: 16px;
		left: 16px;
		width: 48px;
		height: 48px;
		border: 2px solid white;
		transform: rotate(12deg);
	}

	.company-info {
		position: absolute;
		bottom: 0;
		right: 0;
		background: #fbbf24;
		color: black;
		padding: 16px 24px;
		border-top-left-radius: 16px;
	}

	.company-name {
		font-weight: bold;
		font-size: 16px;
		line-height: 1.25;
		text-align: right;
	}

	.company-role {
		font-size: 14px;
		opacity: 0.8;
		margin-top: 4px;
		text-align: right;
	}

	@media (max-width: 1024px) {
		.content-grid {
			flex-direction: column;
			gap: 32px;
			padding: 32px 16px;
		}

		.quote-section {
			text-align: center;
		}

		.card-section {
			justify-content: center;
		}

		.quote-text {
			font-size: 16px;
		}

		.quote-icon {
			font-size: 48px;
		}
	}

	@media (max-width: 768px) {
		.quote-text {
			font-size: 16px;
		}

		.company-name {
			font-size: 14px;
		}

		.company-role {
			font-size: 12px;
		}
	}
