.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #ffffff24;
    box-shadow: 0 2px 10px rgb(253 253 253 / 48%);
}
    img.logo {
    width: 100px;
}
    /* Custom hamburger */
    .navbar-toggler {
      border: none;
      outline: none;
    }
    .navbar-toggler .toggler-icon {
      width: 25px;
      height: 2px;
      background-color: #000;
      display: block;
      margin: 6px 0;
      transition: 0.4s;
    }
    .navbar-toggler.collapsed .top-bar {
      transform: rotate(0) translateY(0);
    }
    .navbar-toggler.collapsed .middle-bar {
      opacity: 1;
    }
    .navbar-toggler.collapsed .bottom-bar {
      transform: rotate(0) translateY(0);
    }
    .navbar-toggler .top-bar {
      transform: rotate(45deg) translateY(8px);
    }
    .navbar-toggler .middle-bar {
      opacity: 0;
    }
    .navbar-toggler .bottom-bar {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* Slide in menu from left */
    .offcanvas-start {
      width: 200px;
      transition: transform 0.4s ease-in-out;
    }

 .time-box {
    background: rgb(223 254 0);
    padding: 6px 8px;
    border-radius: 10px;
    min-width: 80px;
  }
  .time-box h4 {
    margin: 0;
    font-size: 20px;
    color: #000 !important;
  }
  .time-box span {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #000;
  }
  .banner {
    margin-top: -94px;
    padding-top: 225px;
  }
   canvas{
    display:inline-block;
    width:100% !important;
/*    height:500px !important;*/
  }
  .banner-text {
    margin-top: -56px;
}
.navbar-nav li a {
    color: #fff !important;
    padding: 0px 27px !important;
}
.buy-btn-wrapper{
  position:relative;
  display:inline-block;
}
.buy-btn{
  background-color: #dffe00;
  color: #000;
  border-radius: 30px;
  padding: 9px 45px;
  font-weight: 500;
  text-transform: uppercase;
  border:none;
  cursor:pointer;
  position: relative;
  z-index:1;
  font-size:18px;
  animation: heartbeat 2s ease-in-out infinite;
}

/* Heartbeat animation */
@keyframes heartbeat{
  0%,100%{ transform: scale(1); }
  25%{ transform: scale(1.1); }
  50%{ transform: scale(1); }
  75%{ transform: scale(1.08); }
}

/* Canvas overlay */
.particles-canvas{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:0;
}
.buy-token-now {
    background: #dffe00;
}
.banner {
  padding-bottom: 80px;
}
.banner {
  position: relative;
  overflow: hidden;
}

#bannerCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner-text, .buy-token-now {
  position: relative;
  z-index: 1;
}
.shining-text {
  position: relative;
  display: inline-block;
  color: #ffd700; /* base yellow */
  font-weight: bold;
  background: linear-gradient(120deg, #ffd700 30%, #ffffff 50%, #ffd700 70%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  0% {
    background-position: 200% 0;
  }
  25% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
  75% {
    background-position: -100% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


/*////////////about section////*/



img.about-img {
    width: 100%;
}



 /* about  Section Background */
    .about-section {
      background: url('../images/about3.png') no-repeat center center/cover;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Left Warrior Image */
    .about-section .warrior-img img {
      max-width: 100%;
      height: auto;
      animation: float 4s ease-in-out infinite;
    }

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

    /* Text Side */
    .about-text h5 {
      color: #0056b3;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .about-text h2 {
      font-size: 40px;
      font-weight: 700;
      color: #222;
      margin-bottom: 20px;
      line-height: 1.2;
      position: relative;
    }

    .about-text h2::after {
      content: "";
      width: 60px;
      height: 4px;
      background: #0056b3;
      display: block;
      margin-top: 10px;
      border-radius: 2px;
    }

    .about-text p {
      font-size: 16px;
      color: #444;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .btn-custom {
      padding: 12px 28px;
      background: #0056b3;
      color: #fff;
      border-radius: 30px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
    }

    .btn-custom:hover {
      background: #ff9800;
      color: #fff;
      transform: scale(1.08);
      box-shadow: 0px 4px 20px rgba(0,0,0,0.2);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .about-text {
        text-align: center;
        margin-top: 30px;
      }
    }


