* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

#info {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    width: 300px;
}

/* Header and Navigation */
header {
    background-color: #F6F3FD;
    padding: 10px 0;
    width: 100%;
}

.navbar {
    margin: 0;
    padding: 0;
    /* background-color: #772929; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.navbar_custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #3498db;     */
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.logo {
    cursor: pointer;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 24px;
    font-family: Segoe UI Semibold, Arial, serif;
    color: #686bf7;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav-items {
    margin-right: 10px;
    display: flex;
    align-items: center;
    margin-left: auto;
}


.nav-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hyperlink_underline {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hyperlink_underline:active {
    color: #333;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links li span {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li a {
    text-decoration: none;
    font-size: 16px;
    /* color: rgb(246, 246, 246); */
    transition: color 0.3s;
}

.nav-links li span:hover {
    color: #686bf7;
}
.nav-links li a span{
    display: inline-block;
    flex-direction: row;
    color:#0d6efd
}
.buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.btn_custom {
    padding: 2px 15px;
    background-color: #686bf7;
    color: white;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn_custom:hover {
    background-color: #5040d3;
}

.btn_custom:active {
    color: #ffffff;
}
.btn-outline {
    font-size: 16px;
    padding: 2px 12px;
    border: 2px solid #686bf7;
    background: transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-outline:hover {
    background-color: #f0ebff;
}

.btn-outline a {
    color: #686bf7;
    text-decoration: none;
}

.btn_custom a {
    color: #ffffff;
    text-decoration: none;
}

/* Hamburger menu (hidden by default) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger-menu span {
    height: 3px;
    width: 100%;
    background-color: #686bf7;
    border-radius: 3px;
}

.menu-toggle {
    display: none;
}

/* Chat Popup Styling */


.chat-popup {
    position: fixed;
    top: 56px;
    right: 20px;
    width: 400px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

/* Chat Header */
.chat-header {
    background: #686bf7;
    color: white;
    padding: 10px;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* Chat Body */
.chat-body {
    padding: 15px;
    font-size: 16px;
    color: #333;
}

/* Main Content Section */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
}

.text-section {
    max-width: 50%;
}

.blue-text {
    font-size: 32px;
    color: #3498db;
    font-weight: bold;
    margin-bottom: 20px;
}

.black-text {
    font-size: 22px;
    color: black;
    margin-top: 10px;
}

.image-section img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Quote Section */
.quote-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px auto;
    max-width: 800px;
    padding: 0 20px;
}

.person-image img {
    width: 70px;
    height: auto;
}

.quote {
    font-size: 24px;
    color: #2ecc71;
    font-weight: bold;
}

/* Divider */
.divider {
    width: 88%;
    height: 1px;
    background-color: #ddd;
    border: none;
    margin: 40px auto;
}

/* Chat Container */
.chat-container {
    display: flex;
    flex-direction: column;
    width: 90%;
    max-width: 1000px;
    margin: 5px auto;
    gap: 30px;
}

.chat {
    display: flex;
    align-items: center;
    max-width: 85%;
}

.chat.left {
    align-self: flex-start;
}

.chat.right {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.bubble {
    background: #e1ccfa;
    padding: 15px 20px;
    border-radius: 18px;
    font-size: 20px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 80%;
}

.chat.left .bubble {
    border-bottom-left-radius: 4px;
    margin-right: 10px;
}

.chat.right .bubble {
    border-bottom-right-radius: 4px;
    margin-left: 10px;
}

.icon {
    width: 60px;
    height: 60px;
    margin-block-start: 75px;
    object-fit: cover;
    border-radius: 10px;
}

/* Checklist and Video Container */
.container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    margin: 40px auto;
    max-width: 90%;
    padding: 0 20px;
    gap: 100px;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}


.thinking-item {
    margin-top: 50px;
}

.thinking-item span span {
    color: #7e30fd;
}

.check-item span {
    font-size: 24px;
    line-height: 1.4;
}

.checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-right: 10px;
    margin-top: 8px;
}

.video-container {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
    position: relative;
    /* Needed for absolute loader */
}

/* Video Styles */
video {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Circular Loader */
.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.2);
    border-top-color: #3498db;
    /* Change to your theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Loader Animation */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


/* App Screens Section */
.app-box {
    margin: 40px auto;
    background: white;
    border-radius: 20px;
    padding: 30px 20px;
    width: 90%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.app-box span {
    font-size: 140%;
}

.app-screens {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10%;
    flex-wrap: wrap;
}

.app-screens img {
    width: 16%;
    height: auto;
    margin-top: 15px;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.app-screens img:hover {
    transform: translateY(-15px);
}

/* Container for buttons */
.button-container-s {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 16%;
    /* Space between buttons */
}

/* Button styles */
.btn-s {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

/* Download button */
.btn-s--download {
    border: 2px solid black;
    background: white;
    color: black;
}

/* Get Started button */
.btn-s-start {
    background: #686bf7;
    color: white;
}

/* Google Play icon */
.icon-s {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

/* Responsive: Stack on small screens */
@media (max-width: 600px) {
    .button-container {
        flex-direction: column;
        gap: 10px;
        /* Adjust gap for mobile */
    }
}

/* Steps Section */
.steps {
    text-align: center;
    padding: 20px 20px;
    margin: 40px 0 auto;
}

.steps h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 10%;
    flex-wrap: wrap;
}

.step {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: transform 0.1s;
}

.step:hover {
    transform: translateY(-6px);
}



.box {
    padding: 20px;
    border-radius: 15px;
    width: 240px;
    height: 140px;
    margin: 0 auto 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.red {
    font-size: 140%;
    background-color: #f4dcdc;
}

.green {
    font-size: 140%;
    background-color: #d0ecd0;
}

.blue {
    font-size: 140%;
    background-color: #bbefea;
}

.step p {
    font-size: 20px;
    font-weight: bold;
    color: #555;
}

/* Footer */
.footer {
    background-color: #F6F3FD;
    text-align: center;
    padding: 30px 20px;
    margin-top: 100px;
}

.footer p {
    /* font-size: 22px; */
    color: #585858;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 15px;
}

.footer-links li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #686bf7;
}

.social-media a {
    font-size: 18px;
    margin: 0 5px;
    color: #686bf7;
}

/* Responsive Design */
@media (max-width: 900px) {
    .content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .text-section {
        max-width: 100%;
    }

    .app-screens img {
        width: 150px;
    }
}

@media (max-width: 768px) {

    .chat-popup {
        position: fixed;
        top: 56px;
        right: 20px;
        width: 400px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 1000;

    }


    .hamburger-menu {
        display: flex;
    }

    .nav-content {
        position: absolute;
        top: 70px;
        right: 10px;
        width: 50%;
        background-color: #F6F3FD;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-170%);
        /* transform: translateX(170%); */
        transition: transform 0.3s ease-in-out;
        z-index: 100;
        /* display: none; */
    }

    .menu-toggle:checked~.nav-content {
        display: flex;
        transform: translateY(0);
        /* transform: translateX(0); */
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .chat-container {
        width: 95%;
    }

    .quote-section {
        flex-direction: column;
        text-align: center;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .checklist {
        order: 2;
        width: 100%;
    }

    .video-container {
        order: 1;
        margin-bottom: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }

    .logo img {
        height: 25px;
    }

    .blue-text {
        font-size: 24px;
    }

    .black-text {
        font-size: 18px;
    }

    .quote {
        font-size: 20px;
    }

    .check-item span {
        font-size: 16px;
    }

    .steps-container {
        display: flex;
        justify-content: center;
        gap: 30%;
        flex-wrap: wrap;
    }

    .box {
        border-radius: 15px;
        width: 250px;
        height: 100px;
        padding: 15px;
    }


    .app-screens img {
        width: 130px;
    }

    .icon {
        width: 40px;
        height: 40px;
    }

    .chat {
        max-width: 95%;
    }

    .bubble {
        font-size: 14px;
        padding: 12px 15px;
    }

    .chat-popup {
        position: fixed;
        top: 56px;
        right: 20px;
        width: 300px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        display: none;
        flex-direction: column;
        overflow: hidden;
        z-index: 1000;
    }


}

.aobut_list {
    padding-left: 10px;
    list-style-type: disc;
    color: #585858;

}

.aobut_list li {
    margin: 5px;
}