* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: black;
  color: #f0f0f0;
  overflow-x: hidden;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  background-color: #121212;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  padding: 0px 10px;
}

.logo img {
  height: 80px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  color: #f0f0f0;
  font-weight: 600;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #00d1ff;
}

canvas#hero-canvas {
  display: block;
  width: 100vw;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  margin: auto;
}

.overlay-text {
  margin: auto 10%;
  position: fixed;
  width: 60vw;
  top: 0;
  right: 0;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  vertical-align: middle;
}

.overlay-text * {
  margin-bottom: 20px;
  vertical-align: middle;
}

.overlay-text .fas {
  margin: auto;
  margin-left: 10px;
}

.overlay-text a {
  color: green;
  text-decoration: none;
}

.overlay-text p {
  word-wrap: break-word;
}

.overlay-text li {
  text-align: left;
  display: block;
  margin-bottom: 0px;
}

.scroll-space {
  height: 5000px;
  background: transparent;
}

footer {
  text-align: center;
  padding: 2rem;
  background-color: #121212;
  position: relative;
  z-index: 100;
  color: #ccc;
}

footer a {
  color: #00d1ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.circle {
  --circle-size: 40px;
  position: fixed;
  height: var(--circle-size);
  width: var(--circle-size);
  border: 1px solid white;
  border-radius: 100%;
  top: calc(var(--circle-size) / 2 * -1);
  left: calc(var(--circle-size) / 2 * -1);
  pointer-events: none;
  z-index: 99999;
}

.big-arrow {
  display: inline-block;
  font-size: 48px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.big-arrow:hover {
  transform: translateX(10px);
  opacity: 0.8;
}

@font-face {
  font-family: 'icomoon';
  src: url('fonts/icomoon.eot?6uebxo');
  src: url('fonts/icomoon.eot?6uebxo#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?6uebxo') format('truetype'),
    url('fonts/icomoon.woff?6uebxo') format('woff'),
    url('fonts/icomoon.svg?6uebxo#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  font-size: 200%;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-N:before {
  content: "\e900";
}

.mission-list {}

.mission-list li {
  margin: 20px 0px;
  font-size: 120%;
}

.team-images {
  display: flex;
  overflow-y: hidden;
  overflow-x: scroll;
  height: 50%;
}

.team-images img {
  border: 1px solid transparent;
  border-radius: 10px;
  margin: 10px;
  height: 70%;
}

.team-images designation {}

/* GATE OVERLAY */
.blackout-overlay {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease;
  pointer-events: none;
}

.blackout-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 75px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #0000;
  border-radius: 50%;
  border-color: #006020 #0000;
  animation: l16 1s infinite linear;
  margin: auto;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loader::before {
  border-color: #2b0071 #0000;
  animation: inherit;
  animation-duration: .5s;
  animation-direction: reverse;
}

.loader::after {
  margin: 8px;
  border-color: #800000 #0000;
}

@keyframes l16 {
  100% {
    transform: rotate(1turn)
  }
}

.loader-container {
  width: fit-content;
  top: 0;
  bottom: 0;
  z-index: 10000;
  right: 0;
  left: 0;
  color: white;
  /* z-index: 10000; */
  position: fixed;
  margin: auto;
  height: fit-content;
  pointer-events: none;
}