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

:root {
	--primary-color: #6366f1;
	--secondary-color: #8b5cf6;
	--dark-color: #1f2937;
	--light-color: #f9fafb;
	--text-color: #374151;
	--border-color: #e5e7eb;
	--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: #ffffff;
}

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

/* Navigation */
.navbar {
	background-color: #ffffff;
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 20px;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: var(--primary-color);
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-color);
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-links a:hover {
	color: var(--primary-color);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	padding: 8rem 0;
	text-align: center;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.hero .subtitle {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background-color: white;
	color: var(--primary-color);
	padding: 1rem 2.5rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: var(--shadow-lg);
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Services Section */
.services {
	padding: 6rem 0;
	background-color: var(--light-color);
}

.services h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--dark-color);
}

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

.service-card {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--dark-color);
}

.service-card p {
	color: var(--text-color);
	line-height: 1.7;
}

/* Portfolio Section */
.portfolio {
	padding: 6rem 0;
}

.portfolio h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--dark-color);
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.portfolio-item {
	background: white;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: transform 0.3s ease;
}

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

.portfolio-image {
	height: 200px;
	background-size: cover;
	background-position: center;
}

.portfolio-item h4 {
	padding: 1.5rem 1.5rem 0.5rem;
	color: var(--dark-color);
	font-size: 1.25rem;
}

.portfolio-item p {
	padding: 0 1.5rem 1.5rem;
	color: var(--text-color);
}

/* About Section */
.about {
	padding: 6rem 0;
	background-color: var(--light-color);
}

.about h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: var(--dark-color);
}

.about-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.about-content p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	line-height: 1.8;
}

.stats {
	display: flex;
	justify-content: space-around;
	margin-top: 4rem;
	flex-wrap: wrap;
	gap: 2rem;
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: bold;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1rem;
	color: var(--text-color);
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Contact Section */
.contact {
	padding: 6rem 0;
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
	color: white;
	text-align: center;
}

.contact h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.contact-intro {
	font-size: 1.2rem;
	margin-bottom: 3rem;
	opacity: 0.95;
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.contact-item {
	font-size: 1.1rem;
}

.contact-item strong {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 0.9rem;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Footer */
footer {
	background-color: var(--dark-color);
	color: white;
	padding: 2rem 0;
	text-align: center;
}

footer p {
	opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero .subtitle {
		font-size: 1.1rem;
	}

	.service-grid,
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.stats {
		flex-direction: column;
	}

	.contact-info {
		flex-direction: column;
		gap: 1.5rem;
	}
}
