    html {
        scroll-padding-top: 96px;
        /* navbar ni height (h-24 = 96px) */
        scroll-behavior: smooth;
        /* jo already nathi to smooth scroll pan aavi jashe */
    }



    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }



    html {

        scroll-behavior: smooth;

    }

    body {

        font-family: 'Outfit', sans-serif;
        overflow-x: hidden;
        background: #fff;
        color: #111;

    }

    img {

        max-width: 100%;
        display: block;

    }

    a {

        text-decoration: none;

    }

    li {

        list-style: none;

    }

    ::-webkit-scrollbar {

        width: 8px;

    }

    ::-webkit-scrollbar-thumb {

        background: #111;
        border-radius: 50px;

    }

    ::-webkit-scrollbar-track {

        background: #f3f3f3;

    }