.up1 {
  transition: transform 0.3s ease-in-out;
  z-index: 100 !important;
  background: var(--Linear, linear-gradient(45deg, #0a0a0a 0%, #292639 100%));
  border: 3px solid white;
  border-radius: 10px;
}

.up1:hover {
  transform: scale(1.06);
  cursor: pointer;
  background: var(--Linear, linear-gradient(45deg, #000000 0%, #000000 100%));
  box-shadow: 0px 0px 10px 0px #ffffff !important;
}

.up2 {
  transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
  border: 2px solid rgba(255, 0, 0, 0);
  border-radius: 15px;
  padding: 10px;
}

.up2:hover {
  transform: translateY(-10px);
  border: 2px solid red !important;

  cursor: pointer;
}

.card22 {
  background-color: rgb(13, 47, 87);
  background-image: url("./images/12.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  border: 4px solid rgb(193, 42, 42);
}

.rimg333 {
  width: 25%;
  height: auto;
}

.imgyy {
  margin-left: 35%;
}

.above11 {
  background-color: #0c3ca5;
  background-image: url("./images/Herobgg.png");
  background-position: center;
  background-size: cover;
  padding-top: 160px;
  position: relative;
}

.above11::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.logo1 {
  width: 20%;
  height: auto;
}

.heroh1 {
  text-shadow: 2px 2px 4px black;
  font-size: 70px;
}

.vm1 {
  background-color: #000000;
  padding: 100px 0;
  overflow: hidden;
}

.vm2 {
  background-color: #000000;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero1 {
  font-size: 70px;
  color: #fff;
  text-shadow: 2px 2px 6px black;
}

.sentinels11 {
  background-color: #053cb3;
  border-radius: 20px;
  background-image: url("./images/ww.avif");
  background-position: center;
  background-size: cover;
  position: relative;
}

.sentinels11::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.501);
  z-index: 1;
}

.nftcard {
  background-color: #0051ff;
  border: 3px solid white;
  border-radius: 12px;
  background-image: url("./images/ee.avif");
  background-position: center;
  background-size: cover;
  position: relative;
}

.nftcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.263);
  z-index: 1;
}

.td1 {
  background-color: #2e4a85;
  border-radius: 15px;
  background-image: url("./images/td.avif");
  background-position: center;
  background-size: cover;
  position: relative;
}

.td1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.timer22 {
  background-color: #7f1d1d;
  border: 5px solid rgb(212, 47, 47);
  border-radius: 25px;
  box-shadow: 2px 2px 8px black;
}

.timer-box1 {
  background-color: rgb(212, 47, 47);
  border: 5px solid #7f1d1d;
  border-radius: 10px;
  padding: 10px;
  width: 80px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.timer-box1 p {
  margin: 0;
}

.high {
  padding: 10px;
  font-size: 60px;
  font-weight: 600;
}

.text-muted1 {
  position: relative;
  text-align: center;
  margin: 0 !important;
  color: #fff !important;
  font-size: 25px;
}

.kag {
  padding-top: 12rem;
}

.updown {
  animation: updown 1.5s ease-in-out infinite;
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* roadmap */
/* Timeline container styling */
.timeline-container {
  display: flex;
  flex-direction: column;
  /* Make it vertical by default */
  gap: 33.5px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  font-size: 67px;
}

/* Individual timeline point styling */
.timeline-point {
  transition-duration: 0.5s;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e2125, #23282c);
  box-shadow: 13.4px 13.4px 40.2px #1c1f23, -13.4px -13.4px 40.2px #262b2f;
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  position: relative;
  color: var(--color);
}

.timeline-point::before {
  content: "";
  width: 200px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
  position: absolute;
  background: conic-gradient(
    var(--color) var(--angle),
    transparent 0deg 360deg
  );
  animation: rotateBorder 1s linear var(--delay) forwards;
}

.timeline-point:nth-child(odd)::before {
  transform: rotate(0deg);
}

.timeline-point:nth-child(even)::before {
  transform: rotate(178deg) scaleY(-1);
}

/* Custom property for angle */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

/* Common styling for timeline points */
.timeline-point:nth-child(1) {
  --color: #c1121f;
  --delay: 0s;
}

.timeline-point:nth-child(2) {
  --color: #ffc300;
  --delay: 1s;
}

.timeline-point:nth-child(3) {
  --color: #2ec4b6;
  --delay: 2s;
}

.timeline-point:nth-child(4) {
  --color: #6536ff;
  --delay: 3s;
}

.timeline-point:nth-child(5) {
  --color: #3a86ff;
  --delay: 4s;
}

/* Popup styling */
.popup {
  width: 321.6px;
  height: auto;
  max-height: 0;
  background-color: var(--color);
  display: grid;
  grid-template-columns: 16% 84%;
  position: absolute;
  color: white;
  border-radius: 30px;
  box-shadow: 6.7px 6.7px 21.4px #17191d, -6.7px -6.7px 21.4px #212529;
  transform-origin: bottom bottom;
  animation: expandPopup 0.5s linear calc(var(--delay) + 0.5s) forwards;
}

.timeline-point:nth-child(odd) .popup {
  right: -435px;
}

.timeline-point:nth-child(even) .popup {
  left: -435px;
}

/* Popup number styling */
.popup-number {
  grid-row: span 2;
  display: grid;
  font-size: 2rem;
  font-weight: bold;
  place-items: center;
  cursor: auto;
  animation: fadeIn 0.5s linear calc(var(--delay) + 0.7s) forwards;
  opacity: 0;
  height: 100%;
}

/* Popup title styling */
.popup-title {
  color: var(--color);
  padding-bottom: 6.7px;
  font-size: 25px;
  font-weight: 900;
}

/* Popup details styling */
.popup-details {
  padding: 20.1px;
  background-color: #1c1f23;
  border-radius: 30px;
  opacity: 0;
  font-weight: 500;
  user-select: none;
  cursor: auto;
  overflow: hidden;
  font-size: 0.8rem;
  text-align: justify;
  background: linear-gradient(145deg, #16181b, #22262b);
  margin: 3.35px;
  animation: fadeIn 0.5s linear calc(var(--delay) + 0.7s) forwards;
}

.timeline-point:nth-child(odd) .popup:before {
  content: "";
  width: 63px;
  height: 0;
  border-radius: 4px;
  background-color: var(--color);
  position: absolute;
  left: -23%;
  top: -41.9px;
  display: flex;
  animation: drawLine 0.5s linear var(--delay) forwards;
}

.timeline-point:nth-child(odd) .popup:before {
  top: calc(100% + -56px);
  transform: rotateX(100deg);
  transform-origin: top;
}

.timeline-point:nth-child(even) .popup:before {
  content: "";
  width: 63px;
  height: 0;
  border-radius: 4px;
  background-color: var(--color);
  position: absolute;
  left: 107%;
  top: 25.1px;
  display: flex;
  animation: drawLine 0.5s linear var(--delay) forwards;
}

.timeline-point:nth-child(even) .popup:before {
  top: calc(100% + -47px);
  transform: rotateX(100deg);
  transform-origin: top;
}

/* Hover effect for timeline points */
.timeline-point:hover {
  background: linear-gradient(145deg, var(--color), #1e2125);
  color: white;
}

/* Animation for border rotation */
@keyframes rotateBorder {
  from {
    --angle: 0deg;
  }

  to {
    --angle: 180deg;
  }
}

/* Animation for popup expansion */
@keyframes expandPopup {
  0% {
    max-height: 0;
  }

  100% {
    max-height: 200px;
  }
}

/* Animation for line drawing */
@keyframes drawLine {
  0% {
    height: 0%;
    opacity: 0;
  }

  100% {
    height: 33.5px;
    opacity: 1;
  }
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@media (max-width: 1050px) {
  body {
    height: auto;
    display: block;
  }

  .timeline-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    padding: 100px 0px;
  }

  .timeline-point {
    height: 134px;
    flex-shrink: 0;
    left: calc(24px / 2);
    margin: 0px 0px;
    position: relative;
  }

  .timeline-point:nth-child(odd)::before {
    transform: rotate(0deg);
  }

  .timeline-point:nth-child(even)::before {
    transform: rotate(0deg) scaleX(-1);
  }

  .timeline-point .popup:before {
    display: none;
  }

  .timeline-point:nth-child(odd) .popup {
    bottom: auto;
    right: -276px;
  }

  .timeline-point:nth-child(even) .popup {
    top: auto;
    left: 160px !important;
  }
}

@media screen and (max-width: 768px) {
  .timeline-container {
    flex-direction: column;
    height: auto;
    width: 19% !important;
    padding: 100px 0px;
  }

  .bd1 {
    border-left: 2px solid #0051ff00 !important;
    border-right: 2px solid #0051ff00 !important;
  }

  .bd2 {
    border-left: 2px solid #0051ff00 !important;
  }

  .popup {
    width: 194px;
    height: auto;
  }

  .timeline-point::before {
    width: 170px;
    height: 200px;
  }

  .timeline-point {
    width: 84px;
  }

  .left22 {
    margin-left: 0px !important;
  }

  .timeline-point:nth-child(even) .popup:before {
    left: -32% !important;
  }

  .hero1 {
    font-size: 42px !important;
  }

  .logoText {
    font-size: 34px;
  }

  .abimg {
    width: 100%;
    height: auto !important;
    border-radius: 20px;
  }
  .navlogo {
    height: 36px !important;
  }

  .navh1 {
    font-size: 22px !important;
    margin-top: 5px !important;
  }

  .navbar .navbar-nav .nav-item {
    width: 100%;
    text-align: start !important;
  }

  .navbar {
    height: 85px !important;
  }
}

/* navbar code */
.navbar {
  background-color: #050505 !important;
  overflow: hidden;
  /* background: none !important; */
  /* backdrop-filter: blur(10px); */
  width: 100%;
  /* z-index: 1000 !important; */
  height: 60px;
}

/* Active state animation */
.navbar a.active p {
  position: relative;
  overflow: hidden;
}

.navbar a.active p::after,
.navbar a:hover p::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: blue;
  animation: underline 0.3s forwards;
}

/* Hover state animation */
.navbar a:hover p {
  position: relative;
  overflow: hidden;
}

@keyframes underline {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.navbar-toggler-icon {
  color: white !important;
}

.navbar-toggler {
  background-color: #000000 !important;
  color: white !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.nav-item {
  transition: transform 0.33s ease-in-out;
}

.nav-item:hover {
  transform: translateY(-7px);
  text-decoration: none !important;
}

.navlogo {
  height: 60px;
  width: auto;
  border-radius: 15px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.341);
}

.navh1 {
  color: #000000;
  margin-top: 10px;
  letter-spacing: 1px;
  font-size: 36px;
}

.conbtn {
  padding: 5px 10px 5px 10px !important;
  border-radius: 7px !important;
  /* border: 4px solid #DF2B26 !important; */
  font-size: 25px !important;
  letter-spacing: 2px !important;
  background-color: #ffffff;
  color: #000000 !important;
  /* box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.341); */
  box-shadow: 2px 2px 6px black;
  overflow: hidden !important;
  -webkit-transition: all 0.2s ease-in !important;
  -moz-transition: all 0.2s ease-in !important;
  transition: all 0.2s ease-in !important;
}

.conbtn:hover {
  background-color: #000 !important;
  color: #fff;
  /* box-shadow: 0 0 30px 5px #df2c26a2 !important; */
  -webkit-transition: all 0.2s ease-out !important;
  -moz-transition: all 0.2s ease-out !important;
  transition: all 0.2s ease-out !important;
  color: #fff !important;
}

.copy222 {
  transition: transform 0.3s ease-in-out;
}

.copy222:hover {
  transform: translateY(-10px);
  color: #ff6200;
  cursor: pointer;
}

/*start styles*/
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.accordion__item {
  border-radius: 10px;
  overflow: hidden;
  background-color: #002065;
  box-shadow: inset #104f75 0 0 40px, #104f75 0 30px 100px -24px;
  box-shadow: 2px 2px 8px black;
  animation: gradientShift 3s ease infinite;
}

.accordion__header {
  padding: 20px 25px;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  position: relative;
}

.accordion__header::after {
  content: "";
  background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat
    center;
  width: 20px;
  height: 20px;
  transition: 0.4s;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  filter: brightness(0) invert(1) contrast(300%) saturate(200%);
  /* Increased contrast and saturation for bolder arrow */
}

.accordion__header.active::after {
  transform: rotateX(180deg);
}

.accordion__item .accordion__content {
  padding: 0 25px;
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
}

.migglebtn {
  background-color: #f1f1f1;
  border-radius: 5px;
  border: none;
  border: 2px solid rgba(0, 0, 0, 0.105);
  transition: transform 0.3s ease-in-out background-color 0.3s ease-in-out !important;
}

.migglebtn:hover {
  transform: scale(1.05);
  background-color: #0c3ca5;
  color: #fff !important;
}

.left22 {
  margin-left: 40px;
}

.btn222 {
  padding: 10px 80px;
  background-color: #000;
  color: #fff;
  border: 2px solid white;
  border-radius: 25px;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out,
    color 0.2s ease-in-out;
  text-decoration: none !important;
}

.btn222:hover {
  transform: translateY(-10px);
  background-color: #fff;
  color: #000;
  cursor: pointer;
}

.bd1 {
  border-left: 2px solid #0051ff;
  border-right: 2px solid #0051ff;
}

.bd2 {
  border-left: 2px solid #0051ff;
}

.rimg {
  width: 40%;
  height: auto;
  border-radius: 10px;
}

.htbimg {
  width: 30%;
  height: auto;
  border-radius: 20px;
}

.abimg {
  width: 80%;
  height: 78%;
  border-radius: 20px;
}

.size22 {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.road1 {
  background-color: #000000ff;
  position: relative;
  overflow: hidden;
}

.road1::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 73%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(89.541deg);
  width: 283.716px;
  height: 1312.954px;
  border-radius: 1312.954px;
  opacity: 0.26;
  background: linear-gradient(
    99deg,
    #2ee6a6ac 1.93%,
    #3e55c883 47.51%,
    #7c3ec897 96.04%
  );
  filter: blur(180.0999984741px);
}

.htb11 {
  background-color: #000000ff;
  position: relative;
  overflow: hidden;
}

.htb11::after {
  content: "";
  max-width: 477px;
  width: 100%;
  height: 250px;
  background: #30e9a1;
  opacity: 0.2;
  filter: blur(150.0999984741px);
  border-radius: 250px;
  position: absolute;
  top: 65%;
  left: 33%;
}

.meme {
  background-color: #000000ff;
  position: relative;
  overflow: hidden;
}

.meme::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(89.541deg);
  width: 283.716px;
  height: 1312.954px;
  border-radius: 1312.954px;
  opacity: 0.26;
  background: linear-gradient(
    99deg,
    #2ee6a686 1.93%,
    #3e55c883 47.51%,
    #7c3ec897 96.04%
  );
  filter: blur(50.0999984741px);
}
