::-webkit-scrollbar {
    display: none;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000000;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 10rem 2rem 2rem 2rem; /* ✅ top padding keeps content below navbar */
}

/* Navigation bar */
.navbar {
    display: flex;
    justify-content: space-between; /* logo left, nav right */
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }



.logo img {
    height: 80px;
    width: auto;
}


    .navbar nav {
        flex: 1;                 /* take remaining space */
        display: flex;
        justify-content: flex-end; /* push new nav bar to right */
        min-width: 0;            /* allow shrinking */
      }


.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #000000;
    transition: 0.5s;
}

h2{
    font-size: 1.5rem;
}


/*Testing bellow, get the fuck out*/

       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .bodyForFooter {
            background: #000000;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }
        
        .container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;

        }
        
        .demo-notice {
            text-align: center;
            margin-bottom: 3rem;
            padding: 1rem;
            background: rgba(0, 0, 0);
            border-radius: 8px;
            max-width: 800px;
        }
        
        .demo-notice h1 {
            color: greenyellow;
            margin-bottom: 1rem;
        }
        
        .demo-notice p {
            line-height: 1.6;
            color: #e0e0e0;
        }
        
        /* Footer Section */
        .pk-footer {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
            border-radius: 16px;
            padding: 3rem 2rem;
            width: 100%;
            box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .pk-footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .pk-footer-brand {
            flex: 1;
            min-width: 250px;
        }
        /*orginal code for p
                    font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, greenyellow 0%, greenyellow 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            */
        #pk-footer-logo {
            display: block;
            margin: -1rem 0 1rem 0; /* logo stays left, adds spacing below */
            height: 5rem;
            width: auto;
            max-width: 300px;


        }
        
        .pk-slogan {
            font-size: 1.1rem;
            color: #b0bec5;
            margin-bottom: 1.5rem;
            line-height: 1.5;
            max-width: 300px;
        }
        
        .pk-social-section {
            margin-bottom: 2rem;
        }
        
        .pk-social-title {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: #e0e0e0;
            font-weight: 600;
        }
        
        .pk-social-links {
            display: flex;
            gap: 1rem;
        }
        
        .pk-social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .pk-social-link:hover {
            background: greenyellow;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px (0, 0, 0, 0.4);
        }
        
        .pk-footer-links {
            flex: 1;
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            min-width: 250px;
        }
        
        .pk-link-group {
            flex: 1;
            min-width: 150px;
        }
        
        .pk-link-title {
            font-size: 1.2rem;
            margin-bottom: 1.2rem;
            color: greenyellow;
            font-weight: 600;
        }
        
        .pk-link-list {
            list-style: none;
        }
        
        .pk-link-item {
            margin-bottom: 0.8rem;
        }
        
        .pk-link {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .pk-link:hover {
            color: greenyellow;
            transform: translateX(5px);
        }
        
        .pk-link i {
            margin-right: 8px;
            font-size: 0.9rem;
        }
        
        .pk-footer-bottom {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
        }
        
        .pk-copyright {
            color: #ffffff;
            font-size: 0.95rem;
        }
        
        .pk-legal {
            display: flex;
            gap: 1.5rem;
        }
        
        .pk-legal-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .pk-legal-link:hover {
            color: greenyellow;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .pk-footer-content {
                flex-direction: column;
            }
            
            .pk-footer-links {
                flex-direction: column;
            }
            
            .pk-footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .pk-legal {
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .pk-social-links {
                justify-content: center;
            }
            
            .pk-link-group {
                min-width: 100%;
            }
        }

        .sizeForLoading{
height: fit-content;
width: auto;
padding: 0%;
        }

        .cube-container {
            --uib-size: 45px;
            --uib-color: greenyellow; /* ✅ matches your theme green */
            --uib-speed: 1.75s;
          
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
          
            width: var(--uib-size);
            height: calc(var(--uib-size) * 0.6);
            margin: 2rem 0; /* adds spacing below Testing */
          }
          
          .cube {
            flex-shrink: 0;
            width: calc(var(--uib-size) * 0.2);
            height: calc(var(--uib-size) * 0.2);
            animation: jump var(--uib-speed) ease-in-out infinite;
          }
          
          .cube__inner {
            display: block;
            height: 100%;
            width: 100%;
            border-radius: 25%;
            background-color: var(--uib-color);
            transform-origin: center bottom;
            animation: morph var(--uib-speed) ease-in-out infinite;
            transition: background-color 0.3s ease;
          }
          
          .cube:nth-child(2) {
            animation-delay: calc(var(--uib-speed) * -0.36);
          }
          .cube:nth-child(2) .cube__inner {
            animation-delay: calc(var(--uib-speed) * -0.36);
          }
          
          .cube:nth-child(3) {
            animation-delay: calc(var(--uib-speed) * -0.2);
          }
          .cube:nth-child(3) .cube__inner {
            animation-delay: calc(var(--uib-speed) * -0.2);
          }
          
          @keyframes jump {
            0%, 30% { transform: translateY(0px); }
            50% { transform: translateY(-200%); }
            75%, 100% { transform: translateY(0px); }
          }
          
          @keyframes morph {
            0%, 10%, 40%, 70%, 85%, 100% { transform: scaleY(1); }
            20%, 25% { transform: scaleY(0.6) scaleX(1.3); }
            30% { transform: scaleY(1.15) scaleX(0.9); }
            75% { transform: scaleY(0.8) scaleX(1.2); }
          }
          

          /*For new header*/


          /* From Uiverse.io by gohar_7145 */ 
/* From Uiverse.io by gohar_7145 */ 
.outline {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .rect {
    stroke-dashoffset: 5;
    stroke-dasharray: 0 0 10 40 10 40;
    transition: 0.5s;
    stroke: yellowgreen;
  }
  
  .navNew {
    position: relative;
    width: 400px;
    height: 60px;
    border-radius: 40px;
  }
  
  .containerNew:hover .outline .rect {
    transition: 999999s;
    /* Must specify these values here as something *different* just so that the transition works properly */
    stroke-dashoffset: 1;
    stroke-dasharray: 0;
  }
  
  .containerNew {
    position: absolute;
    inset: 0;
    background: rgba(16, 16, 16, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 0.5em;
  }
  
  .btn {
    padding: 0.5em 1.5em;
    color: #fff;
    cursor: pointer;
    transition: 0.1s;
  }
  
  .btn:hover {
    background: yellowgreen;
    border-radius: 10px;
    color: #000000;

  }
  
  .btn:nth-child(1):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 2 8 73.3 8 10.7;
  }
  
  .btn:nth-child(2):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 12.6 9.5 49.3 9.5 31.6;
  }
  
  .btn:nth-child(3):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 24.5 8.5 27.5 8.5 55.5;
  }
  
  .btn:nth-child(4):hover ~ svg .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 34.7 6.9 10.2 6.9 76;
  }
  
  .btn:hover ~ .outline .rect {
    stroke-dashoffset: 0;
    stroke-dasharray: 0 0 10 40 10 40;
    transition: 0.5s !important;
  }
  
  
