html,body {
  background: #050816;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
.cursor {
  width: 30px;
  height: 30px;
  border:1px solid rgb(250, 150, 500);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999999999999999999999999999;
  box-shadow: 0 0 10px #8f0d04 , 0 0 20px #bb2727 , 0 0 40px #240101;
  background: transparent;
  transition: all 0.5s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 1.2s linear infinite ;
}
@keyframes rotate{
  from{transform : rotateX(360deg);}
}
@keyframes rotate2{
  from{transform : rotateY(360deg);}
}
.cursor-dot {
  width: 9px;
  height: 9px;
  background: rgb(225 , 120 , 600 );
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999999;
  box-shadow: 0 0 10px white;
  animation: rotate2 1.2s linear infinite ;
}
.navigation {
  background: transparent;
  position: relative;
  top: 0;
  right: 0;
}
.navigation-items {
  display: flex;
  margin: 10px;
  padding: 1px;
}
.navigation-items-btn {
  margin: 0px 15px;
  text-decoration: none;
  color: whitesmoke;
  font-family: "Orbitron";
  font-weight: 100;
  font-size: 15px;
  text-shadow:
    0 0 5px #d8cfed,
    0 0 20px #bacdf7;
    position: relative;
    transition: all 1s linear;
}
.navigation-items-btn:hover{
  transform: scale(1.1);
  font-weight: 900;
  color: rgb(225, 100 , 225);
  text-shadow:
    0 0 5px #d8cfed,
    0 0 20px #bacdf7,
    0 0 30px #f3c7f5;
}
.hiddenbtn {
  display: none;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    color 0.5s ease;
  opacity: 1;
}
.hiddenbtn.rotate {
  transform: rotateY(360deg);
  opacity: 0;
}

#home{
  display: flex;
  margin-top: 40px;
}
.home-content{
  display: grid;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.home-content-header{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px;
}
.home-content-header-h2{
  font-family: "Exo 2";
  color: whitesmoke;
  display: grid;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  animation: fadeIn 2s ease ;
}
.fade-scroll {
  opacity: 0;
}
.fade-scroll.show {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
} to {
    opacity: 1;
    transform: translateY(0);
}

}
.home-content-header-h2::after{
  position: inherit;
  content: "Web Developer ";
  font-family: "Poppins";
  font-weight: 900;
  text-shadow:
    0 0 5px #187ba8,
    0 0 20px #0f44b6;
    margin: 5px;
    font-size: 50px;
    color:#065870 ;
}
.home-image{
  display: grid;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.home-image-img{
  border-radius: 50%;
  border: 12px solid rgb(225, 200, 550);
  border-right: 0px solid transparent;
  border-bottom: 0px solid transparent;
  height: 350px;
  box-shadow: 0 0 10px #c1badc  , 0 0 40px #cbd3ec;
  transition: all 0.5s linear;
  animation: move-image 6s linear infinite;
}
.home-image-img:hover{
  transform: scale(1.1);
}
@keyframes move-image{
  0%{transform: translateY(0px);}
  50%{transform: translateY(-20px);}
  100%{transform: translateY(0px);}
}
.home-content-header-para{
  font-family: "Quicksand";
  color: rgb(231, 190, 243);
  font-size: 15px;
  max-width: 100%;
  margin: 20px;
}
.home-btns{
  display: grid;
  margin: auto;
  justify-content: center;
  align-items: center;
}
.home-btns-btn{
  background: transparent;
  border:1px solid rgb(250, 150, 255);
  margin: 10px;
  height: 56px;
  width: 190px;
  border-radius:50px ;
  color: rgb(248, 179, 246);
  font-family: "Cairo";
  font-size:20px;
  transition: all 2s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-btns-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 1),
    transparent
  );
  transition: all 1s ease;
  opacity: 0;
}
.home-btns-btn:hover::before {
  left: 150%;
  opacity: 1;
  filter: brightness(100%);
}
#About{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.About-header{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}
.About-header-h1{
  font-family: "Encode Sans";
  color: rgb(176, 176, 240);
  font-size: 35px;
  text-shadow: 0 0 10px #f7b8ec , 0 0 50px #b1c4ef, 0 0 10px #90e1f3;
}
.About-content{
  max-width: 100%;
  display: flex;
  margin: 10px;
}
.About-content-para{
  border: 4px solid rgb(239, 175, 239);
  border-radius: 40px;
  opacity: 0;
  margin: 30px;
  margin-top: 40px;
  margin-bottom: 50px;
  max-height: 600px;
}
.About-content-para1{
  opacity: 0;
  transition: all 2s linear;
}
.About-content-para1:hover{
  opacity: 1;
  transform: skew(5deg);
}
.About-content-para-h2{
  color: rgb(253, 213, 253);
  font-family: "Kanit";
  text-shadow: 0 0 20px rgb(241, 200, 241);
}
.About-content-para-p{
  color: rgb(207, 227, 247);
  font-family: "Inconsolata";
  font-size: 15px;
}
#services{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 100%;
}
.services-header{
  display: grid;
}
.services-header-h1{
  font-family: "Rajdhani";
  font-weight: 900;
  color: rgb(237, 203, 239);
  font-size: 40px;
  text-shadow: 0 0 10px #f1c5ef , 0 0 40px #efd1ef;
  font-size: 50px;
}
.services-content{
  border-radius: 30px;
  padding: 20px;
  margin: 10px;
  overflow: hidden;
  position: relative;
}
.services-content::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: 30px;

  background: linear-gradient(
    90deg,
    transparent,
    #00ffcc,
    #3333ff,
    #ff00cc,
    #00ffcc,
    transparent
  );

  background-size: 300% 300%;
  animation: moveBorder 3s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  z-index: 0;
  filter: blur(0.5px);
  opacity: 0.9;
}
.services-content::after{
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 28px;
  background: transparent;
  z-index: 0;
}
@keyframes moveBorder{
  0%{
    background-position: 0% 50%;
  }
  100%{
    background-position: 300% 50%;
  }
}
.services-content-h1{
  color: rgb(251, 229, 247);
  font-family: "Quicksand";
  text-shadow: 0 0 5px #fdcff5 , 0 0  30px #f1d4ec;
  font-weight: 900;
}
.services-content-para{
  color: white;
  font-family: "Rajdhani";
}
#skills{
  display:grid;
}
.skills-header{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.skills-header-h1{
  color: rgb(204, 238, 243);
  font-family:"Inconsolata" ;
  text-shadow: 0 0 10px rgb(186, 229, 246) , 0 0 #c5f6fc;
  font-size: 50px;
  position: relative;
}
.skills-header-h2{
  font-family: "Kanit";
  color: #c0e2f1;
  font-size: 30px;
  text-shadow: 0 0 10px rgb(173, 222, 241) , 0 0 #d8f0f3;
}
.skills-header-para{
  font-family:"Rajdhani" ;
  color : rgb(201, 241, 247);
  max-width: 500px;
  margin: 30px;
}
.skills-content{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.skills-content-heading{
  font-family:"Rajdhani" ;
  color : rgb(201, 241, 247);
  font-size: 35px;
  font-weight: 900;
  text-shadow: 0 0 10px rgb(135, 209, 245) , 0 0 40pc rgb(255, 255, 255);
}

.skills-content-elements{
  display: flex;
  max-width: 100%;
}
.skills-content-elements-element{
  display: grid;
  border: 1px solid rgb(197, 234, 243) ;
  border-radius: 40px;
  font-family: "Orbitron";
  color: rgb(212, 245, 255);
  margin: 20px;
  padding: 4px;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 200px;
  height: 200px;
}
.skills-content-elements-element-header{
  font-size: 20px;
  text-shadow: 0 0 20px #c9eef3 , 0 0 30px #d5f5f7ff;
  padding: 10px;
}
.skills-content-elements-element-header-h2{
  margin: 10px;
}
.skills-content-elements-element-logo{
  width: 90px;
  height: 90px;
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: transparent;
  text-align: center;
  top: 0;
  left: 20%;
}
.skills-content-elements-element-logo i {
  font-size: 70px;
  color: white;
  transition: transform 0.3s ease;
}
.skills-content-elements-element-logo::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -75%;
  width: 50%;
  height: 300%;
  background: linear-gradient(
  120deg,
  transparent,
  rgba(255, 255, 255, 0.4),
  transparent
  );
  transform: rotate(25deg);
}
.skills-content-elements-element-logo:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.skills-content-elements-element-logo:hover::before {
      animation: shine 0.8s ease-in-out;
    }

.skills-content-elements-element-logo:hover i {
      transform: scale(1.2);
    }
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 130%;
  }
}
.html i{ color : #E34F26}
.css i {color: #1572B6;}
.js i { color: #F7DF1E;}
.node i { color: #339933;}
.react i { color: #61DAFB;}
.firebase i {color : #FFCA28}
.github i { color: #181717 ;  }
.git i {color:#F05032;}
.vsc i { color :#007ACC }
.netlify i {color : #00C7B7;}
.figma i { color : #F24E1E;}
.vercel i { color : #202020}
.canva i {color :#00C4CC}
.npm i {color : #CB3837 ;}
.Html { color: #E34F26; text-shadow: 0 0 10px #E34F26 , 0 0 30px #E34F26 ;}
.Css{
  color: #1572B6;
  text-shadow: 0 0 10px #1572B6 , 0 0 30px #1572B6;
}
.Js{
  color: #F7DF1E;
  text-shadow: 0 0 10px #F7DF1E , 0 0 30px #F7DF1E;
}
.Node {
  color: #339933;
  text-shadow: 0 0 10px #339933 , 0 0 30px #339933;
}
.Fire {
  color: #FFCA28;
  text-shadow: 0 0 10px #FFCA28 , 0 0 30px #FFCA28;
}
.React {
  color: #61DAFB;
  text-shadow: 0 0 10px #61DAFB , 0 0 30px #61DAFB;
}
.Canva{
  color:#00C4CC;
  text-shadow: 0 0 10px #00C4CC, 0 0 30px #00C4CC ;
}
.Vsc {
  color: #007ACC ;
  text-shadow: 0 0  10px #007ACC , 0 0 40px #007ACC;
}
.Figma { color :#F24E1E;
  text-shadow: 0 0 10px #F24E1E , 0 0 30px #F24E1E;
}
.Github {
  color : #181717;
  text-shadow: 0 0 10px #181717 , 0 0 30px #181717;
}
.Git {
  color : #F05032 ;
  text-shadow: 0 0  10px #F05032 , 0  0 30px #F05032;
}
.Vercel {
  color: #202020;
  text-shadow: 0 0 10px #202020 , 0 0 30px #202020;
}
.Netlify{
  color :  #00C7B7;
  text-shadow: 0 0 10px  #00C7B7 , 0 0 30px  #00C7B7;
}
.Npm{
  color:  #CB3837;
  text-shadow: 0 0 10px  #CB3837, 0 0 30px  #CB3837 ;
}
.fade-scroll {
  opacity: 0;
}


.skills-result{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.skills-result-header{
  margin: 10px;
}
.skills-result-header-h2{
  font-size: 30px;
  font-family: "Quicksand";
  color: white;
  text-shadow: 0 0 10px rgb(164, 219, 233) , 0 0 50px rgb(221, 242, 248);
}
.skills-result ul {
  margin: 10px;
}
.skills-result ul li {
  color: rgb(216, 231, 248);
  margin: 10px;
  font-family: "Rajdhani";
  font-size: 20px;
  text-emphasis: gap;
  font-variant:unset;
}
.project{
  display: grid;
  margin: 20px;
}
.project-header{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 10px;
}
.project-header-h1{
  color: rgb(233, 188, 247);
  font-family:"Inconsolata" ;
  text-shadow: 0 0 10px rgb(239, 186, 246) , 0 0 #fcc5f9;
  font-size: 50px;
  position: relative;
}
.project-header-h2{
  color: rgb(195, 232, 250);
  font-size: 20px;
  margin: 10px;
  font-family:"Quicksand" ;
}
.project-header-para{
  color: whitesmoke;
  font-size: 15px;
  margin: 10px;
  font-family:"Rajdhani" ;
}
.project-content{
  display: grid;
  max-width: 100%;
}
.project-content-element{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.project-content-element-h1{
  color: rgb(166, 221, 247);
  font-size: 30px;
  font-family:"Cairo" ;
  text-shadow: 0 0 10px rgb(166, 221, 247) , 0 0 30px rgb(166, 221, 247);
  font-weight: 900;
}
.project-content-element-para{
  color: rgb(247, 199, 247);
  font-family: "Comfortaa";
}
.project-content-element-tech{
  color: rgb(243, 193, 235);
  margin: 20px 0px;
  font-family:"Orbitron" ;
}
.project-content-element-img{
  display: grid;
  justify-content: center;
  align-items: center;
  border: 1px solid rgb(156, 227, 236);
  height: 100%;
  width: 100%;
  border-radius: 40px;
  margin-bottom: 5%;
  box-shadow: 0 0  10px rgb(156, 227, 236) , 0 0 30px   rgb(156, 227, 236);
  position: relative;
  overflow: hidden;
  transition: all 0.7s linear;
}
.project-content-element-img::before{
  content: "";
  position: absolute;
  top: -100%;
  left: -75%;
  width: 50%;
  height: 300%;
  background: linear-gradient(
  120deg,
  transparent,
  rgba(255, 255, 255, 0.4),
  transparent
  );
  transform: rotate(25deg);
  animation: shine 2s ease-in-out infinite
}
.project-content-element-img:hover{
  transform: translateY(-8px) scale(1.1);
}
.project-content-element-img-img{
  height: 230px;
  width: 350px;
  margin: 20px;
  border-radius: 20px;
}
#contact{
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-header{
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}
.contact-header-h1{
  color: rgb(174, 240, 240);
  font-family: "Orbitron";
  font-size: 40px;
  text-shadow: 0 0 10px  rgb(174, 240, 240) , 0 0 30px  rgb(174, 240, 240);
}
.contact-header-para{
  font-family: "Quicksand";
  color: rgb(235, 179, 223);
  font-size: 15px;
  max-width: 50%;
}
.contact-force{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-force-h1{
  color: rgb(231, 202, 250);
  font-family:"Abel" ;
  font-size: 25px;
}
.contact-force-para{
  color: rgb(243, 207, 241);
  font-family: "Encode Sans";
}
.contact-force ul {
  display: grid;
  justify-content: center;
  text-align: center;
  color: rgb(187, 247, 237);
  font-family:"Indie Flower" ;
  font-size: 20px;
}
.contact-container {
  max-width: 100%;
  display: grid;
  margin: 30px;
  justify-content: center;
  align-items: center;
}
.contact-form {
  gap: 30px;
  font-family: "Quicksand";
  display: grid;
}
.input-box {
  position: relative;
  width: 100%;
  font-family: "Orbitron";
}
.input-box input,
.input-box textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #bca1b3;
  background: transparent;
  outline: none;
  color: white;
  font-size: 16px;
  border-radius: 10px;
  transition: 0.3s;
  font-family: "Orbitron";
}
.input-box textarea {
  height: 120px;
  resize: none;
}
.input-box label {
  position: absolute;
  left: 14px;
  top: 14px;
  color: #bbb;
  font-size: 14px;
  pointer-events: none;
  transition: 0.3s ease;
}
.input-box input:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:focus ~ label,
.input-box textarea:valid ~ label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  color: #00f7ff;
  background: #050816;
  padding: 0 5px;
  font-family: "Orbitron";
}
.input-box input:focus,
.input-box textarea:focus {
  border-color: #00f7ff;
  box-shadow:0px 30px  7px #00f7ff;
  font-family: "Orbitron";
}
#status{
  background: transparent;
  margin: 20px ;
  padding: 1px;
  font-family: "Orbitron";
  color: rgb(201, 236, 242);
}

button{
  padding: 14px;
  border: none;
  background: linear-gradient(90deg, #00f7ff, #ff00ff);
  color: black;
  font-weight: bold;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f7ff;
}
#hire{
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hire-header-h1{
  color: rgb(245, 213, 213);
  font-family: "Orbitron";
  text-shadow: 0 0 10px  rgb(245, 213, 213) , 0 0 30px  rgb(245, 213, 213);
  font-size: 40px;
}
.hire-btn{
  display: grid;
  justify-content: center;
  align-items: center;
}
.hire-btn-btns{
  height: 90px;
  width: 250px;
  border: 2px solid rgb(236, 184, 247);
  background: transparent;
  display: flex;
  justify-content: start;
  align-items:center;
  margin: 30px;
  border-radius: 50px;
  color: rgb(5, 83, 5);
  font-family: "Nunito";
  font-size: 20px;
  transition: all 0.5s linear;
  overflow: hidden;
  position: relative;
}
.hire-btn-btns:hover{
  box-shadow: 0 0 10px #fff , 0 0 30px #fff;
  border: 1px solid green;
  transform: skew(10deg);
}
.hire-btn-btns::after{
  position: absolute;
  content: "";
  height: 500px;
  width: 250px;
  transform: all 3s linear;
  left: 120%;
  transition: all 0.5s linear;
  transform: skew(60deg);
    background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 1),
    transparent
  );
}
.hire-btn-btns:hover::after{
  left: -120%;
  opacity: 0;
  filter: brightness(100%) , contrast(100%);
}
.hire-btn-btns i {
  font-size: 30px;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.whatsapp{  color: green;
  background: white;
  transition: all 0.3s linear;
}
.whatsapp:hover{
  background: #000;
  color: rgb(255, 255, 255);
  transform: scale(1.2);
}
.call{color : green ;
  background: #fff;
  transition: all 0.3s linear;
}
.call:hover{
  background: #000;
  color: rgb(255, 255, 255);
  transform: scale(1.2);
}
.msg{color : green ;
  background: #fff;
  transition: all 0.3s linear;
}
.msg:hover{
  background: #000;
  color: rgb(255, 255, 255);
  transform: scale(1.2);
}
.fade-scroll.show {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
} to {
    opacity: 1;
    transform: translateY(0);
}

}

@media screen and (max-width: 800px) {
  .hiddenbtn {
    display: block;
    position: fixed;
    top: 15px;
    left: 20px;
    font-size: 30px;
    color: white;
    z-index: 10000;
  }

  .navigation-items {
    position: fixed;
    top: 0;
    left: -100%;
    width: 260px;
    height: 100vh;
    background:  #050816;;
    flex-direction: column;
    padding-top: 90px;
    transition: 0.4s ease-in-out;
    z-index: 9999;
    border-radius: 30px;
    border: 3px solid rgb(208, 202, 238);
  }

  .navigation-items.active {
    left: 0;
  }
  .navigation-items-btn {
    margin: 18px;
    font-size: 18px;
  }
  #home {
    display: grid;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
  }
  .home-content-header-h2 {
    font-size: 28px;
  }
  .home-content-header-h2::after {
    font-size: 32px;
  }
  .home-content-header-para {
    font-size: 13px;
    padding: 0 10px;
    margin: 0px;
  }
  .home-image-img {
    height: 220px;
  }
  .home-btns-btn {
    width: 160px;
    height: 48px;
    font-size: 16px;
    cursor: pointer;
  }
  .About-content {
    display: grid;
    margin: 0;
    padding: 10px;
  }
.hiddenbtn{
  cursor: pointer;
}
  .About-content-para {
    margin: 10px;
    padding: 15px;
    max-height: none;
  }

  .About-content-para-p {
    font-size: 12px;
  }

  /* ================= SERVICES ================= */
  .services-header-h1 {
    font-size: 32px;
  }

  .services-content {
    margin: 10px;
    padding: 15px;
  }

  .services-content-h1 {
    font-size: 20px;
  }

  .services-content-para {
    font-size: 13px;
  }

  /* ================= SKILLS ================= */
  .skills-header {
    padding: 10px;
  }

  /* ================= CURSOR FIX (IMPORTANT) ================= */
  .cursor,
  .cursor-dot {
    display: none; /* hide custom cursor on mobile */
  }

  .skills-content-elements{
    display: flex;
  }
  .skills-content-elements{
    display: grid;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .project-content{
    display: grid;
    justify-content: center;
    align-items: center;
  }
  .project-content{
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  .project-content-element{
    max-width: 900%;
    margin: auto;
  }
  .hire-btn{
    display: grid;
    justify-content: center;
    align-items: center;
  }
  .contact-header-para{
    margin: 0px;
    padding: 0px;
    max-width: 100%;
  }
}
