/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 03 2025 | 21:15:40 */
/* Custom Cursor Styling */
.custom-cursor {
    position: fixed;
    width: 80px;
    height: 80px;
    background-color: white;
    color: black;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Cursor appears when hovering over .cursor-hover */
.cursor-hover:hover ~ .custom-cursor {
    transform: translate(-50%, -50%) scale(1);
}

/* Shrink the cursor when leaving the hover area */
.shrink {
    transform: translate(-50%, -50%) scale(0) !important;
}
