@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

:root {
  --bg-color: #2c322c;
  --second-bg-color: #ff9800;
  --main-color: #19a68ff7;
  --text-color: #f5f5f5;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 7rem;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background: var(--bg-color);
}

html::-webkit-scrollbar-thumb {
  background: var(--main-color);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 9%;
  background-color: rgba(1, 14, 8, 0.7);
  text-shadow: 0 10px 30px var(--main-color);
  filter: drop-shadow(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 3rem;
  color: var(--main-color);
  font-weight: 800;
  cursor: pointer;
  transition: 0.5s ease;
}

.logo:hover {
  transform: scale(1.1);
  text-shadow: 0 0 25px var(--main-color);
}

.navbar a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active {
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}

#menu-icon {
  font-size: 3.6rem;
  color: var(--main-color);
  display: none;
}

@media (max-width: 992px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 40%;
    border-left: 3px solid var(--main-color);
    border-bottom: 3px solid var(--main-color);
    border-bottom-left-radius: 2rem;
    padding: 1rem 3%;
    background-color: var(--second-bg-color);
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    display: none;
  }
  .navbar.active {
    display: block;
  }
  .navbar a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }
  .navbar a:hover,
  .navbar a.active {
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
section {
  min-height: 100vh;
  padding: 5rem 9% 5rem;
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}

.home-img {
  margin-top: 6rem;
}

.home-img img {
  position: relative;
  width: 25vw;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--main-color), 0 0 15px var(--main-color), 0 0 50px var(--main-color);
  cursor: pointer;
}

.home-img img:hover {
  box-shadow: 0 0 15px var(--main-color), 0 0 25px var(--main-color), 0 0 70px var(--main-color);
  transform: scale(1.1);
  transition: 0.3s ease;
}

.home .home-content h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
}

span {
  color: var(--main-color);
}

.typing-text {
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
}

.typing-text span {
  position: relative;
}

.typing-text span::before {
  content: "Software Developer";
  color: var(--main-color);
  animation: words 20s infinite;
}

.typing-text span::after {
  content: "";
  position: absolute;
  background-color: var(--bg-color);
  width: calc(100% + 8px);
  height: 100%;
  border-left: 3px solid var(--bg-color);
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
  to {
    border-left: 2px solid var(--main-color);
  }
}
@keyframes words {
  0%, 20% {
    content: "Software Developer";
  }
  21%, 40% {
    content: "Web Developer";
  }
  41%, 60% {
    content: "Design Logo";
  }
  61%, 80% {
    content: "Web Designer";
  }
  81%, 100% {
    content: "Brand style Guide";
  }
}
@keyframes typing {
  10%, 15%, 30%, 35%, 50%, 55%, 70%, 75%, 90%, 95% {
    width: 0;
  }
  5%, 20%, 25%, 40%, 45%, 60%, 65%, 80%, 85% {
    width: calc(100% + 8px);
  }
}
.home-content h3 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.home-content p {
  font-size: 1.7rem;
  font-weight: 400;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: 0.2rem solid var(--main-color);
  font-size: 2rem;
  border-radius: 50%;
  color: var(--main-color);
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease;
}

.social-icons a:hover {
  color: black;
  background: var(--main-color);
  transform: scale(1.3) translateY(-5px);
  box-shadow: 0 0 25px var(--main-color);
}

.home-button {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.button {
  all: unset;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.6em 2em;
  border: medium solid var(--main-color);
  border-radius: 0.25em;
  color: var(--main-color);
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: border 300ms, color 300ms;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.button p {
  z-index: 1;
}

.button:hover {
  color: black;
  box-shadow: 0 0 25px var(--main-color);
}

.button:active {
  border-color: var(--main-color);
}

.button::after,
.button::before {
  content: "";
  position: absolute;
  width: 12em;
  aspect-ratio: 1;
  background: var(--main-color);
  opacity: 50%;
  border-radius: 50%;
  transition: transform 500ms, background 300ms;
}

.button2::after,
.button2::before {
  content: "";
  position: absolute;
  width: 18em;
  aspect-ratio: 1;
  background: var(--main-color);
  opacity: 50%;
  border-radius: 50%;
  transition: transform 500ms, background 300ms;
}

.button::before {
  left: 0;
  transform: translateX(-10.5em);
}

.button::after {
  right: 0;
  transform: translateX(10.5em);
}

.button2::before {
  left: 0;
  transform: translateX(-16.5em);
}

.button2::after {
  right: 0;
  transform: translateX(16.5em);
}

.button:hover::before {
  transform: translateX(-1em);
}

.button:hover::after {
  transform: translateX(1em);
}

.button:active::after,
.button:active::before {
  background: transparent;
}

@media (max-width: 1000px) {
  .home {
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .home {
    flex-direction: column;
    margin: 0 2rem;
  }
  .home .home-content h1 {
    font-size: 5rem;
  }
  .home .home-content h3 {
    font-size: 2.5rem;
  }
  .home .home-img img {
    width: 50vw;
    margin: 3rem 0;
  }
}
.services {
  background-color: var(--second-bg-color);
}

.heading {
  text-align: center;
  font-size: 5rem;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 2.5rem;
}

.services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: var(--bg-color);
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
}

.services .single-service .content {
  position: relative;
  z-index: 20;
}

.services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: var(--main-color);
  border: 6px solid var(--second-bg-color);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s;
}

.services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  height: 70px;
  width: 70px;
  background-color: var(--main-color);
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all 0.3s;
}

.services .single-service:hover .icon {
  background-color: var(--second-bg-color);
  transform: scale(1.2);
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid;
  transition: all 0.3s;
}

.services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 22px;
  transition: color 0.3s;
}

.services .single-service:hover .title {
  color: #000000;
}

.services .single-service .description {
  margin-bottom: 20px;
  font-style: 14px;
  transform: color 0.3s;
}

.services .single-service:hover .description {
  color: #000000;
}

.services .single-service a {
  position: relative;
  font-size: 18px;
  color: var(--second-bg-color);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s;
}

.services .single-service:hover a {
  color: var(--second-bg-color);
}

@media (max-width: 991px) {
  section {
    padding: 4rem 3% 2rem;
  }
  .services {
    padding-bottom: 7rem;
  }
}
@media (max-width: 895px) {
  .services .service-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.skills {
  background: var(--bg-color);
}

.skills .container {
  background: var(--second-bg-color);
  color: var(--text-color);
  border-radius: 1rem;
  padding: 2rem;
  width: 70%;
  margin: auto;
  margin-top: 2rem;
}

.skills .container .row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-wrap: wrap;
  gap: 2rem;
}

.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  background: var(--bg-color);
  transition: 0.3s ease;
  cursor: pointer;
}

.skills .container .bar:hover {
  box-shadow: 0 4px 10px var(--main-color);
  transform: scale(1.1);
}

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

.skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 500;
  margin-left: 0.5rem;
}

@media screen and (max-width: 600px) {
  .skills .container {
    margin: 0;
    padding: 0;
  }
  .skills .container .row {
    grid-template-columns: repeat(1, 1fr);
    margin: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    gap: 1rem;
  }
  .skills .container {
    margin-top: 5px;
    width: 100%;
  }
}
.education {
  background: url(/img/other/background\ 1.jpg) no-repeat center center/cover;
}

.education .timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.education .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: rgba(110, 237, 180, 0.824);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: 2;
}

.education .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.education .container::after {
  content: "\f501";
  position: absolute;
  width: 25px;
  height: 25px;
  line-height: 25px;
  right: -17px;
  background-color: rgba(255, 255, 255, 0.887);
  border-radius: 50%;
  border: 4px solid var(--main-color);
  top: 15px;
  z-index: 100;
  font-size: 1.89rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  text-align: center;
  color: rgb(90, 64, 64);
}

.education .left {
  left: 0;
}

.education .right {
  left: 50%;
}

.education .left::before {
  content: "";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid var(--main-color);
  border-width: 11px 0 11px 11px;
  border-color: transparent transparent transparent var(--main-color);
}

.education .right::before {
  content: "";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid var(--main-color);
  border-width: 11px 11px 11px 0;
  border-color: transparent var(--main-color) transparent transparent;
}

.education .right::after {
  left: -16px;
}

.education .content {
  padding: 20px 30px;
  background: var(--main-color);
  position: relative;
  border-radius: 6px;
}

.education .content .tag {
  font-size: 1.5rem;
  margin-left: 1.5rem;
}

.education .content .decs {
  margin-left: 1.5rem;
  padding-left: 1rem;
}

.education .content .tag h2 {
  font-size: 2rem;
  font-weight: 600;
  color: black;
}

.education .content .decs p {
  font-size: 1.3rem;
  font-weight: 500;
  color: black;
}

@media screen and (max-width: 600px) {
  .education .timeline {
    margin-top: 2rem;
  }
  .education .timeline::after {
    left: 31px;
  }
  .education .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .education .container::after {
    font-size: 2.2rem;
  }
  .education .container::before {
    left: 61px;
    border: medium solid var(--main-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--main-color) transparent transparent;
  }
  .education .left::after {
    left: 15px;
  }
  .education .right::after {
    left: 15px;
  }
  .education .right {
    left: 0%;
  }
}
.contact {
  background: var(--bg-color);
}

.contact .container {
  padding: 2rem;
  width: 90%;
  margin: auto;
  margin-top: 2rem;
  background: var(--second-bg-color);
}

.contact .container .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-wrap: wrap;
}

.contact-left {
  flex-basis: 35%;
}

.contact-right {
  flex-basis: 60%;
}

.contact .contact-left .sub-title {
  font-size: 4rem;
}

.contact .contact-left p {
  margin-top: 30px;
  font-size: 1.6rem;
}

.contact .contact-left p i {
  color: var(--main-color);
  margin-right: 15px;
  font-size: 25px;
}

.contact .contact-right form {
  width: 100%;
}

form input,
form textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #000000;
  padding: 15px;
  margin: 15px 0;
  color: #fff;
  font-size: 18px;
  border-radius: 6px;
  resize: none;
}

.btn-cv {
  display: inline-block;
  background: transparent;
  color: #000000;
  padding: 10px 30px;
  border: 2px solid var(--bg-color);
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-cv:hover {
  background: var(--main-color);
  border: none;
  box-shadow: 0 0 25px var(--main-color);
}

.contact .button p {
  font-size: 1.6rem;
  font-weight: 500;
}

.btn-cv a {
  color: var(--main-color);
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-cv:hover a {
  color: #000000;
}

@media screen and (max-width: 600px) {
  .contact .container {
    margin: 0;
    padding: 0;
  }
  .contact .container .row {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    padding: 2rem 0.2rem 2rem 0.2rem;
    margin: 1rem;
  }
}
.footer {
  position: relative;
  bottom: 0;
  background: var(--second-bg-color);
  width: 100%;
  padding: 40px 0;
}

.footer .social {
  text-align: center;
  padding-bottom: 25px;
  color: black;
}

.footer .social a {
  font-size: 25px;
  color: black;
  border: 2px solid black;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  transition: 0.3s ease;
}

.footer .social a:hover {
  transform: scale(1.2) translateY(-5px);
  background: #000000;
  color: var(--main-color);
  box-shadow: 0 0 25px var(--main-color);
}

.footer ul {
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul li a {
  color: black;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}

.footer ul li {
  display: flex;
  padding: 0 15px;
  justify-content: center;
  gap: 20px;
}

.footer ul li a:hover {
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}

.footer .copyright {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: black;
}

@media (max-width: 1285px) {
  html {
    font-size: 55%;
  }
  .service-container {
    padding-bottom: 7rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 5rem;
  }
}
@media (max-width: 1285px) {
  .header {
    padding: 2rem 3%;
  }
  section {
    padding: 5rem 3% 2rem;
  }
  .services {
    padding-bottom: 7rem;
  }
  .footer {
    padding: 2rem 3%;
  }
}/*# sourceMappingURL=style.css.map */