*{
  margin:0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Be Vietnam Pro", sans-serif;
} 

:root{
  --bgOrange:#e84949;
}

#wrapper{
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
 
.container{
  width: 1200px;
  margin:0 auto;
}

#navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}

.logo{
  width: 80px;
}


.logo-container{
  display: flex;
  justify-content: baseline;
  align-items: center;
}

.logo-text{
  margin-left:-1.2rem;
  font-size: 28px;
}

.nav-items{
  display: flex;
  gap:2rem;
  padding:0 4rem;
}

.nav-items div{
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}

.nav-items div a{
  text-decoration: none;
  color: black;
}

.nav-items div:hover{
  transition: 0.8s;
  /* font-weight: bold; */
}

.hero-section{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  gap:5rem;
  margin: 4rem auto;
  padding-bottom: 8rem;
}

#faded-text{
  position: absolute;
  user-select: none;
  font-size: 7em;
  color: rgb(231, 231, 231);
  bottom: -15%;
  left:-5%;
  /* font-weight: bold; */
  font-family:'Times New Roman', Times, serif;
  transition: all 3s;
}

.hero-section-left{
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap:2rem;
}

.hero-section-heading{
  font-size: 35px;
  color: #343d68;
  font-weight: 500;
}

.role{
  color: #4e45d5;
  /* font-weight: 800; */
}

.hero-section-subheading{
  font-size: 45px;
  line-height: 45px;
}

.hero-section-description{
  margin-top: 1rem;
  width: 70%;
  font-weight: 500;
}

.btn-pink {
  background-color: var(--bgOrange);
  width: fit-content;
  color: white;
  padding: 0.8rem 2.3rem;
  box-shadow: 5px 5px 7px 0px #0000003f;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.5s;
  font-weight: 500;
  /* border: solid 0px transparent; */
  position: relative;
  z-index: 1;
}
.btn-pink::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.8s;
}
.btn-pink:hover::before {
  transform: scaleX(1);
}
.btn-pink:hover {
  /* border: solid 0px var(--bgOrange); */
  color: black;
}

.hero-section-right{
  position:relative;
}

.absolute{
  position: absolute;
}

.user-image{
  padding: 2.5rem;
  filter: grayscale(1);
  transition: all 1s;
  animation: scaleImage 5s linear infinite;
}
user-image img{
  z-index: -1;
}

@keyframes scaleImage {
  
  0%{
    filter: grayscale(0);
    transform: scale(1);
    box-shadow: 3px 3px 10px black;
  }

  50%{
    transform: scale(1.1);
    filter: grayscale(1);
    box-shadow:0 0 0 0 white;
  }

  100%{
    transform: scale(1);
    filter: grayscale(0);
    box-shadow: 3px 3px 10px black;
  }

}

.icon-dots{
  z-index: 1;
  bottom: -1rem;
  right: 0;
  animation-name: dotsAnimation;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

@keyframes dotsAnimation {
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-15px);
  }
  100%{
    transform: translateY(0px);
  }
}

.icon-cube{
  z-index: 1;
  top:-0.8em;
  right:1em;
  animation: cubeRotate 4s linear infinite;
}

@keyframes cubeRotate {

  0%{
    transform: rotateY(0deg) translateY(0px);
  }

  50%{
    transform: rotateY(180deg) translateY(-12px);
  }

  100%{
    transform: rotateY(360deg) translateY(0px);
  }
  
}

.icon-circle{
  z-index: 1;
  left:0;
  bottom:0;
  animation: circleMovement 6s linear infinite;
}

@keyframes circleMovement {

  0%{
    left: 0;
    bottom: 0;
  }

  50%{
    left: 5%;
    bottom: 10%;
  }

  100%{
    left: 0;
    bottom:0;
  }
  
}

.icon-zigzag{
  z-index: 1;
  top: 1.5em;
  left: -0.3em;
  animation: zigzagAnimation 5s ease-in infinite;
}

@keyframes zigzagAnimation{
  50%{
    top:2%;
    left: 5%;
  }
}

.icon-plus{
  z-index: 1;
  top:-0.8rem;
  left: 50%;
  animation: plusAnimation 5s ease-in infinite;

}

@keyframes plusAnimation {
  50%{
    top:3%;
    left:48%;
  }
}

.project-section{
  background-color: rgb(231, 231, 231);
  margin-top : 4rem;
}

.page-header{
  color: var(--bgOrange);
  font-size: 90px;
  font-weight: 500;
  text-align: center;
  padding-top: 30px;
}

.project-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.project-card{
  width: 90%;
  height: 550px;
  background-size: cover;
  position: relative;
  box-shadow: 0px 0px 40px #1f1f1f;
  border-radius: 25px;
}

.project-card::after{
  content: "";
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1f1f1f9a;
  z-index: 0;
  border-radius: 25px;
  /* transform: scaleX(1); */
}

.project-card::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: linear-gradient(45deg,#343d68,#343d68be,#343d687c);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s;
  z-index: 1;
}

.project-card:hover::before{
  transform: scaleX(1);
  border-radius: 25px;

}

.project-number{
  position: absolute;
  font-size: 200px;
  /* font-weight: 600; */
  color:white;
  z-index: 10;
  /* display: none; */
  opacity:0;

}

.project-card:hover .project-number{
  /* display: block; */
  opacity:1;
  transition: all 1s;
}

.project-number-right{
  right:-40px;
  top: -45px;
}

.project-number-left{
  left:-40px;
  top: -45px;
} 

.project-content{
  position: absolute;
  display: flex;
  flex-direction: column;
  color: white;
  padding: 2em;
  bottom: 20%;
  z-index:5;
  gap:1em;
  transition: all 0.4s;
}

.project-content-left{
  left:10%;
}
.project-content-right{
  right:10%;
}

.project-skills-container{
  display: flex;
  width: 60%;
  gap:10px;
  flex-wrap: wrap;
}

.project-skill{
  width: 40px;
}

.project-heading{
  font-size:50px;
  /* font-weight: bold; */
  font-weight: 500;
  line-height: 3rem;

}

.project-sub-heading{
   width:70%;
   font-size:16px;
   font-style: italic;
}

.btn-grp{
  display:flex;
  gap:0.9rem;
  align-items: center;
}

.btn-project{
  border: none;
}

.icon{
  cursor: pointer;;
  color: white;
  font-size: 35px;
  transition: all 0.4s;
}

.icon:hover{
  color:var(--bgOrange);
}

.project-card:hover .project-content{
  transform:scale(1.1);
}

#project1{
  background-image: url(./images/projects/Project1.png);
}
#project2{
  margin-left: 120px;
  background-image: url(./images/projects/Project2.png);
}
#project3{
  background-image: url(./images/projects/Project3.png);
}
#project4{
  margin-left: 120px;
  background-image: url(./images/projects/Project4.png);
}

@media (max-width:1300px) {

  .page-header{
    padding-top:30px;
    color: var(--bgOrange);
    text-align:center;
    font-size: 40px;
  }
  .project-container{
    padding:5px;
    margin:10px;
    gap:60px;
  }
  .project-card{
    width:100%;
    height:300px;
  }
  .project-content{
    scale:0.5;
    bottom:0;
    left:0;
    right:0;
    top:0;
  }

  .project-content-left{
    left:0;
  }

  .project-heading{
    font-size:40px;
    width: 100%;
  }
  .project-sub-heading{
    width: 100%;
  }
  #project2 {
    margin-left: 0;
  }
  #project4 {
    margin-left: 0;
  }
  .project-skill-container {
    width: 100%;
  }
  .project-skill {
    width: 35px;
  }
  .project-card:hover .project-number {
    display: none;
  }
  .project-card:hover .project-content {
    scale: 0.55;
  }
}

.skills-container{
  position: relative;
  display: flex;
  padding: 5rem;
  margin:10rem auto;
  gap:30px;
}

.skills-container-left{
  width: 50%;
  display: flex;
  flex-direction: column;
}

.skill-container-right{
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  position: relative;
  gap:2rem;
  justify-content: center;
}

.skills-faded-text{
  position:absolute;
  color: rgb(231, 231, 231);
  font-size: 7em;
  bottom:-29%;
  right:0%;
  user-select:none;
  overflow-x: hidden;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.blob-style{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: blobAnimation 3s linear infinite;
  z-index: -1;
}

@keyframes blobAnimation{
  50%{
    top:54%;
    right:56%;
  }
}

.skills-logo{
  width: 90px;
  transition: all 0.5s;
  z-index: 1;
}

.skills-logo:hover{
  transform: scale(1.2);

}

.skill-heading{
  color: var(--bgOrange);
  font-size: 50px;
  font-weight: 500;
  /* font-style: bold; */
  line-height: 50px;
}

.caps{
  font-size: 90px;
}

.skill-subHeading{
  margin-top:1rem;
  width: 85%;
  text-align: justify;

}

.skill-subHeading p{
  margin: 15px 0;
}

.contactus-container{
  width: 100%;
  background-color: rgb(231, 231, 231);
}

.Contactus-heading{
  color: var(--bgOrange);
  font-size: 5em;
  padding-top: 2rem;
  font-weight: 500;
}

.contactUs-subHeading{
  font-size:3rem;
  color:#34368daa;
  font-weight: 500;
}

.contactus-form-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.form{
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 70%;
  margin: 2rem 5rem;
}

.formfield-container{
  width: 100%;
}
.formfield{
  width: 100%;
  height: 42px;
  padding: 0 2rem;
  font-size: 18px;
  border-radius: 5px;
  box-shadow: 2px 2px 10px #1f1f1f;
  font-weight: 500px;
  border: none;
  margin-top: 30px;
}

.formfield-textArea{
  height: auto;
  padding-top: 1rem;

}

#submit-btn{
  border: none;
  font-size: 1.4rem;
  margin: 1rem 0;
  margin-top: 30px; 
}

#submit-btn:hover{
  scale:0.9;
}

.submit-icon{
  padding: 0 1 rem;
  font-size: 1.5rem;
}

footer{
  position: relative;
  margin-top:-1px;
  background-color: #343d68;
  padding: 5rem;

}

.footer-wrapper{
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  justify-content: space-between;
  align-items: center;

}

.link-wrapper{
  display: flex;
  gap: 1.2rem;
}

.link-wrapper div a{
  color: white;
  text-decoration: none;
  transition: all 0.6s;
}

.link-wrapper div a:hover{
  color: var(--bgOrange);
}

.footer-faded-text{
  color: #535c87;
  position: absolute;
  left: 0;
  bottom: 0;
  user-select: none;
  font-size: 5em;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.icon-wrapper{
  display: flex;
  gap: 1rem;

}