/* Custom Styles for Maica */

/* Gradient Text */
.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #2a3866, #032bae); /* Match section 4 gradient */
  }
  
  /* Smooth Scrolling */
  html {
    scroll-behavior: smooth;
  }
  
  /* FAQ Marker Styling (Optional) */
  details > summary {
    list-style: none; /* Remove default marker */
  }
  details > summary::-webkit-details-marker {
    display: none; /* Remove default marker for Chrome/Safari */
  }
  
  /* Swiper Pagination Bullet Colors */
  .swiper-pagination-bullet {
    background-color: rgba(160, 178, 229, 0.7); /* maica-blue-accent with opacity */
    opacity: 1;
    width: 10px;
    height: 10px;
  }
  
  .swiper-pagination-bullet-active {
    background-color: #6880d2; /* maica-blue-light */
  }
  
  /* Lite Vimeo Player Focus Ring */
  lite-vimeo:focus-visible {
    outline: 2px solid #6880d2; /* maica-blue-light */
    outline-offset: 2px;
  }
  
  /* Improve Modal Focus */
  [role="dialog"] {
      outline: none;
  }