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

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1e1e1e, #3a3a3a);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 0 0 10px 10px;
  animation: fadeSlideDown 0.8s ease;
}

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

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

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

.nav 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 {
  text-align: center;
  margin: 40px auto 20px;
  padding: 20px;
  color: white;
  text-shadow: 2px 2px 4px #1e1e1e;
  font-size: 2.5rem;
}

.carousel {
  position: relative;
  max-width: 500px;
  margin: 0 auto 40px;
  padding: 0 50px;
}

.carousel-inner {
  position: relative;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  align-content: center;
  color: white;
  height: 300px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial h3 {
  margin: 0;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 15px 0 0;
  margin: 0;
}

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

.carousel-indicators li.active {
  background: white;
  transform: scale(1.3);
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

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

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

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

footer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 24px 60px 16px;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.5);
  border-radius: 20px 20px 0 0;
  margin-top: auto;
  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;
  }

  .nav {
    padding: 8px;
  }

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

  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }
}
