:root {
	/* LIGHT THEME DEFAULT VARIABLES */
	--bg-main: #ffffff;
	--bg-card: #061138; /* Clean white card */
	--bg-section: #f8f9fc; /* Slight off-white for contrast sections */

	--primary: #989cac; /* Slightly deeper blue for better readability on white */
	--indus-secondary: #fff;

	--indus-text-main: #fff; /* Dark Slate */
	--indus-text-muted: #e4d6d6; /* Muted Blue-Grey */

	--card-border: #e2e8f0;
	--card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08); /* Soft shadow */
	--card-shadow-hover: 0 20px 40px -10px rgba(0, 136, 204, 0.15); /* Colored shadow on hover */
}

#industriese {
	color: var(--indus-text-main);
	overflow: hidden;
	background-color: var(--bg-main);
}

/* --- Hero Section --- */
.cs-hero {
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	background: #061138;
	max-height: 500px;

	/* Light Gradient Background */

	overflow: hidden;
	padding: 20px;
}

#cs-canvas-overlay-hero {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0; /* Behind content, in front of background */
	pointer-events: none;
}

.cs-hero h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	line-height: 1.1;
	margin-bottom: 20px;
	z-index: 2;
	color: white;
}

.cs-hero h1 span {
	background: linear-gradient(
		90.15deg,
		var(--accent-color) 0%,
		var(--accent-secondary-color) 100%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.cs-hero p {
	font-size: 1.2rem;
	max-width: 600px;
	margin-bottom: 40px;
	z-index: 2;
	font-weight: 500;
}

@keyframes cs-bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* --- Industries Section --- */
.cs-industries {
	padding: 60px 20px;
	position: relative;
	background: var(--bg-section); /* Distinction from Hero */
}

.cs-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.cs-section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
	display: inline-block;
	color: var(--indus-text-main);
	position: relative;
}

/* Underline decoration */
.cs-section-header h2::after {
	content: "";
	display: block;
	width: 60%;
	height: 4px;
	background: var(--primary);
	margin: 10px auto 0;
	border-radius: 2px;
}

/* Search Filter */
.cs-search-container {
	max-width: 500px;
	margin: 0 auto 50px;
	position: relative;
}

.cs-search-input {
	width: 100%;
	padding: 18px 25px;
	padding-right: 50px;
	border-radius: 50px;
	border: 1px solid #cbd5e1; /* Visible border for white bg */
	background: #ffffff;

	font-size: 1rem;
	outline: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.cs-search-input::placeholder {
	color: #94a3b8;
}

.cs-search-input:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1);
}

.search-icon {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--primary);
	pointer-events: none;
}

/* Grid Layout */
.cs-industry-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

/* 3D Card - Clean Style */
.cs-card {
	background: var(--bg-card);
	border: 1px solid var(--card-border);
	border-radius: 16px;
	padding: 40px 30px;
	position: relative;
	overflow: hidden;
	cursor: pointer;

	/* Changed from glow to shadow for Light Theme */
	box-shadow: var(--card-shadow);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 220px;
}

/* Removed the glowing border ::before for a cleaner look */

.cs-card:hover {
	transform: translateY(-10px); /* Physical lift */
	box-shadow: var(--card-shadow-hover);
	border-color: var(--primary);
}

.cs-card-icon {
	font-size: 2.5rem;
	color: var(--indus-secondary);
	margin-bottom: 20px;
	transition: transform 0.3s;
}

.cs-card:hover .cs-card-icon {
	color: var(--primary);
	transform: scale(1.1);
}

.cs-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--indus-text-main);
}

.cs-card p {
	font-size: 0.95rem;
	color: var(--indus-text-muted);
	line-height: 1.6;
}

/* Mobile Fixes */
@media (max-width: 768px) {
	.cs-hero h1 {
		font-size: 2.8rem;
	}
	.cs-card {
		min-height: 180px;
		padding: 30px 20px;
	}
}
