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

body {
	font-family: Arial, sans-serif;
	color: #0f172a;
}

.hero {
	height: 100vh;
	background: linear-gradient(120deg, #0f172a, #1e293b);
	color: white;
	display: flex;
	flex-direction: column;
}

.navbar {
	display: flex;
	justify-content: space-between;
	padding: 20px 40px;
}

.logo {
	font-weight: bold;
	font-size: 20px;
}

.nav-btn {
	color: white;
	text-decoration: none;
	border: 1px solid white;
	padding: 8px 16px;
	border-radius: 6px;
}

.hero-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
	text-align: center;
	padding: 20px;
}

.hero h1 {
	font-size: 40px;
	max-width: 700px;
}

.hero p {
	font-size: 18px;
	opacity: 0.8;
}

.btn-primary {
	background: #38bdf8;
	color: white;
	padding: 14px 28px;
	border-radius: 8px;
	text-decoration: none;
	transition: 0.3s;
}

.btn-primary:hover {
	background: #0ea5e9;
}

.services {
	padding: 80px 40px;
	text-align: center;
}

.services h2 {
	margin-bottom: 40px;
	font-size: 32px;
}

.cards {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.card {
	background: #f1f5f9;
	padding: 30px;
	border-radius: 12px;
	width: 280px;
	transition: 0.3s;
}

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

.card h3 {
	margin-bottom: 10px;
}

.cta {
	background: #0f172a;
	color: white;
	text-align: center;
	padding: 80px 20px;
}

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

footer {
	text-align: center;
	padding: 20px;
	background: #020617;
	color: #94a3b8;
}