.links a{
    color: #333;
    transition: ease-in-out 0.5s color;
}

.links a:hover{
    color: #ffffffff;
}


.social a{
    color: #B3B3B3;
    font-size: 20px;
    padding: 5px 12px;
    border: #333 solid 1px;
    border-radius: 100px;
    transition: ease-in-out 0.5s color;
}

.social a:hover{
    color: #ffffffff;
}

.glowing-text {
  color: #8800ff;
  text-shadow: 0 0 5px #8800ff, 0 0 10px #8800ff, 0 0 15px #8800ff;
  font-size: 20px; /* make it bigger if needed */
}


@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 5px #8800ff, 0 0 10px #8800ff;
  }
  50% {
    text-shadow: 0 0 15px #8800ff, 0 0 30px #8800ff;
  }
  100% {
    text-shadow: 0 0 5px #8800ff, 0 0 10px #8800ff;
  }
}

.glowing-text {
  color: #8800ff;
  font-size: 20px;
  animation: pulse-glow 1.5s infinite;
}



@keyframes blink {
    50% { opacity: 0; }
}
.animate-blink {
    animation: blink 1s infinite;
}







.glowing-textt {
  color: #333;
  text-shadow: 0 0 5px #333, 0 0 10px #333, 0 0 15px #333;
  font-size: 20px; /* make it bigger if needed */
}


@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 5px #333, 0 0 10px #333;
  }
  50% {
    text-shadow: 0 0 15px #333, 0 0 30px #333;
  }
  100% {
    text-shadow: 0 0 5px #333, 0 0 10px #333;
  }
}

.glowing-textt {
  color: #333;
  font-size: 20px;
  animation: pulse-glow 1.5s infinite;
}



@keyframes blink {
    50% { opacity: 0; }
}
.animate-blink {
    animation: blink 1s infinite;
}

.view a{
  font-size: 20px;
  color: #B3B3B3;
  padding: 5px 20px;
  border-radius: 50px;
  border: #333 1px solid;
  transition: ease-in-out color 0.5s;
}

.view a:hover{
  color: #ffffffff;
}

nav{
  width: 100%;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.zetr img{
  transition: ease-in-out 0.5s transform;
}

.zetr img:hover{
  transform: scale(1.05);
}


@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px); /* optional: slight upward motion */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.intro{
  animation: fadeIn 1.1s ease-in-out forwards;
}


.email a{
  font-size: 17px;
  color: #B3B3B3;
  padding: 3px 15px;
  border-radius: 50px;
  border: #333 1px solid;
  transition: ease-in-out color 0.5s;
}

.email a:hover{
  color: #ffffffff;
}


.contact{
    color: #B3B3B3;
    font-size: 17px;
    padding: 5px 12px;
    border-left: #333 solid 2px;
    border-radius: 100px;
    transition: ease-in-out 0.5s color;
}

.contact:hover{
  color: #ffffffff;
}


.link{
    color: #B3B3B3;
    font-size: 17px;
    padding: 5px 12px;
    transition: ease-in-out 0.5s color;
}

.link:hover{
  color: #ffffffff;
}






/* <reset-style> ============================ */
a {
  text-decoration: none;
}
/* <main-style> ============================ */
.main__scroll-text {
  color: rgba(28,28,30,1);
}

.main__action:hover .main__scroll-box {
  animation: scroll-down 3s infinite;
}

/* Animate scroll icon */
@keyframes scroll-down {
  0%, 100% {
    transform: translateY(0rem);
    opacity: 1;
  }

  35% {
    transform: translateY(1rem);
    opacity: 0;
  }

  70% {
    transform: translateY(-1rem);
    opacity: 0;
  }
}





@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

.fade-in.show {
  animation-name: fadeIn;
}


@keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .slide-up {
    opacity: 0;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
  }

  .slide-up.show {
    animation-name: slideUp;
  }


 @keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
  }
}

.scrolll {
  opacity: 0;
  transform: translateY(50px);
  transition: none; /* disable transition for animation consistency */
}

.scrolll.show {
  animation-name: slideUp;
  animation-fill-mode: forwards;
  animation-duration: 0.8s; /*0.6*/
}

.scrolll.hide {
  animation-name: slideDownFadeOut;
  animation-fill-mode: forwards;
  animation-duration: 0.8s; /*0.6*/
}


/* Hide the system cursor everywhere */
* {
  cursor: none !important;
}

 .custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #8800ff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999999;
  box-shadow: 0 0 10px #8800ff, 0 0 20px #8800ff;
  will-change: transform;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}














@keyframes spin-up {
  0% {
      transform: translateY(100%) rotateX(90deg);
      opacity: 0;
    }
  50% {
      opacity: 1;
    }
  100% {
    transform: translateY(0) rotateX(0deg);
    opacity: 1;
    }
  }

  .animate-spin-up {
    animation: spin-up 0.8s ease-out;
  }





.slider-container {
    width: 100%;
    height: 50px; /* Adjust as needed */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.slider-wrapper {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    transition: transform 0.5s ease-in-out;
}

.slider-text {
    height: 50px; /* Match container height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px; /* Adjust as needed */
}



.backgroundabout{
  background-image: url(../images/about.png);
}


.aboutbutton a{
  font-size: 15px;
  color: #B3B3B3;
  padding: 7px 12px;
  border-radius: 50px;
  border-left: #333 1px solid;
  transition: ease-in-out color 0.5s;
}

.aboutbutton a:hover{
  color: #ffffffff;
}







.testemonials{
  color: #B3B3B3;
  padding: 10px 50px;
  border-radius: 50px;
  border-left: #333 1px solid;
  border-bottom: #333 1px solid;
  transition: ease-in-out color 0.5s;
}





footer{
  width: 100%;
  color: #B3B3B3;
  border-radius: 50px 50px 0px 0px;
  border-top: #333 1px solid;
}






.footersocial i{
  color: #79747E;
  transition: ease-in-out color 0.5s;
}

.footersocial i:hover{
  color: #ffffff;
}




.footersocial a{
  color: #79747E;
  transition: ease-in-out color 0.5s;
}

.footersocial a:hover{
  color: #ffffff;
}


.projectcard{
  border-top: #333 1px solid;
  border-right: #333 1px solid;
  border-left: #333 1px solid;
  border-bottom: #333 1px solid;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}




.viewwebpage{
    color: #B3B3B3;
    font-size: 17px;
    padding: 5px 12px;
    border-left: #333 solid 2px;
    border-radius: 100px;
    transition: ease-in-out 0.5s color;
}

.viewwebpage:hover{
  color: #ffffffff;
}



/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.5s ease;
  border-radius: 2px;
}

/* Hamburger active (X) state */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
}

/* Responsive: Mobile Only */
@media screen and (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    position: absolute;
    top: 70px;
    right: 20px;
    width: fit-content;
    border-radius: 8px;
    z-index: 9999;
    background-color:rgba(13, 13, 13, 0.8);
    backdrop-filter: blur(5px);
   -webkit-backdrop-filter: blur(5px);
    
    animation: fadee 0.5s ease forwards;
  }

@keyframes fadee {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links.fadeout {
  animation: fadeout 0.5s ease forwards;
}


@keyframes fadeout {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}



  .links a{
    padding-left: 30px;
    padding-right: 30px;
    color: #333;
    transition: ease-in-out 0.3s color;
  }

  .links a:hover{
    color: #ffffffff;
  }

  .links.show {
    justify-content: center;
    align-items: center;
    display: flex;
  }


  .custom-cursor{
    display: none;
  }


  nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 20px 40px;
  }

  
  


  .contactres{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }


  .contactres hr{
    display: none;
  }


  .contactone{
    padding: 20px 0px 100px 0px;
  }



  .aboutres{
    max-width: 300px;
  }

  .aboutres h2{
    font-size: 23px;
  }

  .projectresponsive{
    max-width: 320px;
  }

  .projectt h3{
    font-size: 23px;
  }

  .projectt h2{
    font-size: 20px;
  }

  .tracker{
    max-height: 200px;
  }

  .tracker img{
    max-width: 250px;
    height: 150px;
  }

  .over h3{
    font-size: 18px;
  }

  .overviewres{
    max-width: 320px;
  }

  .overviewres img{
    max-width: 320px;
  }


  .peopleres{
    max-width: 320px;
  }

  .peoplecard{
    display: flex;
    align-items: left;
    justify-content: left;
  }


  .test{
    max-width: 320px;
  }

 .test h3{
  font-size: 15px;
  padding-left: 0px;
  padding-right: 0;
 } 


 .peopleeres img{
  max-width: 50px;
 }

 .aboutpeople h1,h3{
  font-size: 14px;
 }

 .aboutpeople{
  padding-left: 20px;
 }





 /*.projectpageres{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
 }*/



 .projectres{
  padding: 20px 20px 20px 20px;
 }

 .projectres h3{
  font-size: larger;
 }

 .projectres a{
  font-size: medium;
  padding: 3px 10px;
 }

 .projectres h1{
  font-size: small;
  padding: 3px 5px;
 }

 .projectres img{
  max-width: 320px;
 }




 .aboutprojectres{
  padding-left: 20px;
  padding-right: 20px;
 }


 .projectimage{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
 }

 .projectimage img{
  max-width: 320px;
 }

.aboutprojectres h1{
  font-size: larger;
 }

 .aboutprojectres h3,p{
  font-size: large;
  font-weight: 600;
 }

 .projectname h1{
  font-size: x-large;
 }

 .aboutprojectres a{
  font-size: small;
 }


 .projecttitle h1{
  font-size: xx-large;
 }



 .aboutme{
  padding-left: 20px;
  padding-right: 20px;
 }


 .backgroundabout{
  background-color: #0d0d0d;
  /*background-image:;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;*/
 }


 .backgroundres{
  background-color: #0d0d0d;
 }


 .aboutme h1{
  font-size: larger;
 }

 .aboutme h3,p{
  font-size: larger;
  font-weight: 600;
 }


 .presence h4,h5{
  font-weight: 600;
  font-size: large;
  padding: 0;
 }


 .presence h3{
  padding-bottom: 5px;
 }

 .presence h4{
  padding-bottom: 10px;
 }

 .presence h5{
  padding-bottom: 15px;
 }


 .reponfooter h1{
  font-size: xx-large;
 }


 .introres{
    padding-top: 10px;
  }


  hr{
    display: block;
  }


}










/* Styles only for tablets */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-cursor{
    display: none;
  }
}
