body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: #f4f4f9;
  color: #333;
  font-size: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 7%;
  /* background: linear-gradient(135deg, #010e2a, #025a72); */
  background: #ffffff54;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);

  /* color: #fff;
    font-weight: 999; */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.navbar .logo {
  height: 40px;
  margin: 0;
  text-decoration: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  display: inline;
}

.navbar ul li a {
  font-weight: 999;
  color: #00013a;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #2400ef;
  transform: scale(1.1);
}

.back-link{
    position: relative;
}

.back-link i {
  font-size: 30px;
  font-weight: bold;
  color: #010e2a;
  position: absolute;
  position: fixed;
  background: #fff;
  top: 60px;
  left: 20px;
  padding: 5px;
  border: 1px solid #333;
  border-radius: 10px;
  transition: 0.3s ease;
}

.back-link i:hover{
    border: 1px solid #025a72;
    color: #025a72;
    box-shadow: 0 0 10px #025a72;
}

#project-des {
  padding: 30px 7%;
}

#project-des a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
  color: #010e2a;
  transition: 0.3s ease;
}

#project-des a:hover {
  text-decoration: underline;
  color: #025a72;
}

#project-des h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

.pro h2 {
  font-size: 1.5rem;
  font-weight: bold;
}

.project-item {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.item {
  max-width: 500px;
  margin: 10px;
}

.item img {
  width: 90%;
  max-width: 480px;
}

.download-link {
  margin: 20px 0;
  display: block;
  text-align: right;
}





/* ================ SMALL SCREENS =========== */
@media (max-width: 768px) {
  .navbar .logo {
    height: 20px;
  }

  .navbar ul li a {
    font-size: 0.8rem;
    align-items: center;
    place-items: center;
  }
}