*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  background-color: #0d0d0d;


}

.intro{
    height: 800px;
  background-color: #0d0d0d;



}

input{
  color: #fff;
}

.glassButton{
    border: 1px solid rgba(200, 200, 200, 0.3); /* transparent border */
      background: rgba(255, 255, 255, 0.1); /* transparent white */
     backdrop-filter: blur(4px); /* glass blur effect */
    -webkit-backdrop-filter: blur(8px); /* Safari support */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* soft shadow */
    transition: all 0.3s ease;
    border-radius: 20px;
}

ul{
   margin-left: 28%;
   
}

.glass-button:hover {
 
   background: rgba(255, 255, 250, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.glass-container {
  width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-align: center;
}

.introContent{
    margin-top: 80px;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
}

nav a{
  font-family: sans-serif;
  font-weight: 500;
  font-size: 18.2px;
  margin: 0;
  margin-left: 5px;
}

.content{
    height: 400px;
    align-items: center;
    justify-content: center;
    /* border: dotted white; */
}


.avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  margin-left: -10px;
  background: white;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
}

.avatar:hover {
  transform: scale(1.1);
  z-index: 2;
}

.avatar:first-child {
  margin-left: 0;
}

.image-stack {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 50%;
  margin-left: 25%;
}

.content-text {
  font-size: 11px;
  color: white;
  
}

/* Optional: Center the text on smaller screens */
@media (max-width: 576px) {
  .image-stack {
    justify-content: center;
    text-align: center;
  }

  .avatar {
    margin-left: 0;
  }
}

.introContent-info h1{
   font-family:  sans-serif;
   font-weight: 100;
   font-size: 35px;
   font-style: bold;
   line-height: 100%;
   letter-spacing: 0%;
}

.introContent-info  span{
    font-family:  sans-serif;
    font-weight: 200;
    font-style: bold;
    font-size: 38px;
    line-height: 100%;
    letter-spacing: 0%;
    color: darkgray;
}

.introContent-info p{
  font-family:  sans-serif;
   font-weight: 50;
   font-size: 13px;
   font-style: medium;
   line-height: 100%;
   letter-spacing: 0%;
}



.introContent-info button {
  width: 28.5%;
  height: 7.5vh;
  border: none;
  margin-top: 15px;
  border-radius: 16px;
  color: #000;
  background: rgba(202, 244, 3, 1);
  display: flex;
  align-items: center; /* Corrected for vertical alignment */
  justify-content: center; /* Center content horizontally */
  margin-left: 36%;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}



.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black w/ opacity */
}

.modal-content {
  background-color: rgba(5, 3, 9, 1);
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 500px;
  text-align: center;
  position: relative;
  border-color:  white;
}

.modal-content .popInfo{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  
}

.modal-content .popInfo h2{
  font-size: 16px;
  color: #fff;
}

.modal-content .progressBar{
  margin-top: 20px;
  
}

.modal-content .progress{
  border: 1px solid black;
  height: 10px;
  border-radius: 20px;
  align-items: center;
  width: 100%;
}

.modal-content .progressInfo{
  display: flex;
  justify-content: space-between;
  color: #fff;
}

.modal-content .popInfo p{
  font-size: 13px;
  color: #fff;
}

.modal-content form p{
  text-align: left;
  margin-top: 20px;
  color: #fff;
}

.modal-content form .wallet{
  border: 1px solid black;
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  align-items: center;
  color: #fff;
  background: rgba(13, 12, 16, 1);
}

.modal-content .progressBottomInfo {
   width: 60%;
  margin: 0 auto;
   text-align: center;
   color: #fff;
}

.modal-content .progressBottomInfo a{
  color: rgba(127, 86, 217, 1);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

.modal-content form .wallet img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .modal-content {
    width: 90%;
    padding: 20px;
    margin: 20% auto;
  }

  .modal-content .popInfo h2 {
    font-size: 14px;
  }

  .modal-content .popInfo p {
    font-size: 12px;
  }

  .modal-content .progressInfo {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 13px;
  }

  .modal-content form .wallet {
    display: flex;
    justify-content: space-between;
    
  }

  .modal-content form .wallet img {
    align-self: flex-end;
    width: 40px;
    height: 40px;
   
  }

  .modal-content .progressBottomInfo {
    width: 100%;
    font-size: 11px;
  }

  .close-btn {
    font-size: 20px;
    top: 5px;
    right: 10px;
  }
}


input[type="text"],
input[type="password"] {
  width: 300px;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}



/* Responsive styles for tablets and below */
@media (max-width: 768px) {
  .introContent-info button {
    width: 60%;
    margin-left: 20%;
    font-size: 0.95rem;
  }
}

/* Responsive styles for small phones */
@media (max-width: 480px) {
  .introContent-info button {
    width: 80%;
    margin-left: 10%;
    font-size: 0.9rem;
  }
}


  .trusted-logos {
  margin-top: 50px;
  font-size: 14px;
  color: #888;
  text-align: center;
}

.logoFlex {
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap on small screens */
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.logoFlex .item {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 5px 10px;
}

.logoFlex img {
  height: 18px;
  width: auto;
}

/* Logo text */
.trusted-logos span {
  font-size: 12px;
  color: #fff;
}

/* Responsive tweaks for small screens */
@media (max-width: 450px) {
  .trusted-logos {
  margin-top: 50px;
  font-size: 14px;
  color: #888;
  text-align: center;
}

.logoFlex {
  width: 100%;
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on small screens */
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.logoFlex .item {
  display: flex;
  align-items: center;
  gap: 8px; /* space between img and text */
  color: #fff;
}

.logoFlex img {
  height: 18px;
  width: auto;
}

}

     
  

     

.introContent-info button img{
  width: 20px;
  height: 20px;
   margin-top: 12px;
  margin-left: 18px;
}

.introContent-info button p{
  font-size: 14px;
  margin-top: 15px;
  margin-left: 5px
}

.introContent-info .introContent-bottom p{
  margin-top: 110px;
}

.introContent-bottom {
  margin-top: 50px;
}

.introContent-bottom .logos img{
  
/* border: 1px dotted white;
height: 30px;
width: 100px;
margin-left: 15%;
} */

height: 50px;
width: 100px;
margin-left: 30px;
}

.introContent-bottom .logos .ethereum img{
  height: 30px;
  width: 100px;
  margin-left: 15%;
}

.introContent-bottom .logos .walletConnect img{
  height: 30px;
  width: 100px;
  margin-right: 30px;
}

.logos img .metamask{
  height: 20000px;
}

.secondIntro{
    height: 1180px;
  background-color: #0d0d0d;



}

.secondTitle{
  width:200px;
  height: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  text-align: center;
  margin-left: 30%;
  margin-top: 25px;
}

.secondTitle p{
  text-align: center;
  padding-left: 15%;
  padding-top: 8px;
  font-family:  sans-serif;
   font-weight: 50;
   font-size: 13px;
   font-style: medium;
   line-height: 100%;
   letter-spacing: 0%;
}

  
  .secondIntro .secondIntro-Info h1{
     font-family:  sans-serif;
     font-weight: 100;
     font-size: 33px;
     font-style: bold;
    line-height: 100%;
     letter-spacing: 0%;
     color: white;
     margin-top: 20px;
  } 

  .secondIntro .secondIntro-Info p{
     font-family:  sans-serif;
     font-weight: 50;
     font-size: 13px;
    font-style: medium;
    line-height: 100%;
    -spacing: 0%;

  }




    .feature-card {
  border-radius: 20px;
  padding: 30px;
  max-width: 320px;
  width: 100%;
  flex: 1 1 300px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon img {
  width: 50px;
  height: 50px;
  float: left;
  margin-bottom: -30px;
}

.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  margin-top: 60px;
  float: left;
}

.feature-text {
  font-size: 16px;
  color: #111;
  
}

/* Background Colors */
.green-bg {
  background: rgba(202, 244, 3, 1);
  
}

.purple-bg {
  background: rgba(127, 86, 217, 1);
}

.white-bg {
  background: rgba(249, 249, 249, 1);
  color: #333;
}

.white-bg .feature-title,
.white-bg .feature-text {
  color: #222;
}

/* Responsive gap handling */
@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 20px;
  }
}


.works {
  min-height: 750px;
  background-color: #fff;
  width: 100%;
  padding: 40px 20px;
  display: block;
  justify-content: flex-start;
  align-items: flex-start;
}

.worksTitle {
  max-width: 800px;
  width: 100%;
  padding: 20px;
  /* border: 1px dotted bl  ack; */
  margin-top: 40px;
  text-align: left;
}

.workButton {
  width: fit-content;
  padding: 5px 10px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 15px;
  margin-bottom: 15px;
}

.workButton img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
}

.workButton p {
  color: white;
  font-family: sans-serif;
  font-weight: 500;
  font-size: 13px;
  margin: 0;
}

.workContent h1 {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
  margin-top: 20px;
}

.workContent span {
  font-weight: 700;
  font-size: 32px;
  color: darkgray;
}

.workContent p {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 10px;
  color: #333;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .workContent h1,
  .workContent span {
    font-size: 24px;
  }

  .worksTitle {
    border: none;
    padding: 10px;
  }
}

  
.step-number {
      font-size: 2rem;
      font-weight: bold;
      color: #fff;
      width: 50px;
      border-radius: 50%;
      background-color: #000;
      margin-left: 35%;
      margin-top: 30px;
    }
    .step-box {
      background-color: #fff;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 20px;
      text-align: center;
    }

    
  .step-box {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
}

.step-box:hover {
  transform: translateY(-5px);
}

.step-number {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

/* Stepped heights */
.step-low {
  margin-top: 85px;
}

.step-mid {
  margin-top: 40px;
}

.step-high {
  margin-top: 0;
}

/* Reset on small screens */
@media (max-width: 767px) {
  .step-low,
  .step-mid,
  .step-high {
    margin-top: 0;
  }
}


.bottom {
  min-height: 470px;
  background: rgba(5, 3, 9, 1);
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}

.bottomContent {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.bottomContent h1 {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.3;
  margin-top: 20px;
  color: rgba(255, 255, 255, 1);
}

.bottomContent p {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
}

.bottomButton {
  width: 180px;
  height: 7vh;
  padding: 5px 10px;
  background: rgba(202, 244, 3, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 12px;
  margin-bottom: 65px;
  margin-top: 37px;
}

.bottomButton:hover {
  background: greenyellow;
  width: 185px;
  height: 8vh;
}

.bottomButton img {
  width: 20px;
  height: 20px;
  margin-left: 20px;
}

.bottomButton p {
  color: rgba(0, 0, 0, 1);
  font-family: sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin: 0;
  margin-left: 5px;
}

.bottomLayer {
  width: 100%;
  max-width: 1050px;
  margin: auto;
  background: rgba(98, 98, 98, 0.12);
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
}

.bottomLayer p {
  padding: 0;
  padding-top: 10px;
}

.bottomLayer-icon a {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 18.2px;
  padding: 0;
  padding-top: 10px;
}

.bottomLayer .email {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

input{
  color: #fff;
}

.bottomLayer .email input {
  height: 8vh;
  width: 100%;
  max-width: 300px;
  background: rgba(0, 0, 0, 1);
  border: none;
  border-radius: 12px;
  padding-left: 10px;
}

.bottomLayer .email button {
  width: 150px;
  height: 7.5vh;
  border: 1px solid white;
  margin-left: 8px;
  border-radius: 16px;
  color: rgba(202, 244, 3, 1);
  background: rgba(0, 0, 0, 1);
}

  .bottomLayer .email input[type="text"]{
    color: #fff;
  }

.bottomLayer-content {
  display: flex;
  align-content: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.right {
  width: 100%;
  max-width: 250px;
  display: flex;
  justify-content: flex-start;
  margin-left: auto;
  flex-wrap: wrap;
  margin-right: 30px;
}

.right ul {
  margin-bottom: 20px;
  
}

/* --------------------
   Responsive Media Query
--------------------- */
@media (max-width: 768px) {
  .bottomContent {
    margin-left: 0;
    padding: 0 10px;
  }

  .bottomContent h1 {
    font-size: 24px;
  }

  .bottomButton {
    width: 100%;
    justify-content: center;
  }

  .bottomLayer {
    flex-direction: column;
    padding: 20px 10px;
  }

  .bottomLayer .email {
    flex-direction: column;
    align-items: stretch;
  }

  .bottomLayer .email button {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .right {
    justify-content: center;
    margin-top: 30px;
  }

  .bottomLayer-content {
    justify-content: center;
  }

  .right ul {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
}

/* Vertical nav overlays content on mobile/tablet */
@media (max-width: 991.98px) {
  #vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 1050;
    background: #222;
    width: 80vw;
    max-width: 320px;
    min-width: 220px;
    color: #fff;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  #vertical-nav.active {
    transform: translateX(0);
  }
}


input, textarea, select {
  color: #fff !important;
}
input::placeholder, textarea::placeholder {
  color: #e0e0e0 !important;
  opacity: 1;
}