* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    caret-color: transparent;
}

* input,
* textarea {
    caret-color: auto;
}

:root {
    --maincolor: #3434d7;
    --seccolor: #f2a435;
    --tercolor: #e11f25;
    --rndmcolor: #01207b;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    background-color: var(--maincolor);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 0 40px;
    position: relative;
    z-index: 100;
}

.logo img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    display: block;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-grow: 1;
}

.navbar .pages {
    /* margin-left: 40px;
            margin-right: auto; */
    margin-right: 40px;
    margin-left: auto;
}

.navbar ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 34px;
}

.navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 5px 0;
}

.navbar ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--seccolor);
    transition: width 0.3s ease;
}

.navbar ul li a:hover {
    color: var(--seccolor);
}

.navbar ul li a:hover::after {
    width: 80%;
}

.navbar .btn button {
    text-decoration: none;
    padding: 15px 25px;
    font-weight: 500;
    font-size: 18px;
    border-radius: 20px;
    border: none;
    background: var(--seccolor);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
    /* box-shadow: 0px 0px 5px #000; */
}

.navbar .btn button:hover {
    /* box-shadow: 0px 0px 10px 0.5px var(--seccolor); */
}

#menu-toggle,
.hamburger {
    display: none;
}

/* ==========================================================================
   TABLET & MOBILE BREAKPOINT (Screens smaller than 799px Wide)
   ========================================================================== */
@media (max-width: 799px) {
    nav {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 90px;
        padding: 0 25px;
        box-sizing: border-box;
        z-index: 1000;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1002;
        background-color: var(--seccolor);
        padding: 10px;
        box-sizing: content-box;
        border-radius: 10px;
        /* box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.15); */
    }

    /* 🚀 RENDER FIX: Controls the internal hamburger lines and protects layers during smooth-scrolling */
    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background-color: white;
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.1, 0.82, 0.76, 0.965);
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--maincolor);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 120px 20px 40px 20px;
        /* box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3); */
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }

    .navbar .pages {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 40px;
        width: 100%;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        width: 100%;
    }

    .navbar ul li {
        width: 100%;
        text-align: center;
    }

    .navbar ul li a {
        display: block;
        width: 100%;
        text-align: center;
        font-size: 22px;
    }

    .navbar .btn {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .navbar .btn button {
        width: 90%;
        text-align: center;
        font-size: 18px;
        padding: 15px;
    }

    #menu-toggle:checked~.navbar {
        right: 0;
    }

    #menu-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-toggle:checked~.hamburger span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   EXTRA SMALL MOBILE BREAKPOINT (Screens 550px and smaller)
   ========================================================================== */
@media (max-width: 550px) {
    nav {
        height: 75px !important;
        padding: 0 16px !important;
    }

    .logo img {
        width: 55px;
        height: 55px;
    }

    .hamburger {
        width: 26px;
        height: 18px;
        padding: 8px;
    }

    /* 🚀 BALANCE FIX: Re-centers the cross perfectly for the smaller 18px box profile */
    #menu-toggle:checked~.hamburger span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg) !important;
    }

    #menu-toggle:checked~.hamburger span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg) !important;
    }

    .navbar {
        width: 80%;
        right: -100%;
        padding: 110px 20px 40px 20px;
    }

    #menu-toggle:checked~.navbar {
        right: 0;
    }

    .navbar .pages {
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 30px;
    }

    .navbar ul {
        gap: 22px;
    }

    .navbar ul li a {
        font-size: 20px;
    }

    .navbar .btn button {
        width: 100%;
        padding: 14px;
        font-size: 16px;
    }
}

/* * {
            margin: 0;
            padding: 0;
            font-family: 'Poppins', sans-serif;
            caret-color: transparent;

            input,
            textarea {
                caret-color: auto;
            }
        }

        :root {
            --maincolor: #2d2dfe;
            --seccolor: #f2a435;
            --tercolor: #e11f25;
            --rndmcolor: #01207b;
        }

        .navbar {
            display: flex;
            /* justify-content:space-around; 
            align-items: center;
            height: 90px;
            background-color: var(--maincolor);
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }

        nav {
            /* display: flex; 
            justify-content: space-around;
            align-items: center;
            height: 90px;
            background-color: var(--maincolor);
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
        }

        .logo img {
            margin: 25px;
            width: 70px;
            height: 70px;
            cursor: pointer;
        }

        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 34px;
        }

        nav ul li a {
            /* padding: ;
            text-decoration: none;
            color: white;
            font-size: 20px;
            font-weight: 500;
            transition: 0.3s ease;

            position: relative;
        }

        nav ul li a {
            padding: 10px;
            text-decoration: none;
            color: white;
            font-size: 20px;
            font-weight: 500;
            transition: 0.3s ease;


        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: var(--seccolor);
            transition: width 0.3s ease;
        }

        nav ul li a:hover {
            color: var(--seccolor);
        }

        nav ul li a:hover::after {
            width: 80%;
        }

        nav .btn {
            margin-left: auto;
            padding-right: 25px;
        }

        nav .btn button {
            text-decoration: none;
            padding: 15px;
            font-weight: 500;
            font-size: 20px;
            border-radius: 20px;
            border: none;
            background: var(--seccolor);
            color: #fff;
            cursor: pointer;
            transition: 0.3s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 5px #000;
        }

        nav .btn button:hover {
            box-shadow: 0px 0px 10px 0.5px var(--seccolor);
        } */

#page1 {
    background-image: url(assets/images/mobilescreen4.png);
    height: calc(100vh - 90px - 60px);
    min-height: calc(100vh - 90px - 60px);
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#page1 .txt {
    height: auto;
    /* width: 600px; */
    width: 45vw;
    /* padding: 0px 80px; */
    padding: 0px 5vw
        /* box-sizing: border-box; */
}

#page1 .txt h1 {
    /* width: 600px;  */
    width: 100%; 
    color: var(--maincolor);
    padding-bottom: 15px;
    font-size: 2.1vw;
    font-weight: 900;
    line-height: 1.3;     /* Gives your two lines crisp, breathing spacing */
    margin: 0;
    min-height: 3.2em;
    /* 🚀 Starting state: Hidden & Shifted Left */
    opacity: 0;
    transform: translateX(-25px); 
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

#page1 .txt p {
    /* width: 100%; */
    margin: 0;
    padding-bottom: 15px;
    font-size: 1vw;
    min-height: 3em;
    /* 🚀 Explicitly force it to stay completely visible and unmoving */
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* 🚀 ACTIVE TRANSITION STATES (Fade In & Slide Right to Center) */
#page1 .txt h1.visible {
    opacity: 1;
    transform: translateX(0); /* Smoothly glides right to initial alignment */
}

#page1 .txt button {
    width: 100%;
    text-decoration: none;
    padding: 13px 25px;
    font-weight: 500;
    font-size: 20px;
    border-radius: 14px;
    border: none;
    background: var(--seccolor);
    color: #fff;
    cursor: pointer;
    transition: 0.3s ease;
    /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 0px 4px #000; */
}

#page1 .txt button:hover {
    /* box-shadow: 0px 0px 10px #000; */
}

#page1 .txt .btns {
    display: inline-block;
}


#page1 .txt .btns .play-store-badge img {
    height: 80px;
    transform: translateY(34px);
    border-radius: 50px;
}

#page1 .txt .btns .apple-store-badge img {
    height: 53.5px;
    transform: translateY(22px);
}

/* Media Query for Page 1 */
@media (max-width: 799px) {
    /* #page1 {
        background-position: top 45px right 0;
    }

    #page1 .txt {
        width: 55%;
        padding: 0 30px;
        height: auto;
    }

    #page1 .txt h1 {
        padding-top: 105px;
        padding-bottom: 5px;
        width: auto;
    }

    #page1 .txt p {
        display: none;
    }

    #page1 .txt .btns {
        display: flex;
        flex-direction: row;
    }

    #page1 .txt .btns .play-store-badge img {
        transform: translateY(4px);
        border-radius: 50px;
    }

    #page1 .txt .btns .apple-store-badge img {
        height: 53.5px;
        transform: translateY(18px);
    } */
     #page1 {
        background-color: rgba(255, 255, 255, 0.6);
        /* White layer with 60% opacity */
        background-blend-mode: lighten;
        background-position: top 50px right -30px;
        width: 100%;
        overflow-x: hidden;
    }

    #page1 .txt {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box;
        text-align: center !important;
        margin: 0 !important;
    }

    #page1 .txt h1 {
        font-size: 28px !important;
        line-height: 1.3;
        text-align: center !important;
        overflow-wrap: break-word;
        /* Breaks long words naturally if needed */
        width: 100%;
    }

    /* Fixes the button wrapper from pushing the right margin out */
    #page1 .txt .btns {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; /* PERFECTLY CENTERS ITEMS ON X-AXIS */
        align-items: center;     /* NEATLY ALIGNS BADGES WITH EACH OTHER */
        gap: 12px;
        width: 100%;
        max-width: 100%;
    }

    /* Keeps the badges scaled down and shifts removed */
    #page1 .txt .btns .play-store-badge img,
    #page1 .txt .btns .apple-store-badge img {
        max-width: 135px;
        width: 100%;
        height: auto !important;      
         transform: none !important; 
    }

    #page1 .txt .btns .play-store-badge img {
        height: 68px;
        transform: translateY(10px)
    }

#page1 .txt p {
        display: none;
    }
}

@media (max-width: 550px) {

    #page1 {
        background-color: rgba(255, 255, 255, 0.6);
        /* White layer with 60% opacity */
        background-blend-mode: lighten;
        background-position: top 50px right -30px;
        width: 100%;
        overflow-x: hidden;
    }

    #page1 .txt {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 20px !important;
        box-sizing: border-box;
        text-align: center !important;
        margin: 0 !important;
    }

    #page1 .txt h1 {
        font-size: 24px !important;
        line-height: 1.3;
        text-align: center !important;
        overflow-wrap: break-word;
        /* Breaks long words naturally if needed */
        width: 100%;
    }

    /* Fixes the button wrapper from pushing the right margin out */
    #page1 .txt .btns {
        display: flex;
        flex-wrap: wrap;
      justify-content: center; /* MAINTAINS X-AXIS CENTERING ON PHONES */
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    /* Keeps the badges scaled down and shifts removed */
    #page1 .txt .btns .play-store-badge img,
    #page1 .txt .btns .apple-store-badge img {
        max-width: 135px;
        width: 100%;
        height: auto !important;      
        transform: none !important; 
    }

    #page1 .txt .btns .play-store-badge img {
        height: 68px;
        transform: translateY(10px)
    }
}

.scrl {
    display: flex;
    width: 100%;
    /* line-height: 50px; */
    background-color: var(--tercolor);
    white-space: nowrap;
    overflow-x: auto;
    box-sizing: border-box;
    padding: 12px 0;
}

.scrl::-webkit-scrollbar {
    display: none;
}

.group {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 27s infinite linear;
    /* 10s to 27s */
}

.tt {
    flex: 0 0 5em;
    color: #fff;
    font-size: 25px;
    padding: 0px 54px;
}

@keyframes spin {
    from {
        translate: 0;
    }

    to {
        translate: -100%;
    }
}

/* section {
            background-color: var(--maincolor);
        }

        .page2 {
            background-color: var(--maincolor);
            height: 100vh;
            color: #fff;
        }
        .about-us {
            justify-content: center;
        } */
.page2 {
    width: 100%;
    /* display: flex; */
    justify-items: center;
    /* Centers the inner content block horizontally */
    padding: 35px 0;
    /* Adds breathing room to the top and bottom of the section */
    background-color: #fff;
}

.page2 h1 {
    text-align: center;
    width: 80vw;
    color: var(--maincolor);
    padding: 50px 0px;
    justify-content: center;


}

/* Style and position the content text wrapper */
.about-us {
    /* transform: translateY(-5px); */
    padding: 40px;
    background-color: #f0f1f8;
    width: 80%;
    /* max-width: 1200px; */
    color: #6d6d6d;
    border-radius: 10px;
    /* box-shadow: 0 0 15px 6px #000; */
}

.about-us h1 {
    text-align: center;
    margin: 30px 0 15px 0;
}

/* Justify the descriptive paragraphs */
.about-us p {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Style the headings within the section */
.about-us h2 {
    text-align: center;
    margin: 30px 0 15px 0;
    /* Adds solid separation above the Key Features heading */
    /* font-size: 28px; */
}

/* #faqss {
        background-color: #fff; */

.faqs {
    max-width: 80vw;
    margin: auto;
}

.faqs>h1 {
    text-align: center;
    width: 80vw;
    color: var(--maincolor);
    padding: 50px 0px;
}


.accordion {
    background-color: #f0f1f8;
    color: #6d6d6d;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    outline: none;
    transition: 0.5s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;

}

.accordion i {
    font-size: 1rem;
    transform: rotate(45deg);
}

.active,
.accordion:hover {
    background-color: #ececec;
}

.panel {
    padding: 0 2rem 2.5rem 2rem;
    background-color: var(--rndmcolor);
    background-color: #ececec;
    overflow: hidden;
    display: none;
}

.panel p {
    color: #6d6d6d;
    font-size: 1.2rem;
    line-height: 1.4;
}

.faq {
    border: 1px solid rgba(0, 0, 0, 0.2);
    margin: 10px 0;
}

.faq.active {
    border: none;
}

#contact-us {
    min-height: 100vh;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 80%;
    background: #fff;
    border-radius: 6px;
    padding: 30px 60px 40px 40px;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
}

.container .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container .content .left-side {
    width: 26%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 15px;
}

.container .content .left-side::before {
    content: '';
    position: absolute;
    height: 70%;
    width: 2px;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    background: #afafb6;
}

.content .left-side .details {
    margin: 14px;
    text-align: center;
}

.content .left-side .details i {
    font-size: 30px;
    color: var(--maincolor);
    margin-bottom: 10px;
}

.content .left-side .details .topic {
    font-size: 18px;
    font-weight: 500;
}

.content .left-side .details .text-one,
.content .left-side .details .text-two {
    font-size: 14px;
    color: #afafb6;
}

.container .content .right-side {
    width: 75%;
    margin-left: 75px;
}

.content .right-side .topic-text {
    font-size: 23px;
    font-weight: 600;
    color: var(--maincolor);
}

.right-side .input-box {
    height: 50px;
    width: 100%;
    margin: 12px 0;
}

.right-side .input-box input,
.right-side .input-box textarea {
    height: 100%;
    width: 100%;
    border: none;
    border-radius: 6px;
    background: #F0F1F8;
    font-size: 16px;
    padding: 0 15px;
    resize: none;
}

.right-side .message-box {
    min-height: 110px;
}

.right-side .button {
    display: inline-block;
    margin-top: 6px;

}

.right-side .button input[type="submit"] {
    border: none;
    /* box-shadow: 0px 0px 5px #000; */
    color: #fff;
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 6px;
    background: var(--maincolor);
    cursor: pointer;
    transition: all 0.5 ease;
}

.button input[type="submit"]:hover {

    background: var(--rndmcolor);
}

.ftr {
    background-color: var(--maincolor);
    /* justify-content: center; */
}

footer {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 80px;
}

footer .col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

footer .col-right {
    margin-top: 128px;
}

footer .install {
    margin-top: 128px;
}

footer .lg {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100px;
    height: 100px;
}

footer h4 {
    font-size: 14px;
    padding-bottom: 20px;
}

footer p {
    font-size: 13px;
    margin: 0 0 8px 0;
}

footer a {
    font-size: 13px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 10px;
}

footer .follow {
    margin-top: 20px;
}

footer .follow i {
    color: #fff;
    padding-right: 4px;
    cursor: pointer;
}

footer .install .row .img1 {
    height: 100px;
    width: 100px;

}

footer .install .row .img2 {
    height: 50px;
    width: 110px;
    transform: translateY(-25px);
}

footer .copyright {
    width: 100%;

    /* Pushes it onto its own brand new line beneath the columns */
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media query for footer */
@media (max-width: 855px) {
    footer {
        flex-direction: column;     /* Forces columns to stack vertically instead of side-by-side */
        align-items: flex-start;    /* Aligns all text neatly to the left */
        padding: 30px 20px;         /* Brings padding down to fit mobile screens comfortably */
    }

    footer .col, 
    footer .col-right, 
    footer .install {
        width: 100%;                /* Makes each section take full container width */
        margin-top: 0 !important;   /* 🚀 Fixes the desktop 128px gap so links sit tightly under each other */
        margin-bottom: 25px;        /* Adds uniform spacing between your footer sections */
    }

    footer .lg {
        margin-top: 0;              /* Resets top margin for the logo on mobile */
    }

    footer .install .row {
        display: flex;
        align-items: center;
        gap: 10px;                  /* Keeps app store buttons neatly close together */
    }

    footer .install .row .img2 {
        transform: none;            /* Removes the desktop alignment translation shift on mobile */
    }
}
/* Media Query for contct form  */
@media (max-width: 950px) {
    .container {
        width: 90%;
        padding: 30px 35px 40px 35px;
    }
}

@media (max-width: 820px) {
    .container {
        margin: 40px 0;
        height: 100%;
    }

    .container .content {
        flex-direction: column-reverse;
    }

    .container .content .left-side {
        width: 100%;
        flex-direction: row;
        margin-top: 40px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .container .content .left-side::before {
        display: none;
    }

    .container .content .right-side {
        width: 100%;
        margin-left: 0;
    }
}

/* old Media Query for NavBar */
/* @media (max-width: 801px) {
            nav {
                width: 100%;
                border-bottom-left-radius: 20px;
                border-bottom-right-radius: 20px;
            }

            .navbar {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                position: fixed;
                top: 0;
                right: -310px;
                height: 100vh;
                width: 300px;
                background-color: var(--maincolor);
                box-shadow: 80px 0 0 10px;
                padding: 80px 0 0 10px;
                z-index: 1;
            }

            .navbar .pages {
                width: 100%;
                margin-bottom: 30px;
            }

            .navbar ul {
                padding-left: 10px;
                display: flex;
                flex-direction: column;
                display: flex;
                flex-direction: column;
                gap: 0;
                padding: 0;
                width: 100%;
            }

            .navbar li {
                margin-bottom: 25px
            }

            nav ul li a {
                display: block;
                width: 100%;
                text-align: left;
                padding: 10px 0;
                font-size: 20px;
            }

            .logo img {
                padding-left: 10px;
                margin: 25px;
                width: 70px;
                height: 70px;
                cursor: pointer;
                transform: translate(-800px, -100px);
            }
        } */