/* Solutions Dropdown Styles */

/* Services Dropdown Styles */

/* Knowledge Base Dropdown Styles */

/* About Us Dropdown Styles */

/* Pricing Dropdown Styles */

/* Features Section Styling */
.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;
	min-width: 100%;
}

.features-header {
	text-align: center;
	/* margin-bottom: 60px; */
	margin-bottom: 0 !important;
}

.features-header h2 {
	color: #fff;
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.section-subtext {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
	max-width: 600px;
	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:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lead-tracking-icon {
	background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.pipeline-icon {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.assignment-icon {
	background: linear-gradient(135deg, #10b981, #059669);
}

.insights-icon {
	background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.meeting-icon {
	background: linear-gradient(135deg, #f59e0b, #d97706);
}

.email-icon {
	background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

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

.feature-card svg {
	width: 24px;
	height: 24px;
}

/* 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;
}
.code-snippets {
	position: relative;
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.code-box {
	position: relative;
	width: 100%;
	height: 100px;
}

/* Code Images */
.code-img {
	position: absolute;
	width: 85%;
	max-width: 600px;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 2px solid rgba(97, 88, 237, 0.5);
}

/* Top code snippet */
.code-img-top {
	top: -100%;
	right: 177px;
	z-index: 0;
	width: 70%;
}
/* Bottom code snippet */
.code-img-bottom {
	bottom: -100px;
	left: 177px;
	z-index: 1;
	width: 70%;
}

/* Product Cards Grid */
.product-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 80px;
	max-width: 100% !important;
}

.product-card {
	background: rgba(20, 20, 40, 0.6);
	border-radius: 16px;
	overflow: hidden;
	border: 2px solid rgba(97, 88, 237, 0.3);
	transition: all 0.3s ease;
	max-width: 100%;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(97, 88, 237, 0.3);
	border-color: rgba(97, 88, 237, 0.6);
}

.product-card img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 14px;
	max-width: 100% !important;
}
/* @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;
    }
} */

/* Icon Container */
.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); */
}

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

/* ===========================
   RESPONSIVE MEDIA QUERIES
   =========================== */

/* 1️⃣ Extra Large Screens (TVs / ≥1600px) */
@media (min-width: 1600px) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
	}
	.feature-card {
		padding: 40px;
	}
	.faq-section,
	.sol-features {
		padding: 100px 0;
	}
	.slideshow-container {
		max-width: 1600px;
	}
}

/* 2️⃣ Large Desktops (≤1399px) */
@media (max-width: 1399px) {
	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
		gap: 28px;
	}
	.features-header h2,
	.faq-header h2 {
		font-size: 2.2rem;
	}
	.feature-card h3 {
		font-size: 1.3rem;
	}
}

/* 3️⃣ Tablets Landscape (≤1024px) */
@media (max-width: 1024px) {
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.feature-card {
		padding: 24px;
	}
	.faq-accordion {
		max-width: 700px;
	}
	.slideshow-container {
		max-width: 900px;
	}

	.code-box {
		width: 50%;
	}
	.code-img-top {
		top: -95%;
		right: 80px;
		z-index: 0;
		width: 125%;
	}

	.code-img-bottom {
		bottom: -85px;
		left: 80px;
		width: 125%;
	}
	.product-cards {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

/* 4️⃣ Tablets Portrait (≤768px) */
@media (max-width: 768px) {
	.sol-features,
	.faq-section {
		padding: 60px 0;
	}
	.features-header h2,
	.faq-header h2 {
		font-size: 2rem;
	}
	.section-subtext {
		font-size: 1rem;
		max-width: 90%;
	}
	.features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.feature-card {
		padding: 22px;
	}
	.faq-question {
		font-size: 1rem;
		padding: 18px 22px;
	}
	.faq-answer.active {
		padding: 18px 22px;
	}
	.slideshow-container {
		margin: 0 auto;
		padding: 0 16px;
	}
	.slideshow-inner {
		margin: 0 20px;
	}
	.mySlides img {
		max-height: 400px;
	}
	.code-snippets {
		margin-top: 30px;
	}
	.code-box {
		width: 50%;
	}
	.code-img-top {
		top: -100%;
		right: 230px;
		z-index: 0;
		width: 90%;
	}

	.code-img-bottom {
		bottom: -100px;
		left: 232px;
		width: 90%;
	}
	.product-cards {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 50px;
	}
}

/* 5️⃣ Mobiles (≤576px) */
@media (max-width: 576px) {
	.features-header h2,
	.faq-header h2 {
		font-size: 1.8rem;
	}
	.section-subtext {
		font-size: 0.95rem;
	}
	.feature-card {
		padding: 20px;
	}
	.feature-card h3 {
		font-size: 1.2rem;
	}
	.feature-card p {
		font-size: 0.95rem;
	}
	.faq-question {
		padding: 16px 20px;
	}
	.faq-answer.active {
		padding: 16px 20px;
	}
	.faq-accordion {
		max-width: 100%;
		padding: 0 12px;
	}
	.slideshow-container {
		max-width: 100%;
		padding: 0 10px;
	}
	.mySlides img {
		max-height: 320px;
	}
	.prev,
	.next {
		font-size: 20px;
		padding: 10px;
	}
	.code-box {
		width: 50%;
	}
	.code-img {
		width: 95%;
	}
	.product-cards {
		grid-template-columns: 1fr;
	}
}

/* 6️⃣ Extra Small Devices (≤400px) */
@media (max-width: 425px) {
	.features-header h2,
	.faq-header h2 {
		font-size: 1.6rem;
	}
	.feature-card h3 {
		font-size: 1.1rem;
	}
	.feature-card p {
		font-size: 0.9rem;
	}
	.faq-question {
		font-size: 0.95rem;
	}
	.mySlides img {
		max-height: 260px;
	}
	.code-box {
		width: 50%;
	}
	.code-img-top {
		width: 150%;
		right: 30px;
		top: -75px;
	}

	.code-img-bottom {
		width: 150%;
		left: 30px;
	}
	.product-cards {
		margin-top: 40px;
		gap: 20px;
	}
}
