
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


.hero {
  background: #0f172a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.hero-text h1 {
  font-size: 2.5rem;
   margin-bottom: 10px;
}
.highlight, .subheading {
   color: #00adb5;
}
.hero-img img {
   max-width: 300px;
  margin-top: 20px;
}

.buttons {
  display: flex;
  gap: 10px;
}
.btn {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

.btn-hire {

  background: #00adb5;
}
.btn-download {
  background: #393e46;
}





.topnav {
  background: #f9fafb;
  padding: 10px 20px;
  text-align: center;
}

.topnav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.topnav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}






.section {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.section p {
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
  color: #333;
}


.projects {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.box {
  width: 150px;
  height: 100px;
  background: #e5e7eb;
  border: 2px solid #cbd5e1;
  border-radius: 5px;
}


footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 20px;
}
