
.container{
    display: grid;
    position: relative;
    font-family: "Outfit", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #000 !important;
    color:#ddd !important;
}
.body{
    margin:0;
    padding:0;
}

.header{
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 3fr 1fr;
    background-color: #000;
    position: relative;
    padding: 1.5% 0;
    border-bottom: 0.5px solid #333;
}
.Title{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    text-shadow: 0 2px 20px rgba(255,255,255,0.3);
    margin-left:25%;
}
.Logo-container{
    display: grid;
    box-shadow: 0 4px 30px rgba(255,255,255,0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
}
.Logo-title{
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.Nav-bar{
    display: grid;
    grid-auto-flow: column;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
}
.Nav-bar a{
    text-shadow: 0 2px 8px rgba(123,139,255,0.25), 0 0 10px rgba(196,107,255,0.15);
    text-decoration: none;
    color: #ddd;
}


.Try-NowBtn{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    box-shadow: 0 4px 30px rgba(255,255,255,0.3);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    width: 100px;
    height: 40px;
    position: relative;
    left: 49%;
    color:#ddd;
}

.Download-section{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 2% 5%;
}

/* ============================= */
/* ADDED STYLES (NO MODIFICATIONS) */
/* ============================= */

.Description{
    display: grid;
    grid-template-columns: 1fr;
    padding-bottom: 35%;
    
}

.gradient-word{
    background: linear-gradient(120deg, #7bd9ff 0%, #7b8bff 45%, #c46bff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(123,139,255,0.12), 0 0 10px rgba(196,107,255,0.12);
}

.Description h1{
    font-size: 42px;
    margin-bottom: 15px;
}

.Description p{
    font-size: 18px;
    line-height: 1.6;
    color: #ddd;
}
.Email-form{
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0;
            max-width: 400px;
            width: 100%;
        }

        .Email-form input{
            padding: 15px 20px;
            border: 1px solid #ddd;
            border-right: none;
            border-radius: 5px 0 0 5px;
            font-size: 14px;
            outline: none;
        }

        .Email-form input::placeholder{
            color: #ddd;
        }

        .Email-form button{
            padding: 15px 30px;
            background-color: #4285f4;
            color: #ddd !important;
            border: none;
            border-radius: 0 5px 5px 0;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            white-space: nowrap;
        }

        .Email-form button:hover{
            background-color: #3367d6;
        }
.display-download{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
    position: relative;
}
.Store-buttons{
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    height: 150px;
    width: 100%;
    position: relative;
    margin-top: 30px;
}
.display-download .Store-buttons{
    justify-content: end;
}
/* Override centering only within Demo-text to align left */
.Demo-text .Store-buttons{
    justify-items: start;
}

.Store-buttons a{
    display: inline-block;
}

.Store-buttons svg{
    height: 50px;
    width: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.Store-buttons svg:hover{
    transform: scale(1.05);
}

.AppStoreBadge{
    height: 100px;
    width: 200px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease;
    background-color: #fff;
    border-radius: 8px;
    filter: invert(1);
}
.AppStoreBadge:hover{
    transform: scale(1.05);
}

/* HERO IMAGE */
.Download-Image{
    width: 100%;
    max-width: 100%;
    height: 400px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0;
    overflow: visible;
}

.VideoTest{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 30px rgba(255,255,255,0.3);
    border-radius: 20px;
}

.VideoTest video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* GALLERY SECTION */
.Gallery-section{
    color: #ddd;
    padding: 0.5% 5%;
    text-align: center;
    border-top: 0.5px solid #333;
}
.Gallery-section h2{
    font-size: 32px;
    margin-bottom: 0.2%;
}

.Gallery-section > p{
    font-size: 16px;
    margin-bottom: 1%;
    color: #ddd;
}
.Gallery-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.Gallery-card{
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
}
.Gallery-card:hover{
    transform: scale(2.1);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 30px rgba(255,255,255,0.3);
}

.Gallery-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* DEMO SECTION */
.Demo-section{
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto;
            padding: 2% 5%;
            color: #ddd;
            align-items: center;
            gap: 2%;
        }

        .Demo-text h2{
            font-size: 32px;
            margin-bottom: 0;
        }

        .Demo-text > p{
            font-size: 16px;
            margin-bottom: 1;
            color: #ddd;
        }

        .Demo-text .AppStoreBadge{
            display: block;
            margin-left: 37%;
            justify-self: start;
        }
        

        .Demo-text ul{
            margin: 0;
            padding-bottom: 0%;
            padding-left: 1.5%;
            list-style: none;
            counter-reset: list-counter;
        }

        .Demo-text ul li{
            padding-left: 50px;
            position: relative;
            margin-bottom: 5%;
            text-align: left;
        }

        .Demo-text ul li::before{
            content: counter(list-counter);
            counter-increment: list-counter;
            position: absolute;
            left: 0;
            top: 0;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            background-color: purple;
            justify-content: center;
            font-weight: bold;
        }


        .Demo-btn{
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: #ddd;
            padding: 10px 20px;
            border-radius: 10px;
            cursor: pointer;
        }

        .Demo-image{
            width: 70%;
            height: 70%;
            box-shadow: 0 4px 30px rgba(255,255,255,0.5);
            background-color: rgba(255,255,255,0.1);
            overflow: hidden;
            margin: 0 auto;
        }
        #photofeature{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* FEATURES */
.Features-section {
            color: #ddd;
            padding: 0.5% 5%;
            text-align: center;
            border-top: 0.5px solid #333;
        }

        .Features-section h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .Features-section > p {
            font-size: 18px;
            margin-bottom: 60px;
            color: #ddd;
        }

        .Features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .Feature-card {
            background-color: #ddd;
            box-shadow: 0 4px 30px rgba(255,255,255,0.3);
            padding: 50px 30px;
            border-radius: 20px;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .Feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .icon-container {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .icon-container svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .Feature-card h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 12px;
            color: black;
        }

        .Feature-card p {
            font-size: 15px;
            line-height: 1.6;
            color: black;
        }

        @media (max-width: 768px) {
            .Features-section {
                padding: 60px 20px;
            }

            .Features-section h2 {
                font-size: 32px;
            }

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


/* FOOTER */
.Footer{
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    background-color: #000;
    color: #ddd;
    padding: 2% 5% ;
    align-items: start;
    gap: 0.5%;
    border-top: 1px solid #333;
    margin-top: 15%;
}
.Footer-left{
    display: grid;
    grid-template-columns: 7% auto;
    grid-template-rows: auto auto;
    align-items: center;
    justify-content: start;
    gap: 2%;
    column-gap: 0%;
    /* Keep left container on the left side, same row as title */
    grid-column: 1;
    grid-row: 1;
}
#footer-title{
    margin-left: 5%;
}
#par{
    grid-column: 1 / -1;
    font-size: large;
    margin-top: 10px;
}
.Footer-links{
    display: grid;
    grid-template-columns: repeat(3, auto);
    column-gap: 100px;
    padding-top: 2.4%;
    row-gap: 0;
    font-size: x-large;
    align-items: start;
    /* Place links on the same row as the footer title */
    grid-row: 1;
    /* Keep links on the right side */
    grid-column: 2;
    align-self: start;
    justify-self: start;
    justify-content: end;
}

.Footer-links a{
    margin: 0;
    padding-right: 0;
    background-color: transparent;
    text-decoration: none;
    color: #ddd;
}

.Social-icons{
    display: grid;
    grid-column: 3;
    grid-row: 2;
    grid-template-columns: repeat(3, auto);
    gap: 20px;
    padding: 30px 0 0 0;
    padding-left: 15%;
    align-items: center;
    width: fit-content;
    justify-self: end;
}

.icon-wrapper{
    width: 40px;
    height: 40px;
    border-radius: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #303030;
}

.social-icon{
    color: #ddd;
    font-size: 24px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover{
    color: #667eea;
}

.Copyright{
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 5%;
    border-top: 1px solid #333;
}
