body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9fafb;
  color: #333;
}

    .navbar {
      display: flex;
      position: fixed;
      align-items: center;
      justify-content: space-between; /* This will push items to opposite ends */
      padding: 1rem;
      padding-left: 0px;
      color: black;
      height:30px;
      background-color: #94545400;
      z-index: 100;
      width: 100vw;
      overflow-x: hidden;
    }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links li a {
  display: flex;
  text-decoration: none;
  color: #414144;
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  font-weight: 400; /* Slightly bolder to match Google Sans's clean feel */
  font-size: 16px;
  letter-spacing: 0.25px; /* Google Sans has subtle tracking */
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 12px;
  border-radius: 4px;
}

.nav-links li a:hover {
  background-color: rgba(29, 29, 29, 0.055); /* Light black/gray background */}

.logo {
  display: flex;
  align-items: center;
  margin-left: -33px;
}

.logo-img {
  height: 40px;
  width: auto;
  padding: 4px;
  border-radius: 4px;
  cursor: pointer;
}

.logo-img:hover{
  background-color: rgba(29, 29, 29, 0.055);
}

#navbtn {
  font-size: 1rem;
  width: 180px;
  background: #236bca;
  padding-top: 15px;
  padding-bottom: 15px;
  color: whitesmoke;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  line-height: 1; /* important for vertical centering */
  margin-right: 7px;
}
.portfolio-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background-color: #236bca0f;
}

.portfolio-header h1 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #236bca;
}

.portfolio-header p {
  font-size: 20px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-6px);
}

.portfolio-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.portfolio-info {
  padding: 1.25rem;
}

.portfolio-info h2 {
  margin: 0 0 0.5rem;
  font-size: 20px;
  color: #236bca;
}

.portfolio-info p {
  margin: 0;
  color: #555;
  font-size: 15px;
}
