* {
    cursor: none; /* Hide default cursor */
}

.cursor-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Inner Cursor (Image) */
.cursor {
    position: absolute;
    width: 40px;
    height: 40px;
    background-image: url('cursor2/1.svg'); /* Default image */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: transform 0.15s ease-out, width 0.2s, height 0.2s;
}

/* Outer Cursor Trail */
.cursor-trail {
    position: absolute;
    width: 50px; /* Slightly larger than inner cursor */
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.2s ease-out, width 0.2s, height 0.2s;
}

/* Hover Effect */
.cursor.hover {
    background-image: url('cursor2/2.svg'); /* Change image on hover */
    width: 40px;
    height: 40px;

}
