@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: gray !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: 155px;
    /* Adjust size */
    margin-bottom: 8px;
    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;
}





.main_img img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    margin-bottom: 25px;
    max-height: 500px;
}

.description {
    color: var(--IVIS-black-50);
}

.description img {
    margin-bottom: 20px;
    max-width: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 2px;
}

h1 {
    font-size: 30px;
    padding: 5px 16px 10px;
    font-weight: 700;
}

.description ul {
    list-style-type: disc;
    margin-left: 35px;
}

.description p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
    color: var(--IVIS-gray-600);
    font-weight: 400;
}

.description strong {
    font-weight: 600;
}

.description li {
    margin-bottom: 8px;
}

.description li p {
    margin-bottom: 0px;
}

.description h2::before {
    display: none;
}

.description h2,
.description h3,
.description h4,
.description h5 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--IVIS-black-100);
    margin-top: 10px;
}

.description h2 {
    font-size: 28px;
}

.description h3 {
    font-size: 23px;
}
