@font-face {
    font-family: 'Andika';
    src: url('../assets/fonts/Andika-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Andika';
    src: url('../assets/fonts/Andika-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Andika';
    src: url('../assets/fonts/Andika-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}


:root {
    --primary: #536DFE;
    --dark: #0f172a;
    --gray: #475569;
    --light: #f8fafc;
    --card: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Andika', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
    font-size: 16px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #536DFE, #4053d6);
    color: #fff;
    padding: 90px 20px;
    text-align: center;
}

.logo {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    max-width: 500px;
    margin-bottom: 30px;
}

.logo img {
    height: 80px;
}

header p {
    font-size: 1.25rem;
    max-width: 720px;
    margin: auto;
    opacity: 0.95;
    font-weight: bold;

}

section {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-desc {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
    color: var(--gray);
    font-size: 1.05rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--card);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 12px;
}

.card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.product {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.product .card {
    text-align: center;
}

.product h1 {
    font-size: 2rem;
    margin-bottom: 0 !important;
    padding: 0 !important;
    color: var(--primary);
}

.product span {
    display: block;
    font-size: 0.9rem;
    color: rgb(109, 0, 0);
    margin-top: -15px;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: bold;
}

.screenshots-wrp {
    overflow-x: scroll;
    padding-bottom: 10px;
}

.screenshots {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    height: 300px;
    border-radius: 20px;
    border: 1px dashed #cbd5f5;
}

.screenshots img {
    height: 100%;
    border-radius: 20px;
}

.contact-sec {
    background: #fff;
    padding: 90px 10px;
    text-align: center;
    margin-bottom: 70px;
}

.contact-sec .single-con {
    margin-top: 20px;
}

footer {
    background: var(--primary);
    padding: 40px 20px;
    text-align: center;
    font-size: 0.95rem;
    color: #fff;
}


@media (max-width: 992px) {
    .product {
        flex-direction: column;
    }

    .screenshots {
        display: inline-block;
        overflow: auto;
    }
}

@media (max-width: 600px) {
    .logo {
        background-color: #fff;
        padding: 20px;
        border-radius: 20px;
        max-width: 300px;
        margin-bottom: 30px;
    }

    header p {
        font-size: 1.2rem;
        line-height: 1.7rem;
    }

    .logo img {
        height: 50px;
    }

    section {
        padding: 30px 15px;
    }

    .contact-sec {
        padding: 60px 15px;
    }
}