@font-face {
  font-family: 'DigitalCardsDemo';
  src: url('../fonts/DigitalCardsDemo.woff2') format('woff2'),
       url('../fonts/DigitalCardsDemo.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.hover1 {
  position: absolute;
  top: 100px;
  left: 35px;
  height: 20px;
  width: 100px;
  z-index: 99999999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: Menlo,Roboto Mono,monospace;
  font-size: 12px;


}

.hoverText {
  display: flex;
  justify-content: center;
  align-content: center;
  color: white;
}

.hover2 {
  position: absolute;
  top: 220px;
  left: 35px;
  height: 20px;
  width: 100px;
  z-index: 99999999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: Menlo,Roboto Mono,monospace;
  font-size: 12px;

}

.hoverText2 {
  display: flex;
  justify-content: center;
  align-content: center;
  color: white;
}

.hover3 {
  position: absolute;
  top: 330px;
  left: 35px;
  height: 20px;
  width: 100px;
  z-index: 99999999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: Menlo,Roboto Mono,monospace;
  font-size: 12px;

}

.hoverText3 {
  display: flex;
  justify-content: center;
  align-content: center;
  color: white;
}

.hover4 {
  position: absolute;
  top: 450px;
  left: 35px;
  height: 20px;
  width: 100px;
  z-index: 99999999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: Menlo,Roboto Mono,monospace;
  font-size: 12px;

}

.hoverText4 {
  display: flex;
  justify-content: center;
  align-content: center;
  color: white;
}

.hover5 {
  position: absolute;
  top: 470px;
  left: 35px;
  height: 20px;
  width: 100px;
  z-index: 99999999;
  display: none;
  justify-content: center;
  align-items: center;
  font-family: Menlo,Roboto Mono,monospace;
  font-size: 12px;

}

.hoverText5 {
  display: flex;
  justify-content: center;
  align-content: center;
  color: white;
}

.display {
  display:flex;
}

.arrow-menu {
  position: fixed;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1000;
  transition: left 0.3s ease;
}

.arrow-menu svg {
  transition: transform 0.3s ease;
}

.menu {
  position: fixed;
  top: 50%;
  left: -200px; /* Hidden offscreen */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 999;
  background: rgba(0, 0, 0, 0.79);
  padding: 20px 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: left 0.3s ease;
}

.menu.open {
  left: 40px;
}

.arrow-menu.open {
  left: 120px;
}

.arrow-menu.flipped svg {
  transform: rotate(180deg);
}


.menu-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 65px;


}

.menu-items svg {
  cursor: pointer;
  transition: transform 0.5s ease, fill 0.3s ease;
  fill: #ffffff; /* default color */
}

.menu-items svg:hover {
  transform: scale(1.2);
}


.loading-bar {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  background: black; /* Set background to black */
  border-radius: 50%;
  text-align: center;
  line-height: 111px;
  font-family: sans-serif;
  font-size: 15px;
  color:rgb(90, 155, 228);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 0 20px #fff000;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 99999; /* Ensure it stays on top */
}

.loading-bar:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 5px solid rgb(90, 155, 228);
  border-right: 5px solid rgb(90, 155, 228);
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

@keyframes animateC {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999999;
}


html, body {
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y:hidden;
}

html, body {
  touch-action: manipulation;
}


.arrow {
    position: absolute;
    top: 10px;
    left: 10px; 
}

.arrow > svg {
    fill: #000; 
    transition: fill 0.3s ease; 
}

.arrow > svg:hover {
    fill: rgb(33, 109, 250); 
}

html, body {
    touch-action: manipulation;
}


.ui-btn3{
    position: absolute;
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    font-family: 'DigitalCardsDemo';
    font-size: 11px;
    color: #fff;
    text-align: center;
    --btn-letter-spacing: .1rem;
    --btn-transition: .3s;
    --btn-animation-duration: 1.2s;
    --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
    --hover-btn-color:rgb(33, 109, 250);
    --default-btn-color: #fff;
    box-sizing: border-box;
    padding: var(--btn-padding);
    align-items: center;
    justify-content: center;
    color: var(--default-btn-color);
    background: var(--btn-default-bg);
    border: none;
    cursor: pointer;
    transition: var(--btn-transition);
    overflow: hidden;
    box-shadow: var(--btn-shadow);
}

.ui-btn2 {
    position: absolute;
    top: 0; /* Keeps it at the top */
    left: 50%; /* Centers it horizontally */
    transform: translateX(-50%); /* Adjusts the element to perfectly center it */
    font-family: 'DigitalCardsDemo';
    font-size: 40px;
    text-align: center;
    --btn-letter-spacing: .1rem;
    --btn-transition: .3s;
    --btn-animation-duration: 1.2s;
    --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
    --hover-btn-color:rgb(33, 109, 250);
    --default-btn-color: #fff;
    box-sizing: border-box;
    padding: var(--btn-padding);
    align-items: center;
    justify-content: center;
    color: var(--default-btn-color);
    background: var(--btn-default-bg);
    border: none;
    cursor: pointer;
    transition: var(--btn-transition);
    overflow: hidden;
    box-shadow: var(--btn-shadow);
}


.ui-btn {
    position: absolute;
    top: 87%;
    left: 50%;
    transform: translateX(-50%); /* Centers horizontally */
    --btn-padding: 15px 20px;
    --btn-transition: .3s;
    --btn-letter-spacing: .1rem;
    --btn-animation-duration: 1.2s;
    --btn-shadow: 0 2px 10px 0 var(--btn-shadow-color);
    --hover-btn-color:rgb(33, 109, 250);
    --default-btn-color: #fff;
    --font-size: 12px;
    --font-weight: 100;
    --font-family: Menlo,Roboto Mono,monospace;
}

  
  .ui-btn {
    box-sizing: border-box;
    padding: var(--btn-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-btn-color);
    font: var(--font-weight) var(--font-size) var(--font-family);
    background: var(--btn-default-bg);
    border: none;
    cursor: pointer;
    transition: var(--btn-transition);
    overflow: hidden;
    box-shadow: var(--btn-shadow);
  }
  
  .ui-btn span {
    letter-spacing: var(--btn-letter-spacing);
    transition: var(--btn-transition);
    box-sizing: border-box;
    position: relative;
    background: inherit;
  }

  .ui-btn2 span {
    transition: var(--btn-transition);
    box-sizing: border-box;
    background: inherit;
  }

  .ui-btn3 span {
    transition: var(--btn-transition);
    box-sizing: border-box;
    background: inherit;
  }
  
  .ui-btn span::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    background: inherit;
  }

  .ui-btn2 span::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    background: inherit;
  }

  .ui-btn3 span::before {
    box-sizing: border-box;
    position: absolute;
    content: "";
    background: inherit;
  }

  

  .ui-btn2:hover, .ui-btn2:focus {
    background: var(--btn-hover-bg);
  }

  .ui-btn3:hover, .ui-btn3:focus {
    background: var(--btn-hover-bg);
  }
  
  .ui-btn:hover, .ui-btn:focus {
    background: var(--btn-hover-bg);
  }

  .ui-btn2:hover span, .ui-btn2:focus span {
    color: var(--hover-btn-color);
  }

  .ui-btn3:hover span, .ui-btn3:focus span {
    color: var(--hover-btn-color);
  }
  
  .ui-btn:hover span, .ui-btn:focus span {
    color: var(--hover-btn-color);
  }

  .ui-btn2:hover span::before, .ui-btn2:focus span::before {
    animation: chitchat linear both var(--btn-animation-duration);
  }

  .ui-btn3:hover span::before, .ui-btn3:focus span::before {
    animation: chitchat linear both var(--btn-animation-duration);
  }

  
  .ui-btn:hover span::before, .ui-btn:focus span::before {
    animation: chitchat linear both var(--btn-animation-duration);
  }
  
  @keyframes chitchat {
    0% {
      content: "#";
    }
  
    5% {
      content: ".";
    }
  
    10% {
      content: "^{";
    }
  
    15% {
      content: "-!";
    }
  
    20% {
      content: "#$_";
    }
  
    25% {
      content: "№:0";
    }
  
    30% {
      content: "#4{+.";
    }
  
    35% {
      content: "@}-?";
    }
  
    40% {
      content: "?{4@%";
    }
  
    45% {
      content: "=.,^!";
    }
  
    50% {
      content: "?2@%";
    }
  
    55% {
      content: "\;1}]";
    }
  
    60% {
      content: "?{%:%";
      right: 0;
    }
  
    65% {
      content: "|{f[4";
      right: 0;
    }
  
    70% {
      content: "{4%0%";
      right: 0;
    }
  
    75% {
      content: "'1_0<";
      right: 0;
    }
  
    80% {
      content: "{0%";
      right: 0;
    }
  
    85% {
      content: "]>'";
      right: 0;
    }
  
    90% {
      content: "4";
      right: 0;
    }
  
    95% {
      content: "2";
      right: 0;
    }
  
    100% {
      content: "";
      right: 0;
    }
  }
  
  :root {
  --size: 20px;
  --thickness: 2px;
  --angle: 40deg;
  --angle-hover: 30deg;
  --angle-active: 25deg;
  --arrow-color: #fff;
}



button {
  all: unset;
  cursor: pointer;
}

.paginate {
  position: absolute;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 2px 0px rgba(0,0,0,0.2));
  transition: transform 0.15s ease;
}

.paginate i {
  position: absolute;
  width: var(--size);
  height: var(--thickness);
  border-radius: calc(var(--thickness) / 2);
  background: var(--arrow-color);
  transition: all 0.15s ease;
}


/* Left Arrow */
.paginate.left {
  right: 53%;
  top: 80%;
}

.paginate.left i:first-child {
  transform: rotate(var(--angle)) translate(0, -1px);
  transform-origin: 0% 50%;
}

.paginate.left i:last-child {
  transform: rotate(calc(var(--angle) * -1)) translate(0, 1px);
  transform-origin: 0% 50%;
}

.paginate.left:hover i:first-child {
  transform: rotate(var(--angle-hover)) translate(0, -1px);
}

.paginate.left:hover i:last-child {
  transform: rotate(calc(var(--angle-hover) * -1)) translate(0, 1px);
}

.paginate.left:active i:first-child {
  transform: rotate(var(--angle-active)) translate(1px, -1px);
}

.paginate.left:active i:last-child {
  transform: rotate(calc(var(--angle-active) * -1)) translate(1px, 1px);
}

/* Right Arrow */
.paginate.right {
  left: 53%;
  top: 80%;
}

.paginate.right i:first-child {
  transform: rotate(var(--angle)) translate(0, 1px);
  transform-origin: 100% 50%;
}

.paginate.right i:last-child {
  transform: rotate(calc(var(--angle) * -1)) translate(0, -1px);
  transform-origin: 100% 50%;
}

.paginate.right:hover i:first-child {
  transform: rotate(var(--angle-hover)) translate(0, 1px);
}

.paginate.right:hover i:last-child {
  transform: rotate(calc(var(--angle-hover) * -1)) translate(0, -1px);
}

.paginate.right:active i:first-child {
  transform: rotate(var(--angle-active)) translate(1px, 1px);
}

.paginate.right:active i:last-child {
  transform: rotate(calc(var(--angle-active) * -1)) translate(1px, -1px);
}

/* Disabled State */
.paginate[data-state="disabled"] {
  opacity: 0.3;
  cursor: default;
}

.paginate[data-state="disabled"] i {
  transform: rotate(0deg) translate(5px, 0);
}

.paginate[data-state="disabled"]:hover i {
  transform: rotate(0deg) translate(5px, 0);
}

/* Counter */
.counter {
  text-align: center;
  position: absolute;
  width: 100%;
  top: 80%;
  font-size: 15px;
  font-family: Helvetica, sans-serif;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.testimonial-container {
    max-width: 600px;
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
    font-family: 'Roboto Mono', monospace;

  }
  
  .testimonial-profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4476b0;
  }
  
  .testimonial-name {
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;

  }
  
  .testimonial-text {
    font-size: 1em;
    color: #666;
    font-style: italic;

  }
  
  footer {
    position: absolute;
    bottom: 5px;
    width: 100%;
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 7px;
    color: white;
    margin: 0;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  footer ul li {
    display: inline;
  }
  
  footer ul li a {
    font-family: 'Roboto Mono', monospace;
    color: white;
    text-decoration: none;
    font-size: 7px;
  }
  
  footer ul li a:hover {
    text-decoration: underline;
  }
  
  #footerDiv {
    margin-top: 5px;
    margin-bottom: 0px;
    font-size: 7px;
    color: white;
  }
  
  /* Modal Background */
  .modal {
    font-family: 'Roboto Mono', monospace;
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
  }
  
  /* Modal Content */
  .modal-content {
    font-family: 'Roboto Mono', monospace;
    background: rgba(234, 234, 234, 0.9); /* Slight transparency */
    width: 50%;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 16px;
  }
  
  .close {
    color: black;
    float: right;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close:hover {
    color: red;
  }
  
  #socialWheel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
    opacity: 0;
  }
  
  #socialWheel.active {
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
    opacity: 1;
  }
  
  #socialWheel.inactive {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  #socialWheel.active .icon {
    opacity: 1;
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    transition-delay: calc(var(--i) * 0.07s);
  }
  
  
  #socialWheel.inactive .icon {
    opacity: 0;
    transform: rotate(calc(var(--i) * 40deg)) translate(0px) rotate(calc(var(--i) * -40deg));
    transition: transform 0.4s ease-in-out, opacity 0.3s ease-in-out;
    transition-delay: calc((5 - var(--i)) * 0.07s); /* Reverse Order */
  }
  
  .icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transform: rotate(calc(var(--i) * 40deg)) translate(100px) rotate(calc(var(--i) * -40deg));
    opacity: 0;
  }
  
  .icon:hover {
    transform: rotate(calc(var(--i) * 40deg)) translate(110px) rotate(calc(var(--i) * -40deg)) !important;
    background: #4476b0;
    transition: transform 0.2s ease-in-out, background 0.2s ease-in-out !important;
  }
  
  .icon img {
    width: 60%;
    height: 60%;
    transition: transform 0.2s ease-in-out;
  }
  
  .icon:hover img {
    transform: scale(1.1);
  }
  
  /* 🔥 Center Button Click Effect */
  .icon.center {
    transform: none;
    width: 60px;
    height: 60px;
    background: #fff;
    transition: transform 0.2s ease-in-out;
  }
  
  .icon.center:active {
    transform: scale(0.9);
  }



@media (max-width: 600px) {



    .paginate.right {
        left: 60%;
        top: 82%;
      }


      .paginate.left {
        right: 60%;
        top: 82%;
      }

      .counter {
        top: 82%;

      }

      .ui-btn2 {
        font-size: 25px;
        top: 2px;
      }

      .ui-btn3 {
        font-size: 6px;
        top: 5px;
      }

    
      
    #footerDiv {
        font-size: 6px;
    }

    .menu.open {
      left: 20px;
    }
    
    .arrow-menu.open {
      left: 100px;
    }

    .arrow-menu {
      left: 0px;
      
     
    }

    .modal-content {
      background: rgba(234, 234, 234, 0.9); /* Slight transparency */
      width: 80%;
      font-size: 12px;
    }



}