    @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {

        font-family: "Jost", sans-serif;
        font-optical-sizing: auto;
        font-style: normal;
        background-color: #f9f9f9;
        color: black;
    }

    .navbar-brand img {
        margin-right: 8px;
    }

    head {
        background-color: #360159 !important;
    }


    .download-btn {

        border-radius: 12px;
        padding: 8px 18px;
        background: #18181B;
        color: #fff;
        font-weight: 500;
        transition: 0.3s;
        box-shadow: 0 0 1px #44BCFF, 0 0 4px #44B0FF, 0 0 5px #FF44EC, 0 0 5px #FF675E;

    }

    .download-btn:hover {
        background: #D60665;
        color: #fff;
    }

    .nav-link.active {
        color: #D60665 !important;
        /* Pink active color */
        font-weight: 600;
    }

    .nav-link:hover {
        color: #D60665 !important;
    }


    .hero {
        text-align: center;
        padding: 100px 20px 60px;
    }


    #heroCarousel {

        background: linear-gradient(135deg, #FFFFFF, #FEF1F9);
    }

    .hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .hero h1 .highlight {
        color: #D60665;
        /* Pink highlight */
    }

    .hero p {
        max-width: 600px;
        margin: 20px auto 40px;
        color: #555;
        font-size: 1rem;
    }

    .store-buttons img {
        height: 55px;
        margin: 0 10px;
        transition: transform 0.2s ease;
    }

    .store-buttons img:hover {
        transform: scale(1.05);
    }

    .hero-section {
        border-radius: 2rem;
        overflow: hidden;
        margin: 2rem auto;
        min-height: 400px;
        display: flex;
        align-items: center;
        max-width: 98%;
        border-radius: 24px !important;
    }

    .hero-slide {
        background-size: cover;
        background-position: center;
        height: 500px !important;
        border-radius: 2rem;
        color: #fff;
    }

    .banner-content {
        padding-top: 22px !important;
        padding-bottom: auto;
        padding-right: 60px !important;
        padding-left: 0px !important;
        text-align: center !important;
    }

    .hero-content h2 {
        font-size: 2.8rem;
        font-weight: 700;
    }

    .hero-content p {
        font-size: 1rem;
        color: #fff !important;
        width: 100%;
        padding: 10px 10px 20px 10px !important;
    }

    .hero-btn,
    .hero-learn-btn {
        min-width: 130px;
        padding: 10px 20px;
        border-radius: 10px;
    }

    .hero-learn-btn {
        margin-right: 1rem;
        box-shadow:
            0 0 10px #44BCFF,
            0 0 20px #44B0FF,
            0 0 30px #FF44EC,
            0 0 40px #FF675E;
    }

    .feature-list li {
        display: flex;
        align-items: flex-start;
        /* icon and text align at the top */
        gap: 0.5rem;
        /* space between icon and text */
        margin-bottom: 1rem;
    }

    .feature-list li i {
        flex-shrink: 0;
        /* icon keeps its size */
        font-size: 1.2rem;
        color: #6f42c1;
        /* optional, matches your theme */
    }



    .image-card2 .overlap-img {
        margin-top: 10px;
        /* adjust how much it overlaps */
        position: relative;
        z-index: 2;
        /* keep it above the first image */
    }

    .image-card1 {
        margin-top: 70px;
    }

    .image-card2 {
        margin-top: -20px;
    }

    .image-card3 {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
    }


    .feature-badge {
        background: #E9D5FF;
        color: #2B106A;
        border-radius: 2rem;
        padding: 6px 20px;
        font-weight: 500;
        font-size: 1rem;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
        color: #6C2BD7;
        background: #F3F0FF;
        border-radius: 50%;
        padding: 18px;
        margin-bottom: 1rem;
        display: inline-block;
    }

    .feature-card {
        border: none;
        background: transparent;
        text-align: center;
        padding: 1.5rem 1rem;
    }

    .gradient-shadow {
        position: relative;
        display: inline-block;
    }

    .gradient-shadow::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 1rem;
        /* match image shape */
        background: linear-gradient(135deg, #6DDCFF, #7F60F9);
        filter: blur(25px);
        /* makes it glow like a shadow */
        z-index: -1;
    }


    .quote-circle {
        width: 50px;
        height: 50px;
        background: #8A226F;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quote-circle i {
        font-size: 34px;
        line-height: 1;
    }


    .btn-toggle {
        border-radius: 30px;
        color: #FFFFFF;
        padding: 10px 30px;
        margin: 0 10px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
    }

    .btn-toggle.active {
        background-color: #FFFFFF;
        color: #D60665;
        box-shadow: 0 4px 10px rgba(214, 26, 127, 0.3);
    }

    .accordion-button::after {
        background-image: none !important;
        font-family: "Material Icons";
        content: "keyboard_arrow_down";
        font-size: 24px;
        transition: transform 0.3s ease;
        margin-left: auto;
        color: #333;
        /* change arrow color */
    }

    .accordion-button:not(.collapsed)::after {
        transform: rotate(180deg);
    }

    .step-number {
        display: inline-block;
        font-weight: bold;
        padding: 6px 12px;
        border-radius: 50%;
        background: #f9f9f9;
        color: #000;
        transition: all 0.3s ease;
    }

    .step-number.active {
        color: #6f42c1;

        font-weight: bold;
    }

    .accordion-body {
        background: #f8f5ff;
        border-radius: 10px;
    }


    .btn-box {
        background-color: #D60665;
        padding: 10px 14px 10px 14px;
        border-radius: 999px;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
    }




    .btn-toggle.active:hover,
    .btn-toggle.active:active {

        background-color: #D60665;
        color: #FFFFFF;
    }


    .btn-toggle:hover,
    .btn-toggle:active {

        color: #FFFFFF;
    }

    .closing-quote {
        transform: rotate(180deg);
        /* flips it */
        display: inline-block;
    }

    .card {
        background: linear-gradient(90deg, #F8FAFC, #F8FAFC00);
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }

    .message-btn:hover,
    .message-btn:active {
        background-color: #C5045C;
        border-color: #C5045C;
        color: #FFFFFF;
        box-shadow: 0 4px 10px rgba(197, 4, 92, 0.3);
    }



    .review-text {
        background: url("../images/review-bg.png") no-repeat center center;
        background-size: cover;
        color: #000;
        /* text readable */
    }


    .app-container {
        background: linear-gradient(90deg, #2E054E, #6A0CB4);
        /* purple gradient */
        border-radius: 54px;
    }

    .phone-img {
        max-height: 400px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .phone-img {
        max-height: 90%;
        height: auto;
        width: auto;
    }

    .feedback-img {
        top: 5%;
        /* sticks near top */
        left: 10%;
        z-index: 2;
    }

    .chat-img {
        bottom: 5%;
        /* sticks near bottom */
        right: 10%;
        z-index: 1;
    }


    /* Push one down, one up */
    .phone-down {
        transform: translateY(20%);
    }

    .phone-up {
        transform: translateY(-20%);
        margin-top: -50px;
        /* pulls it higher */
    }




    .hero-section1 {
        background:
            url('../images/Vector.png') no-repeat right 350px top 240px,
            /* adjust position */
            linear-gradient(135deg, #2b004f 0%, #4a0a84 100%);
        background-size: 40% auto, cover;
        color: #fff;
        position: relative;
        min-height: 500px;
        overflow: hidden;
    }


    .text-highlight {
        color: #b46bff;
    }

    .phone-wrapper {
        position: absolute;
        bottom: 0;
        right: 5%;
        /* adjust for spacing */
        max-width: 350px;
        /* control phone size */
    }


    .hero-section1 .hero-img {
        max-width: 100%;
        /* prevent overflow */
        height: auto;
        margin-top: 20px;
        /* optional spacing on mobile */
    }

    .hero1-btn {
        color: #2E054E;
        box-shadow:
            0 0 10px #44BCFF,
            0 0 20px #44B0FF,
            0 0 30px #FF44EC,
            0 0 20px #FF44EC,
            0 0 20px #FF675E;
    }

    .hero1-btn:hover {
        background-color: #D60665;
        color: #FFFFFF;
        box-shadow: 0 4px 10px rgba(214, 26, 127, 0.3);
    }


    .footer-menu:hover {
        text-decoration: underline;
        color: #D60665 !important;
        font-weight: 600;
    }

    .footer-icon:hover {
        color: #D60665 !important;
    }


    .get-app-img {
        right: 20px;
        width: 458px;
        height: 400px;
    }


    .app-section .row {
        --bs-gutter-x: 0.75rem !important;
        /* default is 1.5rem */
    }

    /* Responsive */



    @media (max-width: 991px) {


        .hero-section1 .hero img {
            display: none;
        }

        .hero-section1 .col-lg-6 {
            text-align: center;
        }

        .hero-section1 .text-white {
            margin-bottom: 2rem;
        }


        .navbar-collapse {
            text-align: center;
        }

        .navbar-nav {
            flex-direction: column;
            align-items: center;
        }

        .navbar-nav .nav-item {
            margin-bottom: 0.5rem;
        }

        .download-btn {
            margin-top: 1rem;
        }

        .hero-section1 .hero-img {

            max-width: 50%;
            height: auto;
            margin-left: -75px;
        }

        .app-container {

            max-width: 90%;
        }

    }


    .floating-icon {
        position: fixed;
        bottom: 20px;
        right: 5px;
        z-index: 1000;
        display: inline-block;
    }

    .floating-icon img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease-in-out;
        object-fit: contain !important;
    }

    .floating-icon img:hover {
        transform: scale(1.1);
    }



    .popup-box {
        border-radius: 20px;
        background: linear-gradient(135deg, #fff 0%, #f8f4ff 100%);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .popup-box h3 {
        font-size: 1.75rem;
    }

    .popup-box p {
        font-size: 1rem;
    }


    .image-row img {
        max-width: 30%;
        height: auto;
    }




    @media (max-width: 991.98px) {


        .store-btn {
            height: 50px !important;

        }
    }



    @media (max-width: 767.98px) {
        .feature-card {
            padding: 1rem 0.5rem;
        }
    }

    @media (max-width: 767px) {
        .image-card {
            height: 200px;
        }

        .store-btn {
            height: 50px !important;
        }

        .get-app-img {
            width: 350px;
            height: auto;
        }

    }

    .feature-list li {
        display: flex;
        align-items: flex-start;
        /* icon and text align at the top */
        gap: 0.5rem;
        /* space between icon and text */
        margin-bottom: 1rem;
    }

    .feature-list li i {
        flex-shrink: 0;
        /* icon keeps its size */
        font-size: 1.2rem;
        color: #6f42c1;
        /* optional, matches your theme */
    }



    @media (max-width: 768px) {


        .store-buttons img {
            height: 50px;
            margin: 8px;
        }

        .image-card2 .overlap-img {
            margin-top: 35px;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .feature-list i {
            flex-shrink: 0;
            color: #6b21a8;
            margin-top: 3px;
        }


        .feature-list strong {
            display: inline;
            margin-right: 4px;
            white-space: normal;
        }

        /* 
        .col-md-6.text-white.mb-4.mb-md-0.text-center.text-md-start.order-1.order-md-2 {
            margin-top: 20px !important;
        } */


    }



    @media (max-width: 576px) {

        .hero-section1 .hero-img {

            max-width: 50%;
            margin-left: -75px;
        }

        .app-container {

            max-width: 90%;
        }

        .popup-box {
            padding: 2rem 1rem !important;
        }

        .popup-box h3 {
            font-size: 1.3rem;
        }

    }








    @media (max-width: 480px) {



        .app-container {

            max-width: 90%;
        }

        .feedback-img {

            margin-top: 85px;
        }



    }








    @media (max-width: 420px) {

        .form-email {
            max-width: 70% !important;
        }




        .get-app-img {
            margin-top: -26px;
            right: -7px;
        }

        .app-container {

            max-height: 645px;
        }


    }







    @media (max-width: 1440px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 60px !important;
            padding-left: 0px !important;
            text-align: center !important;
        }

        .hero-slide {
            height: 500px !important;
        }

        #second-slide .banner-content {
            padding: 0px 0px 0px 80px !important;

        }

        .hero-slide a {
            font-size: 14px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 90px !important;
            padding: 10px 30px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 42px;

        }

        .hero-content p {
            font-size: 18px;

        }

    }


    @media (max-width: 1200px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 60px !important;
            padding-left: 0px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 0px 0px 80px !important;

        }

        .hero-slide {
            height: 400px !important;
        }

        .hero-slide a {
            font-size: 14px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 90px !important;
            padding: 10px 20px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 38px;

        }

        .hero-content p {
            font-size: 18px;

        }

    }






    @media (max-width: 999px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 280px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 320px 0px 20px !important;

        }

        .hero-slide {
            height: 300px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 110px !important;
            padding: 10px px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 20px;

        }

        .hero-content p {
            font-size: 14px;

        }

    }







    @media (max-width: 998px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 0px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 0px 0px 20px !important;

        }

        .hero-slide {
            height: 300px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 110px !important;
            padding: 10px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 20px;

        }

        .hero-content p {
            font-size: 14px;

        }

    }









    @media (max-width: 990px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 280px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 320px 0px 20px !important;

        }

        .hero-slide {
            height: 300px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 110px !important;
            padding: 10px px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 20px;

        }

        .hero-content p {
            font-size: 14px;

        }

    }



    @media (max-width: 880px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 280px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 320px 0px 20px !important;

        }

        .hero-slide {
            height: 300px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 110px !important;
            padding: 10px px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 20px;

        }

        .hero-content p {
            font-size: 14px;

        }

    }




    @media (max-width: 786px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 280px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 320px 0px 20px !important;

        }

        .hero-slide {
            height: 300px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 110px !important;
            padding: 10px px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 20px;

        }

        .hero-content p {
            font-size: 14px;

        }

    }







    @media (max-width: 760px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 180px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 240px 0px 20px !important;

        }

        .hero-slide {
            height: 260px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 110px !important;
            padding: 10px px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 20px;

        }

        .hero-content p {
            font-size: 14px;

        }

    }




    @media (max-width: 576px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 150px !important;
            text-align: center !important;
        }

        #second-slide .banner-content {
            padding: 0px 220px 0px 20px !important;

        }


        .hero-slide {
            height: 200px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 90px !important;
            padding: 5px 5px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 16px;

        }

        .hero-content p {
            font-size: 12px;
            padding: 0px !important;

        }

    }



    @media (max-width: 480px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 150px !important;
            text-align: center !important;
        }

        .hero-slide {
            height: 200px !important;
        }

        .hero-slide a {
            font-size: 12px !important;
        }

        #second-slide .CTA-btn {
            margin: 0px !important;


        }

        #second-slide .banner-content {
            padding: 0px 140px 0px 20px !important;

        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 90px !important;
            padding: 5px 5px !important;
            border-radius: 10px;
        }

        .hero-content h2 {
            font-size: 16px;
            padding: 0px !important;


        }

        .hero-content p {
            font-size: 12px;
            padding: 0px !important;


        }

    }


    @media (max-width: 420px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 130px !important;
            text-align: center !important;
        }

        .hero-slide {
            height: 180px !important;
        }

        .hero-slide a {
            font-size: 11px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 80px !important;
            padding: 5px 5px !important;
            border-radius: 10px;
            margin-top: 12px !important;
        }

        .hero-content h2 {
            font-size: 15px;
            padding: 0px !important;
            margin: 0px !important;


        }

        .hero-content p {
            font-size: 11px;
            padding: 0px !important;
            margin: 0px !important;

        }

    }


    @media (max-width: 380px) {
        .banner-content {
            padding-top: 22px !important;
            padding-bottom: auto;
            padding-right: 20px !important;
            padding-left: 120px !important;
            text-align: center !important;
        }

        .hero-slide {
            height: 180px !important;
        }

        .hero-slide a {
            font-size: 10px !important;
        }

        .hero-btn,
        .hero-learn-btn {
            min-width: 80px !important;
            padding: 5px 5px !important;
            border-radius: 10px;
            margin-top: 8px !important;
        }

        .hero-content h2 {
            font-size: 14px;
            padding: 0px !important;
            margin: 0px !important;


        }

        .hero-content p {
            font-size: 10px;
            padding: 0px !important;
            margin: 0px !important;

        }

    }