    *{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body{
      height: 100%;
      width: 100%;
      color: aliceblue;
      font-family:"Arial", sans-serif;
      overflow-x: hidden;
      background-color: #000;
    }

    #splash {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: black;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: opacity 1s ease;
    }

    #splash-logo {
      width: 150px;
    }

    #splash.hidden {
      opacity: 0;
      pointer-events: none;
    }

    #content {
      opacity: 0;
      transition: opacity 1s ease;
    }

    #content.visible {
      opacity: 1;
    }

  .navbar {
  position: fixed;
  width: 50%;
  height: 8vh;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.logo {
  width: 8%;
  height: 70%;
}

.logo img {
  width: 100%;
}

.menu a {
  text-decoration: none;
  color: aliceblue;
  font-size: 1.2rem;
}

.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  color: aliceblue;
  cursor: pointer;
  user-select: none;
}

.menu-links {
  display: flex;
  justify-content: space-evenly;
  width: 90%;
  align-items: center;
  gap: 1.2rem;
}


@media (max-width: 1024px) {
  .navbar {
    width: 70%;
  }
}


@media (max-width: 768px) {
  .navbar {
    width: 90%;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .logo {
    width: 12%;
  }

  .hamburger {
    display: block;
  }

  .menu-links {
    display: none;
    position: absolute;
    top: 8vh;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
  }

  .menu-toggle:checked + .hamburger + .menu-links {
    display: flex;
  }
}

@media (max-width: 480px) {
  .navbar {
    width: 100%;
    height: 9vh;
  }

  .logo {
    width: 15%;
  }
}




    .video-section {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .header-text{
      position: absolute;
      justify-self: center;
      text-align: center;
      bottom: 12vh;
      z-index: 10;
      width: 100%;
      left: 0;
    }
    .header-text h1{
      font-size: 2.5rem;
    }

    .video-container {
      width: 100%;
      height: 100vh;
      overflow: hidden;
      position: relative;
    }

    .video-slider {
      display: flex;
      width: 300%;
      height: 100%;
      animation: slideSequence 18s infinite;
    }

    .video-slider video {
      width: 33.333%;
      height: 100vh;
      object-fit: cover;
    }

    @keyframes slideSequence {
      0%, 30% {
        transform: translateX(0);
      }
      33.33%, 63.33% {
        transform: translateX(-33.333%);
      }
      66.66%, 96.66% {
        transform: translateX(-66.666%);
      }
      100% {
        transform: translateX(0);
      }
    }

    /* Cards Section */
    .cards-section {
      padding: 80px 0;
      background-color: #000;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .cards-title {
      font-size: 2.5rem;
      margin-bottom: 60px;
      text-align: center;
      color: #fff;
      font-weight: bold;
      letter-spacing: 2px;
    }

    .cards-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 1fr);
      gap: 0;
      max-width: 100%;
      width: 100%;
    }

    .card {
      position: relative;
      overflow: hidden;
      height: 80vh;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: scale(1.05);
      z-index: 5;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .card:hover .card-img {
      transform: scale(1.1);
    }

    .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
      padding: 20px;
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }

    .card:hover .card-overlay {
      transform: translateY(0);
    }

    .card-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
      color: #fff;
    }

    .card-text {
      font-size: 0.9rem;
      color: #ccc;
    }

    .card-btn {
      display: inline-block;
      margin-top: 15px;
      padding: 8px 20px;
      background-color: #d90000;
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .card-btn:hover {
      background-color: #ff0000;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .cards-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
      }
      
      .card {
        height: 80vh;
        justify-content: center;
      }
    }




    .footer {
  background-color: #111;
  color: #ccc;
  padding: 40px 80px;
}

.newsletter {
  text-align: center;
  padding: 40px 0;
}

.newsletter h2 {
  font-size: 24px;
  color: #fff;
}

.newsletter p {
  color: #aaa;
  margin-bottom: 20px;
}

.subscribe-btn {
  background: linear-gradient(90deg, #ff3c00, #d30000);
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  opacity: 0.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.footer-column h3 {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-column ul li:hover {
  color: #fff;
}

.divider {
  border: 0;
  height: 1px;
  background-color: #333;
  margin: 40px 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 14px;
}

.socials i {
  margin-right: 10px;
  color: #fff;
}

.legal {
  text-align: center;
  font-size: 11px;
  color: #777;
  line-height: 1.6;
  margin: 40px 0;
}

.accessibility {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 14px;
}

.accessibility i {
  font-size: 22px;
}

.bottom-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 20px 50px;
  flex-wrap: wrap;
}

.bottom-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.bottom-links li {
  cursor: pointer;
}

.bottom-links li:hover {
  color: #fff;
}

.country {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0fffc0;
  font-size: 13px;
}

.country i {
  color: #fff;
}
