.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: #A855F7;
}

.glowing-text {
  color: #0066ff;
  text-shadow: 0 0 5px #0066ff, 0 0 10px #0066ff, 0 0 15px #0066ff;
  font-size: 20px;
}


@keyframes pulse-glow {
  0% {
    text-shadow: 0 0 5px #0066ff, 0 0 10px #0066ff;
  }
  50% {
    text-shadow: 0 0 15px #0066ff, 0 0 30px #0066ff;
  }
  100% {
    text-shadow: 0 0 5px #0066ff, 0 0 10px #0066ff;
  }
}

.glowing-text {
  color: #0066ff;
  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;
}


@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) !important;
  cursor: pointer !important;
}


@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: #A855F7;
}


.link{
    color: #B3B3B3;
    font-size: 17px;
    padding: 5px 12px;
    transition: ease-in-out 0.5s color;
}

.link:hover{
  color: #A855F7;
}





.project img{
  border-left: #6d00b1 solid 4px;
  border-right: #6d00b1 solid 4px;
  border-radius: 50px;
}






a {
  text-decoration: none;
}

.main__scroll-text {
  color: rgba(28,28,30,1);
}

.main__action:hover .main__scroll-box {
  animation: scroll-down 3s infinite;
}

@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;
}

.scrolll.show {
  animation-name: slideUp;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
}

.scrolll.hide {
  animation-name: slideDownFadeOut;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
}
















@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;
    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;
}



.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;
  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{
  background-color: #33333333;
  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.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);
}

@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;
  }

  .emailform-responsive{
    max-width: 320px !important;
    width: 100% !important;
    height: auto !important;
    padding: 15px !important;
  }

  .emailform-responsive .w-145{
    width: 100% !important;
    max-width: 280px !important;
  }

  .emailform-responsive h1{
    font-size: 18px !important;
  }

  .emailform-responsive .py-11{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .emailform-responsive .px-10{
    padding-left: 15px !important;
    padding-right: 15px !important;
  }



  .aboutres{
    max-width: 300px;
  }

  .aboutres h2{
    font-size: 23px;
  }

  .store-boxes-container{
    flex-direction: column;
  }

  .store-box{
    max-width: 100%;
    width: 100%;
  }












 .reponfooter h1{
  font-size: xx-large;
 }


 .introres{
    padding-top: 10px;
  }


}










::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #A855F7;
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-button:single-button {
  display: none;
  height: 0;
  width: 0;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .custom-cursor{
    display: none;
  }
}

* {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

img {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
}

.zetr img {
  pointer-events: auto !important;
}

body {
  -webkit-context-menu: none !important;
  -moz-context-menu: none !important;
  -ms-context-menu: none !important;
  context-menu: none !important;
}

body {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

::selection {
  background: transparent !important;
}

::-moz-selection {
  background: transparent !important;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  background: transparent;
}