/* General Body Styles */
body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: #f4f4f9;
	color: #333;
}

/* Header and Navigation */
header {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 1rem 5%;
	position: sticky;
	top: 0;
	z-index: 1000;
}

nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #0056b3;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

nav ul li {
	margin-left: 2rem;
}

nav ul li a {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
}

nav ul li a:hover {
	color: #0056b3;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 86, 179, 0.7), rgba(0, 86, 179, 0.7)),
		url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
	background-size: cover;
	background-position: center;
	color: #fff;
	text-align: center;
	padding: 6rem 1rem;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.cta-button {
	background-color: #ffc107;
	color: #333;
	padding: 0.8rem 1.5rem;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #e0a800;
}

/* Sections General Styling */
section {
	padding: 4rem 5%;
	text-align: center;
}

section h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
	color: #0056b3;
}

/* Service Section */
.service-cards {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 2rem;
}

.card {
	background-color: #fff;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	flex-basis: 30%;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
	margin-bottom: 1rem;
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: #0056b3;
}

/* About Section */
#about {
	background-color: #fff;
}

#about p {
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Why Choose Us Section */
#why-us {
	background-color: #fff;
}

.reasons-container {
	display: flex;
	justify-content: space-around;
	gap: 2rem;
	margin-top: 2rem;
}

.reason {
	flex-basis: 30%;
	text-align: center;
}

.reason img {
	margin-bottom: 1rem;
}

.reason h3 {
	font-size: 1.5rem;
	color: #0056b3;
	margin-bottom: 0.5rem;
}

/* Contact Section */
#contact-form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

#contact-form input,
#contact-form textarea {
	padding: 0.8rem;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}

#contact-form button {
	padding: 0.8rem;
	background-color: #0056b3;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#contact-form button:hover {
	background-color: #004494;
}

/* Footer */
footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	padding: 1.5rem 5%;
}
