@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Carter+One&family=Poppins:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: rgb(0, 0, 0);
  overflow-y: hidden;
  font-family: "Poppins", sans-serif;
}
.main {
  opacity: 0;
  transition: opacity 2.5s ease-in 100ms;
  overflow-y: hidden;
}
.landing-page {
  background: rgb(0, 0, 0);
  display: block;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 25px 60px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  background: rgba(5, 5, 5, 0.612);
  backdrop-filter: blur(10px);
  overflow-x: hidden;
  }

header .logo {
  color: #fff;
  font-weight: 700;
  font-size: 2em;
  text-decoration: none;
}

header .logo span {
  color: #ff0157;
}

header .navigation ul {
  position: relative;
  display: flex;
}
header .navigation li {
  list-style: none;
  margin-left: 30px;
}
header .navigation li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: 1.3em;
  margin: 0 15px;
  transition: all 0.1s ease-in-out;
}

header .navigation li a:hover {
 border-bottom: 5px solid #4b5dff;
}
header .navigation li a:active {
  color: #b5abcf;
  border-bottom: 4px solid #ff0157;
}

header .navigation ul li a.home {
  color: #b5abcf;
  opacity: 1;
  border-bottom: 5px solid #ff0157;
}
header .navigation ul li a.home:active {
  border-bottom: 5px solid #ff0157;
}
header .navigation ul li a.home:hover {
  border-bottom: 5px solid #4b5dff;
}

.listBtn a {
  display: none;
  font-size: 1.3em;
  text-decoration: none;
}
.contactBtn a {
  color: rgb(255, 255, 255);
  font-weight: 400;
  padding: 3px 15px;
  font-size: 1.4em;
  text-decoration: none;
  border: 2px solid #4b5dff;
  border-radius: 15px;
  transition: all 200ms ease-in-out;
}
.contactBtn a:active {
  background: #3c4ac7;
}
.contactBtn a:hover {
  background: #4b5dff;
}
.hero {
  width: 100vw;
  min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
  background: rgb(0, 0, 0);
}

.container-1 {
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0 120px;
  padding: 60px 20px 20px;
  width: 80vw;
}
.col-1 {
  color: white;
  width: 70%;
  background: rgb(0, 0, 0);
  padding: 60px 0;
  margin-top: 50px;
}
.col-1 p {
  font-size: 3em;
}
.rectangle {
  position: relative;
  margin: 20px 0;

  width: 90%;

  padding: 15px 0;
  background: #6877ff6e;
  border: 2px solid rgba(68, 105, 253, 0.486);
  backdrop-filter: blur(5px);
  background-clip: padding-box;
  z-index: 333;
}
.col-1 h4 {
  font-size: 24px;
  font-weight: 400;
}

.let p {
  background: rgb(107, 80, 80);
  background: #6877ff6e;
  margin: 20px 0;
  padding: 5px;
  width: 15vw;
  font-size: 2.2em;
  position: relative;
  z-index: 20;
}
.let::before {
  content: "";
  position: absolute;
  bottom: 2vh;
  left: 3vh;
  box-sizing: border-box;
  min-width: 27px;
  height: 7vh;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(255, 123, 123);
  border-radius: 20px;
}
.let::after {
  content: "";
  position: absolute;
  min-width: 27px;
  left: 3vh;
  
  height: 3.2vh;
  border-radius: 50%;
  background: #ff0157;
  z-index: 12;
  animation: after 3s infinite ease-in-out;
}
@keyframes after {
  0% {
    bottom: 2vh;
  }
  50% {
    bottom: 5.8vh;
  }
  100% {
    bottom: 2vh;
  }
}
.col-2 {
  width: 30%;
  color: rgb(0, 0, 0);
}

.col-2 .text {
  font-style: uppercase;
  font-weight: 700;
  position: relative;
  top: 10vh;
  left: 4vh;
  transform: rotate(-90deg);
  -webkit-text-stroke: violet;
}
.text1 {
  position: relative;
  bottom: 0vh;
  right: -18vh;
  font-size: 48px;
  color: #4b5dff;
  -webkit-text-stroke: 1px rgb(34, 34, 34);
}
.text2 {
  position: relative;
  right: 4vh;
  font-size: 56px;
}
.cta {
  z-index: 3;
}
.circle {
  position: absolute;
  top: 11vh;
  right: -15vh;
  box-sizing: content-box;
  min-width: 50%;
  min-height: 85%;
  border-radius: 50%;
  background: linear-gradient(rgb(0, 0, 0) 50%, rgb(18, 32, 63));
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  }
.circle .illustration {
  width: 60%;
  height: 70%;
}
.circle img {
  width: 600px;
  height: 400px;
  position: relative;
  top: -18vh;
  left: -15vh;
  background: #000;
  filter: drop-shadow(0 0 5px rgb(19, 19, 19));
  transform: scale(1.2);
}
.my-profile {
  padding: 80px 120px; 
  background: #cacff9;
  border-radius: 20px;
  display: flex;
  color: rgb(255, 255, 255);
}
.about {
  text-align: center;
  padding: 20px 40px 40px;  
  background: #2a2b2f9b;
  position: relative;
  border-radius: 20px;
}
.my-profile .img-cont {
  width: 50%;  
  background: rgba(0, 0, 0, 0);
  margin-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.img1 {
  width:100%;
  min-width:280px;
  height: 80%; 
  background: rgb(215, 180, 135);
  border-radius: 50px;
  background: url(../image/coder.png); 
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative;
  z-index: 221;
  border: 5px solid ghostwhite;
}
.my-profile .text-cont {
  width: 100%;
  padding: 0vh 0vh 0vh 15vh;
  color: #ff0157;
  color: #ff0101;
  color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
strong {
  font-size: 2rem;
}
.my-profile .text-cont p {
  text-align: start;
  font-size: 1.3rem;
}

.container-2 {
  color: white;
  font-size: 10px;
  padding-top: 30px;
  width: 100%;
  margin: 0 0;
}
.language {
  background: rgb(0, 0, 0);
  display: flex;
  padding: 60px 80px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.lang-text {
  color: white;
  font-size: 2.8em;
  margin-top: 30px;
  margin-bottom: 160px;
}
.svg-cont {
  height: 90vh; 
}
.svg-cont svg {
  width: 60vw;
  height: 70%;
  position: relative;
   left: -5%;
  top: -10%; 
  z-index: 445;
}
.design {
  margin-top: 0vh;
  width: 30vw;
  max-width: 30vw;
  max-height: 600px;
  height: 60vh;
 position: absolute;transform:  rotate(-50deg);
  z-index: 4;
  border: 4px solid coral;
  border-radius: 20px;
  animation: design 10s infinite ease-in-out;
}
@keyframes design {
  20%{
    border-color: #f685b0;
  }
  40%{
    border-color: #c3f685;
  }
  
  50%{
    border-color: coral;
  }

  60%{
    border-color: #85f6a7;
  }
  80%{
    border-color: #f685c3;
  }
  90%{
    border-color: #85f6cf;
  }
  
}
.design-hidden {
  display: none;
  position: relative;
  padding: 30px 60px 40px;
  top: 25%;
  z-index: 0;
  border: 4px solid rgb(83, 107, 186);
  width: 100%;
  height: 50%;
  background: rgb(146, 103, 57);
  background: #ff7f50;
}
.design-hidden p {
  font-size: 2.2em;
  line-height: 30px;
}
.container-3 {
  margin: -15px 0 0 0;
  background: #9dc6ff;
  border-radius: 20px 20px 0px 0px;
  padding: 40px 120px 80px;
  position: relative;
  overflow: hidden;
}
.container-3 h2 {
  font-size: 2.5em;
  color: #dc52ff;
}
.container-3 .project-wall {
  margin: 0px 0 20px 0;
  width: 100%;
  height: 70vh;
  float: right;
  position: relative;

  overflow: hidden;
}

.box1 {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: 0;
  background: rgb(133, 116, 116);
  background-image: url(../image/project1.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s ease-in-out;
}
.content {
  position: absolute;
  padding: 20px;
  text-align: center;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 10px;
}
.overlay {
  position: absolute 0 0 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: rgba(3, 3, 3, 0.644);
  transition: 0.4s all ease-in-out;
}
.box1:hover .overlay {
  opacity: 1;
}
.box2:hover .overlay {
  opacity: 1;
}

.box2 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -100%;
  left: 100%;
  background: rgb(133, 116, 116);
  background-image: url(../image/project2.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: all 0.5s ease-in-out;
}

.project-wall p {
  margin-bottom: 1em;
}

.project button {
  background: rgb(48, 5, 128);
}
button.Lbtn {
  visibility: hidden;
  width: 35px;
  height: 70px;
  position: absolute;
  font-size: 3em;
  top: 50%;
  left: 15%;
  background: rgb(235, 221, 221);
  transition: all 0.1s ease-in-out;
  border: 1px solid #9dc6ff;
  border-radius: 5px;
}
button.Rbtn {
  font-size: 3em;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 70px;
  right: 7%;
  border-left: none;
  outline: none;
  border-top: 1px solid #b3cef4;
  border-bottom: 1px solid #b3cef4;
  border-right: 1px solid #b3cef4;
  border-radius: 5px;
  transition: all 0.1s ease-in-out;
}
.project-wall button {
  background: rgba(167, 82, 82, 0.301);
  width: 100px;
  padding: 5px;
  border-radius: 5%;
  border: #4b5dff;
  border-radius: 20px;
}

.box1.active {
  left: -100%;
}
.box2.active {
  left: 0%;
}
.Lbtn.active {
  visibility: visible;
  left: 7%;
}
.Rbtn.active {
  visibility: hidden;
  right: 16%;
}

.project-wall a {
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 10px;
  color: #131631;
  color: #8985f6;
  font-weight: 600;
  border: 1px solid #8985f6;
}
.project-wall a:active {
  color: #8985f6;
  background: white;
}
.project-wall a:hover {
  background: #8985f6;
  color: white;
  border: 1px solid black;
  border: 1px solid #8985f6;
}

.container-4 {
  background: rgb(119, 255, 180);
  height: 80%;
  padding: 40px 240px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  gap: 1;
  overflow: hidden;
}

.container-4 .col1 {
  padding: 110px 10px;
  font-size: 1.2em;
  min-width: 60vh;
  padding: 2em;
  background: rgba(99, 176, 144, 0.393);
  border-radius: 10px;
  backdrop-filter: blur(25px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container-4 .col1 h1 {
  font-family: carter one, cursive;
  letter-spacing: 1px;
}
.container-4 .col1 .fa-user {
  font-size: 1.3em;
  animation: liked 1s infinite;
}
@keyframes liked {
  0% {
    transform: rotateX(0deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.container-4 .col1 h5 {
  padding: 10px;
  border-radius: 10px;
  color: #000;
  margin-top: 15px;
  font-size: 1.2em;
  min-width: 180px;
  background: white;
  font-family: "Poppins", sans-serif;
}
.container-4 a {
  text-decoration: none;
}
.container-4 .col1 i {
  color: rgb(0, 0, 0);
}
.container-4 .col2 img {
  width: 300px;
  height: 100%;
  transform: scale(1.4);
  position: relative;
  top: 0;
  animation: animate 2s infinite ease-in-out;
}
@keyframes animate {
  0% {
    top: -4vh;
  }
  50% {
    top: 2vh;
  }
  100% {
    top: -4vh;
  }
}
.container-5 {
  height: 100%;
  background: rgb(0, 0, 0);
  padding: 60px 120px;
  color: white;
  border-top: 5px solid gold;
}
.container-5 p {
  text-align: center;
  font-size: 2em;
}
.detail {
  display: flex;
  flex-direction: row;
  border-left: 10px solid rgb(119, 255, 180);
  border-right: 10px solid rgb(119, 255, 180);
}
.contactForm {
  padding: 0px 80px;
  background: rgb(0, 0, 0);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  width: 50%;
 
}
.contactForm h3 {
  color: rgb(255, 255, 255);
  font-size: 1.2em;
  margin: 20px 0;
  font-weight: 500;
}
.contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
 
}
.contactForm .inputBox :placeholder-shown {
  font-family: "Poppins";
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
  width: 100%;
  border: 1px solid #555;
  padding: 10px;
  color: #000;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  resize: none;
}
.contactForm .inputBox input[type="submit"] {
  font-size: 1em;
  color: #fff;
  background: #ff0157;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.5s;
  max-width: 100px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.copyrightText {
  padding: 8px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  border-top: 5px solid rgb(119, 255, 180);
}
.copyrightText p {
  color: rgb(255, 255, 255);
}
.copyrightText a {
  color: #8985f6;
  color: rgb(119, 255, 180);
  font-weight: 500;
  text-decoration: none;
}
.handles {
  width: 50%;
  padding-top: 110px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-left: 100px;
  background: rgb(0, 0, 0);
  color: rgb(27, 199, 61);
}
.handles li {
  list-style: none;
}
.handles li a {
  color: #ffffff;
  margin: 0px 20px;
  position: relative;
  text-decoration: none;
  font-size: 4em;
  transition: all 200ms ease-in-out;
  z-index: 1;
}
.handles li a:is(:active, :hover) {
  color: rgb(91, 74, 249);
  color: #ff0157;
}
.upper {
  width: auto;
  height: auto;
  border-radius: 45%;
  position: fixed;
  bottom: 8%;
  right: 3.5%;
  z-index: 100;
}
.upper a {
  color: rgb(255, 255, 255);
  font-size: 2.5em;
  transform: rotateX(3deg);
  filter: drop-shadow(0px 0px 5px rgb(251, 89, 89));
  transition: all 200ms ease-in-out;
}
.upper a:is(:hover) {
  filter: drop-shadow(0px 0px 0px);
  color: #dc52ff;
  color: #ff0157;
}
.upper a:is(:active) {
  color: #ff0156ac;
}
.overlap {
  position: relative;
  width: 100%;
  height: 20%;
  text-align: center;
  color: white;
  margin-bottom: 0.5em;
}
.overlap span {
  font-size: 6em;
  font-weight: 800;
  outline: black;
  animation: anima 5s ease-in-out;
}
.overlap span:nth-child(n) {
  margin-left: -0.16em;
  text-shadow: -0.12em 0.03em 0.09em rgba(0, 0, 0, 0.727);
}
#preloader {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.456);
  backdrop-filter: blur(30px);
  width: 100vw;
  position: fixed;
  user-zoom: none;
  user-select: none;
  z-index: 999999999;
}

.loader {
  height: 50px;
  transform-origin: bottom;
  animation: rotate 3s linear infinite;
  position: absolute;
  top: 40%;
}

.loadCircle {
  margin: 0 55px;
  display: inline-block;
  background-color: purple;
  height: 1.5em;
  width: 1.5em;
  border-radius: 50%;
  animation: grow .6s linear infinite;
  margin: 0px;
}
.loadCircle:nth-child(2) {
  animation-delay: 0.2s;
}
.loadCircle:nth-child(3) {
  animation-delay: .4s;
}
@keyframes grow {
  50% {
    transform: translateY(-40px);
  }
}
