@charset "utf-8";
/* CSS Document */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
	font-family: Arial, sans-serif;
	background: #111;
	color: #fff;
	margin-left: 30px;
}
.hero .hero-img img {
	padding-right: 0px;
	padding-left: 0px;
	margin-right: 68px;
}
.service-boxes .box p {
	margin-right: 64px;
}
.service-boxes .box h4 {
	margin-right: 60px;
}



.container {
  width: 1000px;
  margin: auto;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #00ff66;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
}
.btn {
  background: #00ff66;
  color: #111;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
.btn-outline {
  border: 2px solid #00ff66;
  color: #00ff66;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
.hero-text {
  max-width: 55%;
}
.hello {
  color: #aaa;
}
.highlight {
  color: #00ff66;
}
.desc {
  margin: 20px 0;
  line-height: 1.5;
}
.hero-buttons {
  display: flex;
  gap: 15px;
}
.hero-img img {
  max-width: 350px;
  border-radius: 10px;
}

/* Services */
.services {
  text-align: center;
  padding: 50px 0;
}
.service-boxes {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
}
.box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 30%;
}
.box h4 {
  margin-bottom: 10px;
  color: #00ff66;
}

/* About */
.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
.about-img img {
  max-width: 300px;
  border-radius: 50%;
  border: 5px solid #00ff66;
}
.about-text {
  max-width: 55%;
}
.stats {
  list-style: none;
  margin: 20px 0;
}
.stats li {
  margin-bottom: 10px;
}
.stats strong {
  color: #00ff66;
}

/* Tools */
.tools {
  text-align: center;
  padding: 50px 0;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 30px;
}
.service-boxes .box img {
	height: 317px;
	width: 283px;
	margin-left: -12px;
	text-align: center;
}
.service-boxes .box p {
	margin-left: 45px;
}
.service-boxes .box h4 {
	margin-left: 48px;
}
