/* styles.css */

/* Reset styles */
body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
}

.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  background-color: #f6ee07;
  color: #000;
  padding: 20px 0;
}

header h1 {
  float: left;
}

nav ul {
  float: right;
}

nav ul li {
  display: inline;
  margin-left: 20px;
}

nav ul li a {
  color: #000;
  text-decoration: none;
}

.hero {
  background-image: url("hero-image.jpg");
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #555;
}

.services {
  background-color: #f4f4f4;
  padding: 50px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.service {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #f6ee07;
  color: #000;
  text-align: center;
  padding: 20px 0;
}

/* Add these styles to styles.css */

.projects {
  background-color: #f4f4f4;
  padding: 50px 0;
}

.projects h2 {
  text-align: center;
  margin-bottom: 30px;
}

.projects .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.project {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.clients {
  background-color: #fff;
  padding: 50px 0;
}

.clients h2 {
  text-align: center;
  margin-bottom: 30px;
}

.clients .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 20px;
}

.client img {
  max-width: 100%;
  height: auto;
}
