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

html, body {
    overflow-x: hidden;
}


body {
	font-family: Arial, sans-serif;
	line-height: 1.6;
	background-color: #f8f9fa;
	color: #222;
}

header {
	background-color: #ffffff;
	border-bottom: 1px solid #ddd;
}


.navbar {
	max-width: 1100px;
	margin: 0 auto;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img {
	width: 120px;
	height: auto;
	display: block;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav-links a {
	text-decoration: none;
	color: #222;
	font-weight: bold;
}

.nav-links a:hover {
	color: #0077cc;
}

.demo-btn, .primary-btn, .secondary-btn {
	display: inline-block;
	text-decoration: none;
	padding: 10px 18px;
	border-radius: 6px;
	font-weight: bold;
	transition: 0.3s ease;
}

.demo-btn, .primary-btn {
	background-color: #0077cc;
}

.demo-btn:hover, .primary-btn:hover {
	background-color: #005fa3;
}

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

.secondary-btn:hover {
	background-color: #0077cc;
	color: white;
}

.hero {
	min-height: 100vh;
	padding: 80px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #eaf4ff;
}

.hero-content {
	max-width: 700px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.hero p {
	font-size: 1.1rem;
	margin-bottom: 30px;
}

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

.section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 20px;
	text-align: center;
	border-top: 1px solid #ddd;
}

.section h2 {
	font-size: 2rem;
	margin-bottom: 15px;
}

.section p {
	margin-bottom: 20px;
	font-size: 1rem;
}

.footer {
	background-color: #222;
	color: white;
	text-align: center;
	padding: 20px;
	margin-top: 40px;
}


.section-intro {
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
}

.service-grid {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 30px;
}

.service-card {
	background-color: white;
	padding: 25px;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	width: 300px;
	text-align: left;
}

.service-card h3 {
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.service-card p {
	color: #555;
	font-size: 1rem;
	line-height: 1.6;
}


.demo-box {
	background-color: #1a1a1a;
	color: white;
	padding: 40px;
	border-radius: 12px;
	max-width: 600px;
	margin: 40px auto 0;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.demo-box h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

.demo-box p {
	color: #d0d0d0;
	margin-bottom: 25px;
	line-height: 1.6;
}

.contact-box {
	max-width: 700px;
	margin: 40px auto 0;
	background-color: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

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

.contact-form input, .contact-form textarea{
	width: 100%;
	padding: 14px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
}

.contact-form textarea {
	resize: vertical;
}

.contact-details {
	margin-top: 30px;
	text-align: center;
}

.contact-details p {
	margin-bottom: 10px;
	color: #555;
}

@media (max-width: 768px) {
	.navbar {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 12px;
		padding: 15px;
	}

	.logo {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.logo img {
		width: 90px;
		max-width: 100%;
		height: auto;
	}

	.nav-links {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 10px;
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.nav-links li {
		width: 100%;
		text-align: center;
	}

	.nav-links a {
		display: block;
		width: 100%;
	}

	.demo-btn,
	.primary-btn,
	.secondary-btn {
		display: block;
		width: 100%;
		max-width: 220px;
		text-align: center;
		margin: 0 auto;
	}

	.hero {
		min-height: unset;
		padding: 50px 20px;
	}

	.hero-content {
		max-width: 100%;
	}

	.hero h1 {
		font-size: 2rem;
		line-height: 1.25;
		margin-bottom: 15px;
	}

	.hero p {
		font-size: 1rem;
		margin-bottom: 18px;
	}

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

	.section {
		padding: 45px 15px;
	}

	.section h2 {
		font-size: 1.6rem;
	}

	.section-intro {
		font-size: 1rem;
	}

	.service-grid {
		flex-direction: column;
		align-items: center;
	}

	.service-card {
		width: 100%;
		max-width: 340px;
	}

	.demo-box,
	.contact-box {
		width: 100%;
		padding: 22px 18px;
	}
}
