@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulsate {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes fadeInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
html {
  scroll-behavior: smooth;
}

*, ::before, ::after {
  box-sizing: border-box;
}

body {
  margin: 3rem 0 0 0;
  font-family: "Inter", sans-serif;
  font-size: 0.938rem;
  font-weight: 500;
  background: rgb(14, 14, 14);
  background-attachment: fixed;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("src/assets/Composite.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  mix-blend-mode: screen;
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, transparent 75%, #161618 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 75%, #161618 100%);
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #eae9f1;
}

img {
  max-width: 100%;
  height: auto;
}

.bd-grid {
  max-width: 1024px;
  display: grid;
  grid-template-columns: 100%;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }
}
@media screen and (min-width: 1024px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
}
section {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  height: 100vh;
  padding: 25px;
  color: #eae9f1;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section h1 {
  font-family: inherit;
  font-size: 2.5em;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}

.header {
  width: 100%;
  height: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 1.5rem;
  background-color: black;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  color: white;
}

.header__toggle {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

@media screen and (min-width: 930px) {
  .header {
    height: 4rem;
  }
  .header__logo, .header__toggle {
    display: none !important;
  }
}
.navbar {
  width: 100%;
  background-color: black;
  color: #eae9f1;
  z-index: 100;
}
@media screen and (max-width: 930px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    padding: 1.5rem 0;
    transition: 0.5s;
  }
}
.navbar.show {
  left: 0;
}

.nav__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 930px) {
  .nav__content {
    height: 100%;
    display: grid;
    grid-template-rows: max-content 1fr max-content;
    row-gap: 2rem;
    justify-items: start;
    text-align: left;
    padding-left: 0.5rem;
  }
}

.nav__close {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  display: none !important;
}
.nav__close:hover {
  color: #2c4988;
}
@media screen and (max-width: 930px) {
  .navbar.show .nav__close {
    display: block !important;
  }
}

.nav__profile {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 930px) {
  .nav__profile {
    flex-direction: column;
  }
}
.nav__profile .nav__img {
  width: 32px;
  height: 32px;
  margin-right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: black;
  overflow: hidden;
}
.nav__profile .nav__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 930px) {
  .nav__profile .nav__img {
    width: 56px;
    height: 56px;
    margin-bottom: 0.8rem;
    margin-left: 0;
    margin-right: auto;
  }
}
.nav__profile .nav__name {
  display: block;
  color: white;
  font-size: 0.938rem;
  margin-right: 0.8rem;
}
@media screen and (max-width: 930px) {
  .nav__profile .nav__name {
    text-align: left;
  }
}
.nav__profile .nav__position {
  font-size: 0.813rem;
  color: #2c4988;
}
@media screen and (min-width: 930px) {
  .nav__profile .nav__position {
    display: none;
    text-align: left;
  }
}

.nav__menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 930px) {
  .nav__menu {
    align-self: center;
    flex-direction: column;
  }
}
.nav__menu .nav__list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 930px) {
  .nav__menu .nav__list {
    flex-direction: column;
  }
}
.nav__menu .nav__list .nav__item {
  margin: 0 0.25rem;
}
@media screen and (max-width: 930px) {
  .nav__menu .nav__list .nav__item {
    margin: 0.5rem 0;
  }
}
.nav__menu .nav__list .nav__item .nav__link {
  color: white;
  padding: 0.5rem 0.8rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  position: relative;
}
.nav__menu .nav__list .nav__item .nav__link:hover {
  background-color: #2c4988;
  transform: translateY(-1px);
}
.nav__menu .nav__list .nav__item .nav__link.active {
  background-color: #2c4988;
  color: white;
  box-shadow: 0 2px 8px rgba(44, 73, 136, 0.3);
}

.nav__social {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__social .nav__social-icon {
  font-size: 1.2rem;
  color: white;
  margin-right: 1rem;
  transition: 0.3s ease-in-out;
}
.nav__social .nav__social-icon:hover {
  transform: scale(1.2);
}
.nav__social .nav__social-icon:last-child {
  margin-right: 0;
}
.nav__social .github-icon {
  background-image: url(https://cdn.simpleicons.org/github/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 21px;
  height: 21px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.nav__social .linkedin-icon {
  background-image: url("./src/assets/icons/linkedin.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 21px;
  height: 21px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  filter: brightness(0) invert(1);
}
.nav__social .gmail-icon {
  background-image: url(https://cdn.simpleicons.org/gmail/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 21px;
  height: 21px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
.nav__social .orcid-icon {
  background-image: url(https://cdn.simpleicons.org/orcid/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 21px;
  height: 21px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 930px) {
  .nav__social {
    justify-content: center;
  }
}

#home {
  min-height: 100vh;
  color: #eae9f1;
  font-family: "Inter", sans-serif;
}
#home .home-container {
  max-width: 100vw;
  width: 100vw;
  border-radius: 10px;
  animation: fadeInFromBottom 1s ease-out;
  margin-top: -20px;
}
#home .home-container .home-layout {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
  }
}
#home .home-container .home-layout .home-left {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-left {
    justify-content: flex-end;
    align-items: center;
    margin-right: 2rem;
  }
}
#home .home-container .home-layout .home-left .home-photo {
  width: 120px;
  height: 120px;
  border-radius: 25%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: fadeInFromBottom 1s ease-out;
}
@media screen and (min-width: 600px) {
  #home .home-container .home-layout .home-left .home-photo {
    width: 180px;
    height: 180px;
  }
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-left .home-photo {
    width: 220px;
    height: 220px;
  }
}
#home .home-container .home-layout .home-left .home-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(44, 73, 136, 0.18);
}
#home .home-container .home-layout .home-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-right {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }
}
#home .home-container .home-layout .home-right .home-content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #eae9f1;
  margin-bottom: 0.3rem;
  animation: fadeInFromBottom 1s ease-out 0.2s both;
  line-height: 1.2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #home .home-container .home-layout .home-right .home-content h1 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-right .home-content h1 {
    font-size: 2.5rem;
    text-align: left;
    justify-content: flex-start;
  }
}
#home .home-container .home-layout .home-right .home-content .profession {
  font-size: 1rem;
  color: #2c4988;
  font-weight: 400;
  margin-bottom: 0.7rem;
  animation: fadeInFromBottom 1s ease-out 0.4s both;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #home .home-container .home-layout .home-right .home-content .profession {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-right .home-content .profession {
    font-size: 1.6rem;
    text-align: left;
    justify-content: flex-start;
  }
}
#home .home-container .home-layout .home-right .home-content .tagline {
  font-size: 0.7rem;
  color: #eae9f1;
  line-height: 1.4;
  opacity: 0.9;
  width: 250px;
  max-width: 90vw;
  font-weight: 300;
  animation: fadeInFromBottom 1s ease-out 0.6s both;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 600px) {
  #home .home-container .home-layout .home-right .home-content .tagline {
    font-size: 1rem;
    width: 400px;
  }
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-right .home-content .tagline {
    text-align: left;
    font-size: 1.05rem;
    margin-left: 0;
    margin-right: 0;
  }
}
#home .home-container .home-layout .home-right .home-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeInFromBottom 1s ease-out 0.8s both;
}
@media screen and (min-width: 900px) {
  #home .home-container .home-layout .home-right .home-actions {
    flex-direction: row;
    gap: 1.2rem;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }
}
#home .home-container .home-layout .home-right .home-actions .btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
}
#home .home-container .home-layout .home-right .home-actions .btn:hover {
  transform: translateY(-2px);
}
#home .home-container .home-layout .home-right .home-actions .btn:active {
  transform: translateY(0);
}
#home .home-container .home-layout .home-right .home-actions .btn-primary {
  background: transparent;
  color: #2c4988;
  border: 2px solid #2c4988;
}
#home .home-container .home-layout .home-right .home-actions .btn-primary:hover {
  background: #5452a6;
  color: white;
}
#home .home-container .home-layout .home-right .home-actions .btn-primary::before {
  content: "📄";
  font-size: 1rem;
}
#home .home-container .home-layout .home-right .home-actions .btn-secondary {
  background: transparent;
  color: #2c4988;
  border: 2px solid #2c4988;
}
#home .home-container .home-layout .home-right .home-actions .btn-secondary:hover {
  background: #2c4988;
  color: white;
}
#home .home-container .home-layout .home-right .home-actions .btn-secondary::before {
  content: "👋";
  font-size: 1rem;
}

.about-me-section {
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  padding: 25px;
  color: #eae9f1;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-me-section .about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: auto;
  max-width: 60%;
  background: radial-gradient(circle, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%);
}
.about-me-section .about-container h1 {
  font-family: inherit;
  font-size: 2.5em;
  margin-bottom: 20px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .about-me-section .about-container h1 {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}
.about-me-section .about-container .about-me-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  width: 100%;
}
.about-me-section .about-container .about-me-picture {
  width: 500px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
  margin-right: 20px;
  filter: contrast(1.2) saturate(1.5) brightness(1.2);
}
.about-me-section .about-container .about-me-text {
  gap: 10px;
  width: 100%;
  text-align: justify;
}
.about-me-section .about-container .about-me-text .intro-text {
  font-size: 2em;
  margin: 0;
  color: white;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
}
.about-me-section .about-container .about-me-text .subintro-text {
  font-size: 1.8em;
  color: #2c4988;
  font-weight: bold;
  text-align: left;
  margin-top: 1px;
}
.about-me-section .about-container .about-me-text p {
  font-size: 1em;
  line-height: 1.8;
}

.projects-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 25px;
  color: #eae9f1;
  font-family: "Inter", sans-serif;
}
.projects-section .projects-container {
  width: 300px;
  max-width: 75%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container {
    width: 500px;
    max-width: 85%;
  }
}
@media screen and (min-width: 930px) {
  .projects-section .projects-container {
    width: 700px;
    max-width: 100%;
  }
}
.projects-section .projects-container h1 {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #eae9f1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container h1 {
    font-size: 1.8em;
  }
}
.projects-section .projects-container .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-height: 600px) {
  .projects-section .projects-container .projects-grid {
    max-height: 400px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.projects-section .projects-container .projects-grid .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  gap: 20px;
  text-align: center;
  color: #2c4988;
  font-size: 1.1em;
  opacity: 0.8;
  grid-column: 1/-1;
}
.projects-section .projects-container .projects-grid .loading .loader {
  border: 8px solid rgba(234, 233, 241, 0.1);
  border-top: 8px solid #2c4988;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}
.projects-section .projects-container .projects-grid .error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  text-align: center;
  grid-column: 1/-1;
}
.projects-section .projects-container .projects-grid .error:before {
  content: "⚠️";
  margin-right: 10px;
}
.projects-section .projects-container .projects-grid .project {
  background: rgba(44, 73, 136, 0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(44, 73, 136, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  animation: fadeInFromBottom 0.6s ease-out forwards;
}
@media screen and (max-height: 600px) {
  .projects-section .projects-container .projects-grid .project {
    max-height: 400px;
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 8px;
  }
}
.projects-section .projects-container .projects-grid .project:hover {
  transform: translateY(-5px);
  background: rgba(44, 73, 136, 0.08);
  border-color: rgba(44, 73, 136, 0.3);
  box-shadow: 0 8px 25px rgba(44, 73, 136, 0.15);
}
.projects-section .projects-container .projects-grid .project .project-main {
  flex: 1;
  min-width: 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-row-top h3 {
  color: #2c4988;
  font-size: 1.3em;
  font-weight: 600;
  margin: 0 0 15px 0;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-top h3 {
    text-align: left;
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-top .project-meta {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
    position: static;
    height: auto;
    z-index: auto;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-row-bottom {
  display: none;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-row-bottom .project-description {
  display: none;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-bottom .project-description {
    display: block;
  }
}
@media screen and (min-width: 930px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-bottom .project-description {
    display: block;
    color: rgba(234, 233, 241, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95em;
    flex: 1 1 60%;
    margin-right: 16px;
    min-width: 0;
    word-break: break-word;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-row-bottom .project-topics {
  display: none;
}
.projects-section .projects-container .projects-grid .project .project-main .project-row-bottom .project-activity {
  display: none;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-row-bottom .project-activity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 8px;
    margin-left: 0;
    padding-left: 12px;
    max-width: 180px;
    flex: 1 1 auto;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-meta {
  display: none;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-meta {
    display: flex;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-meta .language {
  background: #5452a6;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.8em;
  text-align: center;
}
.projects-section .projects-container .projects-grid .project .project-main .project-meta .stars, .projects-section .projects-container .projects-grid .project .project-main .project-meta .forks {
  color: #b704bb;
  font-weight: 500;
  font-size: 0.85em;
  text-align: center;
  padding: 4px 8px;
}
.projects-section .projects-container .projects-grid .project .project-main .project-topics {
  display: none;
}
@media screen and (min-width: 930px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-topics {
    max-width: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0;
    justify-content: flex-start;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-topics .topic {
  background: rgba(183, 4, 187, 0.2);
  color: #b704bb;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75em;
  font-weight: 500;
  border: 1px solid rgba(183, 4, 187, 0.3);
}
.projects-section .projects-container .projects-grid .project .project-main .project-activity {
  display: none;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-activity {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 0 0 0;
    max-width: 180px;
  }
}
@media screen and (min-width: 930px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-activity {
    align-items: center;
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-activity .activity-label {
  font-size: 0.75em;
  font-weight: 400;
  text-align: left;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .projects-section .projects-container .projects-grid .project .project-main .project-activity .activity-label {
    color: rgba(234, 233, 241, 0.7);
  }
}
.projects-section .projects-container .projects-grid .project .project-main .project-activity .activity-chart {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.projects-section .projects-container .projects-grid .project .project-main .project-activity .activity-chart.no-data {
  color: rgba(234, 233, 241, 0.5);
  font-size: 0.7em;
  font-style: italic;
  text-align: center;
  font-weight: 400;
}
.projects-section .projects-container .projects-grid .project .project-main .project-activity .activity-chart svg {
  width: 120px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.projects-section .projects-container .projects-grid .project .project-main .project-activity .activity-chart svg polyline {
  transition: stroke-width 0.2s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.experience-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

.experience-modal-content {
  background: #161618;
  color: #eae9f1;
  border-radius: 16px;
  max-width: 95vw;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  padding: 60px 40px 40px 40px;
  position: relative;
  animation: fadeInFromBottom 0.4s ease;
}
.experience-modal-content .details-date {
  color: #2c4988;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.experience-modal-content .details-title {
  color: #eae9f1;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.experience-modal-content .details-organization {
  color: #2c4988;
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 8px;
}
.experience-modal-content .details-location {
  color: #eae9f1;
  font-style: italic;
  opacity: 0.8;
  font-size: 1em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.experience-modal-content .details-description {
  font-size: 1em;
  line-height: 1.5;
  color: #eae9f1;
  max-height: 50vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(44, 73, 136, 0.4) rgba(44, 73, 136, 0.1);
}
.experience-modal-content .details-description::-webkit-scrollbar {
  width: 8px;
}
.experience-modal-content .details-description::-webkit-scrollbar-track {
  background: rgba(44, 73, 136, 0.1);
  border-radius: 4px;
}
.experience-modal-content .details-description::-webkit-scrollbar-thumb {
  background: rgba(44, 73, 136, 0.4);
  border-radius: 4px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.experience-modal-content .details-description::-webkit-scrollbar-thumb:hover {
  background: rgba(44, 73, 136, 0.6);
}
.experience-modal-content .details-description::-webkit-scrollbar-thumb:active {
  background: rgba(99, 40, 133, 0.8);
}
.experience-modal-content h3 {
  color: #b704bb;
  font-size: 1.1em;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.experience-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2em;
  color: #2c4988;
  cursor: pointer;
  z-index: 10;
  transition: color 0.2s;
}
.experience-modal-close:hover {
  color: #b704bb;
}

@media screen and (min-width: 769px) {
  .experience-modal {
    display: none !important;
  }
}
.experience-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 25px;
  color: #eae9f1;
  font-family: "Inter", sans-serif;
}
.experience-section .experience-container {
  width: 1000px;
  height: 700px;
  max-width: 95%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .experience-section .experience-container {
    max-width: 95%;
  }
}
.experience-section .experience-container h1 {
  font-size: 1.5em;
  margin-bottom: 40px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) {
  .experience-section .experience-container h1 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
}
.experience-section .experience-container .experience-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .experience-section .experience-container .experience-content {
    flex-direction: row;
    gap: 30px;
    max-width: 1400px;
    min-width: 800px;
  }
}
@media screen and (min-width: 1025px) {
  .experience-section .experience-container .experience-content {
    min-width: 700px;
  }
}
.experience-section .experience-container .experience-content .experience-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 300px;
  min-width: unset;
  max-height: unset;
  flex: none;
}
@media screen and (min-width: 768px) {
  .experience-section .experience-container .experience-content .experience-sidebar {
    flex: 0 0 320px;
    min-width: 320px;
    max-height: 500px;
  }
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  background: rgba(44, 73, 136, 0.1);
  opacity: 0;
  animation: fadeInFromBottom 0.8s ease-out forwards;
}
@media screen and (max-width: 768px) {
  .experience-section .experience-container .experience-content .experience-sidebar .experience-button {
    min-width: 250px;
    flex-shrink: 0;
  }
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button:nth-child(1) {
  animation-delay: 0.1s;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button:nth-child(2) {
  animation-delay: 0.2s;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button:nth-child(3) {
  animation-delay: 0.3s;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button:nth-child(4) {
  animation-delay: 0.4s;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button:nth-child(5) {
  animation-delay: 0.5s;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button .button-date {
  font-size: 0.813rem;
  color: #2c4988;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button .button-title {
  font-size: 1.1em;
  font-weight: bold;
  color: #eae9f1;
  margin-bottom: 10px;
  line-height: 1.5;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button .button-organization {
  font-size: 0.813rem;
  color: #2c4988;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button .button-location {
  font-size: 0.813rem;
  color: #eae9f1;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button .button-location::before {
  background-image: url(https://cdn.simpleicons.org/googlemaps/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
  flex-shrink: 0;
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: #2c4988;
  background: rgba(44, 73, 136, 0.2);
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button.active {
  border-color: #632885;
  background: rgba(44, 73, 136, 0.2);
  transform: translateY(-3px);
}
.experience-section .experience-container .experience-content .experience-sidebar .experience-button.active .button-title {
  color: #b704bb;
}
.experience-section .experience-container .experience-content .experience-details {
  display: none;
}
@media screen and (min-width: 768px) {
  .experience-section .experience-container .experience-content .experience-details {
    flex: 1;
    min-width: 500px;
    max-width: none;
    height: 465px;
    background: rgba(44, 73, 136, 0.1);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInFromBottom 0.8s ease-out 0.3s forwards;
    overflow: hidden;
  }
}
@media screen and (max-width: 1024px) {
  .experience-section .experience-container .experience-content .experience-details {
    min-width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .experience-section .experience-container .experience-content .experience-details {
    flex: 1;
    width: 100%;
    min-width: unset;
    max-width: unset;
    height: 400px;
    padding: 25px;
  }
}
.experience-section .experience-container .experience-content .experience-details .details-header {
  flex-shrink: 0;
  margin-bottom: 20px;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-date {
  font-size: 0.938rem;
  color: #2c4988;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #eae9f1;
  margin-bottom: 8px;
  line-height: 1.3;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-organization {
  font-size: 0.938rem;
  color: #2c4988;
  font-weight: 500;
  margin-bottom: 8px;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-organization a {
  color: #2c4988;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-organization a:hover {
  color: #d2d2d2;
  transform: translateY(-1px);
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-organization a:focus {
  outline: 2px solid #2c4988;
  outline-offset: 2px;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-location {
  font-size: 0.938rem;
  color: #eae9f1;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
}
.experience-section .experience-container .experience-content .experience-details .details-header .details-location::before {
  background-image: url(https://cdn.simpleicons.org/googlemaps/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
  flex-shrink: 0;
}
.experience-section .experience-container .experience-content .experience-details .details-description {
  flex: 1;
  overflow-y: auto;
  font-size: 0.938rem;
  line-height: 1.5;
  color: #eae9f1;
  scrollbar-width: thin;
  scrollbar-color: rgba(44, 73, 136, 0.4) rgba(44, 73, 136, 0.1);
}
.experience-section .experience-container .experience-content .experience-details .details-description::-webkit-scrollbar {
  width: 8px;
}
.experience-section .experience-container .experience-content .experience-details .details-description::-webkit-scrollbar-track {
  background: rgba(44, 73, 136, 0.1);
  border-radius: 4px;
}
.experience-section .experience-container .experience-content .experience-details .details-description::-webkit-scrollbar-thumb {
  background: rgba(44, 73, 136, 0.4);
  border-radius: 4px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.experience-section .experience-container .experience-content .experience-details .details-description::-webkit-scrollbar-thumb:hover {
  background: rgba(44, 73, 136, 0.6);
}
.experience-section .experience-container .experience-content .experience-details .details-description::-webkit-scrollbar-thumb:active {
  background: rgba(99, 40, 133, 0.8);
}
.experience-section .experience-container .experience-content .experience-details .details-description h3 {
  color: #b704bb;
  font-size: 1.1em;
  margin: 20px 0 10px 0;
  font-weight: 600;
}
.experience-section .experience-container .experience-content .experience-details .details-description ul {
  margin-left: 20px;
  margin-bottom: 15px;
  list-style-type: disc;
  padding-left: 0;
}
.experience-section .experience-container .experience-content .experience-details .details-description ul li {
  margin-bottom: 5px;
  color: #eae9f1;
  opacity: 0.9;
  list-style-position: outside;
  margin-left: 0;
  padding-left: 0;
}
.experience-section .experience-container .experience-content .experience-details .details-description p {
  margin-bottom: 15px;
  color: #eae9f1;
  opacity: 0.9;
}
.experience-section .experience-container .experience-content .experience-details .placeholder-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex: 1;
  opacity: 0.6;
}
.experience-section .experience-container .experience-content .experience-details .placeholder-content .placeholder-icon {
  font-size: 3em;
  margin-bottom: 20px;
}
.experience-section .experience-container .experience-content .experience-details .placeholder-content .placeholder-text {
  color: #eae9f1;
  font-size: 0.938rem;
  opacity: 0.7;
  text-align: center;
}

.publication-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #eae9f1;
  font-family: "Inter", sans-serif;
}
.publication-section .publications-container {
  width: 1200px;
  max-width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .publication-section .publications-container {
    width: 500px;
    max-width: 85%;
  }
}
@media screen and (min-width: 930px) {
  .publication-section .publications-container {
    width: 700px;
    max-width: 100%;
  }
}
.publication-section .publications-container h1 {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #eae9f1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .publication-section .publications-container h1 {
    font-size: 1.8em;
  }
}
.publication-section .publications-container .publication-grid {
  width: 100%;
  max-width: 900px;
}
.publication-section .publications-container .publication-grid .loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  text-align: center;
  color: #2c4988;
  font-size: 1.1em;
  opacity: 0.8;
}
.publication-section .publications-container .publication-grid .loading .loader {
  border: 6px solid rgba(234, 233, 241, 0.1);
  border-top: 6px solid #b704bb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}
.publication-section .publications-container .publication-grid .error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  text-align: center;
}
.publication-section .publications-container .publication-grid .error:before {
  content: "⚠️";
  margin-right: 10px;
}
.publication-section .publications-container .publication-grid .publication {
  background: rgba(44, 73, 136, 0.05);
  margin-bottom: 15px;
  padding: 0 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(44, 73, 136, 0.1);
  opacity: 0;
  animation: fadeInFromBottom 0.6s ease-out forwards;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.publication-section .publications-container .publication-grid .publication:hover {
  transform: translateY(-3px);
  background: rgba(44, 73, 136, 0.08);
  border-color: rgba(44, 73, 136, 0.3);
  box-shadow: 0 8px 25px rgba(44, 73, 136, 0.15);
}
.publication-section .publications-container .publication-grid .publication p {
  margin: 8px 0;
  line-height: 1.2;
  color: #eae9f1;
}
.publication-section .publications-container .publication-grid .publication p:first-child strong {
  font-size: 1em;
  font-weight: 600;
  color: #eae9f1;
}
.publication-section .publications-container .publication-grid .publication p:nth-child(2) {
  font-size: 0.8em;
  font-style: italic;
  color: #2c4988;
  text-align: center;
  word-spacing: 0.1em;
  line-height: 1.4;
}
.publication-section .publications-container .publication-grid .publication p em {
  font-size: 0.75em;
  color: #b704bb;
  font-style: italic;
}
.publication-section .publications-container .publication-grid .publication p:nth-child(4) {
  font-size: 0.8em;
  font-weight: 500;
  color: rgba(234, 233, 241, 0.8);
  margin-top: 12px;
}
.publication-section .publications-container .publication-grid .publication p a {
  color: #2c4988;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.publication-section .publications-container .publication-grid .publication p a:hover {
  color: #b704bb;
  text-decoration: underline;
}

.skills-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 25px;
}
.skills-section .skills-container {
  width: 800px;
  max-width: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .skills-section .skills-container {
    width: 500px;
    max-width: 85%;
  }
}
@media screen and (min-width: 930px) {
  .skills-section .skills-container {
    width: 700px;
    max-width: 100%;
  }
}
.skills-section .skills-container h1 {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #eae9f1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .skills-section .skills-container h1 {
    font-size: 1.8em;
  }
}
.skills-section .skills-container .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 10px;
  width: 100%;
  place-items: center;
}
@media screen and (max-width: 380px) {
  .skills-section .skills-container .skills-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.skills-section .skills-container .skills-grid .skill-container {
  background: rgba(255, 255, 255, 0.027);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid rgba(44, 73, 136, 0.2);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  background: rgba(44, 73, 136, 0.1);
  animation: fadeInFromBottom 0.8s ease-out forwards;
  width: 260px;
  height: 260px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.skills-section .skills-container .skills-grid .skill-container:nth-child(1) {
  animation-delay: 0.1s;
}
.skills-section .skills-container .skills-grid .skill-container:nth-child(2) {
  animation-delay: 0.2s;
}
.skills-section .skills-container .skills-grid .skill-container:nth-child(3) {
  animation-delay: 0.3s;
}
.skills-section .skills-container .skills-grid .skill-container:nth-child(4) {
  animation-delay: 0.4s;
}
.skills-section .skills-container .skills-grid .skill-container:hover {
  transform: translateY(-5px);
  border-color: #2c4988;
  background: rgba(44, 73, 136, 0.1);
}
.skills-section .skills-container .skills-grid .skill-container .skill-title {
  font-size: 1.3em;
  color: #b704bb;
  text-align: center;
  font-weight: 600;
  margin-top: 10px;
}
.skills-section .skills-container .skills-grid .skill-container .skill-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(20px, 1fr));
  gap: 15px;
  padding: 5px;
  margin: 0;
  list-style: none;
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.python::before {
  background-image: url(https://cdn.simpleicons.org/python/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.numpy::before {
  background-image: url(https://cdn.simpleicons.org/numpy/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.pandas::before {
  background-image: url(https://cdn.simpleicons.org/pandas/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.scipy::before {
  background-image: url(https://cdn.simpleicons.org/scipy/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.scikit-learn::before {
  background-image: url(https://cdn.simpleicons.org/scikitlearn/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.pytorch::before {
  background-image: url(https://cdn.simpleicons.org/pytorch/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.opencv::before {
  background-image: url(https://cdn.simpleicons.org/opencv/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.anaconda::before {
  background-image: url(https://cdn.simpleicons.org/anaconda/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.arduino::before {
  background-image: url(https://cdn.simpleicons.org/arduino/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.microsoft-visual-studio::before {
  background-image: url("./src/assets/icons/visual-studio.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.git-hub::before {
  background-image: url(https://cdn.simpleicons.org/github/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.imagej::before {
  background-image: url(https://cdn.simpleicons.org/imagej/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.illustrator::before {
  background-image: url("./src/assets/icons/illustrator.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.designspark-mechanical::before {
  background-image: url("./src/assets/icons/RS.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  filter: brightness(0) invert(1);
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li.spyder::before {
  background-image: url(https://cdn.simpleicons.org/spyderide/white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 32px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  content: "";
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li::after {
  content: attr(data-skill);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(22, 22, 24, 0.9);
  color: #eae9f1;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.8em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(44, 73, 136, 0.3);
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: #2c4988;
  background: rgba(44, 73, 136, 0.2);
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li:hover::before {
  filter: drop-shadow(0 0 8px #2c4988);
}
.skills-section .skills-container .skills-grid .skill-container .skill-list li:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}/*# sourceMappingURL=styles.css.map */