@font-face {
  font-family: 'LPMQ Isep Misbah';
  src: url('../fonts/LPMQIsepMisbah.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  background-color: #eee;
  font-family: 'Quicksand', sans-serif;
}

.font-arabic {
  font-family: 'LPMQ Isep Misbah';
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #facc15;
}

.pulse-circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #5EEAD4, #7DD3FC);
    opacity: 0.8;
    filter: blur(10px);
    animation: softPulse 1.5s ease-in-out infinite;
}

@keyframes softPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}
