* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: #1f2937;
	background: #f8fafc;
	line-height: 1.6;
}

a {
	text-decoration: none;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

header {
	background: #fff;
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid #e5e7eb;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
}

.logo img {
	height: 58px;
}

.nav-links {
	display: flex;
	gap: 30px;
}

.nav-links a {
	color: #243b5a;
	font-weight: 500;
}

.btn {
	background: #d9a441;
	color: white;
	padding: 14px 24px;
	border-radius: 10px;
	display: inline-block;
	font-weight: 600;
	transition: .3s;
}

.btn:hover {
	opacity: .9;
}

.hero {
	padding: 100px 0;
	background: linear-gradient(rgba(255, 255, 255, .90),
		rgba(255, 255, 255, .90)),
		url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1600&auto=format&fit=crop')
		center/cover;
}

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

.hero h1 {
	font-size: 64px;
	line-height: 1.1;
	color: #243b5a;
	margin-bottom: 25px;
}

.hero h1 span {
	color: #d9a441;
}

.hero p {
	font-size: 20px;
	margin-bottom: 35px;
	color: #475569;
}

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

.btn-outline {
	border: 2px solid #243b5a;
	color: #243b5a;
	padding: 12px 22px;
	border-radius: 10px;
	font-weight: 600;
}

.hero-image img {
	width: 100%;
	border-radius: 24px;
}

.section {
	padding: 90px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 42px;
	color: #243b5a;
	margin-bottom: 15px;
}

.section-title p {
	color: #64748b;
}

.services {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.card {
	background: #fff;
	padding: 35px;
	border-radius: 20px;
	border: 1px solid #e5e7eb;
	transition: .3s;
}

.card:hover {
	transform: translateY(-6px);
}

.card h3 {
	margin: 20px 0 12px;
	color: #243b5a;
}

.card p {
	color: #64748b;
}

.icon {
	font-size: 42px;
}

.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.about img {
	width: 100%;
	border-radius: 24px;
}

.stats {
	background: #243b5a;
	color: white;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}

.stat h3 {
	font-size: 48px;
	color: #d9a441;
}

.projects {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.project {
	background: white;
	border-radius: 18px;
	overflow: hidden;
}

.project img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.project-content {
	padding: 20px;
}

.cta {
	background: linear-gradient(135deg, #243b5a, #1e293b);
	color: white;
	border-radius: 30px;
	padding: 70px;
	text-align: center;
}

.cta h2 {
	font-size: 42px;
	margin-bottom: 20px;
}

footer {
	background: #0f172a;
	color: #cbd5e1;
	padding: 60px 0 30px;
}

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

.footer-grid h4 {
	color: white;
	margin-bottom: 15px;
}

.footer-grid a {
	color: #cbd5e1;
	display: block;
	margin-bottom: 10px;
}

.copyright {
	border-top: 1px solid #334155;
	margin-top: 40px;
	padding-top: 20px;
	text-align: center;
	color: #94a3b8;
}

@media ( max-width :992px) {
	.hero-content, .about, .services, .projects, .stats-grid, .footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.hero h1 {
		font-size: 48px;
	}
}

@media ( max-width :768px) {
	.navbar {
		flex-direction: column;
		gap: 20px;
	}
	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
		gap: 18px;
	}
	.hero-content, .about, .services, .projects, .stats-grid, .footer-grid {
		grid-template-columns: 1fr;
	}
	.hero {
		padding: 70px 0;
	}
	.hero h1 {
		font-size: 38px;
	}
	.section-title h2 {
		font-size: 32px;
	}
	.cta {
		padding: 50px 30px;
	}
	.cta h2 {
		font-size: 32px;
	}
}