/* Reuse solution.html theme blocks for consistent look */
/* .navbar { display: flex; align-items: center; height: 64px; padding: 0 40px; background: linear-gradient(135deg, #2d1b69 0%, #4a2c7a 100%); box-sizing: border-box; }
    .logo { display: flex; align-items: center; height: 64px; margin: 0; padding: 0; border: none; box-shadow: none; }
    .logo img { width: 150px; height: 60px; object-fit: cover; margin: 0; padding: 0; }
    .nav-menu { display: flex; gap: 36px; align-items: center; margin-left: 24px; font-size: 1.18rem; font-weight: 500; list-style: none; background: none; padding: 0; height: 64px; }
    .nav-menu li { margin: 0; padding: 0; height: 64px; display: flex; align-items: center; position: relative; }
    .nav-menu a { color: #fff; text-decoration: none; transition: color 0.2s; line-height: 176%; display: flex; align-items: center; height: 64px; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 16px; gap: 8px; }
    .nav-menu a i { font-size: 12px; transition: transform 0.2s; }
    .nav-menu a:hover i { transform: rotate(180deg); }
    .nav-menu a:hover { color: #8660f8; } */

/* Solutions Dropdown Styles */
.solutions-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 12px;
	width: 708px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}
/* .nav-menu li:hover .solutions-dropdown { opacity: 1; visibility: visible; transform: translateY(0); } */
.solutions-dropdown h3 {
	color: #2d1b69;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 8px 0;
	padding: 0;
}
.solutions-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(6, auto);
	grid-auto-flow: column;
	gap: 4px;
}
.solution-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	min-height: 24px;
}
.solution-item:hover {
	background-color: #a4aff3;
}
.solution-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #2d1b69;
	font-size: 16px;
}

.solution-icon img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	object-fit: contain;
}
.solution-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 150%;
	letter-spacing: 0px;
}

/* Services Dropdown Styles */
.services-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 24px 32px rgba(167, 174, 186, 0.12);
	padding: 24px 23px;
	width: 738px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	display: flex;
	gap: 8px;
}
.nav-menu li:hover .services-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.services-left {
	flex: 1;
}
.services-right {
	flex: 1;
	background: #f5f5f5;
	border-radius: 12px;
	min-height: 200px;
}
.services-dropdown h3 {
	color: #2d1b69;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 16px 0;
	padding: 0;
}
.service-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	min-height: 24px;
	margin-bottom: 4px;
}
.service-item:hover {
	background-color: #a4aff3;
}

.service-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.service-icon img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	object-fit: contain;
}

.service-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 150%;
	letter-spacing: 0px;
}

/* Knowledge Base Dropdown Styles */
.knowledge-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 16px;
	width: 518px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}
.nav-menu li:hover .knowledge-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.knowledge-dropdown h3 {
	color: #6c757d;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 12px 0;
	padding: 0;
}
.knowledge-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	min-height: 24px;
	margin-bottom: 4px;
}
.knowledge-item:hover {
	background-color: #a4aff3;
}
.knowledge-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2d1b69;
	font-size: 16px;
	flex-shrink: 0;
}
.knowledge-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 150%;
	letter-spacing: 0px;
}

/* About Us Dropdown Styles */
.about-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 16px;
	width: 304px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}
.nav-menu li:hover .about-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.about-dropdown h3 {
	color: #6c757d;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 12px 0;
	padding: 0;
}
.about-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	min-height: 24px;
	margin-bottom: 4px;
}
.about-item:hover {
	background-color: #a4aff3;
}
.about-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2d1b69;
	font-size: 16px;
	flex-shrink: 0;
}
.about-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 150%;
	letter-spacing: 0px;
}

/* Pricing Dropdown Styles */
.pricing-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	padding: 20px;
	width: 634px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
}
.nav-menu li:hover .pricing-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.pricing-dropdown h3 {
	color: #6c757d;
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 20px 0;
	padding: 0;
}
.pricing-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	min-height: 24px;
	margin-bottom: 8px;
}
.pricing-item:hover {
	background-color: #a4aff3;
}
.pricing-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #2d1b69;
	font-size: 16px;
	flex-shrink: 0;
}
.pricing-text {
	font-family: "Inter", sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #000;
	line-height: 150%;
	letter-spacing: 0px;
}
.nav-buttons {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 16px;
	height: 64px;
}
.btn-login {
	padding: 10px 18px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
	text-decoration: none;
	transition: background 0.2s;
}
.btn-login:hover {
	background: rgba(255, 255, 255, 0.12);
}
.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;
	width: 100%;
}
.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;
}

@media (max-width: 1024px) {
	.oss-text h2 {
		font-size: 2.5rem;
	}
}

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

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

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

@media (max-width: 480px) {
	.btn-browse {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}

.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%);
}
