h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.btn {
  padding: 8px 16px;
  border-radius: 32px;
}

.btn-sm {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
}

::selection {
  color: #ffffff;
  background: #0054ad;
  text-shadow: none;
}

.bento-card {
  background: var(--bs-body-bg);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bento-card-icon {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.bento-card-placeholder {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.4;
  font-size: 6rem;
  color: var(--bs-primary);
  z-index: 1;
}

.bento-card-description {
  font-size: 0.9rem;
  color: var(--bs-secondary);
  flex-grow: 1;
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .bento-card {
    margin-bottom: 1rem;
  }
}

.carousel-controls-container {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  align-items: center;
}

.carousel-control-prev, .carousel-control-next {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  opacity: 1;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  background-color: #ccddef;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

#pausePlayBtn {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  color: black;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

#pausePlayBtn:hover {
  background-color: #ccddef;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  padding: 8px var(--bs-offcanvas-padding-x);
}

