body,
a {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #BEE9E8, #62b6cb);
}

/* Header Styles */
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 80px;
  background-color: #000;
  transition: background-color 0.3s;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo Styles */
#logo {
  display: inline-block;
  width: 150px;
  height: auto;
}

#logo img {
  width: 100%;
  height: auto;
}

/* Navigation Styles */
#navigation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.nav-links {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none; 
}

.nav-links li {
  margin: 0 15px;
  padding: 0;
  list-style: none;
  text-decoration: none; 
}

.nav-links a {
  font-size: 20px;
  font-weight: 500;
  color: black;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: black;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: black;
}

.nav-links a:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hamburger Menu for Mobile */
#hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 1001;
}

#hamburger div {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Mobile Menu Styles */
#menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  transition: width 0.3s ease;
}

#menu-navigation {
  position: absolute;
  top: 100px;
  right: 50px;
  text-align: right;
}

#menu-navigation .nav-links {
  display: block;
}

#menu-navigation .nav-links li {
  margin: 20px 0;
}

#menu-navigation .nav-links a {
  font-size: 20px;
  line-height: 40px;
}

.nav-item {
  cursor: pointer;
}

.main-section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.main-section img {
  max-width: 50%;
  height: auto;
}

section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  font-family: 'Arial', sans-serif;
  color: #fff;
}

.productSection {
  text-align: center;
}

.timelineSection {
  text-align: center;

}

#product h2 {
  font-size: 50px;
  margin-top: 10%;
  margin-bottom: 0;
}

#product p {
  margin-top: 2%;
  font-size: 20px;
}

.produktDiv {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 80%;
  height: 60%;
  
}

.timelineDiv {
  width: 80%;
  height: 60%;
  background-color: #7399b2;
  box-shadow: 0 0 15px 10px #7399b2;
}

.goalsDiv {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 80%;
  height: 60%;
  
}

.goalsDiv h2 {
  font-size: 50px;
  margin-bottom: 5px;
  text-align: center;
}

.goalsDiv p {
  text-align: center;
}

.goalsDiv ul {
  margin-left: 10%;
}

/* #timeline {
    background-color: #EE964B;
}

#goals {
    background-color: #F95738;
} */
/* body {
  background: #e8eeff;
} */
#app {
  padding: 50px 0;
}
.timeline {
  list-style-type: none;
  display: flex;
  padding: 0;
  text-align: center;
  justify-content: center;
}

.timeLineTitle {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 25px;
}

.timeline li {
  transition: all 200ms ease-in;
}
.timestamp {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 600; 
}
.status {
  font-family: 'Arial', sans-serif;
  font-size: 17px;
  display: flex;
  justify-content: center;
  border-top: 4px solid #3e70ff;
  position: relative;
  transition: all 200ms ease-in ;
}
  
.status span {
  padding-top: 20px;
}
.status span:before {
  content: '';
  width: 25px;
  height: 25px;
  background-color: #e8eeff;
  border-radius: 25px;
  border: 4px solid #3e70ff;
  position: absolute;
  top: -15px;
  left: calc(50% - 16px);
  transition: all 200ms ease-in;
}
.swiper-control {
  text-align: right;
}

.swiper-container {
  height: 250px;
  margin: 50px 0;
  overflow: hidden;
  padding: 0 20px 30px 20px;
}
.swiper-slide {
  width: 200px;
  text-align: center;
  font-size: 18px;
}
.swiper-slide:nth-child(2n) {
  width: 40%;
}
.swiper-slide:nth-child(3n) {
  width: 20%;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  height: 60px;
}