* {
  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);
}


/* Web Card */

.portfolio {
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 15px;
}

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

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

.portfolio-heading p {
  font-size: 1.1rem;
  color: darkgray;
  margin-top: 5px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.portfolio-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.portfolio-info {
  padding: 15px;
}

.portfolio-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}

.portfolio-info p {
  color: gray;
  font-size: 1rem;
}

.portfolio-links {
  margin-top: 10px;
}

.portfolio-links a {
  margin-right: 12px;
  color: gray;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.portfolio-links a:hover {
  color: mediumturquoise;
}

/* Footer */

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);
}
