.animated-text-hero {
  position: relative;
  min-height: 80vh;
  width: 100%;
  text-align: center;
  font-size: xx-large;
  font-family: var(--MAIN_FONT);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  transform: translateY(-10%);
  opacity: 0;
  margin-bottom: 2.5rem;
}

.animated-text-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/blob-1.svg") no-repeat center center;
  background-position: fixed;
  background-size: cover auto;
  opacity: 0.25;
  backdrop-filter: blur(10px);
  z-index: -1;
  transition: all ease 300ms;
}

.animated-text-hero h1 {
  position: relative;
  color: var(--MAIN_ACCENT);
  margin-bottom: 1rem;
}
.animated-text-hero .hi-span {
  display: inline-block;
  transform: translate(-100%);
  opacity: 0;
  font-size: 8rem;
}
.animated-text-hero .hi-span img {
  height: 75px;
  width: auto;
  position: absolute;
  left: -50%;
  top: 25%;
}

.animated-text-hero h2 {
  overflow: hidden;
  position: relative;
  color: var(--WHITE);
  margin-bottom: 0.5rem;
  transition: all ease 300ms;
}
.profession-span {
  display: flex;
  align-items: center;
  color: var(--MAIN_ACCENT);
  border-radius: 3px;
  padding: 0 0.5rem;
  transition: all ease 750ms;
}
.profession-span.pre-animation {
  opacity: 0;
  transform: translateY(100%) scale(0.75);
}

.get-in-touch-btn {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 12px 22px;
  margin-top: 2rem;
  border: none !important;
  border-radius: 4px;
  background-color: transparent;
  color: var(--COLORFULL_YELLOW);
  font-size: x-large;
  transition: all ease 300ms;
}
.get-in-touch-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  background-color: var(--LIGHT_BLACK);
  border-radius: 6px;
  z-index: -1;
  transition: all ease 300ms;
}
.get-in-touch-btn:hover {
  background-color: unset;
  border: unset;
}
.get-in-touch-btn span {
  position: relative;
  margin-bottom: 0.5rem;
  transition: all ease 300ms;
}
.get-in-touch-btn span::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: var(--COLORFULL_YELLOW);
  border-radius: 6px;
  z-index: -1;
  transition: all ease 300ms;
}
.get-in-touch-btn span:hover::before {
  width: 75%;
  transition-delay: 300ms;
}

.get-in-touch-btn:hover::before {
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--WHITE);
}
.get-in-touch-btn ion-icon {
  transform: rotate(-45deg);
}
.get-in-touch-btn:hover > ion-icon {
  animation: bibble 2s ease-in-out infinite;
}

.socials {
  text-align: center;
  padding: 1.5rem 0 0.5rem 0;
  background-color: var(--BG_SHADE_LIGHTER);
  border-radius: 10px;
  margin: 1.5rem 0;
}
.get-in-touch-modal-sub-heading {
  color: var(--COLORFULL_YELLOW);
  font-size: large;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.get-in-touch-form {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background-color: var(--BG_SHADE_LIGHTER);
  border-radius: 10px;
}

.modal-send-msg-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--TEXT_SUCCESS);
  color: var(--WHITE);
  border: 2px solid var(--TEXT_SUCCESS);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: large;
  font-weight: bold;
  cursor: pointer;
  transition: all ease 300ms;
}

.modal-send-msg-btn:hover,
.modal-send-msg-btn:focus-visible {
  background-color: var(--MAIN_ACCENT);
  border: 2px solid var(--WHITE);
}
.modal-send-msg-btn ion-icon {
  transition: all ease 300ms;
}
.modal-send-msg-btn:hover > ion-icon {
  transform: translateX(10%);
}

.name-span-div {
  margin-bottom: 1rem;
}
.name-span {
  position: relative;
  white-space: nowrap;
  color: var(--COLORFULL_YELLOW);
  font-family: var(--LOGO_FONT);
  letter-spacing: 5px;
  transition: all ease 300ms;
}
.name-span::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 2px;
  background: var(--COLORFULL_YELLOW);
  opacity: 0;
  transition: all ease 300ms;
}
.name-span:hover {
  color: var(--COLORFULL_PURPLE);
}
.name-span:hover::after {
  opacity: 1;
  width: 65%;
}

/* github content styles  */
.github-glimpse{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}

.github-stats {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #0d1017;
  padding: 2rem;
  border-radius: 5px;
}
.github-stats::before {
  content: "GitHub Stats";
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: var(--TEXT_SUCCESS);
  transition: all ease 300ms;
}
.github-stats .github-user{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 2rem;
  color: var(--WHITE);
  font-size: large;
}
.github-stats .github-user .github-profile-link{
  transition: all ease 300ms;
}
.github-stats .github-user .github-profile-link:hover {
  color: var(--MAIN_ACCENT);
  transform: scale(1.025);
}
.github-stats .github-user .user-profile{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.github-stats .github-user .user-profile .gh-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.github-stats .github-user .user-info{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.github-stats .github-contributions {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--LIGHT_BLACK);
}
.github-stats .github-contributions h1{
  color: var(--WHITE);
}
.github-stats .github-contributions img{
  width: 100%;
  height: auto;
}
/* end of github content styles  */

/* features projects section styles  */
.featured-projects{
  margin-top: 4rem;
}
.featured-projects .featured-projects__title{
  margin-bottom: 4rem;
}
.featured-projects-container{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.featured-projects-item{
  position: relative;
  width: 350px;
  height: 250px;
  border-radius: 10px;
  margin-bottom: 2.5rem;
  transition: all 300ms ease;
}
.featured-projects-item:hover{
  transform: translate(0px, -7px);
  box-shadow: 0px 7px 0px var(--MAIN_ACCENT);
  outline: 2px solid var(--MAIN_ACCENT);
}
@media (max-width: 768px) {
  .featured-projects-container{
    flex-direction: column;
    gap: 2rem;
  }
  .featured-projects-item{
    width: 100%;
    flex: 1;
    height: 150px;
  }
}

.featured-projects-item-img{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: all 300ms ease;
}
.featured-projects-item:hover > .featured-projects-item-img img{
  opacity: 0.125;
  filter: blur(1px);
}
.featured-projects-item-img img{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 1;
}
.featured-projects-item-title{
  width: 75% !important;
  position: absolute;
  left: 0.5rem;
  top: 0rem;
  transform: translate(0%,-50%);
  background-color: var(--BG_SHADE_LIGHTER);
  color: var(--MAIN_ACCENT);
  width: min-content;
  /* outline: 1px solid var(--WHITE); */
  outline-offset: -6px;
  border-radius: 6px;
  padding:0.5rem 1rem;
  font-size: x-large;
  font-weight: bold;
  text-align: center;
  pointer-events: none;
  box-shadow: 1px 2px 6px black;
  overflow: hidden;
  z-index: 1;
  transition: all 300ms ease 300ms;
}
.featured-projects-item-title::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%) rotate(-45deg);
  width: 5rem;
  height: 0.5rem;
  background: var(--COLORFULL_PINK);
  opacity: 1;
  z-index: -1;
  transition: all 300ms ease;
}
.featured-projects-item:hover > .featured-projects-item-title{
  /* visibility: hidden; */
  /* opacity: 0; */
  transform: translate(10%,-50%);
  opacity: 0;
}

.featured-projects-item-content{
  position: absolute;
  top: 1.5rem;
  max-height: 75% !important; 
  transform: translateY(10%);
  opacity: 0;
  visibility: hidden;
  padding-inline: 1rem;
  border-radius: 10px;
  font-size: larger;
  color: var(--WHITE);
  padding-bottom: 1rem;
  overflow: scroll;
  line-height: 1.5;
  z-index: 2;
  transition: all 200ms ease-out 450ms;
}
.featured-projects-item-content::-webkit-scrollbar{
  display: none;
}
.featured-projects-item:hover > .featured-projects-item-content{
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

 .featured-projects-item-links{
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  gap: 1rem;
  transform: translate(-40%,50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 300ms ease 450ms;
}
.featured-projects-item:hover > .featured-projects-item-links{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,50%);
  pointer-events: all;
}
 .featured-projects-item-links a{
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 500;
  border: unset !important;
  outline: 1px solid var(--MAIN_ACCENT) !important;
  border-radius: 6px;
}
 .featured-projects-item-links a:hover{
  border: unset !important;
  outline: 1px solid var(--COLORFULL_YELLOW) !important;
  color: var(--WHITE);
}


/* end of features projects section styles  */
