* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  overflow-x: hidden;
  margin: 0 auto;
}

::selection {
  background-color: rgba(0, 0, 0, 0.16);
}
/* WebKit Scrollbar Styles */
*::-webkit-scrollbar {
width: 5px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
  border: 3px solid #000000;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.main{
  position: relative;
  z-index: 10;
}

/* Loader  */
#loader{
  display: flex;
  height: 100%;
  width: 100%;
  top: 0px;
  background-color: black;
  position: fixed;
  z-index: 999;
  justify-content: center;
  align-items: center;
  transition: all linear 0.7s;
}

#loader h1{
  pointer-events: none;
  user-select: none;
  font-family: nova , sans-serif;
  font-size: 5rem;
  font-style: italic;
  letter-spacing: 10px;
  color: white;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: linear;
}
#loader h1:nth-child(2){
  animation-delay: 2s;
}
#loader h1:nth-child(3){
  animation-delay: 3s;
}


@keyframes load {
  0%{
    opacity: 0;
  }  
  10%{
    opacity: 1;
  }
  90%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}


/*  Main Styling  */
@font-face {
  font-family: "logo";
  src: url("/assets/Micro.ttf");
}
@font-face {
  font-family: "nova";
  src: url("/assets/nova.otf");
}

.circle {
  height: 25px;
  width: 25px;
  border-radius: 24px;
  border: 1px solid black;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999;
}

/* Hero Section  */
.hero {
  background-color: white;
  min-height: 90vh;
}

.logo {
  padding-top: 3rem;
  padding-left: 2rem;
}

.logo h1 {
  display: inline-block;
  font-family: logo;
  font-style: italic;
  letter-spacing: 2px;
  line-height: 4rem;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.874);
  user-select: none;
  transition: transform 0.3s ease;
  /* Add a smooth transition */
}

.logo h3 {
  user-select: none;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.874);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: italic;
}

.logoheading {
    color: rgba(0, 0, 0, 0.771);
    font-family: Favorit, sans-serif;
    font-size: 9px;
    letter-spacing: 1.2px;
    line-height: 18px;
    position: absolute;
    transform: translateX(80%);
    min-width: 20vw;
    max-width: 20vw;
    font-weight: 600;
    font-style: italic;
}

.buttons {
  position: absolute;
  right: 5vw;
  top: 8vh;
  display: flex;
}

.chatbtn,
.contbtn {
  position: relative;
  display: flex;
  z-index: 2;
  justify-content: space-evenly;
  align-items: center;
  text-decoration: none;
  margin-right: 1.8vw;
  font-family: Favorit, sans-serif;
  color: black;
  font-size: 12.6196px;
  border: 1px solid black;
  padding: 3px 15px;
  border-radius: 3px;
  font-weight: bold;
  letter-spacing: 1px;
  overflow: hidden;
}

.chatbtn::before,
.contbtn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.213);
  z-index: 0;
  transition: left 0.4s ease;
}

.chatbtn:hover::before,
.contbtn:hover::before {
  left: 0;
}

.chatbtn:hover,
.contbtn:hover {
  color: black;
}

.cursor {
  z-index: 999;
  position: fixed;
  top: 76%;
  right: 5%;
  transform-origin: center;
  animation: rotate 5s linear infinite;
  user-select: none;
}

.cursor img {
  width: 100px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.imagecont {
  display:flex;
  justify-content: center;
  z-index: 99;
  /* background-color: rgb(206, 206, 224); */
  transform: translateY(-15%);
  user-select: none;
  pointer-events: none;
}

.imagecont img {
  width: 450px;
  filter: grayscale();
}
.gola {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  background-color: black;
  border-radius: 50%;
  filter: blur(80px);
  height: 500px;
  animation: brightnessAnimation 2s ease-in-out infinite alternate;
}


@keyframes brightnessAnimation {
  0% {
    filter: blur(80px) brightness(0);
  }

  100% {
    filter: blur(60px) brightness(100);
  }
}


/* Chat Section  */
.chatsection {
  padding-top: 10rem;
  background-color: rgb(255, 255, 255);
  padding-top: 1rem;
  height: 100vh;
  padding-bottom: 40rem;
}
.chatsection h1{
  margin: 0 auto;
  font-size: 4rem;
  text-align: center;
  padding-bottom: 5rem;
  letter-spacing: 2px;
  width: 80vw;
  font-family: nova, sans-serif;
  font-weight: lighter;
  user-select: none;
}
.chatitl{
  font-style: italic;
  font-family: freight-display-pro, serif, sans-serif;
  letter-spacing: 0px;
}

.box{
  /* background-color: white; */
  display: flex;
  justify-content: center;
  align-items: center;
}
.boxline{
  width: 1px;
  height: 30vh;
  background-color: black;
  margin: 0px 5rem;
}
.box1{
  width: 20vw;
  text-align: start;
}
.box1 h2{
  font-family: nova, sans-serif;  
  font-weight: lighter;
}
.box1 p{
  font-family: nova, sans-serif;  
  font-weight: lighter;
  font-size: 0.9rem;
  font-style: italic;
}
.box2{
  width: 20vw;
  display: flex;
  flex-direction: column;
}
.box2 h2{
    font-family: nova, sans-serif;  
    font-weight: lighter;
    margin-bottom: 1.2rem;
  }
.box2 input{
  font-size: 1rem;
  outline: none;
  font-family: nova, sans-serif;  
  font-weight: lighter;
  border: 1px solid black;
  border-radius: 2px;
  padding: 1rem ;
  margin-bottom: 0.2rem;
  }
.box2 button{
  font-family: nova, sans-serif;  
  font-weight: lighter;
  font-size: 0.8rem;
  outline: none;
  width: 8vw;
  border: 1px solid black;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  cursor: pointer;
  border-radius: 2px;
  padding: 0.2rem 0.5rem;
  transition: all 0.3s ease;
  }
.box2 button:hover{
  background-color: rgb(0, 0, 0);
  color: white;
}


/* Hire  Section  */
.hiresection {
  margin-bottom: 20rem;
  height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}

.hireheading {
  white-space: nowrap;
  overflow-x: auto;
  text-align: center;
}

.hireheading::-webkit-scrollbar {
  display: none;
}

.hireheading h2 {
  padding-right: 2.5vw;
  padding-left: 2.5vw;
  display: inline-block;
  font-size: 6rem;
  color: transparent;
  letter-spacing: 2px;
  color: black;
  background-color: transparent;
  overflow: hidden;
  white-space: nowrap;
  font-family: nova, serif;
  font-weight: lighter;
  animation-name: hmove;
  animation-duration: 7s;
  padding-bottom: 8rem;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes hmove {
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
  
}
.aboutsec{
  position: absolute;
  padding-bottom: 8rem;
}
.aboutsec img{
  width: 380px;
  transform: rotate(-10deg);
  border: 1px solid black;
  padding: 2px;
  border-radius: 1px;
}

/* Footer Section  */
.footer {
  /* padding-top: 100rem; */
  position: fixed;
  width: 100%;
  z-index: 9;
  bottom: 0px;
  border-top: 1px solid rgba(0, 0, 0, 0.383);
  overflow: hidden;
  background-color: black;
}

.headingf {
  display: flex;
  justify-content: space-evenly;
}

.footerlogo {
  height: 200px;
  margin-bottom: 3rem;
}

.footerlogo h1 {
  margin-top: 4rem;
  display: inline-block;
  font-family: logo;
  font-style: italic;
  letter-spacing: 2px;
  line-height: 4rem;
  font-size: 10rem;
  -webkit-text-stroke: 0.1px rgba(255, 255, 255, 0.909);
  color: transparent;
  user-select: none;
  transition: transform 0.3s ease;
  /* Add a smooth transition */
}

.footerlogo h3 {
  user-select: none;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.874);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: italic;
}

.copyr {
  text-align: center;
  color: rgba(255, 255, 255, 0.878);
  font-family: Favorit, sans-serif;
  font-size: 10px;
  letter-spacing: 1.2px;
  line-height: 18px;
  font-weight: 600;
  font-style: italic;
}
.gola2{
  display: flex;
  justify-content: center;
  align-items: center;
}
.icons {
  margin-left: 2rem;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.889);
}




/* RESPONSIVE LAYOUTS  */
@media screen and (min-width: 1864px) and (max-width: 2600px) {
  .gola{
    width: 800px;
    height: 800px;
  }
  .imagecont img{
    width: 750px;
  }
  .logo h1{
    font-size: 12rem;
  }
  .logo h3 {
    font-size: 20px;
  }
  .logo {
    padding-top: 8rem;
    padding-left: 8rem;
}
.logoheading{
  font-size: 16px;
    line-height: 22px;
    min-width: 24vw;
}
.chatbtn ,.contbtn{
  font-size: 25.6196px;
}
.buttons{
  top: 10vh;
}
.circle {
    height: 50px;
    width: 50px;
}
.cursor img {
    width: 200px;
}
/* .chatsection{
  padding-bottom: -20rem;
} */
.chatsection h1{
  font-size: 8rem;
}
.box1 h2{
      font-size: 2rem;
}
.box1 p{
    font-size: 1.4rem;
}
.box2{
  font-size:1.3rem;
}
.box2 input {
    font-size: 2rem;
}
.box2 button{
  font-size: 1rem;
}
.hireheading h2{
      font-size: 8rem;
}
.aboutsec img {
    width: 650px;
}
}

@media screen and (min-width: 3728px) and (max-width: 4970px) {
  .gola{
    width: 1200px;
    height: 1200px;
  }
  .imagecont img{
    width: 1250px;
  }
  .logo h1{
    font-size: 17rem;
  }
  .logo h3 {
    margin-top: 1rem;
    font-size: 30px;
  }
  .logo {
    padding-top: 12rem;
    padding-left: 12rem;
}
.logoheading{
  font-size: 26px;
    line-height: 28px;
    min-width: 22vw;
}
.chatbtn ,.contbtn{
  font-size: 35.6196px;
}
.buttons{
  top: 10vh;
}
.circle {
    height: 50px;
    width: 50px;
}
.cursor img {
    width: 300px;
}
/* .chatsection{
  padding-bottom: -20rem;
} */
.chatsection h1{
  font-size: 10rem;
}
.box1 h2{
      font-size: 4rem;
}
.box1 p{
    font-size: 2.4rem;
}
.box2{
  font-size:2.3rem;
}
.box2 input {
    font-size: 3rem;
}
.box2 button{
  font-size: 2rem;
}
.hireheading h2{
      font-size: 15rem;
}
.aboutsec img {
    width: 1000px;
}
}


@media screen and (min-width: 350px) and (max-width: 430px){
  .body{
    width: 100%;
    margin: 0 auto;
  }
  .gola{
    width: 300px;
    height: 300px;
    margin-left: 1.5rem;
    margin-top: 8rem;
  }
  .imagecont img{
    /* display: none; */
    width: 380px;
    margin-top: 8rem;
    margin-left: 4rem;
  }
  .logo h1{
    font-size: 3rem;
    line-height: 0rem;
  }
  .logo h3 {
    /* margin-top: 1rem; */
    font-size: 10px;
    line-height: 0.5rem;
  }
  .circle {
    display:none;
  }
  .chatbtn ,.contbtn{
    font-size: 10px;
    margin-bottom: 0.3rem;
  }
  .buttons{
    display: flex;
    flex-direction: column;
    top: 1.5rem;
    right: -1rem;
  }
  .logoheading{
    font-size: 6px;
      line-height: 12px;
      min-width: 30vw;
      margin-top: 1rem;
      transform: translateX(30%);
    }
    .cursor img {
      width: 100px;
      /* position: fixed; */
    }
    .chatsection h1{
      font-size: 2rem;
      margin-right: 1rem;
      padding-bottom: 1rem;
    }
    .box {
      flex-direction: column;
      align-items: start;
      margin-left: 2rem;
    }
    .box1{
      display: flex;
      flex-wrap: wrap;
      width: 80%;
      margin-bottom: 2rem;
    }
    .boxline{
      display: none;
    }
    .box1 h2{
      font-size: 1.3rem;
        }
        .box1 p{
          font-size: 1rem;
        }
        .box2{
          font-size:1.2rem;
          display: flex;
          flex-wrap: wrap;
        }
        .box2 h2{
          margin-bottom: 0px;
          line-height: 30px;
        }
        .box2 input {
          font-size: 1rem;
        }
        .box2 button{
          font-size: 0.8rem;
          width: 25vw;
        }
        .hiresection{
          width: 100%;
          height: 60vh;
        }
        .hireheading h2{
          font-size: 2rem;
        }
        .aboutsec img {
          width: 200px;
        } 
}