/* Best Soft Company — camp demo layout + alert styling */

/* Hero slider — CSS crossfade before Owl init */
.hero-slider.owl-carousel:not(.owl-loaded) {
  display: block !important;
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero-slider.owl-carousel:not(.owl-loaded) .hero-single {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
}
.hero-slider.owl-carousel:not(.owl-loaded) .hero-single:nth-child(1) {
  animation: bsHeroFade1 10s infinite;
  z-index: 2;
}
.hero-slider.owl-carousel:not(.owl-loaded) .hero-single:nth-child(2) {
  animation: bsHeroFade2 10s infinite;
  z-index: 1;
}
@keyframes bsHeroFade1 {
  0%, 48% { opacity: 1; visibility: visible; }
  52%, 100% { opacity: 0; visibility: hidden; }
}
@keyframes bsHeroFade2 {
  0%, 48% { opacity: 0; visibility: hidden; }
  52%, 100% { opacity: 1; visibility: visible; }
}
.hero-section {
  position: relative;
  min-height: 520px;
}
.hero-single {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Testimonial slider fallback */
.testimonial-slider.owl-carousel:not(.owl-loaded) {
  display: block !important;
}
.testimonial-slider.owl-carousel:not(.owl-loaded) > *:not(:first-child) {
  display: none !important;
}

/* Demo alert */
.demo-swal-popup {
  border-radius: 16px !important;
  padding: 1.5rem !important;
}
.demo-alert-body {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}
.demo-alert-icon {
  display: block;
  font-size: 3rem;
  color: #1fa3a8;
  margin: 0 auto 1rem;
  line-height: 1;
}
.demo-alert-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1fa3a8, #158a8f);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.demo-alert-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #253d4e;
  margin: 0 0 0.75rem;
}
.demo-alert-text {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #5c6c75;
  margin: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
