@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: serif;
  list-style-type: none;
  font-family: "JetBrains Mono", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
  background-color: black;
}
.container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  display: flex;
  justify-content: space-between;
}
.header_text {
  font-size: 25px;
  cursor: pointer;
  color: white;
}
.header_bg {
  background: #0b1120;
  border-bottom: 1px solid rgb(43, 10, 121);

  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header_links {
  color: white;
  font-size: 25px;
  text-decoration: none;
  transition: all 0.6s ease-in-out;
}

.fa-solid {
  color: white;
  font-size: 22px;
}

.header_links:hover {
  color: rgb(111, 97, 215);
  cursor: pointer;
}

.section {
  background-image: url(../imgs/Night.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100%;
  background-position: center;
  background-attachment: fixed;
}

.text-animation {
  color: white;
  font-weight: 900;
  letter-spacing: 3px;
}

.text-animation span {
  position: relative;
  top: 10px;
  left: 10px;
  font-weight: 600;
  font-size: 30px;
  text-transform: uppercase;
  opacity: 0;
  animation: fade 0.5s ease-in-out forwards;
}
.section_center {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding-top: 90px;
  flex-direction: column;
  margin: 0 auto;
  min-height: 300px;
  height: 100vh;
}
.main {
  color: white;
  font-size: 20px;
}
@keyframes fade {
  0% {
    top: 10px;
    left: 10px;
    filter: blur(25px);
    opacity: 0;
  }
  50% {
    filter: blur(15px);
    opacity: 0.9;
  }
  100% {
    top: 0px;
    left: 0px;
    filter: blur(0px);
    opacity: 1;
  }
}
.seaction_text_title {
  opacity: 0;
  display: inline-block;
  animation: animate 1s linear forwards;
  color: white;
  font-size: 30px;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotateY(90deg);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
    filter: blur(0);
  }
}
.header_icon {
  display: none;
}
.section_imgs_img {
  background: #111729;
  width: 100%;
  min-height: 100%;
}

.seaction_1 {
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.section_left_img {
  width: 500px;
}
.left_img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.section_items {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.5x);
}
.section_texts {
  color: white;
  font-size: 25px;
  font-weight: 600;
  width: 500px;
  font-family: system-ui;
}
.section_title {
  color: white;
  font-size: 30px;
}

.html {
  color: white;
}
.link {
  color: white;
  font-size: 23px;
}
.link:hover {
  color: rgb(250, 123, 123);
  border-bottom: 1px solid gray;
  transition: all 1s;
}
.nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 30px;
  padding-left: 30px;
}

.line-one {
  width: 25px;
  height: 90vh;
  background: rgba(0, 85, 255, 0.786);
  display: flex;
  gap: 20px;
}
.line-two {
  width: 25px;
  height: 90vh;
  background: red;
}
.line-green {
  width: 25px;
  height: 90vh;
  background: green;
}
.section-img {
  width: 600px;
  height: 400px;
  border-radius: 20px;
  transition: all 1s;
}
.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.spriper {
  display: flex;
  gap: 20px;
}
.title-item {
  color: white;
  font-size: 35px;
  display: flex;
  font-weight: 900;
}
.title-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
}
.progress-bar {
  display: block;
  position: relative;
  width: 90%;
  margin: 20px 2px;
  height: 15px;
  background-color: white;
  border-radius: 5px;
}

.progress-bar .progress {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #2c3a68;
  animation: progress-bar 2s 1s 1 forwards;
  border-radius: 2px;
}
.pb-2 .progress {
  animation-name: pb-2;
  animation-delay: 2s;
}
.pb-3 .progress {
  animation-name: pb-3;
  animation-delay: 2.5s;
}
.pb-4 .progress {
  animation-name: pb-4;
  animation-delay: 3s;
}
.pb-5 .progress {
  animation-name: pb-5;
  animation-delay: 3.5s;
}
.pb-6 .progress {
  animation-name: pb-6;
  animation-delay: 4s;
}
.pb-7 .progress {
  animation-name: pb-7;
  animation-delay: 4.3s;
}
.SKILLS {
  color: white;
  margin-bottom: 30px;
  font-size: 40px;
}
.animation {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  box-shadow: 1px 1px 145px -13px rgba(127, 142, 171, 0.75) inset;
  -webkit-box-shadow: 1px 1px 145px -13px rgba(127, 142, 171, 0.75) inset;
  -moz-box-shadow: 1px 1px 145px -13px rgba(127, 142, 171, 0.75) inset;
}
.html {
  color: white;
}
.css {
  color: white;
}
.sass {
  color: white;
}
.JAVASCRIPT {
  color: white;
  font-size: 14px;
}
.REACT {
  color: white;
}
.Gitlink {
  color: white;
}
.DEVELOPMENT {
  color: white;
}
.next {
  color: white;
}
.section_item_text {
  color: white;
}

.section_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.main_items {
  background: #0f172a;
  min-height: 100%;
}
.main_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fa-solid {
  font-size: 50px;
}
.main_rigth_texts {
  color: white;
}
.skills_html {
  width: 140px;
  height: 140px;
  border: 1px solid rgb(243, 239, 239);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  margin-top: 20px;
}
.skills_html:hover {
  background: #2c3a68;
  cursor: pointer;
}
.skills_html span {
  color: white;
  font-size: 20px;
}
.skills_html a {
  color: white;
}
.skills_item_card {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.main_items_item {
  overflow-x: hidden;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  padding: 10px 0;
}

.card_link {
  color: #119faf;
}
.tiltcard_item {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.titlecard_img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 10px;
}
.tiltcard {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding:10px;
  border-radius: 12px;
  border:1px solid rgb(73, 72, 72)
}
.skills_some {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 32px;
  padding-top: 30px;
}
.width {
  width: 100%;
  min-height: 100%;
  background-color: black;
}

.card .image-box {
  height: 250px;
}
.card .image-box img {
  border-radius: 10px;
  height: 100%;
}
.profil-text {
  font-size: 50px;
  color: black;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 580px;
  padding-top: 30px;
  gap: 30px;
  height: 500px;
  background-color: white;
  border-radius: 10px;
}
.image-box {
  display: flex;
  justify-content: center;
}
.profil-text {
  display: flex;
  justify-content: center;
}
.name-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.name_btn {
  background-color: white;
  color: #119faf;
  border: 2px solid #119faf;
  transition: all 1s;
  border-radius: 3px;
  padding: 10px 10px;
  cursor: pointer;
}
.name_btn:hover {
  color: white;
  background-color: #119faf;
}
.card_img_name {
  background-color: black;
  width: 100%;
  min-height: 100%;
  margin-top: 20px;
}
.instagrom_link{
    cursor: pointer;
}
@keyframes progress-bar {
  100% {
    width: 90%;
  }
}
@keyframes pb-2 {
  100% {
    width: 85%;
  }
}
@keyframes pb-3 {
  100% {
    width: 82%;
  }
}
@keyframes pb-4 {
  100% {
    width: 80%;
  }
}
@keyframes pb-5 {
  100% {
    width: 78%;
  }
}
@keyframes pb-6 {
  100% {
    width: 75%;
  }
}
@keyframes pb-7 {
  100% {
    width: 72%;
  }
}
.swiper {
  width: 600px;
  height: 300px;
}
.swiper-slide {
  color: white;
  font-size: 30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.humburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

@media screen and (max-width: 1350px) {
  .tiltcard_item {
    display: grid;
    grid-template-columns: auto auto auto;
    width: 100%;
  }
}
@media screen and (max-width: 1020px) {
  .humburger {
    display: block;
  }
  .humburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .humburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    font-size: 55px;
  }
  .humburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    font-size: 55px;
  }
  .nav-menu {
    position: fixed;
    right: -500%;
    gap: 0;
    top: 0;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    text-align: center;
    transition: all 0.1s ease-in-out;
    font-size: 55px;
    color: transparent;
  }
  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    right: 0;
  }
}
@media screen and (max-width: 1330px) {
  .header_link-desktop {
    display: none;
  }
  .icons {
    display: block;
  }
}

@media screen and (max-width: 467px) {
  .text-animation span {
    font-size: 20px;
  }
}
@media screen and (max-width: 332px) {
  .text-animation span {
    font-size: 17px;
  }
  .main {
    font-size: 13px;
    font-weight: 900;
  }
}
@media screen and (max-width: 1056px) {
  .seaction_1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
  }
  .main_items_item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
    gap: 50px;
  }
  .section_title {
    text-align: center;
  }
  .section_texts {
    text-align: center;
  }
  .main_left {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 1066px) {
  .tiltcard_item {
    display: grid;
    grid-template-columns: auto auto;
    gap: 50px;
  }
}
@media screen and (max-width: 770px) {
  .tiltcard_item {
    display: grid;
    grid-template-columns: auto;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1227px) {
  .section_title {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  .section_title {
    text-align: center;
    font-size: 27px;
  }
  .section_texts {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 20px;
  }
}
@media screen and (max-width: 1062px) {
  .section_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 502px) {
  .section_texts {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    font-size: 14px;
    width: 300px;
  }
  .section_left_img {
    width: 100%;
  }
}
@media screen and (max-width: 487px) {
  .skills_html {
    width: 100px;
    height: 100px;
  }
  .skills_html span {
    font-size: 15px;
  }
  .main_rigth_texts {
    font-size: 20px;
  }
  .fa-solid {
    font-size: 20px;
  }
}
@media screen and (max-width: 619px) {
  .skills_some {
    font-size: 25px;
  }
}
@media screen and (max-width: 484px) {
  .skills_some {
    font-size: 20px;
  }
}
@media screen and (max-width: 384px) {
  .skills_some {
    font-size: 17px;
  }
}
@media screen and (max-width: 327px) {
  .skills_some {
    font-size: 13px;
  }
}

@media screen and (max-width: 327px) {
  .skills_some {
    font-size: 13px;
  }
}
@media screen and (max-width: 382px) {
  .section_title {
    font-size: 10px;
  }
}
@media screen and (max-width: 365px) {
  .skills_html {
    width: 80px;
    height: 80px;
  }
  .skills_html span {
    font-size: 10px;
  }
}
@media screen and (max-width: 306px) {
  .skills_item_card {
    gap: 20px;
  }
}
