@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&display=swap');
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', sans-serif;
    color: white;
    width:100%;
     overflow: auto; /* enables scrolling */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  
     /* Fixed typo: 'background-colour' → 'background-color' and added '#' */
    margin: 0;
    padding: 0;
     padding-left: 20px;
}
body::-webkit-scrollbar {
  display: none;             /* Chrome, Safari, Opera */
}


.bg-img {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('space.jpg') center no-repeat; /* Fixed url syntax and ordering */
    background-size: cover;
    animation: scaling 60s linear infinite;
    /* Optional: keeps background behind other elements */
}
@keyframes scaling {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(2);
    }
    100% {
        transform: scale(1);
    }
}

.bg-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
}
#main-content {
  display: none;
}

#toggle:checked ~ #main-content {
  display: block;
}


a {
    text-decoration: none;
    color: white;
}

ol {
    list-style-type: none;
    display: flex;
    
}


.container {
    position: relative;
  height: 100vh;
   

    
 
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;


.container::-webkit-scrollbar {
  display: none;
}
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     
    padding: 50px 0;
}

header>a {
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

header ol li {
    font-weight: 600;
    padding: 0 20px;
    opacity: 0;
}

header ol li:first-child {
    opacity: 1;
}

h1 {
    font-size: 54px;
}

main {
    padding-top: 5%;
    
}

main>p {
    max-width: 50%;
    opacity: 0.80;
    font-size: 13px;
}

.d-flex {
    display: flex;

    margin-top: 20px;
    margin-bottom: 50px;
}

.d-flex a {
    margin-right: 50px;
    display: flex;
    font-size: 14px;
    align-items: center;
    text-transform: uppercase;
}

.d-flex a span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 5px;
}

.d-flex a:first-child span {
   
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.d-flex a:last-child span {
    height: 20px;
    width: 20px;
    font-size: 7px;
   
   
}
.content {
  padding: 20px;

  max-width: 900px;
  margin: 50px auto;

    

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: white;
}
.content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}
.content p {
  font-size: 18px;
  line-height: 1.7;
}
.projects-section {
  text-align: center;
  margin-top: 40px;
}

.center-heading {
  font-size: 36px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.center-subtext {
  font-size: 18px;
  color: white;
    margin-bottom: 100px;
}

/* From Uiverse.io by marcelodolza */ 
.wrap {
  --radius: 30px;
  --bg: #2c3238;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  pointer-events: none;
}

.wrap::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 300px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0);
  filter: blur(0px);
  transform: skewY(-20deg);
}

.wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0);
  filter: blur(0px);
}

.wrap input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 999;
  cursor: pointer;
  pointer-events: all;
  user-select: none;
}

.button {
  position: relative;
  overflow: hidden;
  width: 154px;
  height: 150px;
  background-color: var(--bg);
  z-index: 2;
  border: transparent;
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 1px rgb(255 255 255 / 40%),
    inset 0 -6px 1px -4px #0084ff,
    inset 0 -15px 6px -8px #003cff;
  transition: all 0.3s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--radius) * 0.8);
  border-top: 50px solid #414244;
  border-left: 40px solid #2b2b2c;
  border-right: 40px solid #2b2b2c;
  border-bottom: 50px solid #15161a;
  filter: blur(6px);
  transition: all 0.5s ease;
}

.button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 101%;
  height: 50px;
  width: 120px;
  border-radius: 50px 50px 0 0;
  background: #009cff;
  filter: contrast(10) blur(7px);
  transition: all 0.3s ease;
  opacity: 1;
}

.button .corner {
  transition: all 0.4s ease;
  opacity: 0.1;
}
.button .corner::before,
.button .corner::after {
  content: "";
  position: absolute;
  top: 0;
  border-top: 55px solid white;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  filter: blur(6px);
}
.button .corner::before {
  left: 8px;
  transform: rotate(-40deg);
}
.button .corner::after {
  right: 8px;
  transform: rotate(40deg);
}

.wrap input:hover + .button .corner {
  opacity: 0.15;
}

.button .inner {
  z-index: 9;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 22px 20px;
  border-radius: calc(var(--radius) * 0.85);
  background: linear-gradient(180deg, #232324 5%, #46484b 100%);
  transition: all 0.3s ease;
  box-shadow:
    inset 0 -5px 15px -1px rgba(0, 0, 0, 0.3),
    inset 0 -4px 3px -3px black,
    inset 0 -10px 20px -8px rgb(255 255 255 / 40%),
    inset 0 1px 0 1px rgb(255 255 255 / 20%);
}
.button .inner svg {
  display: block;
  overflow: visible;
  height: 45%;
}
.button .inner svg .symbol {
  fill: #212123;
}
.button .inner svg .symbol-path {
  filter: brightness(1.1) contrast(1.1);
}
.button .inner svg .symbol-path path {
  stroke-dasharray: 650;
  stroke-dashoffset: -650;
  stroke-width: 5;
  stroke: #3c69ff;
  animation: symbolPath 2s ease-in-out;
}
.button .inner svg .symbol-path-glow path {
  stroke-dasharray: 650;
  stroke-dashoffset: -650;
  stroke-width: 30;
  stroke: #0231ce;
  filter: blur(30px);
  animation: symbolPath 2s ease-in-out;
}
.button .inner svg .symbol-path circle {
  fill: #3c69ff;
  opacity: 0;
  animation: symbolCircle 2s ease-in-out;
}
.button .inner svg .symbol-path-glow circle {
  fill: #0231ce;
  filter: blur(30px);
  opacity: 0;
  animation: symbolCircle 2s ease-in-out;
}

.bg {
  background-color: transparent;
  position: absolute;
  inset: -7px;

  box-shadow: 0 20px 10px -10px rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1;
}


.led {
  position: absolute;
  z-index: 10;
  top: 100%;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-top: 22px;
  transition: all 0.3s ease;
  background-color: #3aeaf3;
  box-shadow:
    0 -10px 35px 17px #003cff,
    inset 0 1px 2px 0px rgba(255, 255, 255, 0.6),
    0 0 0px 3px rgb(0 0 0 / 60%),
    0 0 2px 4px rgb(0 79 152 / 80%);
}

.noise {
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 0;
  right: 0;
  opacity: 0;
  mask-image: linear-gradient(
    transparent 100%,
    white 30%,
    white 70%,
    transparent 100%
  );
  filter: grayscale(1);
}

/** STATES */

.wrap input:active + .button .inner svg .symbol-path path,
.wrap input:active + .button .inner svg .symbol-path-glow path,
.wrap input:active + .button .inner svg .symbol-path circle,
.wrap input:active + .button .inner svg .symbol-path-glow circle,
.wrap input:active + .button ~ .bg .shine-1 {
  animation: none;
}
.wrap input:checked + .button .inner svg .symbol-path path,
.wrap input:checked + .button .inner svg .symbol-path-glow path {
  animation: symbolPath2 2s ease-in-out reverse;
}
.wrap input:checked + .button .inner svg .symbol-path path {
  stroke: #b48518;
}
.wrap input:checked + .button .inner svg .symbol-path-glow path {
  stroke: #714b00;
}
.wrap input:checked + .button .inner svg .symbol-path circle {
  fill: #b48518;
}
.wrap input:checked + .button .inner svg .symbol-path-glow circle {
  fill: #714b00;
}
.wrap input:hover + .button {
  transform: scale(1.02);
}
.wrap input:active + .button {
  transform: scale(0.97);
  filter: contrast(1.07);
  background-color: transparent;
}
.wrap input:active + .button::before {
  box-shadow: 0 -10px 10px 10px black;
}
.wrap input:active + .button .inner {
  background: linear-gradient(180deg, #232324 5%, #3b3d40 100%);
  box-shadow:
    inset 0 -5px 15px -1px rgba(0, 0, 0, 0.3),
    inset 0 -4px 3px -3px black,
    inset 0 -10px 20px -8px rgb(255 255 255 / 20%),
    inset 0 1px 0 1px rgb(255 255 255 / 10%);
  transform: scale(0.95);
}
.wrap input:checked + .button ~ .bg .shine-1 {
  background-color: rgba(255, 187, 0, 0.7);
}
.wrap input:not(:checked):hover + .button ~ .bg .shine-2 {
  opacity: 1;
}
.wrap input:active + .button .corner,
.wrap input:active + .button ~ .bg-glow,
.wrap input:not(:checked):active + .button ~ .bg .shine-2 {
  opacity: 0;
}



@keyframes bgGlow {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80%,
  100% {
    opacity: 0;
  }
}

.wrap input:checked + .button ~ .bg-glow::before {
  background: linear-gradient(to bottom, #ff2200 0%, transparent 100%);
  animation: bgGlow2 3s linear backwards;
}
@keyframes bgGlow2 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  70%,
  100% {
    opacity: 0;
  }
}

.wrap input:checked + .button ~ .led {
  animation: ledTurnOff 3s linear forwards;
}

@keyframes ledTurnOff {
  30%,
  60% {
    background-color: #ffdf4e;
    box-shadow:
      0 -10px 35px 17px rgba(255, 200, 0, 0.6),
      inset 0 1px 2px 0px white,
      0 0 0px 3px rgb(0 0 0 / 60%),
      0 0 2px 4px rgba(152, 119, 0, 0.3);
  }
  60.1%,
  65% {
    background-color: transparent;
    box-shadow:
      0 -10px 35px 17px transparent,
      inset 0 1px 2px 0px transparent,
      0 0 0px 3px rgb(0 0 0 / 10%),
      0 0 2px 4px transparent;
  }
  65.1%,
  70% {
    background-color: #ffdf4e;
    box-shadow:
      0 -10px 35px 17px rgba(255, 200, 0, 0.6),
      inset 0 1px 2px 0px white,
      0 0 0px 3px rgb(0 0 0 / 60%),
      0 0 2px 4px rgba(152, 119, 0, 0.3);
  }
  70.1%,
  100% {
    background-color: transparent;
    box-shadow:
      0 -10px 35px 17px transparent,
      inset 0 1px 2px 0px transparent,
      0 0 0px 3px rgb(0 0 0 / 10%),
      0 0 2px 4px transparent;
  }
}

.wrap input:checked + .button {
  animation: reflexLedTurnOff 3s linear forwards;
}

@keyframes reflexLedTurnOff {
  30%,
  60% {
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.4),
      inset 0 -6px 1px -4px #9b8100,
      inset 0 -15px 6px -8px #373326;
  }
  60.1%,
  65% {
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.4),
      inset 0 -6px 1px -4px rgba(255, 255, 255, 0.1),
      inset 0 -15px 6px -8px rgba(255, 255, 255, 0.1);
  }
  65.1%,
  70% {
    box-shadow:
      inset 0 1px 1px rgb(255 255 255 / 40%),
      inset 0 -6px 1px -4px #9b8100,
      inset 0 -15px 6px -8px #373326;
  }
  70.1%,
  100% {
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.4),
      inset 0 -6px 1px -4px rgba(255, 255, 255, 0.1),
      inset 0 -15px 6px -8px rgba(255, 255, 255, 0.1);
  }
}

.wrap input:checked + .button::after {
  animation: reflexLedBlurTurnOff 3s linear forwards;
}

@keyframes reflexLedBlurTurnOff {
  30%,
  60% {
    background: #ffc400;
  }
  60.1%,
  65% {
    background: transparent;
  }
  65.1%,
  70% {
    background: #ffc400;
  }
  70.1%,
  100% {
    background: transparent;
  }
}

.wrap input:checked + .button ~ .bg::before {
  animation: bgBeforeTurnOff 3s linear forwards;
}

@keyframes bgBeforeTurnOff {
  30%,
  60% {
    box-shadow:
      inset 0 -2px 0px -1px rgba(255, 230, 120, 0.3),
      inset 0 0 5px 1px black,
      inset 0 0 0 1px black;
  }
  60.1%,
  65% {
    box-shadow:
      inset 0 -2px 0px -1px rgba(160, 160, 160, 0.3),
      inset 0 0 5px 1px black,
      inset 0 0 0 1px black;
  }
  65.1%,
  70% {
    box-shadow:
      inset 0 -2px 0px -1px rgba(255, 230, 120, 0.3),
      inset 0 0 5px 1px black,
      inset 0 0 0 1px black;
  }
  70.1%,
  100% {
    box-shadow:
      inset 0 -2px 0px -1px rgba(160, 160, 160, 0.3),
      inset 0 0 5px 1px black,
      inset 0 0 0 1px black;
  }
}

@keyframes bg {
  0% {
    transform: translateY(0) scale(0);
  }
  12% {
    transform: translateY(0) scale(25);
  }
  60%,
  100% {
    transform: translateY(-280px) scale(20, 18);
  }
}

@keyframes symbolPath {
  0% {
    stroke-dashoffset: -650;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 650;
  }
}

@keyframes symbolPath2 {
  0% {
    stroke-dashoffset: -650;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 650;
  }
}

@keyframes symbolCircle {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}



.spacer {
  height: 50px; /* Adjust this value for more or less space */
}

ol.info {
    padding-top: 5%;
}

ol.info li {
    flex: 0 0 20%;
}

ol.info li h5 {
    margin-bottom: 30px;
}

ol.info li h4 {
    margin-bottom: 10px;
}

ol.info li p {
    padding-right: 10%;
    opacity: 1;
}


