.sol-features {
	background: linear-gradient(90deg, rgba(117, 79, 117, 1) 0%, rgba(49, 32, 127, 1) 29%, rgba(100, 51, 184, 1) 100%);
	padding: 80px 0;
}
.features-header {
	text-align: center;
	margin-bottom: 60px;
}
.features-header h2 {
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}
.section-subtext {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.05rem;
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.6;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}
.feature-card {
	position: relative;
	background: #0e1330;
	border-radius: 12px;
	padding: 30px;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: none;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;
	padding: 2px;
	border: 2px solid #6158ed;
	pointer-events: none;
}

.feature-card .icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.feature-card img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	/* filter: brightness(0) invert(1); */
}
.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card .icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	color: #fff;
}

.feature-card h3 {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
	line-height: 1.3;
	margin-top: 10px;
}

.feature-card p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	line-height: 1.6;
	margin: 0;
}
/* Hero Section */
.sol-hero {
	padding: 60px 0 80px;
	text-align: center;
}
.sol-hero::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: min(1200px, 95vw);
	height: 520px;
	pointer-events: none;
	z-index: -1;
	background: radial-gradient(
			60% 60% at 50% 10%,
			rgba(124, 77, 255, 0.55),
			rgba(124, 77, 255, 0.15) 60%,
			transparent 70%
		),
		radial-gradient(40% 40% at 70% 0%, rgba(0, 229, 255, 0.25), transparent 60%),
		radial-gradient(35% 35% at 30% 0%, rgba(255, 64, 129, 0.28), transparent 60%);
	filter: blur(20px);
}
.sol-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 20px;
	color: white;
}
.sol-hero p {
	color: #e0e0e0;
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: 1.2rem;
	line-height: 1.6;
}
.sol-hero .hero-actions {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 60px;
	flex-wrap: wrap;
}

/* FAQ Section Styling */
.faq-section {
	background: #18014f;
	padding: 80px 0;
}
.faq-header {
	text-align: center;
	margin-bottom: 60px;
}
.faq-header h2 {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}
.faq-accordion {
	max-width: 900px;
	margin: 0 auto;
}
.faq-accordion-item {
	margin-bottom: 20px;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}
.faq-question {
	background: #fff;
	color: #181028;
	padding: 24px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	position: relative;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
.faq-question:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}
.faq-question.active {
	background: #fff;
	color: #181028;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.faq-question-icon {
	font-size: 1.5rem;
	font-weight: 700;
	color: #7c3aed;
	transition: all 0.3s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.faq-question.active .faq-question-icon {
	color: #7c3aed;
}
.faq-answer {
	background: #0e1330;
	color: #fff;
	padding: 0 30px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out, padding 0.5s ease-out;
	font-size: 1rem;
	line-height: 1.6;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-top: none;
}
.faq-answer.active {
	max-height: 200px;
	padding: 24px 30px;
}
.slideshow-container {
	position: relative;
	max-width: 1200px; /* Add max-width for better control */
	margin: 0 auto;
	overflow: visible;
	padding: 0;
}

.slideshow-inner {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	margin: 0 60px;
}

/* Slides wrapper for horizontal scroll effect */
.slides-wrapper {
	display: flex;
	transition: transform 0.6s ease-in-out;
	width: 100%;
}

/* Slides */
.mySlides {
	min-width: 100%;
	max-width: 100%;
	flex-shrink: 0;
	box-sizing: border-box;
	display: block !important;
}

.mySlides img {
	width: 100%;
	max-height: 500px;
	height: auto;
	border-radius: 10px;
	display: block;
	object-fit: contain;
}

/* Arrows - FIXED */
.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 24px;
	transition: background 0.3s ease;
	user-select: none;
	border-radius: 3px;
	z-index: 10;
}

.prev {
	left: 0;
}

.next {
	right: 0;
}

.prev:hover,
.next:hover {
	background: rgba(0, 0, 0, 0.7);
}

/* Dots */
.dot {
	cursor: pointer;
	height: 12px;
	width: 12px;
	margin: 0 4px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.3s ease;
}

.slider-wrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.slider-inner {
	display: flex;
	transition: transform 0.6s ease-in-out;
	width: 100%;
}

.slider-inner > section {
	flex: 0 0 100%;
	width: 100%;
	box-sizing: border-box;
}

.slide-btn {
	position: absolute;
	top: 20%;
	transform: translateY(-50%);
	z-index: 10;
	background: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 10px 15px;
	cursor: pointer;
}

.slide-btn.prev {
	left: 10px;
	display: none;
}

.slide-btn.next {
	right: 10px;
	border-radius: 20px;
	background: linear-gradient(90deg, #7612f9 0%, #9747ff 50%, #db4ae0 100%);
}
/* @media (max-width: 1024px) {
	.oss-content {
		grid-template-columns: 1fr;
		gap: 60px;
		margin-bottom: 80px;
	}

	.code-box {
		height: 400px;
	}

	.oss-text h2 {
		font-size: 2.5rem;
	}
} */

/* @media (max-width: 768px) {
	.sol-oss {
		padding: 60px 0 80px;
	}

	.oss-content {
		margin-bottom: 60px;
	}

	.oss-text h2 {
		font-size: 2rem;
	}

	.oss-text p {
		font-size: 1rem;
	}

	.code-box {
		height: 350px;
	}

	.code-img {
		width: 90%;
	}

	.product-cards {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 60px;
	}
} */

@media (max-width: 480px) {
	/* .code-box {
		height: 300px;
	}

	.code-img {
		width: 95%;
	} */

	.btn-browse {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}
