/*===============
  global styles
===============*/

* {
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  box-shadow: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  color: var(--clr-fg);
  background: var(--clr-bg);
}

.light {
  --clr-bg: #fcfcfc;
  --clr-bg-ham: #fcfcfc;
  --clr-bg-alt: #fff;
  --clr-fg: #555;
  --clr-fg-alt: #444;
  --clr-primary: #2978b5;
  --shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  --glow-color: hsl(186 100% 69%);
  --crcl-clr-bg: #fff;
  --crcl-txt-clr: #000;
  --clr-bg-skills: #444444;
  --clr-shadow-skills: rgb(140, 140, 140);
  --clr-text-skills: #fff;
  --footer-bg: #ffffff;
  --footer-name:#444444;
  --social-icons-bg: #444444;
  --social-icons-bg-hover: #858585;
  --footer-shadow: rgba(240, 240, 240, 0.5);

}

.dark {
  --clr-bg: radial-gradient(ellipse at bottom, #0d1d31 0%, #0c0d13 100%);
  --clr-bg-ham: radial-gradient( #0d1d31 0%, #0c0d13 100%);
  --clr-bg-alt: #2a2f4c;
  --clr-fg: #bdbddd;
  --clr-fg-alt: #cdcdff;
  --clr-primary: #90a0d9;
  --shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  --glow-color: hsl(186 100% 69%);
  --crcl-clr-bg: #000;
  --crcl-txt-clr: #fff;
  --clr-bg-skills: rgb(255, 255, 255);
  --clr-shadow-skills: rgb(124, 124, 124);
  --clr-text-skills: #000;
  --footer-bg: #0c121d;
  --footer-name:#fff;
  --social-icons-bg: #90a0d9;
  --social-icons-bg-hover: hsl(200, 92%, 69%);
  --footer-shadow: rgba(12, 18, 29, 0.5);

}

::-moz-selection {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

::-webkit-selection,
::selection {
  background: var(--clr-primary);
  color: var(--clr-bg);
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: var(--clr-fg-alt);
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1.1rem;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

@media (max-width: 900px) {
  h1 {
    font-size: 2.6rem;
  }
}

/*===================
  buttons and links
===================*/

.link {
  color: var(--clr-primary);
  padding: 0 0 0.3em 0;
  position: relative;
}

.link:hover {
  color: var(--clr-primary);
}

.link::before {
  content: "";
  display: inline;
  width: 0%;
  height: 0.2em;
  position: absolute;
  bottom: 0;
  background-color: var(--clr-primary);
  /* transition: width 0.2s ease-in; */
  transition: 0.5s;
}

.link:hover::before,
.link:focus::before {
  width: 100%;
}

.link--nav {
  color: var(--clr-fg);
  font-weight: 500;
}

.link--icon {
  color: var(--clr-fg);
  font-size: 1.2rem;
}

.btn {
  display: block;
  padding: 0.8em 1.4em;
  font-weight: 500;
  font-size: 0.9rem;
  transition: transform 0.2s ease-in-out;
}

.btn--outline {
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn--outline:focus,
.btn--outline:hover {
  color: var(--clr-bg);
}

.btn--outline:before {
  content: "";
  position: absolute;
  background-color: var(--clr-primary);
  right: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  z-index: -1;
  transition: right 0.2s ease-in-out;
}

.btn--outline:hover::before,
.btn--outline:focus::before {
  right: 0;
}

.btn--plain {
  text-transform: initial;
  background-color: var(--clr-bg-alt);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  border: 0;
}

.btn--plain:hover {
  transform: translateY(-4px);
}

.btn--icon {
  padding: 0;
  font-size: 1.2rem;
}

.btn--icon:hover,
.btn--icon:focus {
  color: var(--clr-primary);
}

.btn--icon:active {
  transform: translateY(-5px);
}

/*========
  layout
========*/

.just-center {
  text-align: center;
}

.center {
  display: flex;
  align-items: center;
}

.header {
  height: 8em;
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
  justify-content: space-between;
}

main {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto;
}

.section {
  margin-top: 5em;
}

.section__title {
  margin-bottom: 1em;

  text-transform: uppercase;
}

.nav__list {
  margin-right: 1.5em;
  display: flex;
}

.nav__list-item {
  margin-left: 1.5em;
}

.flex-container {
  display: flex;
  flex-direction: row;
}

.nav__hamburger {
  display: none;
  width: 1em;
}

.container img {
  height: 100%;
  width: 100%;
}

.about {
  flex-direction: column;
  margin-top: 3em;
  padding-bottom: 2em;
}

.about__name {
  color: var(--clr-primary);
  margin-top: 0.1em;
}

.about__resume-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
  max-width: 500px;
}

.resume-margin {
  margin-right: 20px;
}

.skill {
  font-size: 1em;
}

.about__desc {
  font-size: 1rem;
  max-width: 600px;
}

.about__desc,
.about__contact {
  margin-top: 1.4em;
}

.about .link--icon {
  margin-right: 0.8em;
}

.about .btn--outline {
  text-align: center;
  margin-right: 1em;
  max-width: 460px;
}

.column {
  float: left;
}

.left {
  width: 75%;
}

.right {
  width: 25%;
}

.about {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.column.left {
  flex: 3;
  padding-right: 10px;
  padding-bottom: 20px;
}

.column.right {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__image {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  border-radius: 25px;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
  }

  .column.left {
    padding-right: 0;
  }

  .column.right {
    flex: none;
    width: 100%;
  }

  .about__image {
    width: 100%;
    height: auto;
    min-height: 300px;
    object-fit: cover;
    margin-top: 1em;
  }
}

.project {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  /* border-radius: 20px; */
  transition: transform 0.3s ease;
}

.skills__list {
  max-width: 450px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.skills__list-item {
  margin: 0.5em;
}

.contact {
  flex-direction: column;
}

.footer {
  padding: 3em 0;
  margin-top: 4em;
  text-align: center;
}

.footer__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clr-fg);
}

.scroll-top {
  display: none;
  position: fixed;
  bottom: 1em;
  right: 2em;
  background-color: transparent;
  font-size: 1.8rem;
  transition: transform 0.2s ease-in-out;
}

@media (max-width: 600px) {
  .header {
    height: 6em;
  }

  .section {
    margin-top: 4em;
  }

  .nav__list {
    flex-direction: column;
    padding: 4em 0;
    position: absolute;
    right: 0;
    left: 0;
    top: 5em;
    background: var(--clr-bg-ham);
    width: 0;
    overflow: hidden;
    transition: width 0.2s ease-in-out;
  }

  .display-nav-list {
    width: 100%;
  }

  .nav__list-item {
    margin: 0.5em 0;
  }

  .nav__hamburger {
    display: flex;
    margin-left: 0.8em;
  }

  .about {
    align-items: flex-start;
    margin-top: 2em;
  }

  .footer {
    padding: 2em;
    margin-top: 3em;
  }

  .scroll-container {
    display: none;
  }
}

.education {
  margin-top: 2em;
}

.education ul {
  list-style: none;
  padding: 0;
  padding-left: 1em;
  list-style: square;
}

.education li {
  margin-bottom: 2rem;
}

.education h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.education__info {
  color: var(--clr-primary);
  display: flex;
  justify-content: space-between;
}

.education__date {
  font-size: 0.9rem;
  font-style: italic;
}


.gradient-text {
  background-color: #f3ec78;
  background-image: linear-gradient(to right, #8a58eb, #37cffc, #37cffc);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}

/*** <--- CIRCLE STYLES ---> ***/
.wrap-circles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
  background: transparent;
}

.circle-container {
  padding: 1rem 3rem;
  /* background-color: #000; */
}

.circle {
  position: relative;
  padding: 2rem 1rem;
  width: 100px;
  height: 100px;
  margin: 0.5rem;
  border-radius: 50%;
  background: #caeefc;
  overflow: hidden;
}

.circle.per-0 {
  background-image: conic-gradient(#35d0fe 0%, #dedede 0);
}

.circle.per-5 {
  background-image: conic-gradient(#35d0fe 5%, #dedede 0);
}

.circle.per-10 {background-image: conic-gradient(#35d0fe 10%, #dedede 0);}

.circle.per-15 {background-image: conic-gradient(#35d0fe 15%, #dedede 0);}

.circle.per-20 {background-image: conic-gradient(#35d0fe 20%, #dedede 0);}

.circle.per-25 {background-image: conic-gradient(#35d0fe 25%, #dedede 0);}

.circle.per-30 {background-image: conic-gradient(#35d0fe 30%, #dedede 0);}

.circle.per-35 {background-image: conic-gradient(#35d0fe 35%, #dedede 0);}

.circle.per-40 {background-image: conic-gradient(#35d0fe 40%, #dedede 0);}

.circle.per-45 {background-image: conic-gradient(#35d0fe 45%, #dedede 0);}

.circle.per-50 {background-image: conic-gradient(#35d0fe 50%, #dedede 0);}

.circle.per-55 {background-image: conic-gradient(#35d0fe 55%, #dedede 0);}

.circle.per-60 {background-image: conic-gradient(#35d0fe 60%, #dedede 0);}

.circle.per-65 {background-image: conic-gradient(#35d0fe 65%, #dedede 0);}

.circle.per-70 {background-image: conic-gradient(#35d0fe 70%, #dedede 0);}

.circle.per-75 {background-image: conic-gradient(#35d0fe 75%, #dedede 0);}

.circle.per-80 {background-image: conic-gradient(#35d0fe 80%, #dedede 0);}

.circle.per-85 {background-image: conic-gradient(#35d0fe 85%, #dedede 0);}

.circle.per-90 {background-image: conic-gradient(#35d0fe 90%, #dedede 0);}

.circle.per-95 {background-image: conic-gradient(#35d0fe 95%, #dedede 0);}

.circle.per-100 {background-image: conic-gradient(#35d0fe 100%, #dedede 0);}

.circle .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--crcl-clr-bg);
  border-radius: 50%;
  font-weight: 300;
  color: var(--crcl-txt-clr);
}

.glowing-btn {
  position: relative;
  background: none;
  box-shadow: 0px 0px 0.8em 0px transparent;
}

.glowing-btn:hover {
  box-shadow: 0px 0px 2em 0px var(--glow-color);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* skills section starts */
.skills {
}

.skills .heading span {
  color: rgb(55, 215, 255);
}

.skills .container {
  max-width: 1100px;
  color: #fff;
  border-radius: 1rem;
  width: 100%;
  margin: auto;
  margin-top: 2rem;
}

.skills .container .row {
  justify-content: space-between;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7em, 1fr));
  grid-column-gap: 6.7em;
  grid-row-gap: 3em;
}

.skills .container .bar {
  margin-bottom: 15px;
  align-items: center;
  padding: 5px;
  border-radius: 1rem;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0); */
  background: var(--clr-bg-skills);
  transition: 0.2s;
}

.skills .container .bar:hover {
  transition-duration: 0.4s;
  /* transform: scale(1.1); */
  box-shadow: 0px 3px 25px 5px var(--clr-shadow-skills) !important;
}

.skills .container .bar .info {
  color: var(--clr-text-skills);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.skills .container .bar .info .skill-icon {
  max-height: 50%;
  max-width: 50%;
}

/* skills media queries starts*/
@media screen and (max-width: 600px) {
  .skills .container {
    padding: 0;
    margin: 0;
  }

  .skills .container .row {
    grid-template-columns: repeat(2, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1rem;
  }

  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
}

/* skills media queries ends*/

.projects-section {
  /* justify-content: space-between; */
}

.projects-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.projects-container {
  justify-content: space-between;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
  grid-column-gap: 6em;
  grid-row-gap: 3em;
  transition: transform 1s ease;
}
.projects-section .projects-container h2:hover{
  color: dodgerblue;


}

.project {
  /* border-radius: 1em; */
  margin-bottom: 20px;
  background-color: #ffffff;
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  max-width: 800px;
  text-align: left;
}

.project img {
  width: 100%;
  transition: transform 1s ease;
  cursor: pointer;
}

.project img:hover {
  transform: scale(1.1);
}

.project h2 {
  font-size: 1.5em;
  margin: 20px 20px 7px;
  color: #444;
}

.project p {
  font-size: 1em;
  margin: 0 20px 20px;
  color: #444;
}

.icon-container {
  background: transparent;
  display: inline-flex;
  gap: 10px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.icon-link {
  text-decoration: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  /* Adjust the size as needed */
  height: 40px;
  /* Adjust the size as needed */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-link:hover {
  background-color: #969696;
}

.icon-link i {
  font-size: 40px;
  /* Adjust the icon size as needed */
}

.icon-link .github,
.icon-link .website {
  background: transparent;
  width: 25px;
  height: 25px;
}

.about__contact ul {
  flex-wrap: wrap;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.about__contact ul li {
  list-style: none;
  margin: 0 35px;
  margin-bottom: 50px;
}

.about__contact ul li a .fa {
  color: #262626;
  background: transparent;
  line-height: 37px;
  transition: 0.5s;
  padding-right: 14px;
}

.about__contact ul li a span {
  font-size: 0.8em;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 10px;
  color: #262626;

  transition: 0.5s;
}

.about__contact ul li a {
  text-decoration: none;
  display: absolute;
  display: block;
  width: 50px;
  height: 40px;
  background-image: linear-gradient(to bottom right, #57a0f7, #a4dbf5);
  text-align: left;
  padding-left: 20px;
  transform: rotate(-30deg) skew(25deg) translate(0, 0);
  transition: 0.5s;
  box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
}

.about__contact ul li a:before {
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  height: 100%;
  width: 20px;
  background-image: linear-gradient(to bottom, #57a0f7, #6da7ef);
  transform: 0.5s;
  transform: rotate(0deg) skewY(-45deg);
}

.about__contact ul li a:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -10px;
  height: 20px;
  width: 100%;
  background-image: linear-gradient(to bottom right, #57a0f7, #6ba5eb);
  transform: 0.5s;
  transform: rotate(0deg) skewX(-45deg);
}

.about__contact ul li a:hover {
  transform: rotate(-30deg) skew(25deg) translate(20px, -15px);
  box-shadow: -50px 50px 50px rgba(0, 0, 0, 0.5);
}

.about__contact ul li:hover .fa {
  color: #fff;
}

.about__contact ul li:hover span {
  color: #fff;
}

.about__contact ul li:hover:nth-child(1) a {
  background: #3b5998;
}

.about__contact ul li:hover:nth-child(1) a:before {
  background: #365492;
}

.about__contact ul li:hover:nth-child(1) a:after {
  background: #4a69ad;
}

.about__contact ul li:hover:nth-child(2) a {
  background: #00aced;
}

.about__contact ul li:hover:nth-child(2) a:before {
  background: #097aa5;
}

.about__contact ul li:hover:nth-child(2) a:after {
  background: #53b9e0;
}

.about__contact ul li:hover:nth-child(3) a {
  background: #af3ebe;
}

.about__contact ul li:hover:nth-child(3) a:before {
  background: #982ca6;
}

.about__contact ul li:hover:nth-child(3) a:after {
  background: #ac7bb2;
}

.about__contact ul li:hover:nth-child(4) a {
  background: #e4405f;
}

.about__contact ul li:hover:nth-child(4) a:before {
  background: #d81c3f;
}

.about__contact ul li:hover:nth-child(4) a:after {
  background: #e46880;
}

/* Footer Styles */
.footer {
  
  background: var(--footer-bg);
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
  box-shadow: inset 0px 50px 63px -17px var(--footer-shadow);
}

.footer-container {
  flex-wrap: wrap;
  max-width: 600px;
  background: transparent;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* .social-cont{
  width: 80%;
  background-color: #00aced;
} */

.social-icons {
  flex-wrap: wrap;
  flex-direction: row;
  display: flex;
  gap: 24px;
  align-items: start;
}

.social-icon {
  color: var(--social-icons-bg);
  font-size: 24px;
  transition: color 0.3s;
}

.social-icon:hover {
  color: var(--social-icons-bg-hover);
}

.footer-container .left {
  flex: 1;
  text-align: left;
  font-size: 16px;
  color: var(--footer-name);
}
.footer-container .right {
  flex: 1;
}
.footer-text-container p{
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-text-container h2{
  margin-top: 10px;
  margin-bottom: 10px;
}
/* Responsive styles */
@media (max-width: 768px) {
  #footer p {
    font-size: 12px;
  }
  .footer-container {
    flex-direction: column;
  }
  .footer-container .left {
    text-align: center;
  }
}

.tech-stack {
  margin: 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-button {
  padding: 5px 10px;
  border-style: solid;
  border-width: 0.1em;
  border-radius: 20px;
  background-color: transparent;
  color: black;
  font-size: 14px;
}

/* .tech-button:hover {
  background-color: #bdbdbd;
} */

/* Typewriter effect */
@keyframes typing {
  0%, 1% { content: ""; }

  /* Typing "kaira" */
  2%, 17% { content: ""; }
  2.5%, 16.5% { content: "k"; }
  3%, 16% { content: "ka"; }
  3.5%, 15.5% { content: "kai"; }
  4%, 15% { content: "kair"; }
  4.5%, 14.5% { content: "kaira"; }
  17.5%, 18% { content: "kaira"; }
  /* Typing "kai" */
  18%, 33% { content: ""; }
  18.5%, 32.5% { content: "k"; }
  19%, 32% { content: "ka"; }
  19.5%, 31.5% { content: "kai"; }
  33.5%, 34% { content: "kai"; }

  /* Typing "presh" */
  34%, 49% { content: ""; }
  34.5%, 48.5% { content: "p"; }
  35%, 48% { content: "pr"; }
  35.5%, 47.5% { content: "pre"; }
  36%, 47% { content: "pres"; }
  36.5%, 46.5% { content: "presh"; }
  49.5%, 50% { content: "presh"; }

  /* Repeat "kaira" */
  50%, 65% { content: ""; }
  50.5%, 64.5% { content: "k"; }
  51%, 64% { content: "ka"; }
  51.5%, 63.5% { content: "kai"; }
  52%, 63% { content: "kair"; }
  52.5%, 62.5% { content: "kaira"; }
  65.5%, 66% { content: "kaira"; }

  /* Repeat "kai" */
  66%, 81% { content: ""; }
  66.5%, 80.5% { content: "k"; }
  67%, 80% { content: "ka"; }
  67.5%, 79.5% { content: "kai"; }
  81.5%, 82% { content: "kai"; }

  /* Repeat "presh" */
  82%, 97% { content: ""; }
  82.5%, 96.5% { content: "p"; }
  83%, 96% { content: "pr"; }
  83.5%, 95.5% { content: "pre"; }
  84%, 95% { content: "pres"; }
  84.5%, 94.5% { content: "presh"; }
  97.5%, 98% { content: "presh"; }

  /* Remaining up to 100% */
  98%, 100% { content: ""; }
}


/* Blink effect (assuming this is for cursor blinking) */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Media query for reduced motion */
@media (prefers-reduced-motion) {
  .typewriter::after {
    animation: none;
  }

  @keyframes sequencePopup {

    0%,
    100% {
      content: "kaira";
    }

    50% {
      content: "kai";
    }

    75% {
      content: "presh";
    }
  }

  .typewriter::before {
    content: "developer";
    animation: sequencePopup 12s linear infinite;
  }
}

.typewriter {
  --caret: currentcolor;
}

.about h3 {
  margin-top: 20px;
}

.typewriter::before {
  content: "";
  animation: typing 13.5s infinite;
  color: var(--clr-primary);
}

.typewriter::after {
  content: "";
  border-right: 1px solid var(--caret);
  animation: blink 0.5s linear infinite;
}

.typewriter.thick::after {
  border-right: 1ch solid var(--caret);
}

.typewriter.nocaret::after {
  border-right: 0;
}

.fas{
  color: var(--clr-primary)
}

/* 
.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-contact {
  margin-top: auto;
  font-size: 8px;
  color: #888;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  place-items: center;
  background: none;
  border: none;
  background: var(--clr-bg-skills);
  color: var(--clr-text-skills);
  border-radius: 20px;
  padding: 10px 30px 10px 30px;
  padding-left: 10px;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  background: var(--clr-shadow-skills);
  color: var(--crcl-txt-clr);
}



@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

}

@media screen and (max-width: 600px) {

  .screen-body-item {
    padding: 0;
  }
}


.submit-con{
  max-width: 100%;
    background: transparent;
    display: flex;
    justify-content: right;
    align-items: center;
}

button{

  width: 100px;
    height: 40px;
    border: none;
    outline: none;
    background: var(--clr-bg-skills);
  color: var(--clr-text-skills);
    border-radius: 40px;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}


.check-box{
  width: 40px;
    height: 40px;
    border-radius: 40px;
    box-shadow: 0 0 12px -2px rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: -40px;
    opacity: 0;
}

.check-box svg{
  background-color: transparent;
  width: 30px;
  margin: 5px;
  align-items: center;
}

svg path{
  stroke-width: 3;
  stroke: #fff;
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  stroke-linecap: round;
}

.active{
  width: 150px;
  background: #848484;
  transition: 1s;
}

.active .check-box{
  right: 0;
  opacity: 1;
  transition: 1s;
}

.active p{
  margin-right: 20px;
  transition: 1s;
}

.active svg path{
  stroke-dashoffset: 0;
  transition: 1s;
  transition-delay: 1s;
} */





/* system out print */


.string {

  text-align: center;
}

.greeting {
  position: relative;


}

.en {
  color: #fa8231;
}

.print{
  background: var(--clr-bg);
  font-size: 2vmin;
  font-family: JetBrains Mono, monospace;
  height: 100%;
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e4bb68;
}

/* taglist */

.tag-list {

  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 1rem 0;
  position: relative;
  padding: 1.5rem 0;
  overflow: hidden;
}

.loop-slider {
  .inner {
    display: flex;
    /* width: fit-content; */
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }
}

.tag {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #e2e8f0;
  font-size: 0.9rem;
  background-color: #334155;
  border-radius: 0.4rem;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  box-shadow: 
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);
  
  span {
    font-size: 1.2rem;
    color: #64748b;
  }
}

.fade {
  pointer-events: none;
  background: linear-gradient(90deg, var(--clr-bg), transparent 10%, transparent 90%, var(--clr-bg));
  position: absolute;
  inset: 0;
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*  */

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  transform: rotate(-45deg);
  z-index: -9;
}

.star {
  --star-color: #FFFFFF;
  --star-tail-length: 6em;
  --star-tail-height: 2px;
  --star-width: calc(var(--star-tail-length) / 6);
  --fall-duration: 9s;
  --tail-fade-duration: var(--fall-duration);
  
  position: absolute;
  top: var(--top-offset);
  left: 0;
  width: var(--star-tail-length);
  height: var(--star-tail-height);
  color: var(--star-color);
  background: linear-gradient(45deg, currentColor, transparent);
  border-radius: 50%;
  filter: drop-shadow(0 0 6px currentColor);
  transform: translate3d(104em, 0, 0);
  animation: fall var(--fall-duration) var(--fall-delay) linear infinite, tail-fade var(--tail-fade-duration) var(--fall-delay) ease-out infinite;
}

@media screen and (max-width: 750px) {
  .star {
    animation: fall var(--fall-duration) var(--fall-delay) linear infinite;
  }
}

@keyframes fall {
  to {
    transform: translate3d(-30em, 0, 0);
  }
}

@keyframes tail-fade {
  0%, 50% {
    width: var(--star-tail-length);
    opacity: 1;
  }

  70%, 80% {
    width: 0;
    opacity: 0.4;
  }

  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes blink {
  50% {
    opacity: 0.6;
  }
}

.star::before, .star::after {
  position: absolute;
  content: '';
  top: 0;
  left: calc(var(--star-width) / -2);
  width: var(--star-width);
  height: 100%;
  background: linear-gradient(45deg, transparent, currentColor, transparent);
  border-radius: inherit;
  animation: blink 2s linear infinite;
}

.star::before {
  transform: rotate(45deg);
}

.star::after {
  transform: rotate(-45deg);
}

.star:nth-child(1) {
  --star-tail-length: 6em;
  --top-offset: 0vh;
  --fall-duration: 9s;
  --fall-delay: 0s;
}

.star:nth-child(2) {
  --star-tail-length: 7em;
  --top-offset: 10vh;
  --fall-duration: 10s;
  --fall-delay: 1s;
}

.star:nth-child(3) {
  --star-tail-length: 5em;
  --top-offset: 20vh;
  --fall-duration: 8s;
  --fall-delay: 2s;
}

.star:nth-child(4) {
  --star-tail-length: 6.5em;
  --top-offset: 30vh;
  --fall-duration: 9.5s;
  --fall-delay: 3s;
}

.star:nth-child(5) {
  --star-tail-length: 8em;
  --top-offset: 40vh;
  --fall-duration: 11s;
  --fall-delay: 4s;
}

.star:nth-child(6) {
  --star-tail-length: 6em;
  --top-offset: 50vh;
  --fall-duration: 9s;
  --fall-delay: 5s;
}

.star:nth-child(7) {
  --star-tail-length: 7.5em;
  --top-offset: 60vh;
  --fall-duration: 10.5s;
  --fall-delay: 6s;
}

.star:nth-child(8) {
  --star-tail-length: 5.5em;
  --top-offset: 70vh;
  --fall-duration: 8.5s;
  --fall-delay: 7s;
}

.star:nth-child(9) {
  --star-tail-length: 6.8em;
  --top-offset: 80vh;
  --fall-duration: 9.8s;
  --fall-delay: 8s;
}

.star:nth-child(10) {
  --star-tail-length: 7.2em;
  --top-offset: 90vh;
  --fall-duration: 10.2s;
  --fall-delay: 9s;
}

.star:nth-child(11) {
  --star-tail-length: 6.4em;
  --top-offset: 100vh;
  --fall-duration: 9.4s;
  --fall-delay: 10s;
}

.star:nth-child(12) {
  --star-tail-length: 7.6em;
  --top-offset: 110vh;
  --fall-duration: 10.6s;
  --fall-delay: 11s;
}

.star:nth-child(13) {
  --star-tail-length: 5.2em;
  --top-offset: 120vh;
  --fall-duration: 8.2s;
  --fall-delay: 12s;
}

.star:nth-child(14) {
  --star-tail-length: 6.7em;
  --top-offset: 130vh;
  --fall-duration: 9.7s;
  --fall-delay: 13s;
}

.star:nth-child(15) {
  --star-tail-length: 7.1em;
  --top-offset: 140vh;
  --fall-duration: 10.1s;
  --fall-delay: 14s;
}

.star:nth-child(16) {
  --star-tail-length: 6.3em;
  --top-offset: 150vh;
  --fall-duration: 9.3s;
  --fall-delay: 15s;
}

.star:nth-child(17) {
  --star-tail-length: 7.3em;
  --top-offset: 160vh;
  --fall-duration: 10.3s;
  --fall-delay: 16s;
}

.star:nth-child(18) {
  --star-tail-length: 5.3em;
  --top-offset: 170vh;
  --fall-duration: 8.3s;
  --fall-delay: 17s;
}

.star:nth-child(19) {
  --star-tail-length: 6.9em;
  --top-offset: 180vh;
  --fall-duration: 9.9s;
  --fall-delay: 18s;
}

.star:nth-child(20) {
  --star-tail-length: 7.8em;
  --top-offset: 190vh;
  --fall-duration: 10.8s;
  --fall-delay: 19s;
}

.star:nth-child(25) {
  --star-tail-length: 6.5em;
  --top-offset: 240vh;
  --fall-duration: 24s;
}

.star:nth-child(26) {
  --star-tail-length: 7.7em;
  --top-offset: 250vh;
  --fall-duration: 10.7s;
  --fall-delay: 25s;
}

.star:nth-child(27) {
  --star-tail-length: 5.4em;
  --top-offset: 260vh;
  --fall-duration: 8.4s;
  --fall-delay: 26s;
}

.star:nth-child(28) {
  --star-tail-length: 6.2em;
  --top-offset: 270vh;
  --fall-duration: 9.2s;
  --fall-delay: 27s;
}

.star:nth-child(29) {
  --star-tail-length: 7.9em;
  --top-offset: 280vh;
  --fall-duration: 10.9s;
  --fall-delay: 28s;
}

.star:nth-child(30) {
  --star-tail-length: 5.7em;
  --top-offset: 290vh;
  --fall-duration: 8.7s;
  --fall-delay: 29s;
}
