/* ==========================================================================
   App Screens Carousel — Center-Focused Zoom & Glow Effect
   Loaded dynamically via fetch() — mirrors footer.html injection pattern
   ========================================================================== */

/* Allow side slides to be visible */
.interface_section .owl-stage-outer {
  overflow: hidden !important;
}

/* Each slide item — constrain size so Owl shows multiple at once */
.interface_section .owl-item .screen_frame_img {
  padding: 10px;
}

.interface_section .owl-item .screen_frame_img img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 420px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 24px;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  opacity: 0.55;
  transform: scale(0.88);
  transition:
    transform 1s cubic-bezier(0.25, 1, 0.5, 1),
    border 1s ease,
    box-shadow 1s ease,
    opacity 1s ease;
}

/* Center (active) slide — full scale, brand border & glow */
.interface_section .owl-item.center .screen_frame_img img {
  transform: scale(1);
  border: 5px solid var(--color-primary, #000078);
  opacity: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 119, 0.2);
}

/* Slider wrapper */
.interface_section .screen_slider {
  margin-top: 0;
}

/* Dots container */
.interface_section .owl-dots {
  margin-top: 28px;
  text-align: center;
}

/* Inactive dot */
.interface_section .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 999px;
  display: block;
  margin: 4px;
  transition: all 0.3s ease;
}

/* Active / hovered dot — pill shape */
.interface_section .owl-dots .owl-dot.active span,
.interface_section .owl-dots .owl-dot:hover span {
  background: var(--color-primary, #000078);
  width: 28px;
}

/* Responsive height adjustments */
@media (max-width: 768px) {
  .interface_section .owl-item .screen_frame_img img {
    height: 280px;
    max-width: 140px;
  }
}
