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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

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

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

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

.nav-link:hover {
	color: #2563eb;
}

.nav-link::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background-color: #2563eb;
	transition: width 0.3s ease;
}

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

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

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

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

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

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

.btn-primary {
	background-color: #2563eb;
	color: white;
}

.btn-primary:hover {
	background-color: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.hero-graphic {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	backdrop-filter: blur(10px);
}

.hero-graphic i {
	font-size: 4rem;
	opacity: 0.8;
}

/* Section Headers */
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1rem;
}

.section-header p {
	font-size: 1.1rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
}

/* Services Section */
.services {
	padding: 80px 0;
	background-color: #f9fafb;
}

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

.service-card {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid #e5e7eb;
}

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

.service-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-icon i {
	font-size: 1.5rem;
	color: white;
}

.service-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 1rem;
}

.service-card p {
	color: #6b7280;
	line-height: 1.6;
}

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

.about-content {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1f2937;
	margin-bottom: 1.5rem;
}

.about-text p {
	font-size: 1.1rem;
	color: #6b7280;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.feature i {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.1rem;
	flex-shrink: 0;
}

.feature h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.feature p {
	color: #6b7280;
	font-size: 0.95rem;
	margin: 0;
}

.about-stats {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.stat {
	text-align: center;
	padding: 2rem;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 16px;
	color: white;
}

.stat h3 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.stat p {
	font-size: 1rem;
	opacity: 0.9;
	margin: 0;
}

/* Contact Section */
.contact {
	padding: 80px 0;
	background-color: #f9fafb;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	margin-top: 3rem;
}

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

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-item i {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #2563eb, #1d4ed8);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.contact-item h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: #6b7280;
	margin: 0;
}

.contact-form {
	background: white;
	padding: 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

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

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

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

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

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
	margin-bottom: 1rem;
	color: white;
}

.footer-section h3 {
	font-size: 1.5rem;
	color: #2563eb;
}

.footer-section p {
	color: #d1d5db;
	line-height: 1.6;
	margin-bottom: 1rem;
}

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

.footer-section ul li {
	margin-bottom: 0.5rem;
}

.footer-section ul li a {
	color: #d1d5db;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #2563eb;
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: #374151;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: #2563eb;
	transform: translateY(-2px);
}

.footer-bottom {
	border-top: 1px solid #374151;
	padding-top: 2rem;
	text-align: center;
	color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		left: -100%;
		top: 70px;
		flex-direction: column;
		background-color: white;
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

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

	.nav-menu li {
		margin: 1rem 0;
	}

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

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

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

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

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

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

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

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats {
		flex-direction: row;
		justify-content: space-around;
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

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

@media (max-width: 480px) {
	.hero-title {
		font-size: 2rem;
	}

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

	.service-card,
	.contact-form {
		padding: 1.5rem;
	}

	.about-stats {
		flex-direction: column;
	}

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

	.btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.service-card,
.feature,
.contact-item {
	animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Print styles */
@media print {
	.navbar,
	.footer,
	.hero-buttons,
	.contact-form {
		display: none;
	}

	.hero {
		background: none;
		color: black;
	}
}
