:root {
            --color-white-100: #fff;
            --color-white-200: #e4e6e7;
            --color-white-300: #c9cccf;
            --color-white-400: #a1a6aa;
            --color-white-500: #798086;
            --color-black-100: #14191f;
            --color-black-200: #101419;
            --color-black-300: #0c0f13;
            --color-black-400: #0c0f13;
            --color-black-500: #080a0c;
            --color-black-600: #060709;
            --color-black-700: #040506;
            --color-black-800: #020303;
            --color-blue-100: #dcebfe;
            --color-blue-200: #bedbfe;
            --color-blue-300: #91c3fd;
            --color-blue-400: #61a6fa;
            --color-blue-500: #3c83f6;
            --color-blue-600: #2463eb;
            --color-blue-700: #1d4fd7;
            --color-blue-800: #1e3fae;
            --color-blue-900: #1e3b8a;
            --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        *,
        *::before,
        *::after {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            list-style: none;
            list-style-type: none;
            text-decoration: none;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        html {
            font-size: 100%;
            box-sizing: inherit;
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(1rem, 2vw, 1.125rem);
            font-weight: 400;
            line-height: 1.5;
            color: var(--color-white-100);
        }

        a,
        button {
            cursor: pointer;
            border: none;
            outline: none;
            user-select: none;
            background: none;
            box-shadow: none;
            text-decoration: none;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p {
            text-wrap: balance;
        }

        .section {
            margin: 0 auto;
            padding: 6rem 0 1rem;
        }

        .nav_container {
            max-width: 75rem;
            height: auto;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        .centered {
            text-align: center;
            vertical-align: middle;
            margin-bottom: 1rem;
        }

        .heading-xl {
            font-size: clamp(2.648rem, 6vw, 4.241rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .heading-lg {
            font-size: clamp(2.179rem, 5vw, 3.176rem);
            font-weight: 700;
            line-height: 1.15;
            letter-spacing: -1px;
        }

        .heading-md {
            font-size: clamp(1.794rem, 4vw, 2.379rem);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -1px;
        }

        .heading-sm {
            font-size: clamp(1.476rem, 3vw, 1.782rem);
            font-weight: 600;
            line-height: 1.5;
        }

        .heading-xs {
            font-size: clamp(1.215rem, 2vw, 1.335rem);
            font-weight: 500;
            line-height: 1.5;
        }

        .paragraph {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: inherit;
            color: var(--color-white-200);
        }

        .btn {
            display: inline-block;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.5;
            text-align: center;
            vertical-align: middle;
            white-space: nowrap;
            user-select: none;
            outline: none;
            border: none;
            border-radius: 0.25rem;
            text-transform: unset;
            transition: all 0.3s ease-in-out;
        }

        .btn-inline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            column-gap: 0.5rem;
        }

        .btn-darken {
            padding: 0.75rem 2rem;
            color: var(--color-white-100);
            background-color: var(--color-black-200);
            box-shadow: var(--shadow-medium);
        }

        .btn-neutral {
            padding: 0.75rem 2rem;
            color: var(--color-black-500);
            background-color: var(--color-white-100);
            box-shadow: var(--shadow-medium);
        }

        .header {
            position: fixed;
            top: 0;
            left: 0;
            z-index: 100;
            width: 100%;
            background: white;
            height: auto;
            margin: 0 auto;
            transition: all 0.35s ease;
            box-shadow: 0 16px 11px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            flex-wrap: nowrap;
            width: 100%;
            height: 4.25rem;
            margin: 0 auto;
        }

        .brand {
            font-size: 1.6rem;
            font-weight: 600;
            line-height: 1.5;
            letter-spacing: -1px;
            color: var(--color-white-100);
            text-transform: uppercase;
        }

        .menu {
            position: fixed;
            top: -100%;
            left: 0;
            width: 100%;
            height: auto;
            padding: 4rem 0 3rem;
            overflow: hidden;
            margin-right: auto;
            margin-left: auto;
            background-color: white;
            box-shadow: var(--shadow-medium);
        }

        .menu.is-active {
            top: 0;
            width: 100%;
            height: auto;
        }

        .menu-inner {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            row-gap: 1.25rem;
            column-gap: 4rem;
        }

        .menu-link {
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5;
            color: #180d57;
            transition: all 0.3s ease;
        }

        .menu-block,
        .menu_logout {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.25;
            user-select: none;
            white-space: nowrap;
            text-align: center;
            margin-left: auto;
            padding: 7px 1.5rem;
            border-radius: 3rem;
            text-transform: capitalize;
            color: white;
            background-color: #007bff;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease-in-out;
        }

        .menu-block:hover {
            color: white;
            background: #0dcaf0;
        }

        .menu_logout:hover {
            color: white;
            background: #0dcaf0;
        }

        @media only screen and (min-width: 48rem) {
            .menu {
                position: relative;
                top: 0;
                width: auto;
                height: auto;
                padding: 0rem;
                margin-left: auto;
                background: none;
                box-shadow: none;
            }

            .menu-inner {
                display: flex;
                flex-direction: row;
                column-gap: 2rem;
                margin: 0 auto;
            }

          

            .menu-block {
                margin-left: 2rem;
            }
        }

        .burger {
            position: relative;
            display: block;
            cursor: pointer;
            user-select: none;
            order: -1;
            z-index: 10;
            width: 1.6rem;
            height: 1.15rem;
            border: none;
            outline: none;
            background: none;
            visibility: visible;
            transform: rotate(0deg);
            transition: 0.35s ease;
        }

        @media only screen and (min-width: 48rem) {
            .burger {
                display: none;
                visibility: hidden;
            }
        }

        .burger-line {
            position: absolute;
            display: block;
            left: 0;
            width: 100%;
            height: 1.75px;
            border: none;
            outline: none;
            opacity: 1;
            transform: rotate(0deg);
            background-color: black;
            transition: 0.25s ease-in-out;
        }

        .burger-line:nth-child(1) {
            top: 0px;
        }

        .burger-line:nth-child(2) {
            top: 0.5rem;
            width: 70%;
        }

        .burger-line:nth-child(3) {
            top: 1rem;
        }

        .burger.is-active .burger-line:nth-child(1) {
            top: 0.5rem;
            transform: rotate(135deg);
        }

        .burger.is-active .burger-line:nth-child(2) {
            opacity: 0;
            visibility: hidden;
        }

        .burger.is-active .burger-line:nth-child(3) {
            top: 0.5rem;
            transform: rotate(-135deg);
        }

        .banner-column {
            position: relative;
            display: grid;
            align-items: center;
            row-gap: 3rem;
        }

        @media only screen and (min-width: 48rem) {
            .banner-column {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                justify-content: center;
            }
        }

        @media only screen and (min-width: 64rem) {
            .banner-column {
                grid-template-columns: 1fr max-content;
                column-gap: 4rem;
                margin-top: 3rem;
            }
        }

        .banner-image {
            display: block;
            max-width: 18rem;
            height: auto;
            margin-top: 2rem;
            object-fit: cover;
            justify-self: center;
        }

        @media only screen and (min-width: 48rem) {
            .banner-image {
                order: 1;
                max-width: 20rem;
                height: auto;
            }
        }

        @media only screen and (min-width: 64rem) {
            .banner-image {
                max-width: 25rem;
                height: auto;
                /*margin-right: 5rem;*/
            }
        }

        .banner-inner {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 1.75rem;
        }

        .banner-links {
            position: absolute;
            top: 30%;
            right: 1.5rem;
            display: grid;
            justify-items: center;
            row-gap: 0.5rem;
            opacity: 0;
            visibility: hidden;
        }

        @media only screen and (min-width: 64rem) {
            .banner-links {
                opacity: 1;
                visibility: visible;
            }
        }

        .banner-links>* {
            font-size: 1.25rem;
            line-height: 1.25;
            color: var(--color-white-100);
        }

        .banner-links::before {
            position: absolute;
            content: "";
            top: -3rem;
            width: 4rem;
            height: 1.5px;
            transform: rotate(90deg);
            background: var(--color-white-100);
        }

        .banner-links::after {
            position: absolute;
            content: "";
            bottom: -3rem;
            width: 4rem;
            height: 2px;
            transform: rotate(90deg);
            background: var(--color-white-100);
        }

        .navbar .logo {
            width: 180px;
            display: block;
            margin-top: auto;
            margin-bottom: auto;
        }

        .pro_drop_btn {
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-top: 5%;
            margin-left: 35%;
            cursor: pointer
        }

        .pro_drop_down {
            position: relative;
            display: inline-block;
        }

        .pro_dropdown_content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .pro_dropdown_content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }

        .pro_dropdown_content a:hover {
            background-color: #f1f1f1
        }

        .pro_drop_down:hover .pro_dropdown_content {
            display: block;
        }

        .pro_drop_down:hover .pro_drop_btn {
            background-color: #3e8e41;
        }

        .smallscreen {
            display: none;
        }


        @media only screen and (max-width:480px) {
            .navbar .logo {
                width: 150px;
            }

            .menu-block {
                font-weight: 400;
                padding: 0.5rem 1rem;
            }
        }

        @media only screen and (max-width:767px) {
            .smallscreen {
                display: block;
            }

            .pro_drop_down {
                display: none;
            }
        }

        .hide {
            display: none;
        }


        /* CSS for the popup */
        .custom_popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 9999;
        }

        .popup_content {
            background-color: #fff;
            max-width: 300px;
            margin: 20% auto;
            /* Adjust as needed for vertical alignment */
            padding: 20px;
            text-align: center;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .popup_btn {
            padding: 8px 20px;
            margin: 5px;
            border: none;
            border-radius: 3px;
            cursor: pointer;
            background-color: #3498db;
            /* Blue color for buttons */
            color: #fff;
            /* Text color for buttons */
        }

        .popup_btn:hover {
            background-color: #2980b9;
            /* Darker blue color on hover */
        }

        .popup_btn:last-child {
            background-color: #e74c3c;
            /* Red color for the "No" button */
        }

        .popup_btn:last-child:hover {
            background-color: #c0392b;
            /* Darker red color on hover */
        }

        .popup_content p {
            color: #000;
            /* Black color for the paragraph */
        }

        /* Media query for responsiveness */
        @media screen and (max-width: 600px) {
            .popup_content {
                max-width: 90%;
                margin: 10% auto;
                /* Adjust for vertical alignment */
            }
        }

        