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

body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f9f9f9;
  color: #333333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 20px 0;
}

.navbar {
  background-color: #04054c;
  padding: 10px 0;
  color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.5rem;
  border: none;
}

.hero {
  background: #e2e8f0;
  text-align: center;
  padding: 60px 20px;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #f4f4f4;
}

.hero-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 3px solid #333;
}

.section {
  padding: 40px 0;
}

h2 {
  margin-bottom: 20px;
  color: #0f172a;
}

.skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills li {
  background: #cbd5e1;
  padding: 8px 15px;
  border-radius: 5px;
}

.project {
  background: #edf2f7;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #0f172a;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 10px;
  border: none;
  background-color: #0f172a;
  color: white;
  cursor: pointer;
}

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

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    display: none;
    background-color: #0f172a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 10px 0;
  }
  .social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  color: #333;
  text-decoration: none;
}

.social-links a:hover {
  color: #007bff;
}


  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
