        @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff;
            color: #333;
        }

        header {
            background: #06223f;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 999;
            padding: 1.2rem 8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgb(0, 0, 0);

        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 32px;
            height: 32px;
            justify-content: center;
            align-items: center;
            margin-left: 16px;
        }

        .menu-toggle span {
            height: 4px;
            width: 28px;
            background: #006bdc;
            margin: 3px 0;
            border-radius: 2px;
            display: block;
            transition: 0.3s;
        }

        @media (max-width: 991px) {
            nav ul {
                display: none;
                flex-direction: column;
                background: #fff;
                position: absolute;
                top: 70px;
                right: 20px;
                width: 200px;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
                border-radius: 10px;
                z-index: 100;
                padding: 20px 0;
            }

            nav ul.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }
        }

        nav ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            padding: 10px 15px;
            color: rgb(255, 255, 255);
            text-decoration: none;
            font-weight: 600;
        }

        nav ul li a:hover {
            color: rgb(255, 255, 255);
            background: rgba(172, 170, 170, 0.1);
        }

        .btn-trial {
            background: rgb(84, 84, 255);
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
        }

        /* hero section */
        .hero-section {
            min-height: 800px;
            padding: 40px 0 40px 0;
            /* background: linear-gradient(120deg, #ffffff 0%, #fff 100%); */
        }

        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 700;
            color: #071c48;
            margin-bottom: 1.2rem;
        }

        #animated-title::after {
            content: '|';
            animation: blink 1s infinite;
            margin-left: 4px;
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0;
            }
        }

        .hero-section p.lead {
            color: #4f4f4f;
            font-size: 1.25rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 991px) {
            .hero-section {
                min-height: 500px;
                padding: 40px 0 20px 0;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-section img {
                max-height: 260px;
            }
        }

        @media (max-width: 575px) {
            .hero-section {
                min-height: 400px;
                padding: 30px 0 10px 0;
            }

            .hero-section h1 {
                font-size: 1.5rem;
            }

            .hero-section img {
                max-height: 180px;
            }
        }

        /* testimonial */

        .testimonial-carousel {
            position: relative;
            /* max-width: 800px; */
            width: 100%;
            margin: 0 auto;
        }

        .testimonial-slide {
            text-align: center;
            padding: 20px;
        }

        .testimonial-slide img {
            border-radius: 50%;
            width: 100px;
            height: 100px;
            margin-bottom: 20px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            color: #fff;
        }

        /* pre footer section */
        .prefooter-cta {
            background: linear-gradient(90deg, #f8fafc 0%, #f2f8ff 100%);
            padding: 48px 20px 40px 20px;
            text-align: center;
            border-top: 1px solid #e3e8ee;
            box-shadow: 0 -2px 16px rgba(44, 62, 80, 0.04);
        }

        .prefooter-cta h2 {
            color: #273c75;
            font-size: 2rem;
            margin-bottom: 12px;
            font-weight: 700;
            letter-spacing: 0.01em;
        }

        .prefooter-cta p {
            color: #576574;
            font-size: 1.15rem;
            margin-bottom: 28px;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-block;
            padding: 14px 36px;
            font-size: 1.1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s, color 0.2s, box-shadow 0.2s;
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.07);
        }

        /* Outline/Outlined button style */
        .cta-btn.outline {
            background: transparent;
            color: #007bff;
            border: 2px solid #007bff;
        }

        .cta-btn.outline:hover {
            background: #007bff;
            color: #fff;
            box-shadow: 0 4px 12px rgba(44, 62, 80, 0.1);
        }

        @media (max-width: 600px) {
            .prefooter-cta h2 {
                font-size: 1.3rem;
            }

            .cta-btn {
                width: 100%;
                padding: 14px 0;
                font-size: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 12px;
            }
        }

        /* footer */

        .new_footer_area {
            background: #fbfbfd;
        }


        .new_footer_top {
            padding: 120px 0px 270px;
            position: relative;
            overflow-x: hidden;
        }

        .new_footer_area .footer_bottom {
            padding-top: 5px;
            padding-bottom: 50px;
        }

        .footer_bottom {
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            color: #7f88a6;
            padding: 27px 0px;
        }

        .new_footer_top .company_widget p {
            font-size: 16px;
            font-weight: 300;
            line-height: 28px;
            color: #6a7695;
            margin-bottom: 20px;
        }

        .new_footer_top .company_widget .f_subscribe_two .btn_get {
            border-width: 1px;
            margin-top: 20px;
        }

        .btn_get_two:hover {
            background: transparent;
            color: #5e2ced;
        }

        .btn_get:hover {
            color: #fff;
            background: #6754e2;
            border-color: #6754e2;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

        a:hover,
        a:focus,
        .btn:hover,
        .btn:focus,
        button:hover,
        button:focus {
            text-decoration: none;
            outline: none;
        }



        .new_footer_top .f_widget.about-widget .f_list li a:hover {
            color: #5e2ced;
        }

        .new_footer_top .f_widget.about-widget .f_list li {
            margin-bottom: 11px;
        }

        .f_widget.about-widget .f_list li:last-child {
            margin-bottom: 0px;
        }

        .f_widget.about-widget .f_list li {
            margin-bottom: 15px;
        }

        .f_widget.about-widget .f_list {
            margin-bottom: 0px;
        }

        .new_footer_top .f_social_icon a {
            width: 44px;
            height: 44px;
            line-height: 43px;
            background: transparent;
            border: 1px solid #e2e2eb;
            font-size: 24px;
        }

        .f_social_icon a {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            font-size: 14px;
            line-height: 45px;
            color: #858da8;
            display: inline-block;
            background: #ebeef5;
            text-align: center;
            -webkit-transition: all 0.2s linear;
            -o-transition: all 0.2s linear;
            transition: all 0.2s linear;
        }

        .ti-facebook:before {
            content: "\e741";
        }

        .ti-twitter-alt:before {
            content: "\e74b";
        }

        .ti-vimeo-alt:before {
            content: "\e74a";
        }

        .ti-pinterest:before {
            content: "\e731";
        }

        .btn_get_two {
            -webkit-box-shadow: none;
            box-shadow: none;
            background: #5e2ced;
            border-color: #5e2ced;
            color: #fff;
        }

        .btn_get_two:hover {
            background: transparent;
            color: #5e2ced;
        }

        .new_footer_top .f_social_icon a:hover {
            background: #5e2ced;
            border-color: #5e2ced;
            color: white;
        }

        .new_footer_top .f_social_icon a+a {
            margin-left: 4px;
        }

        .new_footer_top .f-title {
            margin-bottom: 30px;
            color: #263b5e;
        }

        .f_600 {
            font-weight: 600;
        }

        .f_size_18 {
            font-size: 18px;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: #4b505e;
        }

        .new_footer_top .f_widget.about-widget .f_list li a {
            color: #6a7695;
        }


        .new_footer_top .footer_bg {
            position: absolute;
            bottom: 0;
            background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
            width: 100%;
            height: 266px;
        }

        .new_footer_top .footer_bg .footer_bg_one {
            background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
            width: 330px;
            height: 105px;
            background-size: 100%;
            position: absolute;
            bottom: 0;
            left: 30%;
            -webkit-animation: myfirst 22s linear infinite;
            animation: myfirst 22s linear infinite;
        }

        .new_footer_top .footer_bg .footer_bg_two {
            background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
            width: 88px;
            height: 100px;
            background-size: 100%;
            bottom: 0;
            left: 38%;
            position: absolute;
            -webkit-animation: myfirst 30s linear infinite;
            animation: myfirst 30s linear infinite;
        }



        @-moz-keyframes myfirst {
            0% {
                left: -25%;
            }

            100% {
                left: 100%;
            }
        }

        @-webkit-keyframes myfirst {
            0% {
                left: -25%;
            }

            100% {
                left: 100%;
            }
        }

        @keyframes myfirst {
            0% {
                left: -25%;
            }

            100% {
                left: 100%;
            }
        }

        /*************footer End*****************/


        .footer-flag {
            width: 40px;
            height: auto;
        }