/* Center align section titles */
.section-title {
  text-align: center !important;
}

.section-title h2 {
  margin-left: auto;
  margin-right: auto;
}

.section-title > div {
  justify-content: center !important;
  display: flex !important;
}

/* Mobile responsive section titles */
@media (max-width: 768px) {
  .section-title {
    padding: 0 15px !important;
  }
  .section-title h2 {
    font-size: 1.35rem !important;
    line-height: 1.35 !important;
    margin-bottom: 5px !important;
  }
  .section-title div {
    flex-direction: column !important;
    gap: 4px !important;
  }
  .section-title span {
    display: block !important;
    text-align: center !important;
    font-size: 1.05rem !important;
  }
}

/* Floating back-to-top arrow */
.bi-arrow-up-short {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  z-index: 9999 !important;
  background: #428bca !important;  /* Blue background */
  color: white !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 22px !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
}

.bi-arrow-up-short:hover {
  background: #3071a9 !important;  /* Darker blue on hover */
  transform: translateY(-5px) !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3) !important;
}
