@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
/* body {
  background-color: #e0ff002e !important;
} */
html {
  scroll-behavior: smooth;
}
i {
  color: #444444;
}
.navbar {
  width: 100%;
  height: 70px;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.931);
  box-shadow: 0 0.125rem 1rem 0 rgb(0 0 0 / 30%);
  z-index: 10;
}
.navWrap {
  width: 1200px;
  padding: 0px 24px;
  /* max-width: 1300px; */
  display: flex;
  justify-content: space-between !important;
  align-items: center;
}
.logo {
  line-height: 0%;
  font-size: 1.5rem;
  /* font-weight: 700; */
  text-align: center;
}
.navCat {
  display: flex;
  gap: 20px;
  /* width: 30%; */
  font-size: 1rem;
  font-weight: 500;
  /* max-width: 30%; */
  justify-content: end;
  cursor: pointer;
}
.navCat p:hover {
  transform: scale(1.05);
  color: black;
  /* color: rgb(16, 16, 16); */
  animation-duration: 5000ms;
}
.hamburger {
  width: 50px;
  height: 30px;
  background-color: black;
  display: none;
}
#ioeLink:hover {
  text-decoration: underline !important;
}
.professionalJourney {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.professionalJourney li {
  font-weight: 600;
  color: #5a5a5a;
}
/* animation start  */
.img {
  position: relative;
  /* height: 250px;
  width: 250px; */
  display: flex;
  /* flex-direction: row; */
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  /* background: var(--bs-theme-green); */
  box-shadow: 0 0 10px #c4c5ca;
}
.img::after {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: absolute;
  content: "";
  height: 111%;
  width: 111%;
  border: 25px solid #c4c5cae0;
  border-radius: 100%;
  animation-name: ripple;
  animation-duration: 3s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
.img::before {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: absolute;
  content: "";
  height: 111%;
  width: 111%;
  border: 25px solid #c4c5ca;
  border-radius: 100%;
  animation-name: ripple;
  animation-duration: 3s;
  animation-delay: 0.5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}
@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
    z-index: -1;
  }
  to {
    opacity: 0;
    transform: scale3d(1.1, 1.1, 1);
    z-index: -1;
  }
}
/* animation end  */

.section {
  padding: 1rem;
  display: flex;
  justify-content: center;
}
.sectionWrap {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  justify-content: center;
}
.sectionWrapProject {
  column-gap: 2rem;
  row-gap: 2rem;
}
.heroContent {
  width: 60%;
}
.hero {
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img {
  background-image: url(../images/profile.JPG);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  /* overflow: hidden; */
  background-color: #c4c5ca;
}
.socialIcons {
  margin-top: 1rem;

  width: 80%;
  display: flex;
  justify-content: space-around;
}
.socialIcons i {
  font-size: 24px;
  color: #101528cf;
  cursor: pointer;
}
.socialIcons i:hover {
  transform: scale(1.1);
  color: black;
}
h1,
h3 {
  /* margin-top: 0.5rem; */
  font-weight: 400;
}
.hero h1 {
  margin-top: 2rem;
}
.hero h3 {
  color: #727272;
}
.typeWriter h1 {
  font-weight: 400;
  overflow: hidden;
  border-right: 0.15 em solid rgb(0, 0, 0);
  white-space: nowrap;
  margin: auto 0;
  letter-spacing: 0.08em;
  animation: typing 4s steps(100, end), blink-caret 0.55s step-end infinite;
}
.heroContent p {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.2rem;

  color: #3c3c3c;
}
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 200px;
  }
}

.education h3 {
  margin-bottom: 0.4rem;
  font-weight: 600;
  color: #5a5a5a;
}
.interest h3 {
  /* margin-bottom: 0.4rem; */
  font-weight: 600;
  color: #5a5a5a;
}
.eduInterest {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}
.education1 {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}
.eduImage {
  width: 30px;
  height: 40px;
  background-image: url(../images/logobz.png);
  background-size: contain;
  background-repeat: no-repeat;
  align-self: center;
  /* background-color: aquamarine; */
}
#eduCourse {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 50%;
  color: #6a6a6a;
}
#eduCollege {
  font-size: 0.9rem;
  color: #939393;
  margin-top: 6px;
}
.interest {
  min-width: 250px;
}
.interest ul li {
  font-size: 0.9rem;
  font-weight: 600;
  color: #6a6a6a;
  list-style: none;
}
.projectSection {
  flex-direction: column;
  align-items: center;
}
.projectTitle {
  font-size: 2rem;
  color: #313131;
  font-weight: 500;
  text-rendering: optimizeLegibility;
}
.projectCard {
  width: 280px;
  height: 360px;
  /* background-color: rgb(225, 225, 225); */
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 1px 0px 5px 0px #bcbcbc;
}
.projectCard:hover {
  /* transform: rotateZ(-3deg); */
  transform: scale(1.05);
  transition-duration: 700ms;
}
.projectCard h1 {
  font-size: 1.4rem;
  margin: 0px 0.3rem;
}
.projectCard p {
  margin: 0.5rem;
  font-size: 0.8rem;
}
.thumbnail {
  background-position: center;
  background-size: cover;
  /* flex: 1; */
  width: 100%;
  height: 170px;
  background-color: beige;
}
@media (max-width: 768px) {
  /* .sectionWrap {
    display: block;
  } */
  .section {
    padding: 3rem 1rem;
  }
  .hero {
    width: 100%;
  }
  .heroContent {
    width: 100%;
  }
  .typeWriter h1 {
    margin-top: 1.5rem;
  }
  .socialIcons {
    width: 250px;
  }
}

@media (max-width: 425px) {
  .navCat {
    display: none;
  }
  /* .hamburger {
    display: block;
  } */
}
