@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Michroma&display=swap');
:root {
  --dark-color: hsl(var(--hue), 100%, 9%);
  --light-color: hsl(var(--hue), 95%, 98%);
  --base: hsl(var(--hue), 95%, 50%);
  --complimentary1: hsl(var(--hue-complimentary1), 95%, 50%);
  --complimentary2: hsl(var(--hue-complimentary2), 95%, 50%);
  --bg-gradient: linear-gradient(
    to bottom,
    hsl(var(--hue), 95%, 99%),
    hsl(var(--hue), 95%, 84%)
  );
}
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:#cccccc;border-radius:0px}
::-webkit-scrollbar-thumb{background:#757575;border-radius:5px}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:'Michroma', sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;

}

body {
  color: var(--dark-color);
  background-color: #000 !important;
  overflow:hidden;
}


@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

span.grad-text {
  background: linear-gradient(
    to right,
    #fff 20%,
    #000 30%,
    #fff 70%,
    #fff 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-emphasis-color: transparent;
  background-size: 500% auto;
  animation: textShine 5s ease-in-out infinite alternate;
}

div#qat-time
{
  color:#fff;
}

/*video.slider-video*/
/*{*/
/*     border-radius:100px;*/

/*}*/

.slider-video
{
 width:480px;
 height:270px;
}


.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-words {
  position: relative;
  text-align: center;
  white-space: nowrap;

}

.loading-words h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: white;
  opacity: 0;
  display: inline-flex;
  align-items: center;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fff;
  border-radius: 50%;
  margin-left: 0.5rem;
  transform: scale(0);
}


.orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: -1;
  opacity:0;
  background-color: #000;
}


h1.footer-first-sh {
    font-size: 20px;
    text-align: right;
}


h1.sub-footer-s {
    font-size: 18px;
    text-align:center;
    padding:25px 0;
}


/* .second-section,.td,.fourth-section,.fifth-section,.sixth-section,.footer
{
display:none;
} */

/* Solid border */
hr.solid {
    border-top: 1px solid #fff;
    
}


.header
{
    display:flex;
    justify-content: center;
    align-items: center;
      height:95vh;

}


.text-circle{
  height:80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.img-mockup
{
  width:300px;
}



@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}



.second-section,.second-section-mobile
{
    background-size:cover;
    background-repeat: no-repeat;
    background-position:right;
    z-index: 999;
    overflow-x:hidden !important;
}

.second-section-mobile,.third-section-mobile
{
  padding:20px;
}

h6.skills-intro
{
  font-weight: 600;
}

p.intro-text
{
  line-height: 38px;
}



.third-section
{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100vh;
}

.first-h-sec
{
  padding:100px 0;
}

.third-section-mobile
{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:50px 0
}

.fourth-section
{
    background-size:cover;
    background-repeat: no-repeat;
    background-position:center center;
    padding:40px 0;
}

.about
{
  font-size: 50px;
}

.ss-text
{
    font-size:120px;
    padding:80px 0;
}

.text-second{
    color:#545454;
}

.text-third
{
    color:#737373;
}

.text-fourth
{
    color: #a6a6a6;
}


.text-second, .text-fourth
{
    text-align: right;
}


.main-heading
{
    font-family: 'League Spartan', sans-serif;
    font-size: 70px;
    line-height: 92px;
    color:#fff;
}

.main-heading-mobile
{
  font-size:50px;
  color:#fff;
  text-align: center;
}

.main-text h2
{
  font-size:150px;
    text-align: center;
    line-height:220px;
    padding-top:50px;
    color: #fff;
    margin:0;
    opacity: 0;
}


hr.solid {
  margin-top:50px;
    border-top: 5px solid #bbb;
  }
  

/* CIRCLE ANIMATION */


.circle-r
{
    animation: rotating 8s linear infinite;

}

.circle-image
{
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes rotating {
from {
-ms-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-ms-transform: rotate(-360deg);
-moz-transform: rotate(-360deg);
-webkit-transform: rotate(-360deg);
-o-transform: rotate(-360deg);
transform: rotate(-360deg);
}
}

/* CIRCLE ANIMATION END */

.box{
    align-items:center;
    overflow: hidden;
    justify-content: center;
    align-content: center;
    display: flex;
}

.r-text
{
    height: 20vh;
    /*mix-blend-mode: overlay !important;*/
}

.textd{
    color:#fff;
    /* mix-blend-mode: difference; */
    margin:0;
    font-size:70px;
    white-space: nowrap;
    animation: textd 80s linear infinite;
    mix-blend-mode: overlay;
}

@keyframes textd {
0%{
transform: translateX(100%);
}
100%{
transform: translateX(0%);
}
}


/* FOUTH SECTION */
.fourth-section{
    --space: 2rem;
    display: flex;
    align-items: center;
}

.marquee {
    --duration: 60s;
    --gap: var(--space);
  
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
  }
  
  .marquee__group {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: normal;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--duration) linear infinite;
    margin-bottom:50px;
  }
  
  
  
  @media (prefers-reduced-motion: reduce) {
    .marquee__group {
      animation-play-state: paused;
    }
  }
  
  .marquee__group img {
    /* max-width: clamp(10rem, 1rem + 28vmin, 20rem); */
    aspect-ratio: 2;
    object-fit: cover;
    border-radius: 1rem;
    width:650px;
  }
  
  .marquee__group p {
    background-image: linear-gradient(
      75deg,
      hsl(240deg 70% 49%) 0%,
      hsl(253deg 70% 49%) 11%,
      hsl(267deg 70% 49%) 22%,
      hsl(280deg 71% 48%) 33%,
      hsl(293deg 71% 48%) 44%,
      hsl(307deg 71% 48%) 56%,
      hsl(320deg 71% 48%) 67%,
      hsl(333deg 72% 48%) 78%,
      hsl(347deg 72% 48%) 89%,
      hsl(0deg 73% 47%) 100%
    );
    -webkit-text-fill-color: transparent;
  }
  
  .marquee--borders {
    border-block: 3px solid dodgerblue;
    padding-block: 0.75rem;
  }
  
  .marquee--reverse .marquee__group {
    animation-direction: reverse;
    animation-delay: calc(var(--duration) / -2);
  }
  
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
  
    100% {
      transform: translateX(calc(-100% - var(--gap)));
    }
  }


/*FIFTH SECTION*/
  
  .fifth-section
  {
    /* background-color:#f4f1e8; */
    display: flex;
    align-items: center;
    justify-content: center;
    height:80vh;
  }

  .fifth-inner
  {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fifth-heading
  {
      font-size:280px;
      line-height:220px;
      color:#fff;
  }




  .sixth-section
  {
    background-size: cover;
    background-repeat: no-repeat;
  }

  .sixth-section-mobile
  {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .sixth-heading
  {
    text-align: center;
    font-size: 44px;
  }

  /* ANIMATION */
  .menu{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 120px;
    z-index: 100;
}
.menu .logo{
    margin-left: 70px;
}
.menu .logo a{
    text-decoration: none;
    font-size: 45px;
    color: black;
}
.menu .ul{
    display: flex;
    list-style: none;
}
.menu .ul li{
    margin-right: 70px;
}
.menu .ul li a{
    text-decoration: none;
    color: black;
    font-size: 25px;
    border: .5px solid #161616;
    border-radius: 50%;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    font-style: italic;
    transition: .3s ease-in-out;

}
.menu .ul li:hover a{
    background-color: black;
    transition: .3s ease-in-out;
    color: white;
}

.main-text{
    width:100%;
}

#home
{
    display:flex;
    align-items: center;
}

.line{
    overflow: hidden;

}
#home .main-text p{
  overflow: hidden;
  font-size: 62px;
  text-transform: uppercase;
  padding: 30px 20px;
  margin-top: 40px;
  color:#fff;
}
a{
    text-decoration: none !important;
    color: #fff !important;

}
.cursor{
    position:absolute;
    background-size: cover;
    width: 450px;
    height: 250px;
    user-select: none;
    pointer-events: none;
   transform: translate(5px,5px);
}
.cursor-follow1{
    background: url(../images/1.PNG) no-repeat;
    background-size: contain;
    opacity: 0;
}

.cursor-follow2{
  background: url(../images/3.PNG) no-repeat;
  background-size: contain;
  opacity: 0;
}

.cursor-follow3{
  background: url(../images/2.PNG) no-repeat;
  background-size: contain;
  opacity: 0;
}

.cursor-follow4{
  background: url(../images/4.jpg) no-repeat;
  background-size: contain;
  opacity: 0;
}

.cursor-follow5{
  background: url(../images/5.jpg) no-repeat;
  background-size: contain;
  opacity: 0;
}

.cursor-follow6{
  background: url(../images/6.PNG) no-repeat;
  background-size: contain;
  opacity: 0;
}

.cursor-follow7{
  background: url(../images/7.PNG) no-repeat;
  background-size: contain;
  opacity: 0;
}

.line1:hover ~ .cursor-follow1{
    opacity: 1;
}
.line2:hover ~ .cursor-follow2{
    opacity: 1;
}
.line3:hover ~ .cursor-follow3{
    opacity: 1;
}
.line4:hover ~ .cursor-follow4{
    opacity: 1;
}
.line5:hover ~ .cursor-follow5{
  opacity: 1;
}
.line6:hover ~ .cursor-follow6{
  opacity: 1;
}
.line7:hover ~ .cursor-follow7{
  opacity: 1;
}


.body2{
    background-color: #c9c9c9;
    transition: .5s ease-in-out;

}
.project{
    position: absolute;
    top: 0;
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    height: 120vh;
    width: 100%;
}
.big-txt{
    color: #c9c9c9;
    font-size: 150px;
    text-transform: uppercase;

}
.big-img{
    width: 800px;
    height: 400px;
    background: url(../images/mouthwash.jpg) no-repeat 50% 50%;
}
.big-desc{
    padding: 0px 100px ;
    font-weight: lighter;
    font-size: 25px;
    margin-top: 50px;
}


.line.line2,.line.line4,.line.line6
{
    text-align: right;
}





/* FOOTER */

.footer
{
  padding:0 20px;
}

.footer-first
{
  color:#fff;
  margin:0;
  font-size:26px;
  width: 100%;
}



.footer-first-wrap
{
  display:flex;
  align-items: center;
  padding:80px 0;
}

.details{
  padding:60px 0;
}

.footer-second
{
  color:#fff;
  margin:0;
  font-size:62px;
}

.footer-second-wrapper
{ 
  text-align: end;
  width: 100%;
}

.details
{
  justify-content: center;
}



/* FONT ANIMATION */

span {
  display: block;
  overflow: hidden;
}

.hide {
  display: none !important;
}

.headingone
{
  transform: translateX(-1200px);
}

.headingthree
{
  transform: translateX(-1200px);
}

.headingfour
{
  transform: translateX(1200px);
}

.headingtwo
{
  transform: translateX(1200px);

}

.firstdivider
{
  transform: translateX(-1000px); 
}

.thirddivider
{
  transform: translateX(-1000px); 
}

.fourthdivider
{
  transform: translateX(1000px); 
}



.seconddivider
{
  transform: translateX(1000px); 
}


.image-box-first
{
    transform: translateY(-50vh);
}

.image-box-second
{
    transform: translateY(100vh);
} 

.circle-image,.r-text{
  opacity: 0;
}

/* EXP */


.image-box-first, .image-box-second
{
  opacity:0;
}


/* FIFTH SECTION EXPERIENCES */

.scrolling-words-container {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 600;
}
.scrolling-words-box {
  height: 8rem;
  /* margin: auto; */
  overflow: hidden;
}
.scrolling-words-box ul {
  margin: 0 0.625rem;
  padding: 0;
  animation: scrollUp 4s infinite;
}
.scrolling-words-box ul li {
  display: flex;
  align-items: center;
  /* justify-content: flex-end; */
  height: 8rem;
  list-style: none;
}
@keyframes scrollUp {
  15%, 25% {
    transform: translateY(-20%);
 }
  40%, 50% {
    transform: translateY(-40%);
 }
  65%, 75% {
    transform: translateY(-60%);
 }
  90%, 100% {
    transform: translateY(-80%);
 }
}

.second-section-mobile,.third-section-mobile,.sixth-section-mobile{
  display: none;
}


.ss-text-mobile
{
    font-size:56px;
    opacity: 0;
    font-weight:400;
    padding:60px 0;
}

.solidmobile
{
  opacity:0;
}


/*  */

.header-vid
{
  width:100%;
}


/* MEDIA QUERIES */


@media screen and (max-width: 992px) {

  .text-circle
  {
    height:75vh;
  }

  .hib
  {
    display:none;
  }
  .orb-canvas
  {
    height:105vh;
  }


  .main-heading
  {
    font-size: 36px;
    line-height: 54px;
    margin-bottom: 40px;
  }

  .textd
  {
    font-size:32px;
  }

  h6.skills-intro {
    line-height: 30px;
  }



  .about {
    font-size: 36px;
}

  .header-main 
  {
    height:80vh;
  }

  .header{
    display:block;
  }

  .circle-r
  {
    width:250px;
    padding:20px;
  }

  

  .second-section-mobile, .third-section-mobile,.sixth-section-mobile{
    display: block;
  }

  .second-section,.third-section,.sixth-section{
    display: none;
  }


.main-text h2
{
  font-size: 28px;
  line-height: 52px;
  padding:20px 0;
}




hr.solid
{
  border-top: 2px solid #bbb;
}

.firstdividermobile
{
  opacity:0;
}

.img-mockup
{
  width:300px;
}

.scrolling-words-container, .scrolling-words-box ul li
{
  font-size:1.3rem;
}

.fifth-section
{
  height:20vh;
}

.marquee__group img
{
  width:250px;
}

.footer-first
{
  font-size:22px;
  text-align:center;
}

h1.footer-first-sh
{
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

h1.sub-footer-s
{
    font-size:14px;
}



.footer-second
{
  font-size:22px;
}

.footer-first-wrap{
  padding:20px;
}

.details-heading
{
  font-size:20px;
}

.sixth-heading, #home .main-text p
{
  font-size: 22px;
    padding: 10px 0;
    text-align: center;
    color:#fff;
}


}



@media screen and (max-width:768px)
{
    .orb-canvas, .circle-image, .r-text
    {
        opacity:1;
    }
    
/*    .slider-video*/
/*{*/
/* width:100%;*/
/* height:auto;*/
/*}*/
}
    
