*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif;
    scroll-behavior: smooth;
}

#wrapper{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}



/* navbar section begin */

.container{
    width: 1200px;
    margin: 0 auto;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
}

.logoContainer{
    display: flex;
    justify-content: baseline;
    align-items: center;
}

.logo{
    width: 70px;
}

.logoText{
    margin-left: -1.1rem;
    font-size: 25px;
}

.navItems{
    display: flex;
    gap: 2rem;
    padding: 0 4em;   
}

.navItems div{
    font-size: 20px;
    font-weight: 500;
}

.navItems div a{
    color: black;
}

a{
    text-decoration: none;
}

.navItems div:hover{
    font-weight: bold;
    transition: 0.8s;
}

/* navbar section end */




/* hero section begin */

.heroSection{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 5rem;
    margin: 4rem auto;
    padding: 0 1rem;
    padding-bottom: 8rem;
}

.fadedText{
    user-select: none;
    font-size: 7em;
    color: rgb(231, 231, 231);

    bottom: -16%;
    left: -5%;
    font-weight: bold;
    transition: all 3s;
}

.heroSectionLeft{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.heroSectionHeading{
    font-size: 35px;
    font-weight: 500;
    color: #343d68;
}

.role{
    font-weight: 800;
    color: #4e45d4;
}

.heroSectionSubHeading{
    font-size: 45px;
    line-height: 45px;
}

.heroSectionDescription{
    margin-top: 1rem;
    width: 70%;
    font-weight: 500;
}

.btnPink {
    background-color: orangered;
    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 3px transparent;
    position: relative;
    z-index: 1;
  }

  .btnPink::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;
  }

  .btnPink:hover::before {
    transform: scaleX(1);
  }

  .btnPink:hover {
    border: solid 3px orangered;
    color: black;
  }

  .heroSectionBtnGroup a .icon{
    cursor: pointer;
    color: #4e45d4;
    font-size: 35px;
    transition: all 0.4s;
    margin-left: 15px;
  }

  .heroSectionBtnGroup a .fa-linkedin{
    color: darkblue;
  }

  .heroSectionBtnGroup a .fa-github{
    color: black;
  }

  .heroSectionBtnGroup a .icon:hover{
    color: orangered;
  }

  .heroSectionRight{
    position: relative;
  }

  .absolute{
    position: absolute;
  }

  .saikatImage{
    padding: 2.5rem;
    filter: grayscale(1);
    transition: all 1s;
    animation: scaleImage 5s linear infinite;
  }

  .saikatImage img{
    z-index: -9;
  }

  @keyframes scaleImage {
    
    0%{
        filter: grayscale(0);
        transform: scale(1);
    }

    50%{
        filter: grayscale(1);
        transform: scale(1.1);
        box-shadow: 3px 3px 10px black;
    }

    100%{
        filter: grayscale(0);
        transform: scale(1);
    }
  }


  .iconsDots{
    z-index: 9;
    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);
    }
  }


  .iconsCube{
    z-index: 9;
    top: -0.8em;
    right: 1rem;
    animation-name: cubeAnimation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
  }

  @keyframes cubeAnimation {
    0%{
        transform: rotateY(0deg) translateY(0px);
    } 

    50%{
        transform: rotateY(180deg) translateY(-12px);
    }

    100%{
        transform: rotateY(360deg) translateY(0px);
    }
  }


  .iconsCircle{
    z-index: 9;
    left: 0;
    bottom: 0;
    animation-name: circleAnimation;
    animation-duration: 6s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  @keyframes circleAnimation {
    
    50%{
        left: 5%;
        bottom: 10%;
    }

  }



  .iconsZigzags{
    z-index: 9;
    top: 1.5em;
    left: -0.3em;
    animation:  zigzagsAnimation 5s ease-in infinite;
  }

  @keyframes zigzagsAnimation {
    50%{
        left: 5%;
        top: 2%;
    }
  }

  .iconsPlus{
    z-index: 9;
    top: -0.8rem;
    left: 50%;
    animation:  plusAnimation 5s ease-in infinite;
  }

  @keyframes zigzagsAnimation {
    50%{
        left: 3%;
        top: 48%;
    }
  }

  /* hero section end */



  /* project section begin */

  .projectSection{
    background-color: rgb(231, 231, 231);
    margin-top: 4rem;
  }

  .projectHeader{
    color: orangered;
    font-size: 70px;
    text-align: center;
    padding-top: 30px;
  }

  .projectContainer{
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;

    display: flex;
    flex-direction: column;
    gap: 120px;
  }

  .projectCard{
    width: 90%;
    height: 550px;
    background-image: url(images/projects/Project_1.png);
    background-size: cover;
    /* background-repeat: no-repeat; */
    position: relative;
    box-shadow: 0px 0px 40px #1f1f1f;
  }

  .projectCard::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f1f1f9a;
    z-index: 0;
    /* transform: scaleX(1); */
  }

  .projectCard::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, #343d68, #343d68be, #343d687c);
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.4s;
    z-index: 1;
  }

  .projectCard:hover::before{
    transform: scaleX(1);
  }

  .projectNumber{
    position: absolute;
    font-size: 200px;
    font-weight: 600;
    color: white;
    z-index: 10;
    /* display: none; */
    opacity: 0;
  }

  .projectCard:hover .projectNumber{
    /* display: block; */
    opacity: 1;
  }

  .projectNumberRight{
    right: -40px;
    top: -45px;
  }

  .projectContent{
    position: absolute;
    display: flex;
    flex-direction: column;
    color: white;
    padding: 2em;
    bottom: 20%;
    z-index: 5;
    gap: 1em;
    transition: all 0.4s;
  }

  .projectContentLeft{
    left: 10%;
  }

  .projectSkillsContainer{
    width: 60%;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .projectSkills{
    width: 40px;
  }

  .projectHeading{
    font-size: 50px;
    font-weight: bold;
    line-height: 3rem;
  }

  .projectSubHeading{
    width: 70%;
    font-size: 16px;
    font-style: italic;
  }

  .btnGroup{
    display: flex;
    gap: 0.9rem;
    align-items: center;
  }

  /* .icon{
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: all 0.4s;
  } */

  .btnGroup a .icon{
    cursor: pointer;
    color: white;
    font-size: 35px;
    transition: all 0.4s;
  }

  .btnGroup a .icon:hover{
    color: orangered;
  }

  .projectCard:hover .projectContent{
    transform: scale(1.1);
  }

  #project1{
    background-image: url(images/projects/Project1.png);
  }

  #project2{
    background-image: url(images/projects/Project2.png);
    margin-left: 120px;
  }

  #project3{
    background-image: url(images/projects/Project3.png);
  }

  #project4{
    background-image: url(images/projects/Project4.png);
    margin-left: 120px;
  }

  @media (max-width:1300px) {
    .projectHeader {
      padding-top: 30px;
      color: var(--bgOrange);
      text-align: center;
      font-size: 40px;
    }
    .projectContainer {
      padding: 5px;
      margin: 10px;
      gap: 60px;
    }
    .projectCard {
      width: 100%;
      height: 300px;
    }
    .projectCard {
      background-size: cover;
      background-position: center;
    }
    .projectContent {
      scale: 0.5;
      bottom: 0;
      left: 0;
      right: 0;
      top: 0;
    }
    .projectContentLeft {
      left: 0;
    }
    .projectHeading {
      font-size: 40px;
      width: 100%;
    }
    .projectSubHeading {
      width: 100%;
    }
    #project2 {
      margin-left: 0;
    }
    #project4 {
      margin-left: 0;
    }
    .projectSkillsContainer {
      width: 100%;
    }
    .projectSkill {
      width: 35px;
    }
    .projectCard:hover .projectNumber {
      display: none;
    }
    .projectCard:hover .projectContent {
      scale: 0.55;
    }
  }

  /* #project section end */



  /* skills section begin */

  .skillsSection{
    position: relative;
    display: flex;
    padding: 5rem;
    margin: 10rem auto;
    gap: 30px;
  }

  .skillsContainerLeft{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
  }

  .skillsContainerRight{
    display: flex;
    flex-wrap: wrap;
    width: 50%;
    position: relative;
    gap: 2rem;
    justify-content: center;
  }

  .skillsFadedText{
    position: absolute;
    font-size: 15em;
    font-style: bold;
    color: rgb(231, 231, 231);
    bottom: -34.5%;
    right: -25%;
    user-select: none;
    overflow-y: hidden;
  }

  .blobStyle{
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    animation: blobAnimation 3s linear infinite;
  }

  @keyframes blobAnimation {
    50%{
      top: 54%;
      left: 46%;
    }
  }

  .skillsLogo{
    width: 90px;
    transition: all 0.5s;
  }

  .skillsLogo:hover{
    transform: scale(1.2);
  }

  .skillsHeading{
    font-size:50px;
    font-style: bold;
    color: orangered;
    line-height: 50px;
  }

  .skillsSubHeading{
    margin-top: 1rem;
    width:85%;
    text-align: justify;
    font-size: 20px;
  }

  .skillsSubHeading p{
    margin: 15px 0;
  }
  
  /* skills section end */



  /* contact section begin */

  .contactSection{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70vh;
  }

  .contactHeader{
    color: orangered;
    font-size: 70px;
    text-align: center;
    padding-top: 30px;
  }

  .contactInfoUpperContainer{
    display: flex;
    justify-content: center;
    border-radius: 2rem;
    border: 0.1rem solid rgb(53, 53, 53);
    border-color: rgb(163, 163, 163);
    background: (250, 250, 250);
    margin: 2rem auto;
    padding: 0.5rem;
  }

  .contactInfoContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem;
  }

  .contactInfoContainer p{
    font-size: larger;
    color: black;
  }

 .emailIcon{
  height: 4rem;
  width: 4rem;
 }

 /* contact section end */


 /* footer section begin */

 footer{
  position: relative;
  margin-top: -1px;
  background-color: #343d68;
  padding: 7rem;
 }

 .footerWrapper{
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
  justify-content: space-between;
  align-items: center;
 }

 .footerFadedText{
  position: absolute;
  left: 0;
  bottom: 0;
  color: #535c87;
  user-select: none;
  font-size: 5em;
 }

 .linkWrapper{
  display: flex;
  gap: 1.2rem;
 }

 .linkWrapper div a{
  color: white;
  text-decoration: none;
  transition: all 0.6s;
 }

 .linkWrapper div a:hover{
  color: orangered;
 }

 .iconWrapper{
  display: flex;
  gap: 1rem;
  color: white;
 }