/* Root */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter","sans-serif";
}

body{
    color: #111;
    background-color: #fff;
    line-height: 1.6;
}

/* Nav Bar */
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 80px;
    border-bottom: 1px solid#eee;
}

.nav-left
{
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-logo
{
    width: 22px;
    height: 22px;
    border-radius: 6px;
    vertical-align: middle;
}

.nav-title
{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.nav-links
{
    display: flex;
    gap: 28px;
}

.nav-links a{
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.nav-links a:hover{
    color: #6c47ff;
}


.nav-right
{
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-btn
{
    color: #555;
    text-decoration: none;
    font-weight: 500;
}

.signup-btn
{
    color: #fff;
    background-color: #8b5cf6;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    cursor: pointer;
}

.signup-btn:hover{
    background-color: #7c3aed;
}

/* About Section */
.about-section{
    text-align: center;
    padding: 100px 20px 60px;
}

.small-text{
    color:#7c3aed;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-section h1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.sub-text
{
    color: #666;
    font-size: 16px;
}

/* Stats Section */
.stats-section
{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px;
    background-color: #f9fafb;
}

.stats-image img{
    width: 450px;
    height: 450px;
}

.stats-content
{
    max-width: 450px;
}

.highlighted-text
{
    color: #7f56d9;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 700;
}

.stats-content h2
{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
}

.description
{
    display: none;
}

.stats-grid
{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px 50px;
}

.stats-grid h3
{
    color: #7f56d9;
    font-size: 42px;
    font-weight: 700;
}

.stats-grid p
{
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

/* Mobie Menu */
.mobile-menu
{
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu a,
.mobile-menu button
{
    margin: 10px 0;
    text-align: left;
}

.mobile-menu.active
{
    display: flex;
}

/* Mobile view */
@media (max-width:768px)
{
    .navbar{
        padding: 14px 24px;
    }
    
    .nav-links,
    .nav-right
    {
        display: none;
    }

    .menu-icon
    {
        display: block;
    }

    .about-section
    {
        padding: 60px 24px;
    }

    .stats-section
    {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: left;
        padding: 40px 24px;
    }

    .stats-content h2{
        font-size: 22px;
    }

    .stats-grid
    {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-image img {
        width: 400px;
        height: 300px;
    }

    .description
    {
        display: block;
    }
}