/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	margin-bottom: 1rem;
	color: #2c3e50;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	color: #555;
}

a {
	color: #3498db;
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: #2980b9;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-primary {
	background-color: #3498db;
	color: white;
}

.btn-primary:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: #95a5a6;
	color: white;
}

.btn-secondary:hover {
	background-color: #7f8c8d;
	transform: translateY(-2px);
}

/* Cookie Consent Banner */
.cookie-consent {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #2c3e50;
	color: white;
	padding: 20px;
	z-index: 1000;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.cookie-consent.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	align-items: center;
}

.cookie-link {
	color: #3498db;
	font-size: 14px;
	margin-left: 10px;
}

/* Navigation */
.navbar {
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.98) 0%,
		rgba(248, 249, 250, 0.98) 100%
	);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	border-bottom: 1px solid rgba(52, 152, 219, 0.1);
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.nav-logo a {
	font-size: 28px;
	font-weight: 800;
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}

.nav-logo a::before {
	content: '';
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	border-radius: 50%;
	position: relative;
	box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.nav-logo a::after {
	content: 'V';
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 20px;
	font-weight: 900;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 40px;
}

.nav-link {
	color: #2c3e50;
	font-weight: 600;
	font-size: 16px;
	position: relative;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 3px;
	bottom: -8px;
	left: 50%;
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	transition: all 0.3s ease;
	transform: translateX(-50%);
	border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover,
.nav-link.active {
	color: #3498db;
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background-color: #333;
	margin: 3px 0;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	min-height: 100vh;
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.1) 1px,
		transparent 1px
	);
	background-size: 50px 50px;
	animation: float 20s infinite linear;
}

@keyframes float {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	100% {
		transform: translateY(-100px) rotate(360deg);
	}
}

.hero .container {
	display: flex;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 2;
}

.hero-content {
	flex: 1;
}

.hero-content h1 {
	font-size: 3.5rem;
	margin-bottom: 30px;
	color: #ffffff;
	font-weight: 900;
	line-height: 1.2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
	background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 40px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-buttons .btn {
	padding: 16px 40px;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 50px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.hero-buttons .btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
	left: 100%;
}

.hero-buttons .btn-primary {
	background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
	color: white;
	box-shadow: 0 8px 25px rgba(240, 147, 251, 0.3);
}

.hero-buttons .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(240, 147, 251, 0.4);
}

.hero-buttons .btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.hero-image {
	flex: 1;
	position: relative;
}

.hero-image::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: linear-gradient(45deg, #f093fb, #f5576c, #667eea, #764ba2);
	border-radius: 20px;
	z-index: -1;
	animation: gradient-rotate 4s ease-in-out infinite;
}

@keyframes gradient-rotate {
	0%,
	100% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(180deg);
	}
}

.hero-image img {
	width: 100%;
	height: auto;
	border-radius: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 1;
}

/* Services Overview */
.services-overview {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	position: relative;
	overflow: hidden;
}

.services-overview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23667eea' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	animation: float 30s linear infinite;
}

.services-overview h2 {
	text-align: center;
	margin-bottom: 60px;
	font-size: 3rem;
	font-weight: 800;
	background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	position: relative;
	z-index: 2;
}

.services-overview h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, #3498db, #f093fb);
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	position: relative;
	z-index: 2;
}

.service-card {
	background: white;
	padding: 50px 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(52, 152, 219, 0.1);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(52, 152, 219, 0.1),
		transparent
	);
	transition: left 0.6s;
}

.service-card:hover::before {
	left: 100%;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 25px 50px rgba(52, 152, 219, 0.2);
}

.service-icon {
	font-size: 4rem;
	background: linear-gradient(135deg, #3498db 0%, #f093fb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 30px;
	position: relative;
}

.service-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: linear-gradient(
		135deg,
		rgba(52, 152, 219, 0.1) 0%,
		rgba(240, 147, 251, 0.1) 100%
	);
	border-radius: 50%;
	z-index: -1;
}

.service-card h3 {
	margin-bottom: 20px;
	color: #2c3e50;
	font-size: 1.5rem;
	font-weight: 700;
}

.service-card p {
	margin-bottom: 25px;
	color: #666;
	line-height: 1.6;
}

.service-link {
	display: inline-block;
	margin-top: 15px;
	color: #3498db;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
	padding: 12px 25px;
	border: 2px solid #3498db;
	border-radius: 25px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-link::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: #3498db;
	transition: left 0.3s;
	z-index: -1;
}

.service-link:hover::before {
	left: 0;
}

.service-link:hover {
	color: white;
	transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us {
	padding: 80px 0;
}

.content-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
}

.text-content {
	flex: 1;
}

.image-content {
	flex: 1;
}

.image-content img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.feature-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.feature-item i {
	color: #27ae60;
	font-size: 1.2rem;
	margin-top: 5px;
}

.feature-item h4 {
	margin-bottom: 5px;
	color: #2c3e50;
}

/* CTA Section */
.cta-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
	text-align: center;
}

.cta-section h2 {
	color: white;
	margin-bottom: 20px;
	font-size: 2.5rem;
}

.cta-section p {
	color: white;
	font-size: 1.2rem;
	margin-bottom: 30px;
}

.cta-section .btn {
	background-color: white;
	color: #3498db;
	padding: 15px 40px;
	font-size: 18px;
}

.cta-section .btn:hover {
	background-color: #f8f9fa;
}

/* Footer */
.footer {
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
	padding: 80px 0 0;
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(
		90deg,
		#3498db,
		#f093fb,
		#f5576c,
		#667eea,
		#764ba2
	);
	background-size: 300% 100%;
	animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 50px;
	margin-bottom: 50px;
	position: relative;
	z-index: 2;
}

.footer-section {
	position: relative;
	padding: 30px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.3s ease;
}

.footer-section:hover {
	transform: translateY(-5px);
}

.footer-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3498db, #f093fb);
	border-radius: 15px 15px 0 0;
}

.footer-section h3 {
	color: white;
	margin-bottom: 25px;
	font-size: 1.3rem;
	font-weight: 700;
	position: relative;
	padding-bottom: 10px;
}

.footer-section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background: linear-gradient(90deg, #3498db, #f093fb);
	border-radius: 1px;
}

.footer-section p {
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 15px;
	line-height: 1.6;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 12px;
	position: relative;
	padding-left: 20px;
}

.footer-section ul li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #3498db;
	font-size: 12px;
	top: 2px;
}

.footer-section ul li a {
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	position: relative;
}

.footer-section ul li a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	bottom: -2px;
	left: 0;
	background: linear-gradient(90deg, #3498db, #f093fb);
	transition: width 0.3s ease;
}

.footer-section ul li a:hover::after {
	width: 100%;
}

.footer-section ul li a:hover {
	color: white;
	transform: translateX(5px);
}

.contact-info p {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	transition: background 0.3s ease;
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	font-weight: 500;
}

.contact-info p:hover {
	background: rgba(255, 255, 255, 0.1);
}

.contact-info i {
	color: #3498db;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(52, 152, 219, 0.2);
	border-radius: 50%;
	font-size: 14px;
	flex-shrink: 0;
}

.contact-info span {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	line-height: 1.5;
}

.footer-bottom {
	background: rgba(0, 0, 0, 0.2);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 30px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	position: relative;
}

.footer-bottom::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 1px;
	background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.footer-bottom p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
}

/* Page Header */
.page-header {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
			circle at 20% 80%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 50%
		);
}

.page-header::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20l-10 10h20z'/%3E%3C/g%3E%3C/svg%3E");
	animation: float 25s linear infinite;
}

.page-header .container {
	position: relative;
	z-index: 2;
}

.page-header h1 {
	font-size: 3.5rem;
	margin-bottom: 25px;
	color: #ffffff;
	font-weight: 900;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	position: relative;
}

.page-header h1::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #f093fb, #f5576c);
	border-radius: 2px;
}

.page-header p {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

/* About Page Styles */
.company-overview {
	padding: 80px 0;
}

.company-stats {
	display: flex;
	gap: 40px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 2.5rem;
	color: #3498db;
	margin-bottom: 10px;
}

.stat-item p {
	font-weight: 500;
	color: #2c3e50;
}

.mission-vision {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.mv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
}

.mv-item {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.mv-icon {
	font-size: 3rem;
	color: #3498db;
	margin-bottom: 20px;
}

.team-section {
	padding: 80px 0;
}

.team-section h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 2.5rem;
}

.section-description {
	text-align: center;
	margin-bottom: 50px;
	font-size: 1.1rem;
	color: #555;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.team-member {
	text-align: center;
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 20px;
}

.team-member h4 {
	margin-bottom: 10px;
	color: #2c3e50;
}

.values-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.values-section h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.value-item {
	text-align: center;
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
	font-size: 2.5rem;
	color: #3498db;
	margin-bottom: 20px;
}

.company-info-section {
	padding: 80px 0;
}

.company-info-section h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px;
}

.info-item {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 10px;
}

.info-item h3 {
	margin-bottom: 20px;
	color: #2c3e50;
}

.info-item p {
	margin-bottom: 10px;
}

/* Services Page Styles */
.service-detail {
	padding: 80px 0;
}

.service-detail.alternate {
	background-color: #f8f9fa;
}

.service-detail .content-wrapper {
	display: flex;
	align-items: center;
	gap: 50px;
}

.service-detail .text-content {
	flex: 1;
}

.service-detail .image-content {
	flex: 1;
}

.service-detail.alternate .content-wrapper {
	flex-direction: row-reverse;
}

.service-features {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
}

.service-features .feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
}

.service-features .feature-item i {
	color: #27ae60;
	font-size: 1.2rem;
}

.service-process {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.service-process h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
}

.process-step {
	text-align: center;
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
	background-color: #3498db;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	margin: 0 auto 20px;
}

.industries-section {
	padding: 80px 0;
}

.industries-section h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
}

.industries-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.industry-item {
	text-align: center;
	background: #f8f9fa;
	padding: 30px;
	border-radius: 10px;
	transition: transform 0.3s ease;
}

.industry-item:hover {
	transform: translateY(-5px);
}

.industry-item i {
	font-size: 2.5rem;
	color: #3498db;
	margin-bottom: 20px;
}

.industry-item h3 {
	margin-bottom: 10px;
	color: #2c3e50;
}

/* Contact Page Styles */
.contact-section {
	padding: 80px 0;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-info {
	background: #01274d;
	padding: 40px;
	border-radius: 10px;
}

.contact-info h2 {
	margin-bottom: 20px;
	color: #2c3e50;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 30px 0;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.method-icon {
	background-color: #3498db;
	color: white;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}

.method-details h3 {
	margin-bottom: 5px;
	color: #2c3e50;
}

.method-details p {
	color: #555;
}

.company-details {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid #ddd;
}

.company-details h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

.contact-form {
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
	margin-bottom: 30px;
	color: #2c3e50;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3498db;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 14px;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.form-message {
	margin-top: 20px;
	padding: 15px;
	border-radius: 5px;
	font-weight: 500;
}

.form-message.success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.faq-section {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.faq-section h2 {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.faq-item {
	background: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
	margin-bottom: 15px;
	color: #2c3e50;
}

/* Legal Pages Styles */
.legal-content {
	padding: 80px 0;
}

.legal-document {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-document h2 {
	margin-top: 30px;
	margin-bottom: 20px;
	color: #2c3e50;
	border-bottom: 2px solid #3498db;
	padding-bottom: 10px;
}

.legal-document h3 {
	margin-top: 25px;
	margin-bottom: 15px;
	color: #2c3e50;
}

.legal-document ul {
	margin-left: 20px;
	margin-bottom: 20px;
}

.legal-document li {
	margin-bottom: 10px;
	color: #555;
}

.contact-details {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 5px;
	margin: 20px 0;
}

.contact-details p {
	margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -100%;
		top: 80px;
		flex-direction: column;
		background: linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.98) 0%,
			rgba(248, 249, 250, 0.98) 100%
		);
		backdrop-filter: blur(15px);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
		padding: 30px 0;
		gap: 25px;
		border-bottom: 1px solid rgba(52, 152, 219, 0.1);
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.nav-logo a {
		font-size: 24px;
	}

	.nav-logo a::before {
		width: 35px;
		height: 35px;
	}

	.nav-logo a::after {
		left: 11px;
		font-size: 18px;
	}

	.hero .container {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.hero-content h1 {
		font-size: 2.8rem;
	}

	.hero-buttons {
		justify-content: center;
		flex-wrap: wrap;
	}

	.page-header h1 {
		font-size: 2.8rem;
	}

	.services-overview h2 {
		font-size: 2.5rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-card {
		padding: 40px 30px;
	}

	.content-wrapper {
		flex-direction: column;
	}

	.service-detail .content-wrapper,
	.service-detail.alternate .content-wrapper {
		flex-direction: column;
	}

	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.company-stats {
		flex-direction: column;
		gap: 20px;
	}

	.mv-grid {
		grid-template-columns: 1fr;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
	}

	.page-header h1 {
		font-size: 2.5rem;
	}

	.cta-section h2 {
		font-size: 2rem;
	}

	.legal-document {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}

	.page-header h1 {
		font-size: 2rem;
	}

	.service-card,
	.team-member,
	.value-item {
		padding: 20px;
	}

	.contact-form,
	.contact-info {
		padding: 20px;
	}

	.btn {
		padding: 10px 20px;
		font-size: 14px;
	}

	.services-grid,
	.team-grid,
	.values-grid,
	.process-grid,
	.industries-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
}

/* Loading Animation */
.loading {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #f3f3f3;
	border-top: 2px solid #3498db;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
	outline: 2px solid #3498db;
	outline-offset: 2px;
}

/* Print styles */
@media print {
	.navbar,
	.cookie-consent,
	.cta-section,
	.footer {
		display: none;
	}

	.page-header {
		padding: 20px 0;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
	}

	h1,
	h2,
	h3 {
		page-break-after: avoid;
	}

	.legal-document {
		box-shadow: none;
		padding: 0;
	}
}
