/* Particle container */
.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(85, 115, 247, 0.8);
    border-radius: 50%;
    pointer-events: none;
    animation: particleAnimation 1s linear infinite;
    opacity: 0;
    z-index: 1;
}

/* Particle movement and fading effect */
@keyframes particleAnimation {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0;
    }
}



* {
    cursor: none;
}

/* Custom cursor style */
.custom-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #13708d;
    border: 2px solid #a027e6ec;
    pointer-events: none;
    transition: transform 0.2s ease, width 0.2s ease, height 0.2s ease;
    z-index: 9999;
}

/* Animated effect on hover */
.custom-cursor-hover {
    width: 40px;
    height: 40px;
    transform: scale(1.5);
}

/* Cursor animation tracking movement */
body {
    cursor: none;
}



.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 30px;
    height: 4px;
    background: #e2e8f0;
    transition: 0.3s;
}



@media (max-width: 1024px) {
    .custom-cursor{
        display: none;
    }
}




