body {
  margin: 0;
  background-color: rgb(32, 32, 32);
  font-family: Arial, sans-serif;
}
.home {
  text-align: center;
  background-color: #000000;
  color: white;
  padding: 50px 20px;
  font-size: 1.8rem;
  font-weight: bold;
}
.carousel {
  max-width: 80%;
  margin: 30px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  animation: slideInRight 1s ease-out;
}
.carousel-inner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.counter-card {
  background-color: #ffc107;
  color: #000;
  text-align: center;
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 2rem;
  animation: slideInFromLeft 1s ease-in-out;
}
.card-content {
  font-size: 3rem;
  font-weight: bold;
}
.counter {
  font-size: 4rem;
  color: red;
  font-weight: bold;
}
.program-btn {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: #d9534f;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: background 0.3s;
  text-align: center;
}
.program-btn:hover {
  background-color: #c9302c;
}
.footer {
  background-color: #222;
  padding: 20px;
  text-align: center;
  color: white;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  display: inline;
  margin: 0 15px;
}
.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
html, body {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: darkgray lightgray;
}
body::-webkit-scrollbar {
  width: 8px;
}
body::-webkit-scrollbar-thumb {
  background-color: darkgray;
  border-radius: 4px;
}
body::-webkit-scrollbar-track {
  background-color: lightgray;
}
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .home {
    font-size: 2rem;
  }
  .counter-card {
    max-width: 600px;
    font-size: 1.5rem;
  }
  .program-btn {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
}
@media (max-width: 480px) {
  .home {
    font-size: 1.8rem;
  }
  .counter {
    font-size: 2.5rem;
  }
  .program-btn {
    font-size: 1.2rem;
  }
}
