* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  outline: none;
  border: none;
  user-select: none;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto,Arial, Sans-Serif;
}
:root {
  --cl: black;
  --bg: rgba(255,255,255,0.5);
  --bd: #ddd;
  --per: 0%;
  --bcl: #0096FF;
}
@media (prefers-color-scheme: dark) {
:root {
  --cl: white;
  --bg: rgba(0,0,0,0.5);
  --bd: #333;
  --per: 100%;
}
}

html {
  color-scheme: light dark;
}
body {
  overflow-y: auto;
}
header {
  overflow-x: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100vw;
  top: 0;
  z-index: 10;
  padding: 0 10px;
}
header::-webkit-scrollbar {
  display: none;
}
.brand, nav, .option {
  display: flex;
  align-items: center;
}
header .menu-icon {
  display: none;
  margin: 10px;
}
header .menu-icon div {
  background: var(--cl);
  width: 20px;
  height: 3px;
  border-radius: 6px;
  margin: 5px;
  transition: 0.5s;
}
.change .line1 {
  transform: translate(0, 4px) rotate(-45deg);
}
.change .line2 {
  transform: translate(0, -4px) rotate(45deg);
}
@media (max-width: 500px) {
  nav, .option {
    display: none;
  }
  header .menu-icon {
    display: inline-block;
  }
  header {
    padding: 0;
  }
}
.brand {
  opacity: 0;
}
.brand img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  margin: 10px;
}
.brand a {
  font-weight: bold;
  font-size: large;
  color: var(--cl);
}
nav a {
  padding: 10px 20px;
  margin: 10px;
  border-radius: 8px;
  color: var(--cl);
}
.option a {
  padding: 10px 20px;
  margin: 10px;
  border-radius: 8px;
  background: #0096FF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.option a img {
  filter: invert(100%);
  width: 18px;
  height: 18px;
  object-fit: cover;
  margin-right: 5px;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 150px 5%;
}
@media (max-width:500px) {
  section {
    padding: 100px 20px;
  }
}
section h2 {
  margin: 10px;
}
#profileImage {
  width: 200px;
  height: 200px;
  margin: 10px;
  object-fit: cover;
  border-radius: 50%;
}
#bio {
  padding: 200px 5%!important;
}
#bio h1 {
  margin-top: 10px;
}
#bio p {
  font-size: large;
  margin: 10px;
}
@media (max-width:500px) {
  #bio {
    padding: 100px 20px!important;
  }
}
.link-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.link-group img {
  width: 20px!important;
  height: 20px!important;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 50%;
}
.link-group .link-btn {
  opacity: 0;
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin: 10px;
  padding: 5px 10px;
}
.link-group .link-btn strong {
  display: inline-block;
  padding-left: 10px;
}
.link-group .link-btn:hover {
  transition: 0.3s;
  color: white;
  background: var(--bcl);
}
.link-btn {
  display: flex;
  align-items: center;
  color: var(--cl);
}
.link-btn img {
  width: 15px;
  height: 15px;
  object-fit: cover;
  margin: 10px;
}
@media (max-width:500px) {
  .link-group {
    flex-direction: column;
    width: 90%;
  }
  .link-group .link-btn {
    width: 90%;
    margin: 10px auto 0 auto;
  }
}
.seemore-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  border: 1px solid transparent;
  height: 35px!important;
  color: white;
  background: var(--bcl);
  margin: 15px auto 0 auto!important;
  padding: 5px 20px!important;
}
.seemore-btn img {
  width: 35px!important;
  height: auto!important;
  margin: 5px!important;
  padding: 3px!important;
  object-fit: cover!important;
  border: none!important;
  background: none!important;
  backdrop-filter: none!important;
  filter: invert(100%)!important;
}
.seemore-btn:hover {
  transition: 0.3s;
  color: var(--cl);
  border: 1px solid var(--bd);
  background: transparent;
}
.seemore-btn:hover img {
  transition: 0.3s;
  width: 0!important;
  height: 0!important;
  margin: 0!important;
}
.tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 10px 20px 10px;
}
.tabs h3 {
  user-select: none;
  cursor: pointer;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
}

#tabWrapper {
  width: 100%;
  height: 100%;
}
#tabContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
#technology, #certificates {
  position: relative;
  top: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
#technology {
  display: flex;
}
#technology .row {
  display: flex;
}
#technology img {
  opacity: 1;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px;
  background: var(--bd);
  border: 1px solid var(--bd);
  box-shadow: 0 0 2px rgba(0,0,0,0.1);
}
@media (max-width:500px) {
  #technology img {
    width: 50px;
    height: 50px;
    margin: 10px;
  }
}
#certificates .box {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  width: auto;
  flex-wrap: wrap;
}
@media (max-width:500px) {
  #certificates .box {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: start;
  }
}
#certificates .card {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  width: 150px;
  margin: 10px;
}
#certificates .card img {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  background: #333;
}
#certificates .card h4 {
  text-align: center;
  padding: 10px;
}

#about p, #about li {
  text-align: center;
  margin-top: 10px;
}

@media (max-width:500px) {
  #about p, #about li {
    text-align: start;
  }
}
form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5%!important;
}
form input, form textarea, form button {
  width: 50%;
  border-radius: 6px;
  border: none;
  outline: none;
  margin: 5px;
  padding: 10px;
  color: var(--cl);
  background: var(--bd);
}

form button[type="submit"] {
  width: 30%!important;
  margin: 10px auto!important;
  color: white;
  background: #0096FF;
  font-weight: bold;
}
form button[type="submit"]:hover {
  background: #3eb0ff;
}
#result {
  padding: 10px 20px;
}

@media (max-width:500px) {
  form {
    padding: 0!important;
  }
  form input, form textarea, form button {
    width: 100%!important;
  }
  form button[type="submit"] {
    width: 100%!important;
  }
}
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
footer .watermark {
  font-size: small;
  margin: 10px;
}
aside {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  overflow-y: auto;
  background: var(--bg);
  backdrop-filter: blur(50px);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}
aside a {
  padding: 10px 20px;
  margin: 10px 10px 0 10px;
  border-radius: 8px;
  font-size: large;
  color: var(--cl);
  display: flex;
  align-items: center;
}
aside .message {
  background: #0096FF;
  color: white;
}
aside a img {
  filter: invert(var(--per));
  width: 18px;
  height: 18px;
  object-fit: cover;
  margin-right: 5px;
}
.btn {
  border-radius: 10px;
  border: none;
  outline: none;
  margin: 5px;
  padding: 10px 20px;
  color: white;
  background: #0096FF;
  font-weight: bold;
}
.btn:hover {
  background: #3eb0ff;
}
.acolor {
  background: radial-gradient(circle, #0096FF, lightblue);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.bcolor {
  background: linear-gradient(to top, lightgreen, pink);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.active-profile {
  animation: goLeft 1s;
  animation-fill-mode: both;
}
.unactive-profile {
  animation: goIt 1s;
  animation-fill-mode: both;
}
.selected-page {
  animation: selected 3s;
  animation-fill-mode: both;
}
.animate-view {
  animation: slideUp 2s;
  animation-fill-mode: both;
}
@keyframes goLeft {
  from {
    transform: translate(0,0);
    opacity: 1;
  }
  to {
    transform: translate(-100px,-50px);
    opacity: 0;
  }
}
@keyframes goIt {
  from {
    transform: translate(-100px,-50px);
    opacity: 0;
  }
  to {
    transform: translate(0,0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes selected {
  0% {
    transition: 0.5s;
    background: var(--bd);
  }
  25% {
    transition: 0.5s;
    background: transparent;
  }
  50% {
    transition: 0.5s;
    background: var(--bd);
  }
  100% {
    transition: 0.5s;
    background: transparent;
  }
}
/* Add Swiper */
.swiper {
  margin-top: 20px;
  width: 100%;
}
.swiper-slide {
  display: flex!important;
  flex-direction: column!important;
}
.swiper-slide img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 1px solid #0096FF;
  background: var(--bg);
  backdrop-filter: blur(30px);
}
.swiper-slide p {
  margin: 5px 0;
}
.swiper-slide .content {
  display: none;
  padding: 20px 20px 50px 20px;
}

.swiper-slide-active .content {
  display: flex;
  flex-direction: column;
  animation: slideUp 2s;
  animation-fill-mode: both;
}
.swiper-button-prev, .swiper-button-next {
  display: flex!important;
  width: 35px!important;
  height: 35px!important;
  color: white !important;
  background: rgba(0,0,0,0.2)!important;
  backdrop-filter: blur(10px)!important;
  border-radius: 50%!important;
  padding: 30px!important;
  overflow: hidden!important;
}

.swiper-pagination-bullet {
  background: var(--bd)!important;
  backdrop-filter: blur(10px)!important;
  opacity: 1!important;
}

.swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
  background-color: var(--bcl)!important;
}

@media screen and (max-width: 500px) {
  .swiper-slide img {
    width: 100%;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none!important;
  }
}

/* Card Styles */
.card-view {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--bg);
  backdrop-filter: blur(30px);
}
.card-view .cover {
  position: relative;
  top: 0;
  height: 0;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.card-view .cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-view .content {
  padding: 10px;
}