body {
  display: flex;
  flex-direction: column;
  background-color: white;
  background: url('images/Background.png');
  flex: 1;
  min-height: 100vh;
}

/* Nav Groups */
.nav-group-left,
.nav-group-right {
  display: flex;
  align-items: center;
  height: 70px;
  border-radius: 50px;
  padding: 0 10px;
  background: #e7e7e7;
  backdrop-filter: blur(15px);
  gap: 10px;
}

.nav-group-left {
  position: absolute;
  top: 25px;
  left: 5%;
  width: 40%;
  justify-content: space-evenly;
}

.nav-group-right {
  position: absolute;
  top: 25px;
  left: 55%;
  width: 40%;
  justify-content: space-evenly;
}

/* Nav Buttons and Links */
.nav-button {
  background: #2493e9;
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  padding: 20px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
}

.nav-link {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: black;
  padding: 10px 20px;
  border-radius: 30px;
}

.one {
  font-weight: 400;
}

.two {
  font-weight: 500;
}

.three {
  font-weight: 500;
  position: relative;
}

/* Logo Styles */
.vector-logo {
  width: 292px;
  height: 70px;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.oio-logo {
  width: 78px;
  height: 33px;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

/* Toggle Button (Mobile) */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 1001;
}

/* Nav Container for toggle */
.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


/* === RESPONSIVE STYLES === */
@media (max-width: 1024px) {
  .nav-group-left,
  .nav-group-right {
    width: 40%;
    gap: 8px;
  }

  .vector-logo {
    width: 220px;
  }

  .oio-logo {
    width: 60px;
    top: 43px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-container {
    flex-direction: column;
    background-color: #ffffff;
    width: 100%;
    padding-top: 80px;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .nav-container.show {
    display: flex;
  }

  .nav-group-left,
  .nav-group-right {
    position: static;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    background: none;
    padding: 10px 20px;
    gap: 15px;
  }

  .vector-logo {
    display: none;
  }

  .oio-logo {
    position: absolute;
    top: 15px;
    left: 5%;
    width: 50px;
  }

  .nav-button,
  .nav-link {
    width: 90%;
    padding: 15px;
    text-align: left;
  }

  .three {
    top: 0;
  }
}

@media (max-width: 480px) {
  .nav-button,
  .nav-link {
    font-size: 18px;
  }

  .oio-logo {
    width: 45px;
    margin: 1rem;
  }
}

.vector11{
/* Vector 1 */

position: absolute;
width: 22px;
height: 23px;
left: calc(50% - -175px/2 - 12px);
top: 110px;
}


@media (max-width: 480px){

.vector11{
top: 85px;
left: 18.5rem;
}
  
}

.vector2 {
  width: 3vw;
  height: auto;
  position: absolute;
  top: 21vh;
  left: 34%;
  max-width: 38px;
  max-height: 40px;
  border: none;
}

@media (max-width: 1024px) {
  .vector2 {
    width: 5vw;
    border-width: 0.4vw;
    top: 20vh;
    left: 28%;
  }
}

@media (max-width: 768px) {
  .vector2 {
    width: 5vw;
    border-width: 0.4vw;
    top: 20vh;
    left: 25%;
  }
}

@media (max-width: 480px) {
  .vector2 {
    width: 6vw;
    border-width: 0.5vw;
    top: 17vh;
    left: 20%;
  }
}


@media (max-width: 1440px){
.about{
  position: relative;
  left: 5rem;
}
}

@media (max-width: 1024px){
.about{
  position: relative;
}
}

@media (max-width: 768px){
.about{
  position: static;
}
}

@media (max-width: 480px){
.about{
  position: static;
  width: 20rem;
}

.stats{
  width: 90vw;
}
}




/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #585757;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #878d8c;
}

/* Hide Scrollbar Utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;     /* Firefox */
}

 .slide {
      opacity: 0;
      transform: translateX(100%);
      transition: all 0.6s ease;
      position: absolute;
      width: 100%;
    }

    .slide.active {
      opacity: 1;
      transform: translateX(0);
      position: relative;
    }

