







.btn222{
  
    border-radius: 15px;
    font-size: 50px !important;
    box-shadow: inset -2px -2px 4px black;
    transition: transform 0.3s ease-in-out;
    text-decoration: none !important;
}

.btn222:hover{
    transform: translateY(-10px);
    cursor: pointer;
}

.up1{
    transition: transform 0.3s ease-in-out;
}

.up1:hover{
    transform: translateY(-10px);
    cursor: pointer;
}


.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);
}


.above11{
padding-bottom: 50px;
padding-top: 130px;
  background-image: url('./images/above3.png');
  background-position: center;
  background-size: cover;

}

.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;
      }

      .popup {
        width: 194px;
        height: auto;
      }

      .timeline-point::before {
        width: 170px;
        height: 200px;
      }

      .timeline-point{
        width: 84px;
      }



      .timeline-point:nth-child(even) .popup:before {

        left: -32% !important;

      }


      .logoText {
        font-size: 34px;
      }
  }


  