        body {
            color: #000;
            margin: 0;
        }

        .custom-toggler {
            border: none;
            background: transparent;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 6px;
            cursor: pointer;
            padding: 5px;
            border: none !important;
            box-shadow: none !important;
            outline: none !important;
        }

        .custom-toggler:focus {
            box-shadow: none !important;
            outline: none !important;
        }


        .toggler-icon {
            width: 28px;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.35s ease-in-out;
        }

        .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
            transform: rotate(45deg) translate(6px, 5px);
        }

        .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
            opacity: 0;
        }

        .custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -9px);
        }

        #loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #000000;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loader {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .loader span {
            width: 15px;
            height: 15px;
            margin: 0 5px;
            background-color: white;
            border-radius: 50%;
            display: inline-block;
            animation: bounce 1.5s infinite ease-in-out;
        }

        .loader span:nth-child(1) {
            animation-delay: 0s;
        }

        .loader span:nth-child(2) {
            animation-delay: 0.3s;
        }

        .loader span:nth-child(3) {
            animation-delay: 0.6s;
        }

        @keyframes bounce {

            0%,
            80%,
            100% {
                transform: scale(0);
            }

            40% {
                transform: scale(1);
            }
        }

        .btn-flat {
            color: #fff;
            border: 1px solid;
        }

        .btn-flat:hover {
            border: 1px solid;
            color: #fff;
            background-color: #212529;
            box-shadow: 0px 5px 0px #ffffff;
            transform: translateY(-5px);
        }

        .btn-flat:active {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .list-inline-item a {
            display: inline-block;
            transform: scale(1);
            transition: transform 0.3s ease;
        }

        .list-inline-item a:hover {
            transform: scale(1.3);
        }

        .btn-flat-b {
            transition: 0.3s ease;
        }

        .btn-flat-b:hover {
            border: 1px solid;
            color: #000;
            background-color: #fff;
            box-shadow: 0px 5px 0px rgb(0, 0, 0);
            transform: translateY(-5px);
        }

        .btn-flat-c {
            color: #000;
            border: none;
            transition: 0.3s ease-in-out;
        }

        .btn-flat-c:hover {
            border: 1px solid;
            color: #000;
            background-color: #fff;
            border: 1px solid;
            box-shadow: 0px 5px 0px #000;
            transform: translateY(-5px);
        }

        .spline-background {
            position: absolute;
            top: 0;
            left: 250px;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        #hero {
            position: relative;
            overflow: hidden;
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
        }

        #particles-hero {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 0;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        #typedText {
            text-shadow:
                -1px -1px 0 #fff,
                1px -1px 0 #fff,
                -1px 1px 0 #fff,
                1px 1px 0 #fff;
        }

        .subheading {
            text-shadow:
                -1px -1px 0 #fff,
                1px -1px 0 #fff,
                -1px 1px 0 #fff,
                1px 1px 0 #fff;
        }

        @media (max-width: 991px) {
            #sideNav {
                transform: translateY(-100%);
                opacity: 0;
                transition: transform 0.4s ease, opacity 0.4s ease;
            }

            #sideNav.show-navbar {
                transform: translateY(0);
                opacity: 1;
            }

            #hero {
                position: relative;
                overflow: hidden;
            }
        }

        @media (max-width: 768px) {

            #typedText {
                text-shadow:
                    -1px -1px 0 #fff,
                    1px -1px 0 #fff,
                    -1px 1px 0 #fff,
                    1px 1px 0 #fff;
            }

            .spline-background {
                position: absolute;
                top: 70px;
                left: 0px;
                width: 100%;
                height: 100%;
                z-index: 0;
                scale: 2;
            }

            .subheading {
                text-shadow:
                    -1px -1px 0 #000,
                    1px -1px 0 #000,
                    -1px 1px 0 #000,
                    1px 1px 0 #000;
            }
        }

        @keyframes fall {
            0% {
                transform: translateY(-50px);
                opacity: 0;
            }

            100% {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .btn-flat-d {
            transition: 0.3s ease;
        }

        .btn-flat-d:hover {
            border: 1px solid;
            color: #000;
            background-color: #fff;
            box-shadow: 0px 5px 0px rgb(0, 0, 0);
            transform: translateY(-5px);
        }

        .btn-flat-d:active {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        .btn-flat-d-active {
            border: 1px solid;
            color: #000;
            background-color: #fff;
            box-shadow: 0px 5px 0px rgb(0, 0, 0);
            transform: translateY(-5px);
        }

        .btn-flat-d-active:hover {
            border: 1px solid;
            color: #000;
            background-color: #fff;
            box-shadow: 0px 5px 0px rgb(0, 0, 0);
            transform: translateY(-5px);
        }

        .c-link {
            position: relative;
            transition: color 0.3s ease;
        }

        .icon-container {
            display: inline-block;
            transition: margin-left 0.3s ease;
        }

        .c-link:hover .icon-container {
            margin-left: 8px;
        }