/* styles.css */
body,
html {
	margin: 0;
	padding: 0;
	font-family: "Arial", sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f4f4f4;
}
.container {
	width: 80%;
	margin: auto;
	overflow: hidden;
}
header {
	background: #4c3d6d;
	color: white;
	padding-top: 30px;
	min-height: 70px;
	border-bottom: #e8491d 3px solid;
}
header a {
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
}
header ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
header li {
	float: left;
	display: inline;
	padding: 0 20px 0 20px;
}
header #branding {
	float: left;
}
header #branding h1 {
	margin: 0;
}
header nav {
	float: right;
	margin-top: 10px;
}
header .highlight,
header .current a {
	color: #e8491d;
	font-weight: bold;
}
header a:hover {
	color: #ffffff;
	font-weight: bold;
}
#showcase {
	min-height: 400px;
	background: url("https://source.unsplash.com/random/1600x900/?technology")
		no-repeat center center/cover;
	text-align: center;
	color: #ffffff;
}
#showcase h1 {
	margin-top: 100px;
	font-size: 55px;
	margin-bottom: 10px;
}
#showcase p {
	font-size: 20px;
}
#boxes {
	margin-top: 20px;
}
#boxes .box {
	float: left;
	text-align: center;
	width: 30%;
	padding: 10px;
}
#boxes .box img {
	width: 90px;
}
#main {
	padding: 20px 0;
}
#about,
#history {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#contact-form {
	background: #fff;
	padding: 20px;
	margin-top: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#contact-form h2 {
	color: #4c3d6d;
}
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
#contact-form button {
	display: block;
	width: 100%;
	padding: 10px;
	background: #4c3d6d;
	color: white;
	border: 0;
	border-radius: 4px;
	cursor: pointer;
}
#contact-form button:hover {
	background: #e8491d;
}
#contact-info {
	background: #fff;
	padding: 20px;
	margin-top: 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.service {
	background: #fff;
	padding: 20px;
	margin-bottom: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
.service h3 {
	color: #4c3d6d;
	border-bottom: 2px solid #e8491d;
	padding-bottom: 10px;
}
.service ul {
	list-style-type: none;
	padding-left: 0;
}
.service ul li {
	padding: 5px 0;
	position: relative;
	padding-left: 25px;
}
.service ul li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #e8491d;
}
footer {
	padding: 20px;
	margin-top: 20px;
	color: #ffffff;
	background-color: #4c3d6d;
	text-align: center;
}
@media (max-width: 768px) {
	header #branding,
	header nav,
	header nav li,
	#boxes .box {
		float: none;
		text-align: center;
		width: 100%;
	}
	header {
		padding-bottom: 20px;
	}
	#showcase h1 {
		margin-top: 40px;
	}
}
.whatsapp-button {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	background-color: #e8491d;
	border-radius: 50%;
	bottom: 20px;
	right: 20px;
	z-index: 99;
}

.whatsapp-button:hover {
	background-color: #1da1f2;
}

.whatsapp-button i {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;
}
