@import url("https://fonts.googleapis.com/css2?family=Hubballi&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora&display=swap");

* {
  font-family: "Sora", sans-serif;
}

body {
  margin: 0;
  padding: 0;
}

/*-Header CSS-*/

#header {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/background.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.user-box {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.user-box img {
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  width: 365px;
  border: 2px solid #fca311;
}

.user-box h1 {
  font-size: 50px;
  font-family: "Hubballi", cursive;
  color: white;
  font-weight: bold;
  margin: 10px;
}

.user-box p {
  font-size: 20px;
  color: #fca311;
  font-family: "Syne Mono", monospace;
}

.scroll-btn {
  bottom: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #fca311;
  padding: 10px 10px 20px;
  border-radius: 30px;
}
.scroll-bar span {
  border: 2px solid white;
  font-size: 10px;
  border-radius: 30px;
}
.scroll-bar {
  animation: mover 1s infinite alternate;
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

/*-About-*/

.about {
  padding-top: 100px;
  padding-bottom: -130px;
}

.profile-img {
  height: 400px;
  border-radius: 50px !important;
  border: 4px solid #fca311;
}

.nav-bar {
  top: 0;
  position: sticky;
  z-index: 2;
}

.navbar {
  background-color: #100;
}

.navbar-brand h1 {
  height: fit-content;
  font-weight: bold;
  font-family: "Syne Mono", monospace;
  color: #fca311;
  width: fit-content;
}

.nav-bar .fa-bars {
  font-size: 35px;
  color: #fff;
}

.navbar-toggler {
  outline: none !important;
}

.navbar-nav {
  float: right;
  text-align: right;
}

.nav-link {
  color: #fff !important;
}

.skills-bar p {
  margin-bottom: 6px;
  font-weight: 600;
}

.progress {
  border-radius: 16px !important;
  margin-bottom: 10px;
}

.progress-bar {
  border-radius: 16px;
  background: #000 !important;
}

/*-Resume-*/

.resume {
  margin-top: -50px;
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #fca21138;
}

.resume h3 {
  margin-bottom: 50px;
}

.timeline {
  list-style-type: none;
  position: relative;
}

.timeline::before {
  content: "";
  background-color: #fff;
  display: inline-block;
  position: absolute;
  left: 29px;
  width: 4px;
  height: 100%;
  z-index: 1;
}

.timeline li {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.timeline li h4 {
  background-color: #000;
  padding: 5px 0 5px 20px;
  color: #fff;
  font-size: 15px;
}

.timeline li h4 span {
  font-weight: bold;
  color: #fca311;
}

.timeline li::before {
  content: "";
  background: #fff;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #000;
  left: 20px;
  width: 20px;
  height: 20px;
  z-index: 1;
}

/*-Services-*/

.services {
  padding-top: 50px;
  padding-bottom: 50px;
}

.services h1 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.service-box {
  background: #fca21138;
  padding: 10px;
  margin-top: 20px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  transition-duration: 1s;
}

.service-box .fa {
  margin: 0 10px;
  font-size: 20px;
}

.service-box span {
  margin: 3px;
  font-size: 20px;
  font-weight: bold;
}

.service-box p {
  font-size: 15px;
  margin-top: 20px;
  color: #777;
}

.service-box:hover {
  background: #000;
  color: #fff;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  transition: 1s ease-in-out;
  transition-duration: 0.5s;
}

.service-box:hover p {
  color: #fff;
}

/*-Other Web-*/

.otherwb {
  margin-top: 70px;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fca21138;
}

.other-web h1 {
  margin-bottom: 60px;
}

.other-web .btn {
  padding: 10px 25px 10px 25px;
  margin: 5px;
  border-radius: 30px;
  border: 2px solid #fca311;
  background: black;
  color: #fca311;
}

.other-web .btn:focus {
  box-shadow: none !important;
}

.other-web .btn:hover {
  border: 2px solid #fca311 !important;
  background: #fca311 !important;
  transition: 0.6s;
}

.other-web .btn .fa {
  margin-right: 10px;
}

/* Other projects */

.projects {
  margin-top: 50px;
  padding-bottom: 30px;
}

.projects h1 {
  margin-bottom: 60px;
}

.projects .btn {
  padding: 10px 25px 10px 25px;
  margin: 5px;
  border-radius: 30px;
  border: 2px solid #fca311;
  background: black;
  color: #fca311;
}

.projects .btn:focus {
  box-shadow: none !important;
}

.projects .btn:hover {
  border: 2px solid #fca311 !important;
  background: #fca311 !important;
  transition: 0.6s;
}

.projects .btn .fa {
  margin-right: 10px;
}

/*-Contact-*/

.contact {
  padding-top: 50px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url(images/background2.webp);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
}

.contact .row {
  padding: 20px 0;
  font-size: 22px;
}

.contact .col-md-6 .fa {
  padding: 10px;
  font-size: 40px;
}

.contact .btn {
  padding: 10px 25px 10px 25px;
  margin: 5px;
  border-radius: 30px;
  border: 2px solid #fca311;
  background: transparent;
}

.contact .btn:focus {
  box-shadow: none !important;
}

.contact .btn:hover {
  border: 2px solid #fca311 !important;
  background: #fca311 !important;
  transition: 0.6s;
}

.contact .btn .fa {
  margin-right: 10px;
}

.footer {
  background: #000;
  height: 50px;
  margin-top: 50px;
  color: #fff;
  padding-top: 10px;
}

.footer p {
  font-size: 20px;
  color: #fca311;
  font-family: "Syne Mono", monospace;
}

/*-Social Icons-*/

.social-icons {
  top: 50%;
  transform: translateY(-50%);
  position: sticky;
  z-index: 1;
  width: 80px;
}

.social-icons ul {
  padding: initial;
}

.social-icons ul li {
  height: 40px;
  width: 40px;
  list-style-type: none;
  padding-left: 12px;
  padding-top: 6px;
  margin-top: 5px;
  color: #000;
  background: #fca311;
}

.social-icons ul li:hover {
  padding-left: 30px;
  width: 80px;
  transition: 1s;
}

@media only screen and (max-width: 700px) {
  .user-box img {
    border-radius: 50px;
    width: 260px;
    border: 2px solid #fca311;
  }

  .user-box h1 {
    font-size: 30px;
    font-family: "Hubballi", cursive;
    color: white;
    font-weight: bold;
    margin: 10px;
  }

  .user-box p {
    font-size: 13px;
    color: #fca311;
    font-family: "Syne Mono", monospace;
  }

  .profile-img {
    width: 360px;
    border-radius: 50px !important;
  }

  .scroll-btn {
    bottom: 30px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #fca311;
    padding: 3px 10px 11px;
    border-radius: 30px;
  }

  .scroll-bar span {
    border: 2px solid white;
    font-size: 5px;
    border-radius: 30px;
  }

  .services h1 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 30px;
  }

  .other-web h1 {
    margin-bottom: 60px;
    font-size: 30px;
  }

  .contact h1 {
    font-size: 30px;
  }
}
