* {
  font-family: "Segoe UI", sans-serif;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: #1e1e1e;
  height: 100vh;
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 0;
  animation: fadeSlideDown 0.8s ease;
}

.navbar img {
  height: 40px;
  margin-left: 20px;
  border-radius: 10px;
}

.navbar .quicklinks {
  display: flex;
  justify-content: right;
  gap: 20px;
  margin-right: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  transition: 0.5s;
}

.navbar a:hover {
  background-color: rgb(211, 211, 211);
  color: black;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  display: none;
}

.slider {
  position: fixed;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  position: absolute;
  inset: 0;
}

.slide.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: white;
  padding: 100px 60px 80px;
  border-radius: 0;
  text-align: left;
  z-index: 5;
}

.slide-caption h3 {
  margin: 0 0 8px;
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.slide-caption p {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.97);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.slide-dots {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.slide-dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.slide-dots li.active {
  background: white;
  transform: scale(1.3);
}

.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    transform 0.3s;
  z-index: 10;
}

.btn-prev:hover,
.btn-next:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.08);
}

.btn-prev {
  left: 24px;
}

.btn-next {
  right: 24px;
}

.btn-prev-icon,
.btn-next-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.btn-prev-icon {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.btn-next-icon {
  transform: rotate(45deg);
  margin-right: 3px;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 60px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  border-radius: 0;
  animation: fadeSlideUp 0.8s ease;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
    margin-top: 20px;
  }

  .navbar {
    padding: 8px;
  }

  .navbar img {
    height: 30px;
    margin-left: 10px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
  }

  .slide-dots {
    bottom: 80px;
  }

  .slide-caption {
    padding: 60px 24px 110px;
  }

  .slide-caption h3 {
    font-size: 1.6rem;
  }

  .slide-caption p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .slide-dots {
    bottom: 96px;
  }

  .slide-caption {
    padding: 40px 16px 120px;
  }

  .slide-caption h3 {
    font-size: 1.3rem;
  }

  .slide-caption p {
    font-size: 0.85rem;
  }
}
