.slider-wrapper {
			width: 100%;
			overflow: hidden;
			position: relative;
			background-color: #DBE4E9;
			padding: 10px 0 10px 0;
		}

		.slider-track {
			display: flex;
			width: max-content;
			animation: scroll-left 30s linear infinite;
		}

		.slider-track.paused {
			animation-play-state: paused;
		}

		.client-logo {
			flex: 0 0 auto;
			width: 200px;
			padding: 10px;
		}

		.client-logo img {
			width: 100%;
			height: 30px;
			object-fit: contain;
			filter: grayscale(100%);
			transition: filter 0.3s ease;
		}

		.client-logo:hover img {
			filter: grayscale(0%);
		}

		@keyframes scroll-left {
			0% {
				transform: translateX(0);
			}

			100% {
				transform: translateX(-50%);
			}
		}

		.testimonials {
			display: flex;
			gap: 20px;
			flex-wrap: wrap;
			justify-content: center;
			margin-top: 30px;
		}

		.testimonial-box {
			background: #fff;
			border-radius: 8px;
			box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
			padding: 20px;
			max-width: 500px;
			width: 100%;
			text-align: center;
			position: relative;
			transition: transform 0.3s ease;
		}

		.testimonial-box:hover {
			transform: translateY(-5px);
		}

		.testimonial-img {
			width: 80px;
			height: 80px;
			object-fit: cover;
			border-radius: 50%;
			margin-bottom: 15px;
		}

		.testimonial-box h3 {
			font-size: 1.2rem;
			margin: 0;
			color: #333;
		}

		.testimonial-box h4 {
			font-size: 0.9rem;
			color: #777;
			margin-bottom: 10px;
		}

		.stars {
			color: #ffc107;
			font-size: 1.2rem;
			margin-bottom: 10px;
		}

		.testimonial-box p {
			font-style: italic;
			font-size: 0.95rem;
			color: #555;
			line-height: 1.6;
			position: relative;
		}

		.quote-icon {
			color: #a2c2a2;
			font-size: 1.5rem;
			margin: 0 5px;
		}

		.bintang {
			color: #ffc107;
			font-size: 10px;
			margin-bottom: 10px;
		}

		.ulasan {
			color: black;
			font-size: 13px;
			font-style: italic;
		}

		/* Atur tinggi agar shadow tidak terpotong */
		.swiper {
			padding-top: 40px;
			padding-bottom: 60px;
		}

		/* Gaya umum untuk semua card */
		.testimonial-card {
			transition: all 0.3s ease-in-out;
			background-color: #fff;
			border-radius: 10px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			height: 100%;
		}

		/* Gaya khusus untuk card aktif (tengah) */
		.swiper-slide-active .testimonial-card {
			transform: scale(1.06);
			background-color: #D8E8C4;
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
			z-index: 2;
		}

		/* Ukuran & posisi panah */
		.swiper-button-next,
		.swiper-button-prev {
			width: 40px;
			height: 40px;
			background-color: rgba(178, 209, 137, 0.5);
			border-radius: 50%;
			color: #4e4e4e;
			/* warna ikon panah */
			display: flex;
			align-items: center;
			justify-content: center;
			transition: background-color 0.3s ease;
			z-index: 10;
		}

		/* Hover effect */
		.swiper-button-next:hover,
		.swiper-button-prev:hover {
			background-color: rgba(255, 255, 255, 0.5);
		}

		/* Ukuran ikon panah */
		.swiper-button-next::after,
		.swiper-button-prev::after {
			font-size: 16px;
		}

		/* Posisi panah kiri dan kanan */
		.swiper-button-prev {
			left: 10px;
		}

		.swiper-button-next {
			right: 10px;
		}



		/* PRICING */
		.pricing-card {
			position: relative;
			border: 1px solid #dee2e6;
			border-radius: 0.5rem;
			transition: all 0.3s ease;
			height: 100%;
		}

		.pricing-header {
			font-weight: 600;
			padding: 1rem;
			background-color: #f8f9fa;
			border-bottom: 1px solid #dee2e6;
		}

		.pricing-price {
			font-size: 2rem;
			font-weight: bold;
			margin-bottom: 0.5rem;
		}

		.pricing-features li {
			margin: 0.3rem 0;
		}

		.pricing-advanced-ribbon {
			position: absolute;
			top: 0.75rem;
			right: -2.5rem;
			background-color: #198754;
			color: #fff;
			transform: rotate(45deg);
			width: 150px;
			text-align: center;
			font-size: 0.75rem;
			font-weight: bold;
			padding: 0.2rem 0;
			z-index: 1;
		}

		.pricing-card.active {
			border: 2px solid #198754;
		}

		.pricing-card.active .pricing-header {
			background-color: #198754;
			color: #fff;
		}

		.card-body {
			display: flex;
			flex-direction: column;
			justify-content: space-between;
		}

		.ribbon {
			width: 160px;
			height: 160px;
			overflow: hidden;
			position: absolute;
			top: -1px;
			right: -1px;
			z-index: 1;
		}

		.ribbon span {
			position: absolute;
			display: block;
			width: 200px;
			padding: 7px 0;
			background: #8bc34a;
			color: #fff;
			text-align: center;
			font-weight: bold;
			font-size: 14px;
			transform: rotate(45deg);
			top: 30px;
			right: -50px;
			box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
		}

		/* Ujung pita terlihat melipat ke belakang */
		.ribbon span::before,
		.ribbon span::after {
			content: "";
			position: absolute;
			bottom: -1px;
			border-style: solid;
			border-width: 5px;
			border-color: #88ae4b transparent transparent transparent;
		}

		.ribbon span::before {
			left: 0;
		}

		.ribbon span::after {
			right: 0;
		}

		@media (max-width: 576px) {
			#responsive-logo {
				width: 150px !important;
			}
		}