/* General Reset */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oxanium:wght@200..800&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@supports (-moz-appearance: none){
  .card{
    transform: none !important;
    opacity: 1 !important;
  }
  .head1 {
    font-size: 10rem !important; /* Override with fixed size */
  }
  
  .head2 {
    font-size: 5rem !important; /* Override with fixed size */
  }
  .wrapper{
    font-size: 5rem !important;
  }
}
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 18px;
  font-size: 16px;
  background-color: #131212;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: none; /* Initially hidden */
  opacity: 0;
  transform: translateY(20px); /* Start slightly below */
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000000000;
}

/* Hover effect */
#backToTop:hover {
  background-color: #333;
}

/* Show button with fade-up effect */
#backToTop.show {
  display: block;
  opacity: 1;
  transform: translateY(0); /* Move to original position */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: Arial, sans-serif;
  background: #101010;
  list-style-type: none;
}

/* Header Styling */
.header {
  width: 100%;
}

/* Title Section */
.title {
  width: 100%;
  background-image: url('/Home/images/cool-background1.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2vw; /* Adds responsive spacing */
}

.head1 {
  color: #ff4d00;
  opacity: 1;
  font-family: Anton, sans-serif;
  animation: Slidein 0.4s ease-in;
  font-size: clamp(6rem, 12vw, 10rem); /* Adjusts size dynamically */
  margin-left: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  max-height: 280px;
}

.head2 {
  color: aliceblue;
  opacity: 0.8;
  font-family: Anton, sans-serif;
  font-size: clamp(1.5rem, 4vw, 5rem);
  animation: Slidein1 0.5s ;
  margin-left: 8vw;
  transform: translate(0, -2vw); /* Adjust position responsively */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  max-height: 280px;
}

@media (max-width: 768px) {
  .title {
    align-items: center; /* Center align for smaller screens */
    text-align: center;
  }

  .head1 {
    font-size: clamp(3rem, 10vw, 8rem);
    margin-left: 0;
  }

  .head2 {
    font-size: clamp(1.2rem, 3.5vw, 4rem);
    margin-left: 0;
    transform: translate(0, -1vw);
  }
}

.initial-info {
  color: white;
  margin: 2vw 10vw;
  font-size: x-large;
  border-left: solid 4px orangered;
  background-color: #0e0e0f;
  padding: 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px; /* Adds spacing between points */
  font-family: Mona sans;
}

.initial-info p {
  display: flex;
  align-items: flex-start;
  text-align: justify;
  margin: 0;
}

.bullet {
  flex-shrink: 0;
  width: 25px; /* Ensures alignment */
}















/* General styles */
body {
  font-family: Arial, sans-serif;
  background: #000000;
  color: white;
  list-style-type: none;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
input, textarea {
    font-size: 16px;
    color: white;
    margin-left: 10px;
}








.timeline-head{
  color: white;
  font-size: 70px;
  font-family: Mona sans;
  text-align: center;
}



/* Slider Container */
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 80vw;
  height: 650px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 200px;
}

/* Wrapper to contain slides */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Actual slider */
.slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Individual slides */
.slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Image in slides */
.slide img {
  width: 1250px;
  height: 600px;
  object-fit: cover;
  border-radius: 10px;
  transition: box-shadow 0.5s ease-in-out;
}

/* Glow effect for active slide */
.slide.active img {
  box-shadow: 0px 10px 1000px 5px rgba(255, 255, 255, 0.175); /* Yellow glow */
}

/* Date overlay on top */
.date-overlay {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
}

/* Description overlay at the bottom */
.text-overlay {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  font-size: 18px;
}
.text-overlay1 {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 0, 0);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 18px;
}
.read-more {
  display: inline-block;
  padding: 8px 15px;
  background: #000000;
  color: rgb(255, 255, 255);
  text-decoration: none;
  border-radius: 5px;
  
}

.read-more:hover{
  box-shadow: 0 14px 15px rgba(255, 85, 0, 0.106);
  color: rgb(255, 60, 0);

}
/* Previous and Next buttons */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.863);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 20%;
  transition: background 0.3s ease;
  z-index: 10000;
}

.prev { left: 20px; }
.next { right: 20px; }

/* .prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0.5);
} */










.scroll-indicator {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: opacity 0.5s ease-out;
  z-index: 1000000000000000000000;
}
.arrow {
  width: 10px;
  height: 10px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  margin: 5px auto;
  opacity: 0;
  animation: fadeDown 1.5s infinite;
}
.arrow:nth-child(2) { animation-delay: 0.3s; }
.arrow:nth-child(3) { animation-delay: 0.6s; }


@keyframes fadeDown {
  0% { opacity: 0; transform: translateY(0) rotate(-45deg); }
  50% { opacity: 1; transform: rotate(-45deg);}
  100% { opacity: 0; transform: translateY(10px) rotate(-45deg); }
}


















.section{
  height: 100vh;
  min-height: 500px;
  position: relative;
}


.content-container{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  clip: rect(auto, auto, auto, auto);
  pointer-events: none;
}
.content-inner{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  padding: 0;
  z-index: 99;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  -webkit-perspective: 1000;
  perspective: 1000;
  pointer-events: all;
}



.content-center{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}



.top-section{
  background: linear-gradient(135deg, #000000 0%,#000000 100%);
}
.bottom-section{
  background: #000000;
}
.title11{
  font-size: 200px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}
.content-center p,
.section a{
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
  text-align: center;
}
.content-center p{
  font-size: 2vw;
}
.content-theme-dark h1{
  color: #ff6200;
  text-shadow: 0 10px 40px rgba(255, 60, 0, 0.5)
}
.content-theme-dark p,
.content-theme-dark a{
  color: #fea98d34;
}
.content-theme-light h1{
  color:#301906;
  text-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.content-theme-light p,
.content-theme-light a{
  color: #ffffff;
}




.title11 {
  margin-top: 100px;
  text-align: center;
  font-family: Oxanium;
  color: white;
  width: 100%;
  margin-bottom: 10px;
}



@media (max-width: 750px){
  .timeline-head{
    display: none;
  }
  .slider-container{
    display: none;
  }
  .title11{
    font-size: 20vw;
    left: 10px;
    text-align:center;
  }
  .top-section p{
    opacity: 0.3;
  }
  .content-center p{
    color: #fff;
  }
}



































@import url(https://fonts.googleapis.com/css?family=Fira+Sans:200,400,500);
* {
  border: 0;
  margin: 0;
  padding: 0;
}




body {
  height: inherit;
  display: flex;
  flex-direction: column;
  font-family: 'Relative', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #c2c2c2;
  background-color: black;
}


div.container {
  display: flex;
  flex: auto;
  flex-direction: column;
  max-height: 100%;
}


div.item {
  display: flex;
  flex: auto;
  padding: 0rem 1rem 0rem 1rem;
}

#timeline {
  position: relative;
  display: table;
  height: 100%;
  margin-left: 450px;
  margin-right: auto;
  margin-top: 5rem;
}
@media (max-width:768px) {
  #timeline{
    margin-left: auto;
  }
  
}
#timeline div:after {
  content: '';
  width: 3px;
  position: absolute;
  top: .5rem;
  bottom: 0rem;
  left: 60px;
  z-index: -1;
  background: #fd8033;
}
#timeline h3 {
  position: -webkit-sticky;
  position: relative;
  top:0.4em;
  color: #888;
  margin-left:-13.5rem;  /* Adjust as needed */
  font-size: 2.3em;
  font-weight: 500;
  text-align: left;
}

#timeline section.year {
  position: relative;
}
#timeline section.year:first-child section {
  margin-top: -1.3em;
  padding-bottom: 0px;
}
#timeline section.year section {
  position: relative;
  padding-bottom: 1.25em;
  margin-bottom: 2.2em;
margin-left: 3.5em;
}


#timeline section.year section h4 {
  position: absolute;
  bottom: 0;
  font-size: .9em;
  font-weight: 400;
  line-height: 1.2em;
  margin: 0;
  padding: 0 0 0 89px;
  color: #C5C5C5;
}
@media (max-width: 768px) {
  #timeline section.year section h4 {
    font-size: 1em;
  }
  #timeline h3{
    font-size: 1em;
    margin-left: 70px;
    margin-bottom: 35px;
  }

}
@media (max-width: 1200px) {
    .timeline-right-image img{
        display: none;
    }
}
#timeline section.year section ul {
  list-style-type: none;
  padding: 0 0 0 75px;
  margin: -1.35rem 0 1em;
  max-width: 32rem;
  font-size: 1em;
}
@media (min-width: 62em) {
  #timeline section.year section ul {
    font-size: 1.1em;
    padding: 0 0 0 81px;
  }
}
#timeline section.year section ul:last-child {
  margin-bottom: 0;
}
#timeline section.year section p:first-of-type:after {
  content: '';
  width: 13px;
  height: 13px;
  background: #2a9fff;
  border: 2px solid rgb(211, 211, 211);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 3px;
  z-index: 2;
}
#timeline section.year:hover section p:first-of-type:after {
  background: #ffe733; /* or any hover color you prefer */
  transform: scale(1.1); /* optional: slight grow effect */
  transition: background 0.3s ease, transform 0.3s ease;
}

#timeline section.year:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
  /* DO NOT add padding here */
}

.year-content {
  transition: background-color 0.3s ease;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.year-content:hover {
  border-radius: 0.5rem;
  transform: translateY(-2px);
}

.year-content:hover h3,
.year-content:hover ul li {
  color: #ffffff;
  transition: color 0.3s ease;
}


.timeline-info{
    padding-left: 20px;
    width: 30vw;
}


#timeline section.year section ul li {
  margin-left: .5rem;
}
#timeline section.year section ul li:before {
  content: '·';
  margin-left: -.5rem;
  padding-right: .3rem;
}
#timeline section.year section ul li:not(:first-child) {
  margin-top: .4rem;
}


#btcwidget {
  display: inline;
}
#btcwidget img {
  display: none;
}


/* Initial hidden state */
.year {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Visible state */
.year.visible {
  opacity: 1;
  transform: translateY(0);
}












.timeline-right-image {
  position: absolute;
  top: 0;
  right: -380px; /* adjust based on preference */
  width: 320px;
  max-height: 200px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  z-index: 5;
}

.timeline-right-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Responsive behavior */
@media (max-width: 1200px) {
  .timeline-right-image {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
    #timeline{
        width: 80vw;
    }
    .timeline-info{
        width: 100%;
    }
}