/* Banner */
.digital-solution-banner {
	background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
	padding: 100px 0;
	height: auto;
}

.digital-solution-image-stack {
	position: relative;
	z-index: 1;
}

	.digital-solution-image-stack:before {
		content: '';
		position: absolute;
		top: -20px;
		left: -20px;
		width: 100px;
		height: 100px;
		background: radial-gradient(#22c55e 20%, transparent 20%);
		background-size: 10px 10px;
		z-index: -1;
	}

	.digital-solution-image-stack img {
		width: 100%;
		border-radius: 30px;
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
	}

.digital-solution-section {
	background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
}

/* Timeline/Capabilities */
.digital-solution-timeline-item {
	position: relative;
	padding: 30px 20px;
	border-radius: 16px;
	background: #fff;
	transition: all 0.3s ease;
	text-align: left;
	overflow: hidden;
	min-height: 200px;
	margin-bottom: 15px;
	cursor: pointer;
	border: 1px solid #ffe9de;
}

	.digital-solution-timeline-item:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 40px rgba(0,0,0,0.12);
	}

	/* Top gradient border */
	.digital-solution-timeline-item::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 4px;
		background: #f26622;
	}

/* Icon style */
.digital-solution-timeline-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #f26622;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	margin-bottom: 15px;
	box-shadow: 0 8px 20px rgba(79,70,229,0.3);
}

/* Heading */
.digital-solution-timeline-item h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}

/* Text */
.digital-solution-timeline-item p {
	margin: 0;
}

/* Example Box */
.digital-solution-example-box {
	padding: 18px;
	border-radius: 10px;
	background: #ffffff;
	border: 1px solid #ededed;
	border-left: 4px solid #ff7a00;
	display: flex;
	align-items: center;
	gap: 15px;
	width: 100%;
}

/* Why Partner Section */
.digital-solution-why-section {
	background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
}

/* The Feature Card */
.digital-solution-tech-card {
	background-color: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 30px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
	margin-top: 15px;
}

	/* Subtle bottom border accent */
	.digital-solution-tech-card::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 3px;
		background-color: var(--accent-color);
		transform: scaleX(0);
		transform-origin: right;
		transition: transform 0.4s ease;
	}

	/* Card Hover Animations */
	.digital-solution-tech-card:hover {
		border-color: transparent;
		box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
		transform: translateY(-4px);
	}

		.digital-solution-tech-card:hover::after {
			transform: scaleX(1);
			transform-origin: left;
		}

/* Left Side: Icon Container */
.digital-solution-icon-left {
	flex-shrink: 0;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--accent-color);
	background-color: #ffffff;
	border: 1.5px solid #f3f4f6;
	border-radius: 14px;
	position: relative;
	z-index: 2;
	transition: all 0.4s ease;
}

	/* Creative background shape for the icon */
	.digital-solution-icon-left::before {
		content: '';
		position: absolute;
		inset: 2px;
		border-radius: 10px;
		background-color: var(--accent-color);
		opacity: 0.08;
		transform: rotate(-8deg);
		transition: all 0.4s ease;
		z-index: -1;
	}

.digital-solution-tech-card:hover .digital-solution-icon-left {
	border-color: var(--accent-color);
	transform: scale(1.05);
}

	.digital-solution-tech-card:hover .digital-solution-icon-left::before {
		transform: rotate(0deg);
		opacity: 0.15;
	}

/* Right Side: Content Container */
.digital-solution-content-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
	transition: transform 0.3s ease;
}

	/* Heading */
	.digital-solution-content-right h3 {
		font-size: 20px;
		font-weight: 500;
	}

	/* Paragraph */
	.digital-solution-content-right p {
		margin: 0;
	}

/* Image */
.digital-solution-app-image img {
	border-radius: 25px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Stats */
.digital-solution-stat-box {
	background: #fff;
	padding: 18px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.06);
	transition: 0.3s;
}

	.digital-solution-stat-box:hover {
		transform: translateY(-5px);
	}

	.digital-solution-stat-box i {
		font-size: 18px;
		margin-bottom: 5px;
	}

@keyframes digital-solution-pulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}

	100% {
		transform: scale(1.2);
		opacity: 1;
	}
}

/* The Pure White Card */
.digital-solution-challenge-card {
	flex: 1;
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.04);
	border-radius: 24px;
	padding: 50px 40px 40px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
	margin-bottom: 30px;
}

	/* Hover Effect for Card */
	.digital-solution-challenge-card:hover {
		transform: translateY(-10px);
		border-color: rgba(255, 65, 108, 0.2);
		box-shadow: 0 30px 60px rgba(255, 65, 108, 0.08);
	}

/* Floating 3D Icon Box */
.digital-solution-icon-badge {
	position: absolute;
	top: -25px;
	left: 40px;
	width: 65px;
	height: 65px;
	background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: #ffffff;
	box-shadow: 0 12px 25px rgba(255, 65, 108, 0.3);
	transform: rotate(-10deg);
	transition: all 0.4s ease;
	z-index: 2;
}

.digital-solution-challenge-card:hover .digital-solution-icon-badge {
	transform: rotate(0deg) scale(1.1);
	box-shadow: 0 18px 35px rgba(255, 65, 108, 0.45);
}

/* Giant Watermark Icon inside the card */
.digital-solution-watermark-icon {
	position: absolute;
	right: -20px;
	bottom: -30px;
	font-size: 180px;
	color: rgba(0, 0, 0, 0.02);
	z-index: 0;
	transform: rotate(15deg);
	transition: all 0.4s ease;
}

.digital-solution-challenge-card:hover .digital-solution-watermark-icon {
	color: rgba(255, 65, 108, 0.03);
	transform: rotate(0deg) scale(1.1);
}

/* Card Text Styling */
.digital-solution-card-content {
	position: relative;
	z-index: 1;
}

.digital-solution-card-title {
	font-size: 20px;
	font-weight: 500;
	margin-top: 15px;
}

.digital-solution-card-text {
	margin-bottom: 0;
}

/* Highlight specific keywords in the text */
.digital-solution-highlight {
	color: #e11d48;
	font-weight: 700;
}

/* Container for the single row */
.digital-solution-infographic-row {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 35px;
	width: 100%;
	max-width: 1500px;
}

/* The Card Wrapper - handles the lines */
.digital-solution-info-wrapper {
	flex: 1;
	position: relative;
	margin-top: 15px;
	margin-bottom: 35px;
	margin-left: 15px;
	transition: transform 0.3s ease;
}

	.digital-solution-info-wrapper:hover {
		transform: translateY(-5px);
	}

	.digital-solution-info-wrapper::before {
		content: '';
		position: absolute;
		top: -15px;
		bottom: -15px;
		left: -15px;
		width: 60%;
		border: 3px solid var(--theme-color);
		border-right: none;
		border-radius: 16px 0 0 16px;
		z-index: 1;
	}

	.digital-solution-info-wrapper::after {
		content: '';
		position: absolute;
		top: -15px;
		left: 50%;
		right: 0;
		height: 3px;
		background-color: var(--theme-color);
		z-index: 1;
	}

/* The Dot at the end of the line */
.digital-solution-line-dot {
	position: absolute;
	top: -21px;
	right: -7px;
	width: 15px;
	height: 15px;
	background-color: var(--theme-color);
	border-radius: 50%;
	z-index: 3;
	box-shadow: 0 0 0 4px #f4f7f6;
}

/* The Actual White Card */
.digital-solution-info-card {
	border-radius: 12px;
	padding: 0;
	text-align: center;
	height: 100%;
	position: relative;
	z-index: 2;
	box-shadow: 5px 10px 25px rgba(0, 0, 0, 0.04);
	box-sizing: border-box;
	padding: 15px 0;
}

	.digital-solution-info-card i {
		font-size: 30px;
		color: var(--theme-color);
		margin-bottom: 15px;
	}

	.digital-solution-info-card h3 {
		font-weight: 500;
		font-size: 20px;
	}

/* Responsive handling */
@media (max-width: 1200px) {
	.digital-solution-infographic-row {
		flex-wrap: wrap;
		justify-content: center;
	}

	.digital-solution-info-wrapper {
		flex: 0 0 calc(33.333% - 35px);
	}
}

@media (max-width: 768px) {
	.digital-solution-info-wrapper {
		flex: 0 0 calc(50% - 35px);
	}
}

@media (max-width: 500px) {
	.digital-solution-info-wrapper {
		flex: 0 0 100%;
	}
}

.digital-solution-modern-card {
	text-align: center;
	margin-bottom: 30px;
	line-height: 28px;
}

.digital-solution-call-action {
	background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
}

.digital-solution-call-div {
	text-align: center;
}

/* The Grid Wrapper */
.digital-solution-faq-wrapper {
	max-width: 1200px;
	width: 100%;
	display: grid;
	gap: 15px;
}

/* Individual FAQ Card */
.digital-solution-faq-item {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 15px;
	display: flex;
	gap: 25px;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.04);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: default;
}

	/* Hover Animation for Card */
	.digital-solution-faq-item:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 40px rgba(var(--theme-rgb), 0.15);
		border-color: rgba(var(--theme-rgb), 0.2);
	}

	/* Animated Left Color Bar */
	.digital-solution-faq-item::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 5px;
		background-color: rgb(var(--theme-rgb));
		transform: scaleY(0);
		transform-origin: bottom;
		transition: transform 0.4s ease;
	}

	.digital-solution-faq-item:hover::before {
		transform: scaleY(1);
	}

/* Icon Container */
.digital-solution-faq-icon {
	width: 70px;
	height: 70px;
	border-radius: 18px;
	background-color: rgba(var(--theme-rgb), 0.1);
	color: rgb(var(--theme-rgb));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	flex-shrink: 0;
	transition: all 0.4s ease;
	position: relative;
	z-index: 2;
}

/* Hover Animation for Icon */
.digital-solution-faq-item:hover .digital-solution-faq-icon {
	background-color: rgb(var(--theme-rgb));
	color: #ffffff;
	transform: scale(1.1) rotate(-10deg);
	box-shadow: 0 10px 20px rgba(var(--theme-rgb), 0.3);
}

/* Content Area */
.digital-solution-faq-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Modern UI Badge for Q1, Q2, etc. */
.digital-solution-q-badge {
	display: inline-block;
	background: linear-gradient(135deg, rgb(var(--theme-rgb)) 0%, rgba(var(--theme-rgb), 0.7) 100%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 6px;
	margin-right: 8px;
	vertical-align: middle;
	box-shadow: 0 4px 10px rgba(var(--theme-rgb), 0.3);
	display: none;
}

/* Question Typography */
.digital-solution-faq-question {
	color: #0f172a;
	font-size: 20px;
	font-weight: 500;
	display: block;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.digital-solution-faq-item:hover .digital-solution-faq-question {
	color: rgb(var(--theme-rgb));
}
