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

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	background: #fff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	transition: all 0.3s ease;
}

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

.nav-logo h2 {
	color: #2c5aa0;
	font-weight: 700;
	font-size: 1.5rem;
}

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

.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.nav-menu a:hover {
	color: #2c5aa0;
}

.nav-menu a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #2c5aa0;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

/* Buttons */
.btn-primary,
.btn-secondary {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}

.btn-primary {
	background: linear-gradient(135deg, #2c5aa0, #1e3a5f);
	color: white;
	box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
	background: transparent;
	color: #2c5aa0;
	border: 2px solid #2c5aa0;
}

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

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e2e8f0" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e2e8f0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 1;
}

.hero-subtitle {
	color: #64748b;
	font-size: 1.1rem;
	font-weight: 500;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 15px;
	line-height: 1.2;
}

.hero-tagline {
	font-size: 1.5rem;
	color: #2c5aa0;
	font-weight: 600;
	margin-bottom: 25px;
}

.hero-description {
	font-size: 1.2rem;
	color: #64748b;
	max-width: 800px;
	margin: 0 auto 40px;
	line-height: 1.7;
}

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

/* About Section */
.about {
	padding: 80px 0;
	background: white;
}

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

.about-content h2 {
	font-size: 2.5rem;
	color: #1e293b;
	margin-bottom: 30px;
	font-weight: 700;
}

.about-content p {
	font-size: 1.1rem;
	color: #64748b;
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Services Section */
.services {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-header {
	text-align: center;
	margin-bottom: 60px;
}

.services-header h2 {
	font-size: 2.5rem;
	color: #1e293b;
	margin-bottom: 20px;
	font-weight: 700;
}

.services-header p {
	font-size: 1.1rem;
	color: #64748b;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.8;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.service-card {
	background: white;
	padding: 40px 30px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.service-card h3 {
	font-size: 1.4rem;
	color: #1e293b;
	margin-bottom: 15px;
	font-weight: 600;
}

.service-card p {
	color: #64748b;
	line-height: 1.6;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background: white;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info h2 {
	font-size: 2.5rem;
	color: #1e293b;
	margin-bottom: 20px;
	font-weight: 700;
}

.contact-info p {
	font-size: 1.1rem;
	color: #64748b;
	margin-bottom: 30px;
	line-height: 1.8;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.contact-item strong {
	color: #1e293b;
	font-weight: 600;
}

.contact-item a {
	color: #2c5aa0;
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

.contact-form {
	background: #f8fafc;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
	font-size: 1.8rem;
	color: #1e293b;
	margin-bottom: 30px;
	font-weight: 600;
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2c5aa0;
}

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

/* Footer */
.footer {
	background: #1e293b;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-logo h3 {
	color: #2c5aa0;
	margin-bottom: 15px;
	font-weight: 700;
}

.footer-logo p {
	color: #94a3b8;
	line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
	color: white;
	margin-bottom: 20px;
	font-weight: 600;
}

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

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #94a3b8;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #2c5aa0;
}

.footer-contact p {
	color: #94a3b8;
	margin-bottom: 10px;
}

.footer-contact a {
	color: #2c5aa0;
	text-decoration: none;
}

.footer-contact a:hover {
	text-decoration: underline;
}

.footer-bottom {
	border-top: 1px solid #334155;
	padding-top: 20px;
	text-align: center;
}

.footer-bottom p {
	color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-container {
		flex-direction: column;
		height: auto;
		padding: 20px;
	}

	.nav-menu {
		margin: 20px 0;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero {
		padding: 100px 0 60px;
	}

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

	.hero-tagline {
		font-size: 1.2rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.about-content h2,
	.services-header h2,
	.contact-info h2 {
		font-size: 2rem;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

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

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

	.hero-title {
		font-size: 2rem;
	}

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

	.contact-form {
		padding: 30px 20px;
	}
}

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

/* Loading animation for better UX */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content,
.service-card,
.about-content {
	animation: fadeInUp 0.8s ease-out;
}