@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
* {
  scrollbar-width: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  padding-top: 2vh;
  font-family: "Poppins", sans-serif;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background-color: #8AAAE5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
  padding: 1em;
  animation: slideFromTop 1s;
}
header .title {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
header a {
  position: relative;
  color: #000;
  text-decoration: none;
}
header a:hover {
  color: #000;
}
header a:hover::before {
  transform: scaleX(1);
}
header a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
header nav {
  display: flex;
  font-size: 2rem;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
header nav ul li {
  margin: 0 1em;
}

.hamburger-menu {
  display: none;
}

.hamburger--close .line:nth-child(1) {
  transition: transform 0.3s ease;
  transform: translateY(5px) rotate(45deg);
}
.hamburger--close .line:nth-child(2) {
  transition: transform 0.3s ease;
  opacity: 0;
}
.hamburger--close .line:nth-child(3) {
  transition: transform 0.3s ease;
  transform: translateY(-10px) rotate(-45deg);
}

@media screen and (max-width: 880px) {
  header nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 1em;
    transform: translateX(-100%);
    top: 82px;
    left: 0;
    width: 100%;
    background-color: #8AAAE5;
    transition: transform 0.3s ease;
  }
  header nav ul {
    flex-direction: column;
    gap: 1em;
  }
  .hamburger-menu {
    display: block;
    cursor: pointer;
  }
  .hamburger-menu .line {
    width: 30px;
    height: 3px;
    background-color: #000;
    margin: 5px;
    transition: all 0.3s ease;
  }
  .nav--open {
    transform: translateX(0);
  }
}
section {
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-bottom: 4px solid lightgray;
  padding-top: 10vh;
  padding-bottom: 21vh;
}
section::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}
section h1 {
  font-size: 5rem;
  color: #000000;
  text-shadow: #8AAAE5 2px 2px 5px;
  padding-left: 1em;
  padding-right: 1em;
  z-index: 10;
}
section h2 {
  font-size: 1.8rem;
  margin-bottom: 0.2em;
  color: #000000;
  font-weight: semi-bold;
}
section h3 {
  margin-bottom: 1em;
  font-weight: normal;
  font-size: 1.5rem;
  color: #000000;
}
section p, section h3 li {
  color: #000000;
}
section p b, section h3 li b {
  font-weight: bold;
}
section ul {
  list-style: none;
  padding: 0;
}

.card {
  background: #8AAAE5;
  border-radius: 15px;
  padding: 20px;
  max-width: 800px;
  color: #000000;
  transform: translateY(20px);
  text-align: center;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  animation: appear 3s;
  z-index: 10;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card__description {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 4rem;
}
.card__description h2 {
  margin-bottom: 0;
}

section.home {
  display: flex;
  flex-direction: column;
  gap: 10vh;
  align-items: center;
  justify-content: center;
}
section.home img {
  border-radius: 50%;
  width: 585px;
  height: 288px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
section.home h1 {
  line-height: 1.2;
  animation: slideInFromLeft 1s forwards;
  padding: 0;
}
section.home h2 {
  font-size: 2rem;
  align-self: center;
}
section.home h3 {
  animation: slideFromRight 1s forwards;
  opacity: 0;
  animation-delay: 0.3s;
}

section.about-me {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10vh;
}

.bubble {
  opacity: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  background: antiquewhite;
  border-radius: 50%;
  will-change: transform;
}

@keyframes slideFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.bubble.visible {
  animation: slideFromBottom 1s forwards !important;
}

.bubble img {
  max-width: 65%;
}

/* bubble positions */
.bubble:nth-child(3) {
  top: 10%;
  left: 20%;
  animation-delay: 1s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 100px;
  width: 100px;
}

.bubble:nth-child(4) {
  top: 99%;
  left: 45%;
  animation-delay: 3s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 150px;
  width: 150px;
}

.bubble:nth-child(5) {
  top: 90%;
  left: 20%;
  animation-delay: 2s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 85px;
  width: 85px;
}

.bubble:nth-child(6) {
  top: 85%;
  left: 80%;
  animation-delay: 4s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 90px;
  width: 90px;
}

.bubble:nth-child(7) {
  top: 40%;
  left: 10%;
  animation-delay: 5s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 75px;
  width: 75px;
}

.bubble:nth-child(8) {
  top: 10%;
  left: 70%;
  animation-delay: 6s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 50px;
  width: 50px;
}

.bubble:nth-child(9) {
  top: 20%;
  left: 80%;
  animation-delay: 7s;
  animation: floattingAnimation 5s ease-in-out infinite;
  height: 70px;
  width: 70px;
}

/* floatting movement */
@keyframes floattingAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
section.skills {
  gap: 2em;
}
section.skills li {
  margin-bottom: 10px;
}
section.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20vh;
}
section.skills .skill-bar {
  background-color: antiquewhite;
  border-radius: 10%;
  height: 10px;
  margin-top: 5px;
}
section.skills .skill-bar .skill {
  background-color: #8AAAE5;
  border-radius: 5px;
  height: 100%;
  width: 0%; /* Initial width set to 0% */
  transform-origin: left;
  transition: width 1s ease-in-out; /* Smooth transition when width changes */
}
section.skills .skill-bar .skill.visible {
  width: 100%; /* When the skill is visible, set the width to 100% */
}

section.projects .cards-grid {
  display: flex;
  flex-direction: column;
}
section.projects .card {
  display: flex;
  padding: 15px;
  margin: 20px 0;
  align-items: center;
}
section.projects .card img {
  max-width: 153px;
  margin-right: 15px;
  border-radius: 10px;
}
section.projects .card .project-content {
  flex: 1;
  text-align: left;
}
section.projects .card .project-content h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
section.projects .card .project-content p {
  margin-bottom: 10px;
}
section.projects .card .project-content .technologies_used {
  display: flex;
  flex-wrap: wrap;
}
section.projects .card .project-content .technologies_used li {
  background-color: #3b3b3b;
  color: antiquewhite;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 5px;
  font-size: 0.9rem;
}

section.contact {
  display: flex;
  flex-direction: column;
  gap: 6vh;
  position: relative;
}
section.contact .bubbles-container {
  position: relative;
  display: flex;
  justify-content: space-around;
  gap: 10vh;
}
section.contact .bubbles-container .linkedin-bubble {
  top: 100;
  left: -100%;
  position: relative;
}
section.contact .bubbles-container .linkedin-bubble .img {
  max-width: 65%;
}
section.contact .bubbles-container .github-bubble {
  position: relative;
  top: 55%;
  left: 100%;
}
section.contact .bubbles-container .github-bubble .img {
  max-width: 65%;
}
section.contact .contact-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}
section.contact .contact-bubble {
  position: relative;
  animation: float 5s ease-in-out infinite;
  will-change: transform;
  height: 135px;
  width: 135px;
  background-color: #8AAAE5;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact .contact-bubble a {
  position: absolute;
  width: 100%;
  height: 100%;
}
section.contact .contact-bubble .logo {
  transition: transform 0.2s;
}
section.contact .contact-bubble .logo-linkedin {
  max-width: 45%;
}
section.contact .contact-bubble .logo-github {
  max-width: 90%;
}
section.contact .contact-bubble:hover .logo {
  transform: translateY(-10px);
}
section.contact .contact-bubble:hover {
  cursor: pointer;
}
@keyframes float {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
section.contact .card {
  width: 100%;
  border: 6px solid rgba(0, 0, 0, 0.3);
  box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 50px;
  background: #8AAAE5;
}
section.contact .card h2 {
  color: rgba(0, 0, 0, 0.3);
  font-size: 60px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
section.contact .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
  grid-gap: 30px;
}
section.contact .col {
  width: 100%;
  transition: 0.5s;
}
section.contact .col:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.contact .form-group {
  width: 100%;
  color: #ffffff;
  position: relative;
}
section.contact .form-group input,
section.contact .form-group textarea {
  width: 90%;
  padding: 10px 20px;
  background: transparent;
  outline: none;
  font-size: 24px;
  border: 5px solid rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border-radius: 50px;
  resize: none;
  display: block;
}
section.contact input {
  height: 50px;
}
section.contact textarea {
  height: 150px;
}
section.contact input[type=submit] {
  height: 80px;
  width: 50%;
  border-radius: 50px;
  background: transparent;
  border: 5px solid rgba(0, 0, 0, 0.3);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 24px;
  cursor: pointer;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
}
section.contact .card .row .form-group input:focus,
section.contact .card .row .form-group textarea:focus {
  border: 5px solid #ffffff;
  transition: all 0.5s;
}
section.contact input[type=submit]:hover,
section.contact input[type=submit]:focus {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
}
section.contact input[type=submit]:hover::before,
section.contact input[type=submit]:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  border: 5px solid #ffffff;
  box-shadow: 0 0 20px #ffffff;
  animation: pulse 1s infinite alternate;
  pointer-events: none;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.05);
    opacity: 0.7;
  }
}

footer {
  background-color: lightgray;
  color: black;
  z-index: 1000;
}

@media screen and (max-width: 1800px) {
  section.about .bubble {
    height: 100px;
    width: 100px;
  }
}
@media screen and (max-width: 1530px) {
  section.contact .bubbles-container .github-bubble {
    position: relative;
    top: 55%;
    left: 0%;
  }
  section.contact .bubbles-container .linkedin-bubble {
    position: relative;
    top: 25%;
    left: 0%;
  }
}
@media screen and (max-width: 1140px) {
  header nav ul li a {
    font-size: 1.5rem;
  }
  .bubbles-container {
    opacity: 0;
    width: 0;
  }
  section.contact .card {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  header nav ul li a {
    font-size: 1.2rem;
  }
  h1 {
    font-size: 4rem;
  }
  section.skills .skills-grid {
    grid-column-gap: 5vh;
  }
  section.skills .skills-grid h2 {
    font-size: 1.5rem;
  }
  section h1 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 880px) {
  header nav {
    position: fixed;
    display: flex;
    flex-direction: column;
    gap: 1em;
    transform: translateX(-100%);
  }
  header nav ul {
    top: 2em;
    flex-direction: column;
    gap: 1em;
    background-color: #8AAAE5;
    align-items: center;
  }
  .nav--open {
    transform: translateX(0) !important;
  }
  .hamburger-menu {
    right: 1em;
    display: block;
    width: 30px;
    height: 30px;
    align-self: center;
    cursor: pointer;
  }
  .hamburger-menu .line {
    width: 100%;
    height: 3px;
    background-color: black;
    margin: 5px;
  }
}
@media screen and (max-width: 800px) {
  .card {
    border-radius: 0px;
  }
}
@media screen and (max-width: 700px) {
  h1 {
    text-align: center;
  }
  section.home h3 {
    text-align: center;
  }
  section.contact * {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  section.home h2 {
    font-size: 1.5rem;
  }
  section {
    border-bottom: 3px solid lightgray;
  }
  section.skills {
    gap: 2em;
  }
  section.skills .skills-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0;
    gap: 3em;
  }
  section {
    min-height: -moz-fit-content;
    min-height: fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media screen and (max-width: 500px) {
  section.home img {
    width: 200px;
    height: 200px;
  }
  section.home .card__description {
    display: flex;
    flex-direction: column;
    gap: 1em;
    align-items: center;
  }
  section h1 {
    font-size: 3rem;
  }
  section.home h2 {
    font-size: 1.2rem;
  }
  section.home h3 {
    font-size: 1rem;
  }
  section {
    padding-bottom: 10vh;
  }
  section.contact .row {
    display: flex;
    flex-direction: column;
  }
  section.projects .card {
    flex-direction: column;
    gap: 1em;
  }
}/*# sourceMappingURL=style.css.map */