* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(#156c6c,#540d69);
      color: rgb(230, 200, 200);
      font-family: "Schibsted Grotesk", sans-serif;
      font-weight: bold;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 50px;
      height: 60px;
      background-color: #156c6c61;
      position: relative;
     
    }

    nav ul {
      display: flex;
      gap: 20px;
      list-style: none;
      position: relative;
    }

    nav ul li {
      position: relative;
      
    }

    nav ul li a {
      color: rgb(230, 200, 200);
      text-decoration: none;
      transition: color 0.3s, font-size 0.3s;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    nav ul li a:hover {
      color: rgb(33, 22, 16);
      font-size: 1.04rem;
     
    }
  /* Base hidden state */
.click-dropdown-content {
  display: none;
  position: absolute;
  background-color: #683c4d10;
  min-width: 180px;
  z-index: 999;
  padding: 10px 0;
  box-shadow: 0 8px 10px rgba(146, 109, 109, 0.4);
  border-radius: 8px;
}

.click-dropdown-content li {
  list-style: none;
  padding: 8px 16px;
}

.click-dropdown-content li a {
  color: #fff;
  text-decoration: none;
  display: block;
}

.click-dropdown-content li a:hover {
  background-color: #a2adb8;
}

/* Optional: Style the parent list item */
.click-dropdown {
  position: relative;
  cursor: pointer;
}



    .left {
      font-size: 1.8rem;
    }

    /* Dropdown Menu */
    .dropdown-content {
      display: none;
      position: absolute;
      top: 40px;
      left: 0;
      background-color: rgba(44, 62, 80, 0.9);
      min-width: 160px;
      border-radius: 5px;
      z-index: 999;
      box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .dropdown-content li {
      padding: 8px 16px;
    }

    .dropdown-content li a {
      color: rgb(230, 200, 200);
      text-decoration: none;
      display: block;
    }

    .dropdown-content li a:hover {
      background-color: rgba(255, 255, 255, 0.1);
     


    }

    .dropdown:hover .dropdown-content {
      display: block;
    }
    

    .first {
      display: flex;
      justify-content: space-around;
      align-items: center;
      margin: 50px 10px;
      flex-wrap: wrap;
    }

    .leftsection {
      width: 50%;
      font-size: 2rem;
      line-height: 2rem;
    }

    .leftsection .btn, .leftsection .bt {
      font-size: 1em;
      margin: 20px 10px;
      padding: 10px;
      border: 2px solid;
      border-radius: 6px;
      cursor: pointer;
    }

    .leftsection .btn {
      background-color: rgb(43, 35, 43);
      color: rgb(197, 164, 164);
    }

    .leftsection .bt {
      background-color: rgb(197, 164, 164);
      color: rgb(43, 35, 43);
    }

    .leftsection .buttons {
      padding: 23px;
    }

    .rightsection {
      width: 40%;
    }

    .rightsection img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    #element {
      color: rgb(197, 114, 142);
    }

    .second hr {
      border: 0;
      background-color: rgb(44, 35, 35);
      height: 3px;
      margin: 40px;
    }

    h2 {
      text-align: center;
      margin-bottom: 60px;
      font-size: 2rem;
      color: #ffcba4;
    }

    .timeline-wrapper {
      width: 100%;
      background:linear-gradientlinear-gradient( 180.4deg,  rgba(0,6,10,1) 1%, rgba(1,190,237,1) 91.4% );
      padding: 60px 20px;
    }

    .timeline {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .timeline::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 0;
      width: 100%;
      height: 4px;
      background-color: rgb(230, 200, 200);
      z-index: 0;
    }

    .timeline-item {
      text-align: center;
      position: relative;
      width: 22%;
      min-width: 180px;
      z-index: 1;
      margin-bottom: 30px;
    }

    .timeline-dot {
      width: 20px;
      height: 20px;
      background-color: rgb(225, 147, 98);
      border: 4px solid white;
      border-radius: 50%;
      margin: 0 auto;
      position: relative;
      top: 20px;
      z-index: 2;
    }

    .timeline-content {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  background-color: #da99e0c6;
  color: #333;
  padding: 15px;
  border-radius: 12px;
  border: 2px solid transparent;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1);
}
  .timeline-content:hover {
  background-color: #284662;
  color: #fff;
  transform: translateY(-5px) scale(1.03);
  border: 2px solid #00d4ff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

    .timeline-content h3 {
      color: #ffcba4;
      margin-bottom: 6px;
      font-size: 1.1rem;
    }

    .timeline-content p {
      font-size: 0.9rem;
      line-height: 1.4rem;
    }
   

    @media screen and (max-width: 768px) {
      .timeline {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 40px;
      }

      .timeline::before {
        top: 0;
        left: 10px;
        height: 100%;
        width: 4px;
      }

      .timeline-item {
        width: 100%;
        text-align: left;
      }

      .timeline-dot {
        position: absolute;
        left: -28px;
        top: 10px;
      }

      .timeline-content {
        margin-top: 0;
        padding-left: 20px;
      }
    }

    footer {
      background:linear-gradient(#4c1d69,#1b3044);
      padding: 40px 20px;
      color: white;
    }

    .footer {
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
    }

    .footer > div {
      width: 200px;
      margin-bottom: 20px;
    }

    .footer h3 {
      margin-bottom: 10px;
    }

    .footer li {
      list-style: none;
      margin-bottom: 5px;
    }

    .footer a {
      color: white;
      text-decoration: none;
    }

    .text-centre {
      text-align: center;
      margin-top: 80px;
      font-size: 0.9rem;
    }

    .footer img, .right img {
      width: 20px;
      height: 20px;
      border-radius: 10px;
    }
    .footer .dropdown {
  position: relative;
}

.footer .dropdown-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
  text-align: left;
  padding: 0;
}

.footer .dropdown-content {
  display: none;
  margin-top: 10px;
}

.footer .dropdown-content li {
  list-style-type: disc;
  margin-left: 15px;
  color: #ccc;
}

.footer .dropdown-btn:focus + .dropdown-content,
.footer .dropdown-btn:hover + .dropdown-content {
  display: block;
}

  