body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  background-color: #000;
}
header {
  background: #111;
  padding: 1em;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px; /* Adjust as needed */
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1em;
  margin: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
}

.product-list,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
  margin-top: 2em;
}

.products {
  justify-content: space-between;
  gap: 2em;
  padding: 4em 2em;
  background-color: #111;
  text-align: center;
  flex-wrap: wrap;
}
.product {
  flex: 1 1 30%;
  border: 1px solid #333;
  padding: 2em;
  background-color: #000;
  transition: transform 0.3s;
}
.product:hover {
  transform: translateY(-5px);
}
.product h1 {
  margin-bottom: 0.5em;
}
.product p {
  margin-bottom: 1em;
}
.slide {
  min-width: 100vw;
  padding: 4em;
  background: #111;
  scroll-snap-align: start;
  text-align: center;
}
.slide h1 { margin-bottom: 0.5em; }
.slide p { margin-bottom: 1em; }
.btn {
  padding: 0.75em 1.5em;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #fff;
  color: #000;
}
.services {
  justify-content: space-between;
  gap: 2em;
  padding: 4em 2em;
  background-color: #000;
  flex-wrap: wrap;
  text-align: left;
}

.service {
  flex: 1 1 30%;
  background-color: #111;
  padding: 2em;
  border: 1px solid #333;
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}
.services, .about, .skills {
  padding: 2em;
  border-top: 1px solid #333;
}
.services h2, .about h2, .skills h2 {
  margin-top: 0;
}
.skills ul {
  list-style: disc;
  padding-left: 1.5em;
}
footer {
  padding: 2em;
  text-align: center;
  background: #111;
}
#contact {
  background: #111;
  color: #fff;
  padding: 2em 1em;
}
.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2em;
  max-width: 800px;
  margin: 0 auto;
}
.contact-item h3 {
  margin-bottom: 0.5em;
  font-size: 1.1em;
}
.contact-item p {
  margin: 0;
}
.contact-item a {
  color: #fff;
  text-decoration: underline;
}
.footer-bottom {
  margin-top: 1.5em;
  text-align: center;
  font-size: 0.9em;
}
.footer-bottom a {
  color: #fff;
  text-decoration: underline;
}