* {
  padding: 0px;
  margin: 0px;
  font-family: "sans-serif", poppins;
}

/* Navbar */

nav {
  width: 100%;
  height: 12vh;
  background-color: rgb(224, 222, 222);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav1 {
  width: 15%;
  display: flex;
  justify-content: center;
}
.nav1 h1 {
  font-weight: lighter;
  letter-spacing: 3px;
  font-size: 25px;
}
.nav2 {
  width: 45%;
  display: flex;
  justify-content: space-evenly;
}
.nav2 a {
  text-decoration: none;
  color: rgb(123, 121, 121);
  font-size: 18px;
  font-weight: lighter;
  padding: 5px;
  cursor: pointer;
}
.nav2 a:hover {
  box-shadow: 0px 0px 5px turquoise;
}
.nav3 {
  width: 15%;
  display: flex;
  justify-content: space-evenly;
  padding-right: 15px;
}
.nav3 a{
  color: rgb(84, 83, 83);
}
.nav3 i {
  font-size: 20px;
}
.nav3 i:hover {
  color: rgb(46, 200, 184);
}

/* Portfolio */

.portfolio {
  width: 100%;
  min-height: 120vh;
  box-sizing: border-box;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portfolio-heading {
  width: 100%;
  height: 13vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 13px;
}

.portfolio-heading h2 {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
}

.portfolio-heading p {
  font-size: 1.1rem;
  color: darkgray;
}

.portfolio-grid {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.portfolio-item {
  display: flex;
  align-items: stretch;
  width: 95%;
  max-width: 1350px;
  min-height: 95vh;
  margin: 30px;
  box-sizing: border-box;
  gap: 40px;
  border-radius: 10px;
  padding: 30px;
}

.portfolio-item img {
  width: 65%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.portfolio-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  min-height: 95vh;
}

.portfolio-info {
  flex: 0 0 25%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.15);
}

.portfolio-info h4 {
  font-size: 23px;
  font-weight:bolder;
  margin-bottom: 10px;
}

.portfolio-info hr {
  width: 100%;
  border: 0;
  border-top: 1px solid #ccc;
  margin-bottom: 15px;
}

.portfolio-info ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color:rgb(79, 79, 79);
  margin-bottom:10px;
}

.portfolio-info ul li strong {
  font-weight: bolder;
  color: black;
}

.portfolio-info ul li a {
  color: rgb(51, 184, 168);
  text-decoration: none;
}

.portfolio-description {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.portfolio-description h2 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.portfolio-description p {
  color: gray;
  line-height: 1.5;
  font-size: 16px;
  text-align: justify;
}

footer {
  background-color: lightgray;
  width: 100%;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

footer p {
  font-size: 17px;
  color: gray;
}

footer strong {
  color: rgb(51, 184, 168);
}

footer a{
  text-decoration: none;
}

footer i {
  font-size: 20px;
  background-color: transparent;
  border: 1px solid gray;
  padding: 9px;
  color: gray;
  border-radius: 50%;
}

footer i:hover {
  color: rgb(51, 184, 168);
  border: 1px solid rgb(51, 184, 168);
}
