@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
html {
    scroll-behavior: smooth;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background: #22c55e;
    color: #fff;
    border: none;

    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    z-index: 999;
    width: 40px;
    display: inline-block;
    height: 48px;
    text-align: center;
}
#scrollTopBtn:hover {
    background: #fff;
    box-shadow: 0px 0px 10px #fff;
    color: #22c55e;
    border: 1px solid #22c55e;
}

#cursor {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #22c55e; /* green */
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition:
        transform 0.08s ease-out,
        width 0.2s,
        height 0.2s;
    z-index: 9999;
}
#cursor:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    width: 40px !important;
    height: 40px !important;
    background: rgba(34, 197, 94, 0.1);
}
