
	body {
	  font-family: "Helvetica Neue","Segoe UI",Segoe,Helvetica,Arial,"Lucida Grande",sans-serif;
	  font-size: 17px;
	  line-height: 1.5;
	  color: #242424 !important;
	  letter-spacing: 0;
	  -webkit-font-smoothing: antialiased;
	  -webkit-text-size-adjust: 100%;
	}

	strong 
	{
		font-weight: 700 !important; 
	}
 
	  
	  /* Default Link */
	a {
		color: #2563eb;            
		text-decoration: none;
		transition: color 0.2s ease;
	}

	a:visited {
		 color: #2563eb;  /*color: #1e40af; */        
	}

	a:hover {
		color: #2563eb;   /*color: #1d4ed8;  */          
		text-decoration: underline;
	}

	/* Active (Clicking) */
	a:active {
		 color: #2563eb;  /*color: #1e3a8a;   */        
	}


.xenx_page_top_background {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(12,110,240,0.08), transparent 190px),
    radial-gradient(circle at 82% 0%, rgba(214,51,255,0.055), transparent 210px),
    linear-gradient(180deg, rgba(12,110,240,0.10) 0px, rgba(122,60,255,0.045) 44px, rgba(255,255,255,1) 118px, rgba(255,255,255,1) 100%);
  padding-top: 28px;
  padding-bottom: 42px;
}

.xenx_page_top_background::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
   background: linear-gradient(135deg, rgba(12,110,240,0.18), rgba(122,60,255,0.12), rgba(214,51,255,0.14));
  transform: scaleY(0.5);
  transform-origin: top;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .xenx_page_top_background {
    background:
      radial-gradient(circle at 20% 0%, rgba(12,110,240,0.07), transparent 145px),
      radial-gradient(circle at 80% 0%, rgba(214,51,255,0.045), transparent 160px),
      linear-gradient(180deg, rgba(12,110,240,0.09) 0px, rgba(122,60,255,0.04) 36px, rgba(255,255,255,1) 92px, rgba(255,255,255,1) 100%);
    padding-top: 22px;
    padding-bottom: 34px;
  }
}



	.text_discount {
	  color: #d633ff;
	}

   /* Gradient for text - purple to blue */
	.text_gradient {
	  background: linear-gradient(135deg, #d633ff 0%, #7a3cff 45%, #0c6ef0 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	  background-clip: text;
	  display: inline-block;
	}
	
	

	/* Gradient for text - blue to purple */
	.text_gradient_blue {
	  background: linear-gradient(135deg, #0c6ef0 0%, #7a3cff 55%, #d633ff 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	  background-clip: text;
	  display: inline-block;
	}
	
	.xen_website_button_gradient {
	display: flex;     
	width: 100%;     
	height:48px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0 22px;
	color: #fff !important; 
	font-size: 18px;
	font-weight: 600;
	border-radius: 6px;
    background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);
	box-shadow: 0 8px 18px rgba(111, 66, 255, 0.30);
	transition: all 0.25s ease;
	}

	.xen_website_button_gradient:hover {
		transform: translateY(-1px);
		box-shadow: 0 12px 24px rgba(111, 66, 255, 0.40);
		filter: brightness(1.05);
	}





.image_gradient_box {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;

  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 12px;
  background-clip: padding-box;

  /* slightly lighter than review box (better for images) */
  box-shadow:
    0 8px 18px rgba(111, 66, 255, 0.08),
    0 2px 6px rgba(214, 51, 255, 0.05),

    /* very subtle inner glow (reduced) */
    inset 0 0 4px rgba(214, 51, 255, 0.06),
    inset 0 0 8px rgba(111, 66, 255, 0.05);

  padding: 22px 24px;
  box-sizing: border-box;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

	/* Gradient border */
	.image_gradient_box::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  border-radius: 12px;
	  padding: 1.8px;
	  background: linear-gradient(135deg, #d633ff 0%, #7a3cff 45%, #0c6ef0 100%);
	  -webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	  -webkit-mask-composite: xor;
	  mask-composite: exclude;

	  pointer-events: none;
	}

	/* Hover */
	.image_gradient_box:hover {
	  transform: translateY(-2px);

	  box-shadow:
		0 12px 24px rgba(111, 66, 255, 0.12),
		0 4px 10px rgba(214, 51, 255, 0.07),

		0 0 0 1px rgba(111, 66, 255, 0.05),

		inset 0 0 6px rgba(214, 51, 255, 0.08),
		inset 0 0 10px rgba(111, 66, 255, 0.06);
	}


	/* Default: Black & White */
	.image_gradient_box img {
	  max-width: 100%;
	  height: auto;
	  display: block;
	  margin: 0 auto;
	  border-radius: 12px;

	  filter: grayscale(100%);
	  opacity: 0.85;

	  transition: filter 0.35s ease, opacity 0.35s ease;
	}

	/* On Hover: Full Color */
	.image_gradient_box:hover img {
	  filter: grayscale(0%);
	  opacity: 1;
	}





.highlight_box_26
{
	max-width: 800px;
	margin: 15px auto;
	padding: 28px 25px 34px 25px;
	text-align: center;
	position: relative;

	background: #ffffff; 

	border: 1px solid transparent;
	border-radius: 12px;
	background-clip: padding-box;

	box-shadow:
		0 10px 22px rgba(12, 110, 240, 0.08),
		0 3px 8px rgba(111, 66, 255, 0.06),

		inset 0 0 8px rgba(214, 51, 255, 0.10),
		inset 0 0 14px rgba(111, 66, 255, 0.08),
		inset 0 0 18px rgba(12, 110, 240, 0.08);

	transition: transform 0.25s ease, box-shadow 0.25s ease;
}


.highlight_box_26::before
{
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;

	padding: 2.3px;

	background: linear-gradient(
		135deg,
		#d633ff 0%,
		#7a3cff 45%,
		#0c6ef0 100%
	);

	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;

	pointer-events: none;
}



	.highlight_box_26:hover 
	{
		transform: translateY(-2px); 

		box-shadow:
			/* themed hover lift (purple/magenta bias) */
			0 14px 28px rgba(111, 66, 255, 0.14),
			0 5px 14px rgba(214, 51, 255, 0.08),

			/* subtle edge glow */
			0 0 0 1px rgba(111, 66, 255, 0.06),

			/* refined inner glow */
			inset 0 0 8px rgba(214, 51, 255, 0.12),
			inset 0 0 12px rgba(111, 66, 255, 0.10),
			inset 0 0 16px rgba(12, 110, 240, 0.10);
	}

	.highlight_box_26:hover::before
	{
		opacity: 1;
		filter: brightness(1.1);
	}


	.highlight_box_26_text1 
	{
	  margin: 0 0 7px 0;
	  font-size: 18px;
	  font-weight:600;
	  color: #222;
	}

	.highlight_box_26_text2 
	{
	  margin: 0;
	  font-size: 20px;
	  font-weight: 700;
	}




	.terms_box 
	{
	  position: relative;
	  max-width: 620px;
	  margin: 10px auto 20px;
	  padding: 22px 26px;

	  background: #ffffff;
	  border: 1px solid transparent;
	  border-radius: 12px;
	  background-clip: padding-box;

	  box-shadow:
		0 10px 20px rgba(111, 66, 255, 0.08),
		0 3px 8px rgba(214, 51, 255, 0.05),

		/* subtle edge glow */
		0 0 0 1px rgba(111, 66, 255, 0.04),

		/* light inner glow */
		inset 0 0 6px rgba(214, 51, 255, 0.06),
		inset 0 0 10px rgba(111, 66, 255, 0.05);

	  transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

	/* Gradient Border */
	.terms_box::before 
	{
	  content: "";
	  position: absolute;
	  inset: 0;
	  border-radius: 12px;
	  padding: 1.8px;
      background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);
	  -webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	  -webkit-mask-composite: xor;
	  mask-composite: exclude;

	  pointer-events: none;
	}

	/* Hover (optional but recommended) */
	.terms_box:hover 
	{
	  transform: translateY(-2px);

	  box-shadow:
		0 14px 26px rgba(111, 66, 255, 0.14),
		0 5px 12px rgba(214, 51, 255, 0.08),

		0 0 0 1px rgba(111, 66, 255, 0.06),

		inset 0 0 8px rgba(214, 51, 255, 0.08),
		inset 0 0 12px rgba(111, 66, 255, 0.07);
	}



	.terms_box_left
	{
	  position: relative;
	  max-width: 620px;
	  margin: 10px auto 20px;
	  padding: 22px 26px 22px 34px;

	  background: #ffffff;
	  border: 1px solid rgba(111, 66, 255, 0.10);
	  border-radius: 12px;
	  box-sizing: border-box;
	  overflow: hidden;

	  box-shadow:
		0 10px 20px rgba(111, 66, 255, 0.08),
		0 3px 8px rgba(214, 51, 255, 0.05),
		inset 0 0 6px rgba(214, 51, 255, 0.05),
		inset 0 0 10px rgba(111, 66, 255, 0.04);

	  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	}

	/* Left-side gradient accent only */
	.terms_box_left::before 
	{
	  content: "";
	  position: absolute;
	  left: 0;
	  top: 0;
	  bottom: 0;
	  width: 5px;
	  background: linear-gradient(180deg, #d633ff 0%, #7a3cff 45%, #0c6ef0 100%);
	  pointer-events: none;
	}

	.terms_box_left:hover 
	{
	  transform: translateY(-2px);
	  border-color: rgba(111, 66, 255, 0.16);

	  box-shadow:
		0 14px 26px rgba(111, 66, 255, 0.13),
		0 5px 12px rgba(214, 51, 255, 0.07),
		inset 0 0 8px rgba(214, 51, 255, 0.07),
		inset 0 0 12px rgba(111, 66, 255, 0.06);
	}
	
	
	/* Title */
	.terms_title {
	  margin: 0 0 14px 0;
	  font-size: 20px;
	  font-weight: 700;
	  color: #1f2d3d;
	}


	.terms_list, 
	.terms_list_check
	{
	  margin: 0;
	  padding-left: 0;
	  list-style: none;
	}


	.terms_list li,
	.terms_list_check li 
	{
	position: relative;
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	color: #222;
	padding-left: 23px;
	}



	/* Gradient round bullet */
	.terms_list li::before {
	  content: "";
	  position: absolute;
	  left: 0;
	  top: 8px;
	  width: 9px;
	  height: 9px;
	  border-radius: 50%;
	  background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);
	}


	/* Gradient check mark */
	.terms_list_check li::before {
	  content: "✔";
	  position: absolute;
	  left: 0;
	  top: 2px;
	  font-size: 14px;
	  font-weight: 700;
	  background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	}


	/*
	.terms_list a, 
	{
	  color: #0c6ef0;
	  font-weight: 600;
	  text-decoration: none;
	}

	.terms_list a:hover {
	  text-decoration: underline;
	}
	  */

		
		
		
			

	.faq_section {
	  width: 100%;
	  max-width: 1000px;
	  margin: 40px auto;
	  padding: 0 10px;
	}

	.faq_title {
	  font-size: 30px;
	  line-height: 1.3;
	  margin: 0 0 20px 0;
	  text-align: center;
	  color: #222;
	}

	.faq_item {
	  position: relative;
	  border-radius: 12px;
	  margin-bottom: 14px;
	  background: #ffffff;
	  border: 1px solid transparent;
	  background-clip: padding-box;

	  box-shadow:
		0 8px 18px rgba(111, 66, 255, 0.06),
		0 2px 6px rgba(214, 51, 255, 0.04);

	  overflow: hidden;
	  transition: transform 0.2s ease, box-shadow 0.25s ease;
	}

	/* Gradient border (hidden by default, visible on hover/active) */
	.faq_item::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  border-radius: 12px;
	  padding: 1.6px;
	  background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);
	  -webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	  -webkit-mask-composite: xor;
	  mask-composite: exclude;

	  opacity: 0;
	  transition: opacity 0.25s ease;
	  pointer-events: none;
	}

	/* Hover / Active state */
	.faq_item:hover,
	.faq_item.active {
	  transform: translateY(-1px);

	  box-shadow:
		0 12px 24px rgba(111, 66, 255, 0.12),
		0 4px 10px rgba(214, 51, 255, 0.06);
	}

	.faq_item:hover::before,
	.faq_item.active::before {
	  opacity: 1;
	}

	.faq_question {
	  width: 100%;
	  display: block;
	  background: transparent; /* remove old blue bg */
	  border: none;
	  outline: none;
	  text-align: left;
	  padding: 16px 50px 16px 20px;
	  font-size: 16px;
	  font-weight: 600;
	  line-height: 1.5;
	  color: #2a2a2a;
	  cursor: pointer;
	  position: relative;
	}

	.faq_question:hover {
	  background: transparent;
	}

	/* Icon (+ / –) */
	.faq_question::after {
	  content: '+';
	  position: absolute;
	  right: 18px;
	  top: 50%;
	  transform: translateY(-50%);
	  font-size: 22px;
	  font-weight: 500;

	  /* gradient icon */
	  background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	}

	.faq_item.active .faq_question::after {
	  content: '–';
	}


	.faq_answer {
	  display: none;
	  padding: 0 20px 18px 20px;
	  background: #ffffff;
	   transition: all 0.25s ease;
	   text-align: left; 
	}


	.faq_item.active .faq_answer {
	  display: block;
	}


	.faq_item.active .faq_question {
	  border-bottom: 1px solid rgba(0,0,0,0.05);
	}

	.faq_answer p {
	  margin: 12px 0 0 0;
	  font-size: 15.8px;
	  line-height: 1.7;
	  color: #444;
	   text-align: left;  
	}
	
	
	
		.contact_support_section {
		  width: 100%;
		  max-width: 1000px;
		  margin: 0px auto 10px auto;
		  padding: 18px 30px;
		  display: flex;
		  align-items: left;
		  justify-content: space-between;
		  gap: 30px;
		  /*background: linear-gradient(135deg, #f7fbff 0%, #eef6ff 100%); 
		  border: 1px solid #dbe8f7; */
		  border-radius: 12px;
		  box-sizing: border-box;
		}

		.contact_support_left {
		  width: 63%;
		  text-align:left; 
		  padding-top: 50px;
		}

		.contact_support_right {
		  width: 37%;
		  text-align: center;
		}

		.contact_support_title {
		  margin: 0 0 30px 0;
		  font-size: 30px;
		  line-height: 1.3;
		  color: #111;
		}

		.contact_support_text {
		  margin: 0 0 40px 0;
		  font-size: 18px;
		  line-height: 1.7;
		  color: #333;
		}
		
		
		@media (max-width: 768px) {
	  .contact_support_section {
		flex-direction: column;
		text-align: center;
		padding: 14px 20px;
	  }

	  .contact_support_left,
	  .contact_support_right {
		width: 100%;
	  }

	  .contact_support_title {
		font-size: 26px;
	  }

	  .contact_support_text {
		font-size: 17px;
	  }
	}



	.section_new_discount {
	max-width: 800px;
	margin: 24px auto;
	padding: 0 15px;
	}


	.section_new_discount_offer_box {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;

	background: #ffffff;
	border: 1px solid transparent;
	border-radius: 12px;
	background-clip: padding-box;

	padding: 18px 24px 7px 24px;
	box-sizing: border-box;

	box-shadow:
		0 10px 20px rgba(111, 66, 255, 0.08),
		0 3px 8px rgba(214, 51, 255, 0.05),
		0 0 0 1px rgba(111, 66, 255, 0.04),
		inset 0 0 6px rgba(214, 51, 255, 0.08),
		inset 0 0 10px rgba(111, 66, 255, 0.06),
		inset 0 0 14px rgba(12, 110, 240, 0.06);

	transition: transform 0.25s ease, box-shadow 0.25s ease;
	}

	.section_new_discount_offer_box::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;
	padding: 2.5px;
	background: linear-gradient(135deg, #d633ff 0%, #7a3cff 45%, #0c6ef0 100%);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
	}

	.section_new_discount_offer_box::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -34px;
	width: 68%;
	height: 72px;
	transform: translateX(-50%);
	background: radial-gradient(ellipse at center, rgba(214,51,255,0.18), rgba(122,60,255,0.10) 42%, transparent 72%);
	pointer-events: none;
	z-index: 0;
	}

	.section_new_discount_offer_box > * {
	position: relative;
	z-index: 1;
	}

	.section_new_discount_offer_box:hover {
	transform: translateY(-2px);
	box-shadow:
		0 14px 28px rgba(111, 66, 255, 0.14),
		0 5px 14px rgba(214, 51, 255, 0.08),
		0 0 0 1px rgba(111, 66, 255, 0.06),
		inset 0 0 8px rgba(214, 51, 255, 0.10),
		inset 0 0 12px rgba(111, 66, 255, 0.08),
		inset 0 0 16px rgba(12, 110, 240, 0.08);
	}



	.section_new_discount_offer_title {
	margin: 0 0 14px 0;
	font-size: 23px;
	font-weight: 800;
		font-family: arial, sans-serif !important;
	line-height: 1.3;
	background: linear-gradient(135deg, #d633ff 0%, #7a3cff 45%, #0c6ef0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	}

	.section_new_discount_offer_content {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	width: 100%;
	}

	.section_new_discount_offer_icon {
	margin-right: 26px;
	flex-shrink: 0;
	transform: translateY(-17px);
	}

	.section_new_discount_offer_icon img {
	width: 105px;
	height: 105px;
	object-fit: contain;

	/* toned-down but still vibrant */
	filter:
		saturate(0.85)
		brightness(0.95)
		contrast(1.05)
		drop-shadow(0 6px 12px rgba(111, 66, 255, 0.16));

	transition: filter 0.3s ease, transform 0.3s ease;
	}

	.section_new_discount_offer_box:hover .section_new_discount_offer_icon img {
	filter:
		saturate(1)
		brightness(1)
		contrast(1.05)
		drop-shadow(0 8px 16px rgba(111, 66, 255, 0.22));

	transform: scale(1.03);
	}

	.section_new_discount_offer_text {
	flex-grow: 1;
	color: #333;
	font-size: 17px;
	text-align: left;
	}

	.section_new_discount_discount_text {
	font-size: 19px;
	font-weight: 700;
	margin-bottom: 6px;
	text-align: left;
	color: #1f2d3d;
	}

	.section_new_discount_discount_text span {
	color: #d633ff;
	text-decoration: none !important;
	}

	.section_new_discount_gift_text {
	font-size: 17px;
	font-weight: 600;
	margin-top: 0;
	color: #333;
	}

	.section_new_discount_gift_badge {
	display: inline-block;
	padding: 2px 15px;
	border-radius: 999px;
	color: #ffffff;
	font-size: 13px;
	font-weight: 800;
	background: linear-gradient(135deg, #d633ff, #7a3cff, #0c6ef0);

	}



	/* Responsive */
	@media (max-width: 640px) {
	.section_new_discount_offer_box {
		padding: 18px 18px 18px 18px;
	}

	.section_new_discount_offer_title {
		font-size: 21px;
	}

	.section_new_discount_offer_content {
		flex-direction: column;
		text-align: center;
	}

	.section_new_discount_offer_icon {
	margin-right: 0;
	margin-bottom: 10px;
	transform: none;
	}

	.section_new_discount_offer_icon img {
		width: 88px;
		height: 88px;
	}

	.section_new_discount_offer_text,
	.section_new_discount_discount_text {
		text-align: center;
	}

	.section_new_discount_discount_text {
		font-size: 17px;
	}

	.section_new_discount_gift_text {
		font-size: 15.5px;
	}
	}






	.choose_slider_section {
	  margin-top: 35px;
	  margin-bottom: 45px;
	}

	.choose_slider_box {
	  min-height: 340px;
	}

	/* keep content above gradient border layer */
	.choose_slide {
	  display: none;
	  width: 100%;
	  height: 100%;
	  text-align: center;
	  position: relative;
	  z-index: 1;
	}

	/* Clean logo */
	.choose_slide_icon_clean {
	  width: 80px;
	  height: 80px;
	  display: block;
	  margin: 0 auto 20px auto;
	  object-fit: contain;
	  transition: transform 0.3s ease, filter 0.3s ease;
	}

	.choose_slide:hover .choose_slide_icon_clean {
	  transform: scale(1.05);
	}

	/* Title */
	.choose_slide_title {
	  font-size: 24px;
	  font-weight: 700;
	  line-height: 1.35;
	  color: #1f2d3d;
	  margin-bottom: 16px;
	}

	/* Description */
	.choose_slide_desc {
	  max-width: 560px;
	  margin: 0 auto;
	  font-size: 18px;
	  line-height: 1.75;
	  color: #444;
	}

	/* Optional: gradient title highlight */
	.choose_slide_title strong,
	.choose_slide_title span {
	  background: linear-gradient(135deg, #d633ff 0%, #7a3cff 45%, #0c6ef0 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	}

	/* Responsive */
	@media (max-width: 768px) {
	  .choose_slider_box {
		min-height: 320px;
	  }

	  .choose_slide_icon_clean {
		width: 70px;
		height: 70px;
		margin-bottom: 16px;
	  }

	  .choose_slide_title {
		font-size: 20px;
		margin-bottom: 14px;
	  }

	  .choose_slide_desc {
		font-size: 16px;
		line-height: 1.65;
	  }
	}

	@media (max-width: 520px) {
	  .choose_slider_box {
		min-height: 340px;
	  }

	  .choose_nav_left {
		left: -6px;
	  }

	  .choose_nav_right {
		right: -6px;
	  }
	}
			
			
			
	.review_slider_section {
	  width: 100%;
	  max-width: 1100px;
	  margin: 45px auto;
	  padding: 0 10px;
	  text-align: center;
	  box-sizing: border-box;
	}

	.review_slider_title {
	  margin: 0 0 24px 0;
	  font-size: 30px;
	  line-height: 1.3;
	  color: #222;
	}

	.review_slider_wrapper {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 18px;
	}


	.review_slider_box {
	  position: relative;
	  width: 100%;
	  max-width: 750px;
	  min-height: 290px;

	  background: #ffffff;
	  border: 1px solid transparent;
	  border-radius: 12px;
	  background-clip: padding-box;

	  box-shadow:
		/* main soft lift (slightly tighter) */
		0 10px 20px rgba(12, 110, 240, 0.08),
		0 3px 8px rgba(111, 66, 255, 0.06),

		/* subtle edge glow (Option 2) */
		0 0 0 1px rgba(111, 66, 255, 0.04),

		/* refined inner glow (Option 1 - tighter & cleaner) */
		inset 0 0 6px rgba(214, 51, 255, 0.10),
		inset 0 0 10px rgba(111, 66, 255, 0.08),
		inset 0 0 14px rgba(12, 110, 240, 0.08);

	  padding: 28px 34px;
	  box-sizing: border-box;
	  overflow: hidden;

	  transition: transform 0.25s ease, box-shadow 0.25s ease;
	}


	.review_slider_box::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  border-radius: 12px;
	  padding: 1.8px;

	  background: linear-gradient(
		135deg,
		#d633ff 0%,
		#7a3cff 45%,
		#0c6ef0 100%
	  );

	  -webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	  -webkit-mask-composite: xor;
	  mask-composite: exclude;

	  pointer-events: none;
	}

	.review_slider_box:hover {
	  transform: translateY(-2px);

	  box-shadow:
		/* soft themed hover lift */
		0 14px 28px rgba(111, 66, 255, 0.14),
		0 5px 14px rgba(214, 51, 255, 0.08),

		/* subtle edge glow */
		0 0 0 1px rgba(111, 66, 255, 0.06),

		/* refined inner glow */
		inset 0 0 8px rgba(214, 51, 255, 0.12),
		inset 0 0 12px rgba(111, 66, 255, 0.10),
		inset 0 0 16px rgba(12, 110, 240, 0.10);
	}



	/* =========================
	   SLIDES
	========================= */
	.review_slide {
	  display: none;
	  width: 100%;
	  height: 100%;
	}

	.review_slide_header {
	  font-size: 21px;
	  font-weight: 700;
	  line-height: 1.4;
	  color: #1f2d3d;
	  margin-bottom: 28px;
	}

	.review_slide_text {
	  min-height: 110px;
	  font-size: 20px;
	  line-height: 1.8;
	  color: #444;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  text-align: center;
	  padding: 0 10px;
	}

	.review_slide_footer {
	  margin-top: 28px;
	  text-align: center;
	}

	.review_trustpilot_img {
	  max-width: 180px;
	  height: auto;
	  display: inline-block;
	}

	/* =========================
	   NAV BUTTONS (UPDATED)
	========================= */
	.review_nav {
	  width: 52px;
	  height: 52px;
	  min-width: 52px;
	  border: none;
	  border-radius: 50%;

	  background: linear-gradient(
		135deg,
		#d633ff 0%,
		#7a3cff 45%,
		#0c6ef0 100%
	  );

	  color: #ffffff;
	  font-size: 24px;
	  font-weight: 700;
	  line-height: 1;
	  cursor: pointer;

	  box-shadow: 0 8px 18px rgba(111, 66, 255, 0.22);

	  transition: all 0.25s ease;
	}

	.review_nav:hover {
	  transform: translateY(-1px);
	  box-shadow: 0 12px 24px rgba(111, 66, 255, 0.32);
	  filter: brightness(1.05);
	}

	.review_nav:focus {
	  outline: none;
	}

	/* =========================
	   ANIMATION
	========================= */
	.fade_in {
	  animation: reviewFadeIn 0.5s ease;
	}

	@keyframes reviewFadeIn {
	  from {
		opacity: 0.2;
		transform: translateX(10px);
	  }
	  to {
		opacity: 1;
		transform: translateX(0);
	  }
	}

	/* =========================
	   RESPONSIVE
	========================= */
	@media (max-width: 768px) {
	  .review_slider_wrapper {
		gap: 10px;
	  }

	  .review_slider_box {
		min-height: 300px;
		padding: 22px 18px;
		border-radius: 12px;
	  }

	  .review_slider_title {
		font-size: 26px;
	  }

	  .review_slide_header {
		font-size: 18px;
		margin-bottom: 20px;
	  }

	  .review_slide_text {
		min-height: 120px;
		font-size: 17px;
		line-height: 1.7;
		padding: 0;
	  }

	  .review_trustpilot_img {
		max-width: 150px;
	  }

	  .review_nav {
		width: 42px;
		height: 42px;
		min-width: 42px;
		font-size: 20px;
	  }
	}

	@media (max-width: 520px) {
	  .review_slider_wrapper {
		position: relative;
	  }

	  .review_slider_box {
		max-width: 100%;
		min-height: 320px;
	  }

	  .review_nav {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 2;
	  }

	  .review_nav_left {
		left: -6px;
	  }

	  .review_nav_right {
		right: -6px;
	  }
	}
