@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400..800&display=swap');

body{
font-family: "Baloo Da 2", sans-serif;
box-sizing: border-box;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    display: none ;
}

.nav-menu li a {
    position: relative;
}
.nav-menu li a::before {
    bottom: -2px ;
    left: 0;
    content: '';
    position: absolute;
    width: 100%;
    height: 0px;
    border-radius: 4px;
    transition: ease-in-out 0.3s;
    background-color: var(--color-secondary);
}
.nav-menu li a:hover::before {
    height: 3px;
}

.nav-menu li a.not_b::before {
    display: none;
}


/* Base bullets */
.swiper-pagination-bullet{
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: white !important;
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7 !important;
}

/* Active bullet with pulse */
.swiper-pagination-bullet-active {
    background: var(--color-secondary) !important;
        transform: scale(1.5);
        border: 1px solid white;
    opacity: 1;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}






.loading {
    position: fixed;
    inset: 0;
    background: #fffffff9;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 99999;
}

/* Logo animation */
.loading img {
    width: 120px;
    /* Adjust size */
    animation: pulse 1.4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.logo-particle-container {
    position: relative;
    z-index: 2;
}

.logo-particle {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    animation: gentleBounce 2s infinite ease-in-out;
}

.particles {
    position: absolute;
    width: 300px;
    height: 300px;
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b718;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
        opacity: 0;
    animation: particleExplode 2s infinite linear;
}

.particles::after {
    background: #00b718;
    animation-delay: 0.5s;
}

.loading-status {
    color: #e2e8f0;
    font-family: 'Segoe UI', system-ui, sans-serif;
    font-size: 1rem;
    margin-top: 2rem;
    letter-spacing: 0.5px;
}

.loading-dots {
    display: inline-block;
    width: 1.5em;
    text-align: left;
}

.loading-dots::after {
    content: '';
    animation: statusDots 1.8s infinite steps(4);
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

@keyframes particleExplode {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }

    100% {
        transform: translate(calc(-50% + var(--tx, 0px)),
                calc(-50% + var(--ty, 0px))) scale(1);
        opacity: 0;
    }
}

/* Generate multiple particles with CSS variables */
.particles {
    --tx: 0px;
    --ty: 0px;
}

.particles::before {
    --tx: 80px;
    --ty: -60px;
}

.particles::after {
    --tx: -70px;
    --ty: 70px;
}

@keyframes statusDots {
    0% {
        content: '';
    }

    25% {
        content: '.';
    }

    50% {
        content: '..';
    }

    75% {
        content: '...';
    }

    100% {
        content: '';
    }
}


#blog-pagination nav div{
    gap:10px;
}

.description p,
.description span,
.description div{
font-family: "Baloo Da 2", sans-serif !important;
}



.relative mb-6{
    text-align: center;
}


