/* Hero Slider Navigation Arrows */
.hero-slider-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(5,51,16,0.13);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-slider-arrow:hover {
  background: #ffd700 !important;
  color: #053310 !important;
  box-shadow: 0 0 18px #ffd700;
  transform: scale(1.08);
}

/* Hero background images responsive and animated */
.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.hero-bg-img.active {
  opacity: 1;
  z-index: 1;
}

/* Hero caption styling */
.hero-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5,51,16,0.82);
  color: #ffd700;
  padding: 0.7rem 2rem;
  border-radius: 1.2rem;
  font-size: 1.25rem;
  box-shadow: 0 2px 12px rgba(5,51,16,0.13);
  letter-spacing: 0.01em;
  z-index: 2;
  min-width: 220px;
  max-width: 90vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .hero-caption {
    font-size: 1rem;
    padding: 0.5rem 1.1rem;
    bottom: 1.1rem;
  }
}
/* Ensure .bg-success always uses the custom --bs-success variable */
.bg-success {
  background-color: var(--bs-success) !important;
}
/* ASUP OYSCATECH Bootstrap 5 Color Theme Overrides */
:root {
  --bs-primary: #05300e;
  --bs-primary-rgb: 33, 136, 56;
  --bs-success: #053310;
  --bs-success-rgb: 40, 167, 69;
  --bs-warning: #ffd700;
  --bs-warning-rgb: 255, 215, 0;
  --bs-body-bg: #e6f4ea;
  --bs-body-color: #222;
}

body {
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}

/* Utility classes for custom green */
.bg-asup-green {
  background-color: #05350f !important;
  color: #fff !important;
}
.text-asup-green {
  color: #083f14 !important;
}
.section-title {
  font-size: 1.5rem;
  color: #062e0f;
  border-bottom: 2px solid #218838;
  padding-bottom: 0.3rem;
  margin-bottom: 1.2rem;
}

/* White navbar with ASUP green text */
.navbar.asup-navbar {
  background-color: #fff !important;
  color: #083f14 !important;
  border-bottom: 2px solid #218838;
}
.navbar.asup-navbar .navbar-brand,
.navbar.asup-navbar .nav-link {
  color: #083f14 !important;
}
.navbar.asup-navbar .nav-link.active,
.navbar.asup-navbar .nav-link:focus,
.navbar.asup-navbar .nav-link:hover {
  color: #218838 !important;
}
footer { position: relative; bottom: 0; width: 100%; }
.btn-success { background-color: #218838; border-color: #218838; }
