@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
	--background: #f9f9ff;
	--background-alt: #f1f1ff;
	--card: #ffffff;
	--primary: #3b82f6;
	--primary-dark: #2563eb;
	--primary-light: #60a5fa;
	--accent: #10b981;
	--accent-dark: #059669;
	--accent-light: #34d399;
	--text: #1e293b;
	--text-light: #64748b;
	--text-dark: #0f172a;
	--danger: #ef4444;
	--success: #10b981;
	--warning: #f59e0b;
	--border: #e2e8f0;
	--shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05),
		0 4px 6px -4px rgba(0, 0, 0, 0.025);
	--shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05),
		0 10px 10px -5px rgba(0, 0, 0, 0.02);
	--gradient-primary: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
	--gradient-accent: linear-gradient(135deg, var(--accent) 0%, #4ade80 100%);
	--radius-sm: 0.25rem;
	--radius: 0.5rem;
	--radius-lg: 1rem;
	--radius-xl: 2rem;
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text);
	background-color: var(--background);
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
}

h3 {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

h4 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

p {
	margin-bottom: 1.5rem;
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

ul,
ol {
	margin-bottom: 1.5rem;
	padding-left: 1.5rem;
}

li {
	margin-bottom: 0.5rem;
}

/* Container */
.ci-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

@media (min-width: 1400px) {
	.ci-container {
		max-width: 1320px;
	}
}

/* ----------------------------- */
/* 2. Layout Components         */
/* ----------------------------- */

/* Header */
.ci-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--border);
	padding: 1rem 0;
	z-index: 1000;
	transition: var(--transition);
	box-shadow: var(--shadow);
}

.ci-header .ci-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ci-logo a {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text-dark);
	transition: var(--transition);
	display: inline-block;
}

.ci-logo a span {
	color: var(--primary);
}

.ci-desktop-nav {
	display: flex;
	align-items: center;
}

.ci-desktop-nav ul {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ci-desktop-nav li {
	margin: 0 0 0 2rem;
}

.ci-desktop-nav a {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: var(--text);
	position: relative;
	padding: 0.5rem 0;
}

.ci-desktop-nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: width 0.3s ease;
}

.ci-desktop-nav a:hover::after,
.ci-desktop-nav a.ci-active::after {
	width: 100%;
}

.ci-mobile-menu-button {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 36px;
	height: 32px;
	position: relative;
}

.ci-mobile-menu-button span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--text-dark);
	position: absolute;
	left: 0;
	transition: var(--transition);
}

.ci-mobile-menu-button span:nth-child(1) {
	top: 8px;
}

.ci-mobile-menu-button span:nth-child(2) {
	top: 16px;
}

.ci-mobile-menu-button span:nth-child(3) {
	top: 24px;
}

/* Mobile Navigation */
.ci-mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 80%;
	max-width: 380px;
	height: 100vh;
	background-color: var(--card);
	z-index: 1100;
	padding: 5rem 2rem 2rem;
	box-shadow: var(--shadow-lg);
	transition: right 0.4s ease;
	overflow-y: auto;
}

.ci-mobile-nav.active {
	right: 0;
}

.ci-mobile-close {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: none;
	border: none;
	font-size: 2rem;
	color: var(--text-dark);
	cursor: pointer;
}

.ci-mobile-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ci-mobile-nav li {
	margin-bottom: 1.5rem;
}

.ci-mobile-nav a {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--text-dark);
	display: block;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border);
}

/* Button Styles */
.ci-btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 0.95rem;
	text-align: center;
	text-decoration: none;
	border-radius: var(--radius);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	z-index: 1;
	box-shadow: 0 4px 6px rgba(59, 130, 246, 0.1);
}

.ci-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	z-index: -1;
	transform: scale(0);
	transition: transform 0.5s ease;
	border-radius: 100%;
}

.ci-btn:hover::before {
	transform: scale(2.5);
}

.ci-btn-primary {
	background: var(--gradient-primary);
	color: white;
}

.ci-btn-primary a {
	color: var(--background);
}

.ci-btn-primary a::after {
	display: none;
}

.ci-btn-secondary {
	background-color: transparent;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.ci-btn-secondary:hover {
	background-color: rgba(59, 130, 246, 0.05);
}

.ci-btn-outline {
	background-color: transparent;
	color: var(--text);
	border: 2px solid var(--border);
}

.ci-btn-outline:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.ci-btn-block {
	display: block;
	width: 100%;
}

/* ----------------------------- */
/* 3. Hero Sections             */
/* ----------------------------- */

.ci-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 8rem 0 5rem;
	overflow: hidden;
}

.ci-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.ci-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 70% 30%,
			rgba(249, 249, 255, 0.5) 0%,
			var(--background) 65%
		),
		url('assets/ci-hero.jpg') center/cover;
	background-attachment: fixed;
}

.ci-animated-shapes {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.ci-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.6;
	filter: blur(60px);
}

.ci-shape-1 {
	top: 15%;
	right: 10%;
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, #3b82f6 0%, #a78bfa 100%);
	animation: floatAnimation 8s ease-in-out infinite alternate;
}

.ci-shape-2 {
	bottom: 20%;
	left: 5%;
	width: 250px;
	height: 250px;
	background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
	animation: floatAnimation 7s ease-in-out infinite alternate-reverse;
}

.ci-shape-3 {
	top: 60%;
	right: 20%;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
	animation: floatAnimation 9s ease-in-out infinite alternate;
}

@keyframes floatAnimation {
	0% {
		transform: translate(0, 0) scale(1);
	}
	100% {
		transform: translate(-20px, -20px) scale(1.05);
	}
}

.ci-hero-content {
	max-width: 650px;
	z-index: 2;
}

.ci-hero h1 {
	margin-bottom: 1.5rem;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.ci-hero p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	color: var(--text-light);
	max-width: 540px;
}

.ci-hero-buttons {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 3rem;
}

.ci-hero-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 2.5rem;
}

.ci-stat {
	text-align: center;
}

.ci-stat-number {
	font-family: 'Poppins', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
	margin-bottom: 0.5rem;
	display: block;
}

.ci-stat-label {
	font-size: 0.9rem;
	color: var(--text-light);
}

/* Page Heroes */
.ci-services-hero,
.ci-cases-hero,
.ci-team-hero,
.ci-contact-hero {
	background-color: var(--background-alt);
	padding: 9rem 0 5rem;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ci-services-hero::before,
.ci-cases-hero::before,
.ci-team-hero::before,
.ci-contact-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -10%;
	width: 120%;
	height: 200%;
	background: radial-gradient(
		ellipse at center,
		rgba(59, 130, 246, 0.05) 0%,
		transparent 70%
	);
	transform: rotate(-10deg);
}

/* ----------------------------- */
/* 4. Services Section          */
/* ----------------------------- */
.ci-services-section {
	padding: 5rem 0;
}

.ci-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.ci-section-header h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 1rem;
}

.ci-section-header h2::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -0.5rem;
	width: 50px;
	height: 3px;
	background: var(--gradient-primary);
	transform: translateX(-50%);
	border-radius: 3px;
}

.ci-section-header p {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	color: var(--text-light);
}

.ci-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.ci-service-card {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.ci-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--gradient-primary);
	transition: var(--transition);
	z-index: -1;
}

.ci-service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-service-card:hover::before {
	height: 100%;
}

.ci-service-icon {
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.ci-service-card h3 {
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.ci-service-card p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.ci-service-features {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

.ci-service-features li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	color: var(--text);
}

.ci-service-features li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--primary);
	font-weight: bold;
}

.ci-service-link {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	position: relative;
	transition: var(--transition);
}

.ci-service-link::after {
	content: '→';
	margin-left: 0.5rem;
	transition: var(--transition);
}

.ci-service-link:hover {
	color: var(--primary-dark);
}

.ci-service-link:hover::after {
	transform: translateX(5px);
}

/* ----------------------------- */
/* 5. Methodology Section       */
/* ----------------------------- */
.ci-methodology-section {
	padding: 5rem 0;
	background-color: var(--background-alt);
	position: relative;
	overflow: hidden;
}

.ci-methodology-timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem 0;
}

.ci-methodology-timeline::before {
	content: '';
	position: absolute;
	top: 0;
	left: 26px;
	height: 100%;
	width: 2px;
	background: linear-gradient(
		to bottom,
		transparent,
		var(--primary),
		transparent
	);
}

.ci-method-step {
	position: relative;
	margin-bottom: 3rem;
	padding-left: 4rem;
}

.ci-method-step:last-child {
	margin-bottom: 0;
}

.ci-method-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 54px;
	height: 54px;
	background: var(--card);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--primary);
	border: 2px solid var(--primary-light);
	box-shadow: var(--shadow);
	z-index: 2;
}

.ci-method-content {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.ci-method-content h3 {
	margin-bottom: 1rem;
	color: var(--primary);
}

.ci-method-content p {
	color: var(--text-light);
	margin-bottom: 1rem;
}

.ci-method-details {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0.5rem 1.5rem;
}

.ci-method-details li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.ci-method-details li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--accent);
}

/* ----------------------------- */
/* 6. Cases Preview Section     */
/* ----------------------------- */
.ci-cases-preview-section {
	padding: 5rem 0;
}

.ci-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
}

.ci-case-card {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--border);
}

.ci-case-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-case-logo {
	width: 80px;
	height: 80px;
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 1.5rem;
	background-color: var(--background);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--border);
}

.ci-case-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ci-case-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background-color: var(--primary-light);
	color: white;
	border-radius: var(--radius-sm);
	font-size: 0.75rem;
	margin-bottom: 1rem;
}

.ci-case-card h3 {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
}

.ci-case-brief {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.ci-case-results {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ci-result-item {
	text-align: center;
}

.ci-result-number {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	display: block;
	line-height: 1;
}

.ci-result-label {
	font-size: 0.8rem;
	color: var(--text-light);
}

.ci-center-btn {
	text-align: center;
	margin-top: 3rem;
}

/* ----------------------------- */
/* 7. Team Preview Section      */
/* ----------------------------- */
.ci-team-preview-section {
	padding: 5rem 0;
	background-color: var(--background-alt);
}

.ci-team-preview-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 2rem;
}

.ci-team-card {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--border);
}

.ci-team-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-team-photo {
	width: 100%;
	height: 300px;
	overflow: hidden;
}

.ci-team-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.ci-team-card:hover .ci-team-photo img {
	transform: scale(1.05);
}

.ci-team-card h3,
.ci-team-role,
.ci-team-card p {
	padding: 0 1.5rem;
}

.ci-team-card h3 {
	margin-top: 1.5rem;
	margin-bottom: 0.25rem;
	font-size: 1.25rem;
}

.ci-team-role {
	color: var(--primary);
	font-weight: 500;
	margin-bottom: 1rem;
}

.ci-team-card p {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

/* ----------------------------- */
/* 8. Contact Section           */
/* ----------------------------- */
.ci-contact-section {
	padding: 5rem 0;
}

.ci-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.ci-form-container {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.ci-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ci-form-group {
	margin-bottom: 0;
}

.ci-form-group.full-width {
	grid-column: span 2;
}

.ci-form-control {
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: 'Inter', sans-serif;
	font-size: 0.95rem;
	background-color: var(--background);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	transition: var(--transition);
}

.ci-form-control:focus {
	outline: none;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.ci-form-control.ci-error {
	border-color: var(--danger);
}

.ci-form-label,
.ci-form label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.ci-form-checkbox {
	display: flex;
	align-items: center;
	grid-column: span 2;
}

.ci-form-checkbox input {
	margin-right: 0.5rem;
}

.ci-form-submit {
	grid-column: span 2;
}

.ci-form-response {
	grid-column: span 2;
	margin-top: 1rem;
}

.ci-success-message {
	background-color: rgba(16, 185, 129, 0.1);
	color: var(--accent-dark);
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	border: 1px solid var(--accent);
	font-weight: 500;
}

.ci-map-container {
	height: 100%;
	min-height: 400px;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

/* Map Section */
.ci-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ci-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ci-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ci-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ci-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* ----------------------------- */
/* 9. Cookie Consent            */
/* ----------------------------- */
.ci-cookie-consent {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: var(--card);
	border-top: 1px solid var(--border);
	padding: 1rem 0;
	z-index: 999;
	transition: bottom 0.5s ease;
	box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.ci-cookie-consent.show {
	bottom: 0;
}

.ci-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.ci-cookie-content p {
	margin-bottom: 0;
	font-size: 0.95rem;
}

.ci-accept-cookies {
	padding: 0.5rem 1rem;
	background-color: var(--primary);
	color: white;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 0.85rem;
	transition: var(--transition);
}

.ci-accept-cookies:hover {
	background-color: var(--primary-dark);
}

/* ----------------------------- */
/* 10. Footer                    */
/* ----------------------------- */
.ci-footer {
	background-color: var(--background-alt);
	border-top: 1px solid var(--border);
	padding: 4rem 0 2rem;
}

.ci-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.ci-footer-company p {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.ci-footer-logo {
	margin-bottom: 1rem;
}

.ci-footer-logo a {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-dark);
}

.ci-footer-logo a span {
	color: var(--primary);
}

.ci-footer-social {
	display: flex;
	gap: 0.75rem;
}

.ci-footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--background);
	color: var(--primary);
	transition: var(--transition);
	border: 1px solid var(--border);
}

.ci-footer-social a:hover {
	background-color: var(--primary);
	color: white;
}

.ci-footer h4 {
	margin-bottom: 1.25rem;
	font-size: 1.1rem;
	color: var(--text-dark);
}

.ci-footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ci-footer-links li {
	margin-bottom: 0.75rem;
}

.ci-footer-links a {
	color: var(--text-light);
	transition: var(--transition);
	font-size: 0.95rem;
}

.ci-footer-links a:hover {
	color: var(--primary);
}

.ci-footer-contact p {
	color: var(--text-light);
	margin-bottom: 0.75rem;
	font-size: 0.95rem;
	display: flex;
}

.ci-footer-contact i {
	margin-right: 0.75rem;
	color: var(--primary);
	min-width: 16px;
}

.ci-footer-contact a {
	color: var(--text-light);
}

.ci-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid var(--border);
	text-align: center;
}

.ci-footer-copyright p {
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

.ci-footer-disclaimer p {
	font-size: 0.8rem;
	color: var(--text-light);
}

/* ----------------------------- */
/* 11. Icons                     */
/* ----------------------------- */
.ci-icon-linkedin::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z'%3E%3C/path%3E%3Crect x='2' y='9' width='4' height='12'%3E%3C/rect%3E%3Ccircle cx='4' cy='4' r='2'%3E%3C/circle%3E%3C/svg%3E")
		no-repeat center center;
}

.ci-icon-twitter::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z'%3E%3C/path%3E%3C/svg%3E")
		no-repeat center center;
}

.ci-icon-facebook::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z'%3E%3C/path%3E%3C/svg%3E")
		no-repeat center center;
}

.ci-icon-instagram::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'%3E%3C/rect%3E%3Cpath d='M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z'%3E%3C/path%3E%3Cline x1='17.5' y1='6.5' x2='17.51' y2='6.5'%3E%3C/line%3E%3C/svg%3E")
		no-repeat center center;
}

.ci-icon-location::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E")
		no-repeat center center;
}

.ci-icon-phone::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72 12.84 12.84 0 0 0 .7 2.81 2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45 12.84 12.84 0 0 0 2.81.7A2 2 0 0 1 22 16.92z'%3E%3C/path%3E%3C/svg%3E")
		no-repeat center center;
}

.ci-icon-email::before {
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E")
		no-repeat center center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'%3E%3C/path%3E%3Cpolyline points='22,6 12,13 2,6'%3E%3C/polyline%3E%3C/svg%3E")
		no-repeat center center;
}

/* ----------------------------- */
/* 12. Animations               */
/* ----------------------------- */
.ci-animate-fade-up {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.ci-animated {
	opacity: 1;
	transform: translateY(0);
}

.ci-delay-1 {
	transition-delay: 0.2s;
}

.ci-delay-2 {
	transition-delay: 0.4s;
}

.ci-delay-3 {
	transition-delay: 0.6s;
}

/* ----------------------------- */
/* 13. Services Detail Pages    */
/* ----------------------------- */
.ci-service-detail-section {
	padding: 5rem 0;
}

.ci-service-detail-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: start;
}

.ci-service-detail-grid.reverse {
	direction: rtl;
}

.ci-service-detail-grid.reverse > * {
	direction: ltr;
}

.ci-service-detail-content {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2.5rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.ci-service-icon.large {
	margin-bottom: 2rem;
}

.ci-service-intro {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.ci-service-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.ci-feature-card {
	background-color: var(--background);
	border-radius: var(--radius);
	padding: 1.5rem;
	border: 1px solid var(--border);
}

.ci-feature-card h4 {
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.ci-feature-card p {
	font-size: 0.95rem;
	margin-bottom: 0;
}

.ci-service-stats {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.ci-stat-box {
	background-color: var(--background);
	border-radius: var(--radius);
	padding: 1.5rem;
	text-align: center;
	flex: 1;
	border: 1px solid var(--border);
}

.ci-stat-box .ci-stat-number {
	font-size: 2rem;
}

.ci-stat-box .ci-stat-label {
	font-size: 0.9rem;
}

.ci-service-cta {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ci-service-detail-media {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.ci-service-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.ci-service-image img {
	width: 100%;
	height: auto;
	display: block;
}

.ci-service-case-study {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
}

.ci-service-case-study h4 {
	color: var(--primary);
	margin-bottom: 0.75rem;
}

.ci-service-case-study p {
	font-size: 0.95rem;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.ci-case-highlight {
	background-color: var(--background);
	border-radius: var(--radius);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	border: 1px solid var(--border);
}

.ci-highlight-item {
	text-align: center;
}

.ci-highlight-number {
	font-family: 'Poppins', sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary);
	display: block;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.ci-highlight-label {
	font-size: 0.9rem;
	color: var(--text-light);
}

.ci-text-link {
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	color: var(--primary);
	display: inline-flex;
	align-items: center;
	position: relative;
	transition: var(--transition);
}

.ci-text-link::after {
	content: '→';
	margin-left: 0.5rem;
	transition: var(--transition);
}

.ci-text-link:hover {
	color: var(--primary-dark);
}

.ci-text-link:hover::after {
	transform: translateX(5px);
}

/* ----------------------------- */
/* 14. Technologies Section     */
/* ----------------------------- */
.ci-technologies-section {
	padding: 5rem 0;
	background-color: var(--background-alt);
}

.ci-tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 2rem;
}

.ci-tech-card {
	background-color: var(--card);
	border-radius: var(--radius-lg);
	padding: 2rem;
	text-align: center;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	transition: var(--transition);
}

.ci-tech-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-tech-icon {
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.ci-tech-card h3 {
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.ci-tech-card p {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* ----------------------------- */
/* 15. CTA Sections             */
/* ----------------------------- */
.ci-contact-cta-section,
.ci-cta-section {
	padding: 5rem 0;
	background: linear-gradient(
		135deg,
		rgba(59, 130, 246, 0.05) 0%,
		rgba(16, 185, 129, 0.05) 100%
	);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.ci-cta-content {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.ci-cta-content h2 {
	margin-bottom: 1rem;
}

.ci-cta-content p {
	color: var(--text-light);
	margin-bottom: 2rem;
}

.ci-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.ci-filter-section {
	background: var(--background-alt);
	padding: 2rem 0;
	position: relative;
	top: 0;
	z-index: 100;
	box-shadow: var(--shadow);
}

.ci-filter-container {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.ci-filter-title {
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--text-light);
	min-width: 120px;
}

.ci-filter-options {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.ci-filter-btn {
	background: none;
	border: 2px solid var(--border);
	color: var(--text-light);
	padding: 0.6rem 1.2rem;
	border-radius: var(--radius-xl);
	font-weight: 500;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.ci-filter-btn.active {
	background: var(--gradient-primary);
	color: white;
	border-color: transparent;
	box-shadow: var(--shadow);
	transform: scale(1.05);
}

.ci-filter-btn:not(.active):hover {
	border-color: var(--primary-light);
	color: var(--primary-dark);
	transform: translateY(-2px);
}

.ci-cases-section {
	padding: 4rem 0;
	background: var(--background);
}

.ci-cases-list {
	display: grid;
	gap: 3rem;
}

.ci-case-detailed {
	background: var(--card);
	border-radius: var(--radius-xl);
	padding: 2rem;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.ci-case-detailed:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-case-header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 2px solid var(--background-alt);
}

.ci-case-title h2 {
	color: var(--primary-dark);
	margin-bottom: 0.5rem;
	font-size: 1.8rem;
}

.ci-case-tag {
	background: var(--gradient-primary);
	color: white;
	padding: 0.3rem 0.8rem;
	border-radius: var(--radius-xl);
	font-size: 0.8rem;
	width: fit-content;
}

.ci-case-metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	min-width: 300px;
}

.ci-metric {
	text-align: center;
	padding: 1rem;
	background: var(--background-alt);
	border-radius: var(--radius);
}

.ci-metric-value {
	display: block;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary-dark);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.ci-case-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	margin-top: 2rem;
}

.ci-case-image {
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
	height: 300px;
}

.ci-case-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ci-case-image:hover img {
	transform: scale(1.05);
}

.ci-results-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin: 2rem 0;
}

.ci-result-item {
	display: flex;
	gap: 1rem;
	align-items: center;
	padding: 1rem;
	background: var(--background-alt);
	border-radius: var(--radius);
}

.ci-result-icon {
	background: var(--primary);
	color: white;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ci-case-quote {
	background: var(--gradient-primary);
	padding: 2rem;
	border-radius: var(--radius);
	color: white;
	margin-top: 2rem;
	position: relative;
}

.ci-case-quote::before {
	content: '❝';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	opacity: 0.2;
}

.ci-team-philosophy {
	padding: 6rem 0;
	background: var(--background-alt);
}

.ci-team-philosophy-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.ci-philosophy-image {
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transform: rotate(-2deg);
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.ci-philosophy-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.ci-philosophy-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--gradient-primary);
	opacity: 0.1;
}

.ci-team-philosophy-content h2 {
	font-size: 2.5rem;
	color: var(--primary-dark);
	margin-bottom: 1.5rem;
}

.ci-large-text {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--text);
	margin-bottom: 2rem;
	position: relative;
	padding-left: 2rem;
}

.ci-large-text::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5em;
	height: 2px;
	width: 1.5rem;
	background: var(--accent);
}

.ci-values-grid {
	display: grid;
	gap: 2rem;
	margin-top: 3rem;
}

.ci-value-item {
	display: flex;
	gap: 1.5rem;
	padding: 1.5rem;
	background: var(--card);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.ci-value-item:hover {
	transform: translateY(-5px);
}

.ci-value-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius);
	background: var(--gradient-primary);
	color: white;
}

.ci-value-icon svg {
	width: 30px;
	height: 30px;
}

@media (max-width: 1024px) {
	.ci-team-philosophy-grid {
		grid-template-columns: 1fr;
	}

	.ci-philosophy-image {
		max-width: 600px;
		margin: 0 auto;
	}
}

.ci-leadership-section {
	padding: 6rem 0;
	background: var(--background);
}

.ci-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.ci-section-header h2 {
	font-size: 2.5rem;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.ci-leadership-grid {
	display: grid;
	gap: 3rem;
}

.ci-leader-card {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 3rem;
	padding: 2rem;
	background: var(--card);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.ci-leader-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		transparent 60%,
		var(--primary-light) 140%
	);
	opacity: 0.05;
}

.ci-leader-photo {
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	transform: rotate(3deg);
	box-shadow: var(--shadow);
	width: 100%;
	height: 100%;
}

.ci-leader-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ci-leader-social {
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	display: flex;
	gap: 0.5rem;
}

.ci-social-link {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.ci-social-link:hover {
	background: var(--primary);
	transform: scale(1.1);
}

.ci-leader-info h3 {
	font-size: 1.75rem;
	color: var(--primary-dark);
	margin-bottom: 0.5rem;
}

.ci-leader-position {
	color: var(--accent-dark);
	font-weight: 500;
	margin-bottom: 1.5rem;
}

.ci-leader-expertise {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-top: 1.5rem;
}

.ci-leader-expertise span {
	background: var(--background-alt);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-xl);
	font-size: 0.9rem;
}

@media (max-width: 1024px) {
	.ci-leader-card {
		grid-template-columns: 1fr;
	}

	.ci-leader-photo {
		max-width: 400px;
		margin: 0 auto;
	}
}

.ci-join-us-section {
	padding: 6rem 0;
	background: var(--gradient-primary);
	position: relative;
	overflow: hidden;
}

.ci-join-us-content {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.ci-join-us-content h2 {
	font-size: 2.5rem;
	color: white;
	margin-bottom: 1.5rem;
}

.ci-join-us-content p {
	font-size: 1.25rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2rem;
	line-height: 1.6;
}

.ci-policy-section {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	min-height: 90vh;
	animation: fadeInBg 1.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1;
}

@keyframes fadeInBg {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.ci-policy-title {
	font-family: 'Inter', 'Segoe UI', sans-serif;
	font-size: 2.7rem;
	margin-bottom: 12px;
	color: #0066cc;
	background: -webkit-linear-gradient(90deg, #0066cc 20%, #00cc99 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
	text-shadow: 0 0 28px rgba(0, 102, 204, 0.3);
}

.ci-policy-date {
	color: #666;
	margin-bottom: 32px;
	font-size: 1.05rem;
	font-family: 'Inter', sans-serif;
}

.ci-policy-content {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	padding: 45px 40px 25px;
	border: 2px solid #e6e6e6;
	box-shadow: 0 4px 32px rgba(0, 102, 204, 0.1);
	font-size: 1.09rem;
}

.ci-policy-content h2 {
	color: #0066cc;
	margin-top: 34px;
	margin-bottom: 13px;
	font-size: 1.3rem;
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.5px;
	border-left: 4px solid rgba(0, 102, 204, 0.6);
	padding-left: 14px;
	text-shadow: 0 0 8px rgba(0, 102, 204, 0.2);
}

.ci-policy-content p,
.ci-policy-content ul,
.ci-policy-content li {
	color: #333;
	margin-bottom: 15px;
	line-height: 1.85;
	font-family: 'Inter', sans-serif;
}

.ci-policy-content strong {
	color: #0066cc;
}

.ci-policy-content ul {
	padding-left: 1.8rem;
	margin-bottom: 18px;
}

.ci-policy-content li {
	margin-bottom: 8px;
	position: relative;
}

.ci-policy-content a {
	color: #0066cc;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	transition: color 0.28s;
}

.ci-policy-content a:hover {
	color: #00cc99;
}

/* Contact Info Section */
.ci-contact-info {
	position: relative;
	overflow: hidden;
}

.ci-contact-info h2 {
	font-size: 2.5rem;
	color: var(--primary-dark);
	text-align: center;
	margin-bottom: 1.5rem;
	position: relative;
	z-index: 1;
}

.ci-contact-info > p {
	text-align: center;
	max-width: 600px;
	margin: 0 auto 3rem;
	color: var(--text-light);
	position: relative;
	z-index: 1;
}

.ci-info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	position: relative;
	z-index: 1;
}

.ci-info-card {
	background: var(--card);
	padding: 2rem;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
	transition: var(--transition);
	border: 1px solid var(--border);
	text-align: center;
}

.ci-info-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-info-icon {
	margin: 0 auto 1.5rem;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gradient-primary);
	border-radius: var(--radius-lg);
}

.ci-info-icon svg {
	stroke: white;
}

.ci-info-card h3 {
	color: var(--primary-dark);
	margin-bottom: 1rem;
}

.ci-info-card p {
	color: var(--text-light);
	line-height: 1.6;
}

.ci-social-connect {
	margin-top: 4rem;
	text-align: center;
}

.ci-social-icons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.ci-social-icon {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.ci-social-icon:hover {
	background: var(--primary-dark);
	transform: scale(1.1);
}

.ci-social-icon i {
	color: white;
	font-size: 1.2rem;
}

/* Map Section */
.ci-map-section {
	padding: 4rem 0;
	background: var(--background);
}

.ci-map-header {
	text-align: center;
	margin-bottom: 3rem;
}

.ci-map-header h2 {
	font-size: 2.25rem;
	color: var(--accent-dark);
	margin-bottom: 1rem;
}

.ci-map-header p {
	color: var(--text-light);
	max-width: 500px;
	margin: 0 auto;
}

.ci-map-section .ci-contact-map {
	height: 400px;
}

/* Careers Section */
.ci-careers-section {
	padding: 4rem 0;
	background: var(--background-alt);
}

.ci-careers-header {
	text-align: center;
	margin-bottom: 3rem;
}

.ci-careers-header h2 {
	font-size: 2.25rem;
	color: var(--accent-dark);
	margin-bottom: 1rem;
}

.ci-careers-header p {
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.ci-careers-grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.ci-job-card {
	background: var(--card);
	padding: 2rem;
	border-radius: var(--radius-lg);
	border-left: 4px solid var(--accent);
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.ci-job-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.ci-job-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.ci-job-type {
	background: var(--accent-light);
	color: var(--accent-dark);
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
}

.ci-job-info {
	display: flex;
	gap: 1rem;
	margin-bottom: 1.5rem;
	color: var(--text-light);
	font-size: 0.9rem;
}

.ci-job-description {
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

.ci-job-requirements h4 {
	color: var(--accent-dark);
	margin-bottom: 0.75rem;
}

.ci-job-requirements ul {
	list-style: none;
	padding-left: 1rem;
}

.ci-job-requirements li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
}

.ci-job-requirements li::before {
	content: '▹';
	position: absolute;
	left: 0;
	color: var(--accent);
}

.ci-careers-cta {
	margin-top: 4rem;
	text-align: center;
	padding: 3rem;
	background: var(--card);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow);
}

.ci-contact-main {
	padding: 50px 0;
	background: var(--background-alt);
}

/* Responsive Design */
@media (max-width: 768px) {
	.ci-info-cards {
		grid-template-columns: 1fr;
	}

	.ci-map {
		border-radius: var(--radius-lg);
	}

	.ci-careers-grid {
		grid-template-columns: 1fr;
	}

	.ci-job-info {
		flex-direction: column;
	}

	.ci-careers-cta {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.ci-contact-info h2,
	.ci-map-header h2,
	.ci-careers-header h2 {
		font-size: 2rem;
	}

	.ci-job-card {
		padding: 1.5rem;
	}
}

/* Responsive Styles */
@media (max-width: 768px) {
	.ci-policy-section {
		padding: 100px 0 60px;
	}

	.ci-policy-title {
		font-size: 2rem;
	}

	.ci-policy-content {
		padding: 30px 20px;
	}
}

@media (max-width: 480px) {
	.ci-policy-title {
		font-size: 1.8rem;
	}

	.ci-policy-content {
		padding: 25px 15px;
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.ci-join-us-content h2 {
		font-size: 2rem;
	}

	.ci-join-us-content p {
		font-size: 1.1rem;
	}
}

@media (max-width: 991px) {
	.ci-mobile-menu-button {
		display: flex;
	}

	.ci-desktop-nav {
		display: none;
	}

	.ci-service-detail-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.ci-contact-grid {
		grid-template-columns: 1fr;
	}

	.ci-footer-grid,
	.ci-case-metrics {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}
	.ci-case-header {
		grid-template-columns: 1fr;
	}
	.ci-filter-container {
		flex-direction: column;
	}

	.ci-value-item {
		flex-direction: column;
	}
}
@media (max-width: 578px) {
	.ci-method-content h3 {
		word-wrap: break-word;
	}

	.ci-results-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ci-result-item {
		flex-direction: column;
	}
	.ci-method-details li {
		word-break: break-all;
	}

	.ci-hero-buttons {
		flex-direction: column;
	}
	.ci-service-cta {
		flex-direction: column;
	}

	.ci-service-stats {
		flex-direction: column;
	}

	.ci-team-preview-grid,
	.ci-service-detail-grid,
	.ci-case-header,
	.ci-team-philosophy-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ci-services-hero-content h1,
	.ci-service-detail-content h2 {
		font-size: 1.5rem;
	}

	.ci-service-features-grid,
	.ci-results-grid,
	.ci-case-header {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	}

	.ci-case-metrics {
		display: none;
	}
	.ci-feature-card h4 {
		font-size: 1rem;
	}
}

@media (max-width: 375px) {
	.ci-method-step {
		padding-left: 2rem;
	}
	.ci-method-content {
		padding: 1.5rem;
	}
}
