* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("your-photo.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.hero nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

.hero nav a:hover {
  color: #1e90ff;
}

.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #1e90ff;
}

.section p,
.section ul {
  max-width: 700px;
  margin: 0 auto;
  color: #ddd;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.projects a {
  display: block;
  padding: 1rem;
  background: #111;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.projects a:hover {
  background: #1e90ff;
}

ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

ul li {
  background: #111;
  padding: 10px 15px;
  border-radius: 6px;
}

.socials a {
  margin: 0 10px;
  color: #1e90ff;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #111;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #aaa;
  }
