*{
    border: 0;
    font-family: 'Raleway';
    color: white;
    cursor: none;

    user-select: none; /* Disable selection on modern browsers */
    -webkit-user-select: none; /* For Safari */
    -moz-user-select: none; /* For Firefox */
    -ms-user-select: none; /* For IE */
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
}


input:-webkit-autofill,
textarea:-webkit-autofill {
  background-color: transparent !important; /* Transparent to blend with the default background */
  color: white !important; /* Ensure text remains visible */
 
  transition: background-color 5000s ease-in-out 0s; /* Prevent default browser style */
  -webkit-text-fill-color: white !important; /* Ensures the text color inside autofill is applied */
}


body{
    overflow-x: hidden;
    
}

.leifa{
    font-family: "Leifa";
}

.cursor {
    color: #f2f4f7;
    animation: blink 1s linear infinite;
  }

  .cursor-black {
    color: #000000;
    animation: blink 1s linear infinite;
  }

  @keyframes blink {
    0% {
      opacity: 100%;
    }
    50% {
      opacity: 0%;
    }
  }

  /* Style for the scrollbar */
::-webkit-scrollbar {
    width: 12px;  /* Width of the vertical scrollbar */
    height: 12px; /* Height of the horizontal scrollbar */
}

/* Style for the track (background) of the scrollbar */
::-webkit-scrollbar-track {
    background: #000000;  /* Light background color */
    border-radius: 10px;
}

/* Style for the thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #888;  /* Grey color */
    border-radius: 10px;
}

/* Style for the thumb when hovered */
::-webkit-scrollbar-thumb:hover {
    background: #555;  /* Darker color when hovered */
}

/* Optional: Style for the scrollbar corner */
::-webkit-scrollbar-corner {
    background: transparent;
}


.overlay {
    position: absolute; /* Keeps it positioned relative to the nearest positioned ancestor */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; /* Ensures the overlay is above other content */
    clip-path: circle(
      15px at var(--x, 50%) var(--y, 50%)
    ); /* Custom animation for clipping */
    transition: clip-path 0.1s ease;
    pointer-events: none; /* Prevents blocking mouse events */
  }

  .overlay.active {
    clip-path: circle(80px at var(--x, 50%) var(--y, 50%));

  }

.border-opacity-20 {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .border-opacity-black-20 {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

    /* Animation for content reveal */
    .hidden-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease, opacity 0.3s ease;
      }
      .visible-content {
        max-height: 1000px; /* Adjust this as needed */
        opacity: 1;
      }

      .mob{
        display: none;
      }

      .noOverlay{
        display: none;
      }

      .mob.active{
        display: block;
      }


      .wave-group {
        position: relative;
      }
      
      .wave-group .input {
        font-size: 16px;
        padding: 10px 5px 10px 5px;
        display: block;
        width: 200px;
        border: none;
        border-bottom: 1px solid #515151;
        background: transparent;
      }
      
      
      .wave-group .input:focus {
        outline: none;
      }
      
      .wave-group .label {
        color: #999;
        font-size: 18px;
        font-weight: normal;
        position: absolute;
        pointer-events: none;
        left: 5px;
        top: -3px;
        display: flex;
      }
      
      .wave-group .label-char {
        transition: 0.2s ease all;
        transition-delay: calc(var(--index) * .05s);
      }
      
      .wave-group .input:focus ~ label .label-char,
      .wave-group .input:valid ~ label .label-char {
        transform: translateY(-20px);
        font-size: 14px;
        color: #e0e6ff;
      }
      
      .wave-group .bar {
        position: relative;
        display: block;
        width: 200px;
      }
      
      .wave-group .bar:before,.wave-group .bar:after {
        content: '';
        height: 2px;
        width: 0;
        bottom: 1px;
        position: absolute;
        background: #e0e6ff;
        transition: 0.2s ease all;
        -moz-transition: 0.2s ease all;
        -webkit-transition: 0.2s ease all;
      }
      
      .wave-group .bar:before {
        left: 50%;
      }
      
      .wave-group .bar:after {
        right: 50%;
      }
      
      .wave-group .input:focus ~ .bar:before,
      .wave-group .input:focus ~ .bar:after {
        width: 50%;
      }
      
    


      .outer {
        width: 300px;
        height: 400px;
        border-radius: 10px;
        padding: 1px;
        
        position: relative;
      }
      
      .dot {
        width: 3px;
        aspect-ratio: 1;
        position: absolute;
        background-color: #fff;
        box-shadow: 0 0 10px #ffffff;
        border-radius: 100px;
        z-index: 2;
        right: 10%;
        top: 10%;
        animation: moveDot 6s linear infinite;
      }

      .dot-black {
        width: 3px;
        aspect-ratio: 1;
        position: absolute;
        background-color: #000000;
        box-shadow: 0 0 10px #060000;
        border-radius: 100px;
        z-index: 2;
        right: 10%;
        top: 10%;
        animation: moveDot 6s linear infinite;
      }
      
      
      @keyframes moveDot {
        0%,
        100% {
          top: 1%;
          right: 1%;
        }
        25% {
          top: 1%;
          right: calc(99%);
        }
        50% {
          top: calc(99%);
          right: calc(98% );
        }
        75% {
          top: calc(99%);
          right: 0%;
        }
      }
      
      .card {
        z-index: 1;
        width: 100%;
        height: 100%;
        border-radius: 9px;
        
        background-size: 20px 20px;
        background: radial-gradient(circle 280px at 0% 0%, #1e1e1e, #0B0B0B);
        display: flex;
        align-items: start;
        justify-content: start;
        position: relative;
        flex-direction: column;

      }
  
      .card-black {
        z-index: 1;
        width: 100%;
        height: 100%;
        border-radius: 9px;
        
        background-size: 20px 20px;
        background: radial-gradient(circle 280px at 0% 0%, #ebe8e8, #E7F9FF);
        display: flex;
        align-items: start;
        justify-content: start;
        position: relative;
        flex-direction: column;

      }





      .nav-optn-black, .nav-optn-white {
   
        position: relative;
        border: 2px solid transparent;
        transition: border-color 0.3s ease;
      }
  
      .nav-optn-black::after, .nav-optn-white::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        transition: width 0.3s ease;
      }
  
      /* Underline color based on data-index */
      .nav-optn-black::after{
        background-color: wheat;
      }
  
       .nav-optn-white::after {
        background-color: black;
      }
  
      /* Underline active on mouseenter */
      .nav-optn-black.hover::after, .nav-optn-white.hover::after {
        width: 100%;
        left: 0;
      }
  
  
      
      /* Styles for the notification popup */
      .notification-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 100000;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .notification {
        display: none;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        animation: fade-in-out 3s forwards;
      }

      .notification.success {
        background-color: #d1e7dd;
        color: #0f5132;
        border: 1px solid #badbcc;
      }

      .notification.error {
        background-color: #f8d7da;
        color: #842029;
        border: 1px solid #f5c2c7;
      }



      .notify {
        position: fixed;
        bottom: 20px;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background-color: #d1e7dd;
        color: #0f5132;
        border: 1px solid #badbcc;
        display: none;
        opacity: 0;
        animation: fade-in-out 3s forwards;
      }
  
      .notify.error {
        background-color: #f8d7da;
        color: #842029;
        border: 1px solid #f5c2c7;
      }


      @keyframes fade-in-out {
        0% {
          opacity: 0;
          transform: translateY(20px);
        }
        10%,
        90% {
          opacity: 1;
          transform: translateY(0);
        }
        100% {
          opacity: 0;
          transform: translateY(20px);
        }
      }


      .hide-scrollbar {
        scrollbar-width: none; /* For Firefox */
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
      }
      
      .hide-scrollbar::-webkit-scrollbar {
        display: none; /* For Chrome, Safari, and Edge */
      }

      .tooltip {
        position: absolute;
        top: -150%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgb(216, 228, 214);
        color: rgb(0, 0, 0);
        padding: 8px 12px;
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.6s, transform 0.6s;
        z-index: 99999;
    }

        /* Only enable hover effects for devices that support hover */
    @media (hover: hover) and (pointer: fine) {
      .info:hover .tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(50px);
      }
  }



  .button {
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    background-image: black;
    color: white;
    border: solid 2px white;
    height: 50px;
    padding: 0px 20px;
    border-radius: 5px;
    font-weight: 600;
    transform: scale(0.89);
    position: relative;
  }
  .button:not(:hover) .hide,
  .button:not(:hover) .icon::before,
  .button:not(:hover) .icon::after {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.4);
  }
  .hide {
    transition: all 0.2s ease;
  }

  .icon {
    position: relative;
  }
  .icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    background-color:  rgba(16, 185, 129);
    border-radius: 100%;
  }
  .icon::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(79%, -60%);
    width: 100px;
    height: 33px;
    background-color: transparent;
    border-radius: 12px 22px 2px 2px;
    border-left: solid 2px  rgba(16, 185, 129);
    border-top: solid 2px transparent;
  }
  .icon .text-icon {
    color:  rgba(16, 185, 129);
    position: absolute;
    font-size: 12px;
    left:10px;
    top: -38px;
  }
  .icon svg {
    width: 20px;
    height: 20px;
    border: solid 2px transparent;
    display: flex;
  }
  .button:hover .icon svg {
    border: solid 2px rgba(16, 185, 129, 0.692);
  }
  .padding-left {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color:  rgba(16, 185, 129);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .padding-left:before {
    content: "";
    width: 2px;
    height: 10px;
    background-color:  rgba(16, 185, 129);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .padding-left:after {
    content: "";
    width: 2px;
    height: 10px;
    background-color:  rgba(16, 185, 129);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .padding-left-line {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color:  rgba(16, 185, 129);
    left: -24px;
    top: 11px;
    transform: rotate(-50deg);
  }
  .padding-left-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    background-color:  rgba(16, 185, 129);
    border-radius: 100%;
  }
  .padding-left-text {
    color:  rgba(16, 185, 129);
    font-size: 12px;
    position: absolute;
    white-space: nowrap;
    transform: rotate(50deg);
    bottom: 20px;
    left: -67px;
  }
  
  .padding-right {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color:  rgba(16, 185, 129);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .padding-right:before {
    content: "";
    width: 2px;
    height: 10px;
    background-color:  rgba(16, 185, 129);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .padding-right:after {
    content: "";
    width: 2px;
    height: 10px;
    background-color:  rgba(16, 185, 129);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .padding-right-line {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color:  rgba(16, 185, 129);
    right: -24px;
    top: 11px;
    transform: rotate(50deg);
  }
  .padding-right-line::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    width: 6px;
    height: 6px;
    transform: translate(-50%, -50%);
    background-color:  rgba(16, 185, 129);
    border-radius: 100%;
  }
  .padding-right-text {
    color:  rgba(16, 185, 129);
    font-size: 12px;
    position: absolute;
    white-space: nowrap;
    transform: rotate(-50deg);
    bottom: 14px;
    left: 30px;
  }
  .background {
    position: absolute;
  }
  .background::before {
    content: "";
    position: absolute;
    right: -71px;
    bottom: -70px;
    width: 100px;
    height: 53px;
    background-color: transparent;
    border-radius: 0px 0px 22px 22px;
    border-left: solid 2px  rgba(16, 185, 129);
    border-bottom: solid 2px transparent;
  }
  .background::after {
    content: "";
    position: absolute;
    right: 25px;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background-color:  rgba(16, 185, 129);
    border-radius: 100%;
  }
  .background-text {
    position: absolute;
    color:  rgba(16, 185, 129);
    font-size: 12px;
    bottom: -74px;
    left: -15px;
  }
  .border {
    position: absolute;
    right: 0;
    top: 0;
  }
  .border:before {
    content: "";
    width: 15px;
    height: 15px;
    border: solid 2px  rgba(16, 185, 129);
    position: absolute;
    right: 0%;
    top: 0;
    transform: translate(50%, -50%);
    border-radius: 100%;
  }
  .border:after {
    content: "";
    width: 2px;
    height: 25px;
    background-color:  rgba(16, 185, 129);
    position: absolute;
    right: -10px;
    top: -15px;
    transform: translate(50%, -50%) rotate(60deg);
  }
  .border .border-text {
    position: absolute;
    color:  rgba(16, 185, 129);
    font-size: 12px;
    right: -112px;
    top: -30px;
    white-space: nowrap;
  }
  




 