* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #003366, #008080);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  color: white;
}

.navbar-brand {
  color: white !important;
  font-size: 2rem !important;
  font-weight: bold;
}
.navbar-nav .nav-link {
  color: #fffff0;
  transition: color 0.3s ease, transform 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #00aced;
  transform: scale(1.05);
}

.navbar-toggler {
  border: 1px solid white !important;
}
.navbar-toggler-icon {
  mix-blend-mode: color-burn;
}

.wrapper {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0px;
}

.custom-logo {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  padding: 20px;
  display: inline-block;
}

.description {
  margin-bottom: 30px;
  font-size: 1.2rem;
  color: #ddd;
  text-align: center;
}

.input-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  width: 85%;
}
.Input {
  padding: 15px;
  border-radius: 25px 0 0 25px;
  border: none;
  outline: none;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  width: 85%;
}

#submitBtn {
  padding: 15px 30px;
  border-radius: 0 25px 25px 0;
  border: none;
  background-color: #28a745;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

#submitBtn:hover {
  background-color: #218838;
}

.result-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 20px auto;
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.result-item {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 10px;
  text-align: left;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.result-item:hover {
  transform: scale(1.02);
}

.result-item h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.result-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}
.stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
  max-width: 800px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
  text-align: center;
  width: 100px;
  height: 120px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 768px) {
  .wrapper {
    padding: 30px;
  }

  .custom-logo {
    font-size: 2.5rem;
    padding: 15px;
  }

  .description {
    font-size: 1rem;
  }

  .Input,
  #submitBtn {
    padding: 12px;
    font-size: 14px;
  }

  #submitBtn {
    padding: 12px 20px;
  }
  .result-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .result-item h5 {
    font-size: 1rem;
  }

  .result-item p {
    font-size: 0.8rem;
  }
  .stat-item {
    width: 80px;
    height: 100px;
  }

  .stat-circle {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .wrapper {
    padding: 20px;
  }

  .custom-logo {
    font-size: 2rem;
    padding: 10px;
  }

  .description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .input-wrapper {
    flex-direction: column;
  }

  .Input,
  #submitBtn {
    width: 100%;
    border-radius: 25px;
    margin-bottom: 10px;
    font-size: 14px;
  }

  #submitBtn {
    border-radius: 25px;
    padding: 12px;
  }
  .result-wrapper {
    grid-template-columns: 1fr;
  }

  .result-item {
    padding: 10px;
    margin-bottom: 8px;
  }

  .result-item h5 {
    font-size: 0.9rem;
  }

  .result-item p {
    font-size: 0.8rem;
  }
  .stats-wrapper {
    gap: 10px;
  }

  .stat-item {
    width: 70px;
    height: 90px;
  }

  .stat-circle {
    width: 40px;
    height: 40px;
    font-size: 0.7rem;
  }
}
