body {
  background-image: url(file_000000005f186243bfe06f0e4ced42ca-removebg-preview.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: 85% 95px;
  background-size: contain;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #000000e8;
}
html {
  scroll-behavior: smooth;
}
header {
  background-color: #000000;
  display: flex;
  position: fixed;
  transition: 0.5s ease;
  opacity: 0;
  animation: head 0.5s ease-in forwards;
  animation-delay: calc(0.2s * var);
  flex-direction: row;
  justify-content: space-around;
  padding: 10px 0px;
  height: 2.2rem;
  width: 100vw;
  overflow: hidden;
  z-index: 1;
  align-items: center;
}
@keyframes head {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
header > h1 {
  font-weight: 800;
  animation: logo 1s ease forwards;
  cursor: pointer;
  font-size: 1.3rem;
  opacity: 20px;
  background: linear-gradient(to right, #f32170, #ff6b08, #cf23cf, #eedd44);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-family: Arial, Helvetica, sans-serif;
}
@keyframes logo {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
header > nav {
  flex: 0.5;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
nav > a {
  text-decoration: none;
  color: #eedd44bb;
  font-family: sans-serif;
  font-size: 1.2em;
  transition: 0.3s;
  opacity: 10px;
  animation: nav 0.9s ease forwards;
  animation-delay: calc(0.2s * var(..1));
}
@keyframes nav {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
nav > a:hover {
  color: #f32170;
}
header > a {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  color: #cf23cf;
  background-color: #eedd44bb;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 40px;
  padding: 9px 20px;
  transition: 0.5s;
  opacity: 0;
  animation: a 0.7s ease-in forwards;
}
@keyframes a {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
header > a:hover {
  background-color: #f32170;
  color: #eedd44;
}
.menu-btn {
  cursor: pointer;
  z-index: 17;
  position: absolute;
  visibility: hidden;
}
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1;
}

#menu-overlay.active {
  display: block;
}
#mobile-menu {
  position: fixed;
  top: 0;
  right: -260px; /* hidden off-screen */
  height: 100vh;
  background: #000000e8;
  padding: 40px 25px;
  z-index: 5;

  /* Animation */
  transition: right 0.35s ease;
}

#mobile-menu.active {
  right: 0; /* slide in */
}

#mobile-menu nav {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 450px) {
  section > .div1 > h3 {
    font-size: 1.8rem;
  }
  section > .div1 > p {
    font-size: 0.9rem;
  }
  #Home > .div1 {
    padding: 13rem 2rem 0rem 2rem;
  }
  #About > h1,
  #Services > h1,
  #Skills > h1,
  #Project > h1 {
    padding: 0px 1px;
    font-size: 2.5rem;
  }
}
@media (max-width: 760px) {
  .section1 > .div1 {
    padding: 13rem 2rem 0rem 4rem;
  }
  .menu-btn {
    position: relative;
    visibility: visible;
    right: -40px;
  }
  .desk {
    position: absolute;
    visibility: hidden;
  }
  #About > #div {
    display: flex;
    flex-direction: column;
    padding: 0rem 2rem 0rem 2rem;
    margin: 0rem 0rem 0rem 0rem;
  }
  .section3 > div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0px, 1fr));
    gap: 1.2rem;
    justify-content: center;
  }
  .section3 > div > div:hover {
    display: none;
  }
  .section4 .section4div {
    padding: 1rem 0rem 0rem 0rem;
  }
  #div > .div4 {
    padding: 0rem;
    margin: 0rem;
  }
  .section1 > .div1 > h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 1280px) {
  #div > .div4 {
    padding: 0rem 0rem 0rem 1rem;
  }
  .section2 > #div {
    padding: 0rem 0rem 0rem 3rem;
  }
}

/* ----------HOME SECTION---------- */

.section1 {
  height: auto;
  min-height: 100vh;
  color: white;
}
.div1 {
  padding: 14rem 0rem 0rem 7rem;
}
.div1 h3 {
  font-size: 2.6rem;
  margin: 0px;
  padding: 0px;
  color: rgba(255, 255, 255, 0.881);
  font-weight: 600;
  opacity: 0;
  animation: h3 0.7s ease forwards;
  animation-delay: 0.5s;
}
@keyframes h3 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.div1 h1 {
  font-size: 4rem;
  margin: 0px;
  padding: 0px;
  color: #eedd44a7;
  font-weight: 600;
  opacity: 0;
  animation: h3 0.7s ease forwards;
  animation-delay: 1.04s;
}
.div1 p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.655);
  line-height: 22px;
  animation: p 0.7s ease-in forwards;
  animation-delay: 1.14s;
  opacity: 0;
}
@keyframes p {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.div2 {
  display: flex;
  gap: 15px;
  animation: a 0.7s ease forwards;
  animation-delay: 1.3s;
  opacity: 0;
  transition: transform 0.5s ease;
}
.div2 a {
  opacity: 1;
  transition: transform 0.5s ease;
}
.div2 a:hover {
  transform: scale(1.2);
}
a > button {
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  color: #cf23cf;
  background-color: #eedd44bb;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 13px;
  padding: 9px 20px;
  transition: 0.5s;
  opacity: 0;
  animation: logo 1s ease forwards;
}
button:hover {
  background-color: #f32170;
  color: #eedd44;
}

/* ----------ABOUT ME---------- */
.section2 {
  text-align: center;
  height: auto;
  min-height: 95vh;
  background-color: #000000e8;
  padding: 3rem 1rem 0rem 0rem;
  color: rgba(255, 255, 255, 0.722);
}
#div {
  display: flex;
  padding: 0rem 3rem 0rem 8rem;
  background-color: #000000e8;
  border-radius: 5% 0%;
}

.div3 > img {
  border-radius: 5% 0%;
  height: 100%;
  width: 100%;
  animation: logo 1s ease-in;
}
.div4 {
  text-align: left;
  font-size: 1.1rem;
  padding: 0rem 3rem 0rem 1rem;
  animation: a 1s ease-in forwards;
}
.div4 p {
  animation: a 1s ease-in;
  animation-delay: 0.2s;
  color: rgba(255, 255, 255, 0.633);
}
.div4 a {
  animation: logo 1s ease-in;
  animation-delay: 6s;
  visibility: hidden;
}
.section2 > h1 {
  font-size: 4rem;
}
/* ----------MY SERVICES---------- */
.section3 {
  text-align: center;
  background-color: #000000e8;
  color: rgba(255, 255, 255, 0.727);
  padding: 2rem 0rem 7rem 0rem;
}
.section3 > h1 {
  font-size: 4rem;
}
.section3 > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  padding: 0rem 3rem 0rem 3rem;
  animation: nav 0.7s ease forwards;
  animation-delay: 2s;
}
.section3 > div h2 {
  color: rgba(255, 255, 255, 0.664);
  margin: 0rem;
  transform-origin: center;
  text-align: left;
}
.section3 > div p {
  color: rgba(255, 255, 255, 0.518);
  text-align: left;
  transform-origin: center;
}
.web {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem 1rem 1rem;
  background-color: #f3217291;
  transition: transform 0.3s ease;
  border-radius: 10px;
}
.section3 > div > div:hover {
  transform: translateY(-0.7rem);
  background-color: #f32172d9;
}
/* --------------------MY SKILLS------------------- */
.section4 {
  background-color: #000000cc;
  color: rgba(255, 255, 255, 0.727);
  padding: 2rem 4rem 9rem 4rem;
}
.section4 > h1 {
  font-size: 4rem;
  text-align: center;
}
.section4 > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  justify-content: center;
  align-items: center;
  padding: 1rem 0rem 0rem 2rem;
}
.sk {
  padding: 9px 0px 30px 0px;
}
.tech {
  margin: 0px;
  padding: 0px;
}
.full {
  margin: 0px;
  padding: 0px;
}
.hh {
  margin-bottom: 50px;
}
.progress-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.progress-container {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 50px;
}

.progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.816);
  stroke-width: 3.2;
}

.indicator {
  fill: none;
  stroke: #cf23cfb9;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 0 100;
  transition: stroke-dasharray 1s ease;
}

.label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: bold;
}

.bar {
  width: 90%;
  background: rgba(255, 255, 255, 0.816);
  height: 0.6rem;
  border: none;
  border-radius: 100vw;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 8, 0.25, 1);
}
.skill {
  align-items: center;
  margin-bottom: 30px;
}
.bar span {
  height: 0.6rem;
  float: left;
  background: #cf23cfb9;
  border: none;
  border-radius: 100vw;
}
/* adding animation to skill bar */

.Full-Stack.animate,
.workflow.animate {
  width: 87%;
  animation: full 3s;
}

.lead.animate {
  width: 93%;
  animation: lead 3s;
}

.crm.animate {
  width: 70%;
  animation: crm 3s;
}

@keyframes full {
  0% {
    width: 0%;
  }

  100% {
    width: 87%;
  }
}

@keyframes lead {
  0% {
    width: 0%;
  }

  100% {
    width: 93%;
  }
}

@keyframes crm {
  0% {
    width: 0%;
  }

  100% {
    width: 70%;
  }
}
.percentage {
  content: "";
  top: 12px;
  width: 25px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 2px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}

.percentage::after {
  content: "";
  top: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  margin: auto;
  width: 10px;
  height: 10px;
  z-index: -1;
}
.full-percentage.animate,
.work-percentage.animate {
  left: 87%;
  animation: html_css_percentage 3s;
}

.lead-percentage.animate {
  left: 93%;
  animation: javascript_percentage 3s;
}

.crm-percentage.animate {
  left: 70%;
  animation: react_percentage 3s;
}
@keyframes html_css_percentage {
  0% {
    left: 0;
  }
  100% {
    left: 87%;
  }
}

@keyframes javascript_percentage {
  0% {
    left: 0;
  }
  100% {
    left: 93%;
  }
}

@keyframes react_percentage {
  0% {
    left: 0;
  }
  100% {
    left: 70%;
  }
}

/* <!-- --------------------- MY PROJECT ----------------------> */
.section5 {
  text-align: center;
  background-color: #000000e8;
  color: rgba(255, 255, 255, 0.727);
  padding: 2rem 0rem 7rem 0rem;
}
.section5 > h1 {
  font-size: 4rem;
}
.section5 > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  padding: 0rem 3rem 0rem 3rem;
  animation: nav 0.7s ease forwards;
  animation-delay: 2s;
}
.project1 {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  /* text-align: left; */
}
.imgclass {
  height: auto;
  width: 150%;
  min-height: 150%;
  display: block;
  transition: transform;
}
.layer {
  width: 100%;
  height: 0%;
  border-radius: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  overflow: hidden;
  padding: 0px 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), #ff004f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: height 0.5s;
}
.layer > h3 {
  margin: 0px;
}
.project1:hover .imgclass {
  transform: scale(1.1);
}
.project1:hover .layer {
  height: 100%;
}
/* ====================CONTACT==================== */
.Section6 {
  text-align: center;
  background-color: #0000009e;
  color: rgba(255, 255, 255, 0.727);
  padding: 2rem 7rem 7rem 7rem;
}
.Section6 h1 {
  font-size: 2.6rem;
}
.form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  align-items: center;
}
.ctntable {
  flex-basis: 35%;
  border-right: 2px solid white;
}
.ctntable p {
  text-align: left;
}
.formtable {
  flex-basis: 60%;
  border-left: 2px solid white;
}
.ctnimg {
  display: flex;
  justify-content: left;
  gap: 5px;
  animation: a 0.7s ease forwards;
  animation-delay: 1.3s;
  opacity: 0;
  transition: transform 0.5s ease;
}
.formtable form {
  width: 100%;
}
.submit {
  font-size: 1.1em;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 8px;
  padding: 9px 20px;
}
form input,
form textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: #262626;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.767);
  padding: 0.7rem;
  margin: 0.5rem 0rem;
  font-family: sans-serif;
  border-radius: 10px;
}
footer{
  text-align: center;
  color: white;
  background-color: black;
  padding: 0.1px;
}
