
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Orbitron', sans-serif;
  scroll-snap-type: y mandatory;
  background-color: #0e0e0e;
}

.title{
  width: 100%;
  height: 4vh;
  background-color: #000;
}

/* NAVBAR */
.minimal-navbar {
  position: fixed;
  top: 20px;
  left: 0px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.nav-btn {
  display: block;
  padding: 8px 16px;
  color: white;
  background: #000;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  text-decoration: none;
  width: 88px;
  text-align: right;
  transition: all 0.3s ease;
  mix-blend-mode: difference;
  border: none;
}

.nav-btn:hover {
  background: white;
  color: black;
  border-top: 3px solid black;
  border-radius: 0px 20px 0px 0px;
}

/* SLIDER */
.slider-container {
  margin-top: 70px;
}

.slide {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 20px;
}

.slide-blur {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 30px 40px;
  border-radius: 20px;
  max-width: 600px;
  box-shadow: 0 0 20px #00000080;
}

.slide h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.slide p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
}

.slide button {
  padding: 12px 24px;
  font-size: 1rem;
  background: #4474BA;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.slide button:hover {
  background: #3359a8;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.95);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  width: 90%;
  height: 80vh;
  background: black;
  border: 2px solid #4474BA;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* SWITCH BUTTON */
.switch-container {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.switch-btn {
  padding: 12px 24px;
  font-size: 1rem;
  background: #4474BA;
  color: white;
  border: none;
  border-radius: 30px;
  font-family: 'Orbitron', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
}

.switch-btn:hover {
  background: #3359a8;
}

/* CIRCLES */
.circle-nav {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
  background-color: #000;
  border-radius: 20px;
  padding: 6px;
  border: 2px solid whitesmoke;
}

.circle {
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  position: relative;
}

.circle:hover {
  opacity: 1;
  background: #4474BA;
}

.circle::after {
  content: attr(title);
  position: absolute;
  right: 130%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  font-size: 0.8rem;
  white-space: nowrap;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.circle:hover::after {
  opacity: 1;
}

/* INFO SECTION */
/* General layout fix */
.circle-container.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
  width: 100%;
}

.floating-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.4;
  animation: float 6s ease-in-out infinite;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 0 25px #00000055;
}

/* Directional positioning */
.circle-left {
  align-self: flex-start;
  margin-left: 20px;
}

.circle-right {
    align-self: flex-end;
    margin-right: 20px;
    position: relative;
    right: 14%;
}

/* Glow variants */
.blue-glow {
  border-color: #4474BA;
  box-shadow: 0 0 300px #4474BAcc, 0 0 60px #4474BA55;
}

.white-glow {
  border-color: #ffffff99;
  box-shadow: 0 0 300px #ffffffcc, 0 0 60px #ffffff55;
}

.pink-glow {
  border-color: #ff00c1aa;
  box-shadow: 0 0 300px #ff00c1aa, 0 0 60px #ff008855;
}

.blue-line{
  position: absolute;
}

.glitch-title {
  font-size: 2rem;
  color: #61a0ff;
  position: relative;
  text-transform: uppercase;
}
.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  color: #fff;
  z-index: -1;
}
.glitch-title::before {
  top: -2px;
  left: 2px;
  color: #ff00c1;
}

.first-circle{
  display: flex;
  flex-direction: row;
  gap: inherit;
}

.first-circle-txt{
  width: 50%;
}

/* Float animation */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.position-third-circle {
    position: relative;
    bottom: 44px;
    left: 88px;
}

.second-circle{
  display: flex;
  flex-direction: row-reverse;
}

.av-slider-wrapper {
  width: 50%;
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: transparent;
  right: 22%;
}

.av-slider-mask {
  width: 80%;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #61a0ff33;
  border-bottom: 1px solid #61a0ff33;
}

.av-slider-track {
  display: flex;
  gap: 60px;
  animation: avSliderScroll 25s linear infinite;
  white-space: nowrap;
}

.av-slide {
  min-width: 200px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid #61a0ff;
  box-shadow: 0 0 15px #4474BA44;
  text-align: center;
}

/* Fade effect at edges */
.av-slider-mask::before,
.av-slider-mask::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.av-slider-mask::before {
  left: 0;
  background: linear-gradient(to right, #0e0e0e 70%, transparent);
}

.av-slider-mask::after {
  right: 0;
  background: linear-gradient(to left, #0e0e0e 70%, transparent);
}

@keyframes avSliderScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.third-circle-position{
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 250px;
}

.futuristic-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  font-family: Orbitron, sans-serif;
  font-size: 1rem;
  color: white;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #61a0ff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(100, 150, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  height: fit-content;
  text-decoration: none;
  margin-top: 78px;
}

.futuristic-btn:hover {
  background: rgba(97, 160, 255, 0.1);
  box-shadow: 0 0 20px rgba(97, 160, 255, 0.5);
}

.futuristic-btn .arrow-icon {
  color: #a965f7;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.futuristic-btn:hover .arrow-icon {
  transform: translateX(4px);
}

.third-circle-p{
  display: flex;
  width: 100%;
  gap: 200px;
}

@media (max-width: 767px){
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .blue-line{
    position: relative;
    width: 100%;
  }

  .glitch-title{
    position: relative !important;
    top: 7%;
    text-align: center;
  }

  .first-circle{
    flex-direction: column;
  }

  .first-circle-txt{
    width: 80%;
    padding: 0px 20px 0px 20px;
    text-align: justify;
    align-items: center;
    align-self: center;
  }

  .second-circle{
    flex-direction: column;
  }

  .circle-right{
    align-self: center;
    right: 0;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .circle-left{
    margin-left: 0;
    align-self: center;
  }
  
.second-circle .av-slider-wrapper {
    width: 100% !important;
    right: auto !important;
    margin: 0 auto !important;
    padding: 30px 0;
    justify-content: center !important;
  }

  .av-slider-mask {
    width: 90%;
    max-width: 100%;
  }

  .av-slider-track {
    gap: 30px;
  }

  .av-slide {
    min-width: fit-content;
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .av-slider-mask::before,
  .av-slider-mask::after {
    width: 30px;
  }

  .position-third-circle {
    position: relative;
    bottom: 44px;
    left: 0; 
  }

  .third-circle-p{
    flex-direction: column;
    gap: 20px;
  }

  .futuristic-btn{
    margin-top: 0;
    margin-bottom: 88px;
    width: fit-content;
    align-self: center;
  }

}



