﻿/*Default Page: AI Card Section */
.clean-container
{
    max-width: 90%;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

/* Heading */
.clean-container h3 {
    text-align: center;
    font-size: 1.85em;
    font-weight: 700;
    margin: 50px 0 20px;
}

.clean-container h4 {
    text-align: center;
    margin: 60px 0 20px;
    font-weight: 600;
}

/* Intro paragraph */
.intro-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

/* Card layout */
.section-block {
    margin: 50px 0 50px;
}

.ai-card {
    display: flex;
    gap: 22px;
    padding: 24px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    background: #fff;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(15px);
}

    /* Animation on load */
    .ai-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Hover polish */
    .ai-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 22px rgba(0,0,0,0.06);
        border-color: #dcdcdc;
    }

    /* Image */
    .ai-card img {
        height: 10%;
        width: 10%;
        /*   max-width: 120px; */ /* prevents oversized images from breaking layout */
        flex-shrink: 0;
    }

/* Content */
.ai-content {
    flex: 1;
}

.ai-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.35em;
    line-height: 1.65;
}

/* Paragraph */
.ai-content p {
    margin: 0;
    line-height: 1.65;
}

/* Link */
.center-link {
    text-align: center;
    margin: 50px 0px 50px 0px;
}

    .center-link a {
        text-decoration: none;
        font-weight: 600;
        color: #2563eb;
        transition: opacity 0.2s ease;
        font-size: 1.3em;
    }

        .center-link a:hover {
            opacity: 0.7;
        }

/*Default Page: AI Card Section */



/* ====== Contacts Page Stying start ====== */
/*contacts-finish page styling */
/* === Modern Dark Contact Form Styling === */
.contact-card {
    background: #222;
    border: 1px solid #222;
    width: 100%;
    max-width: 780px; /* was 600px — slightly wider */
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.15);
    transition: all 0.3s ease;
    padding: 55px 60px; /* increased a little for proportion */
    margin: auto;
}

    .contact-card:hover {
        box-shadow: 0 0 35px rgba(0, 200, 255, 0.3);
        transform: translateY(-3px);
    }

.form-input {
    background-color: #121212;
    border: 1px solid #333;
    color: #ddd;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 1.05em;
    transition: all 0.3s ease;
    margin-bottom: 22px;
}

    .form-input:focus {
        border-color: #00bcd4;
        box-shadow: 0 0 10px rgba(0, 188, 212, 0.3);
        background-color: #181818;
        color: #fff;
    }

    .form-input::placeholder {
        color: #888;
    }

.btn-modern {
    background: linear-gradient(90deg, #00bcd4, #007bff);
    color: #fff;
    border: none;
    padding: 16px;
    font-size: 1.15rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.6px;
    font-weight: 500;
}

    .btn-modern:hover {
        background: linear-gradient(90deg, #00e5ff, #00bcd4);
        box-shadow: 0 0 12px rgba(0, 188, 212, 0.4);
        transform: translateY(-2px);
    }

.contact-header {
    text-align: center;
    color: #fff;
    font-weight: 300;
    margin-bottom: 10px;
    font-size: 2.4rem;
}

.contact-subtext {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* contacts-finish end*/

/* Contacts-processor page start*/
/* ===========================
   Dark Theme – Thank You Card
   =========================== */

.thank-you-card {
    max-width: 900px;
    margin: 0 auto;
    background: #161b22; /* deep charcoal */
    border-radius: 14px;
    padding: 40px 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
}

/* Header */
.thank-you-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 25px;
    padding-bottom: 15px;
}

    .thank-you-header h3 {
        font-size: 1.9rem;
        font-weight: 500;
        margin: 0;
        color: #f0f3f6;
    }

    .thank-you-header .lead-name {
        color: #4ea1ff; /* clean blue accent */
        font-weight: 600;
    }

/* Body text */
.thank-you-body p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #c9d1d9;
    margin-bottom: 18px;
}

.thank-you-body a {
    color: #4ea1ff;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(78,161,255,0.35);
}

    .thank-you-body a:hover {
        border-bottom-color: #4ea1ff;
    }

/* Error state */
.thank-you-error {
    background: rgba(217, 83, 79, 0.15);
    color: #ffb4b4;
    border-radius: 10px;
    padding: 18px 22px;
    margin-top: 25px;
    border: 1px solid rgba(217, 83, 79, 0.35);
}

    .thank-you-error a {
        color: #ffb4b4;
        font-weight: 600;
        text-decoration: underline;
    }

/* Mobile spacing */
@media (max-width: 768px) {
    .thank-you-card {
        padding: 30px 25px;
    }

    .thank-you-header h3 {
        font-size: 1.6rem;
    }
}
/*contacts-processor end*/
/* ====== Contacts Page Stying End ====== */


/* ====== Demo Page Stying Start ====== */


.demo-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch; /* keeps same height */
    gap: 40px;
    margin-left: 5%;
    margin-right: 5%;
    padding: 20px 0;
}

.demo-video, .demo-form {
    flex: 1 1 400px;
    max-width: 45%;
    min-width: 350px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}

.demo-video {
    border: 2px solid lightblue;
    padding: 1%;
    display: flex;
}

    .demo-video video {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        flex-grow: 1;
    }


.demo-form {
    border: 2px solid darkorange;
    background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 2.2rem 2rem;
    color: #e0e0e0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .demo-form:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    }

.demo-form-innerbox {
    border-radius: 12px;
    background: #141414;
    padding: 2rem 2.3rem;
    border: 1px solid #2a2a2a;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.05);
}

.demo-form h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
    color: #00bcd4;
    letter-spacing: 0.5px;
    margin-bottom: 1.8rem;
    position: relative;
}

    .demo-form h3::after {
        content: "";
        display: block;
        width: 60px;
        height: 5px;
        background: linear-gradient(90deg, #00bcd4, #007bff);
        margin: 0.8rem auto 0;
        border-radius: 3px;
    }

.demo-form .form-control {
    background: #1f1f1f;
    border: 1.5px solid #333;
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 1.3rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #f2f2f2;
}

    .demo-form .form-control::placeholder {
        color: #aaa;
    }

    .demo-form .form-control:focus {
        border-color: #00bcd4;
        background: #262626;
        box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2);
        outline: none;
    }

.demo-form label {
    font-size: 2.1rem;
    color: #ccc;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
}

.demo-form input[type="checkbox"] {
    transform: scale(1.3);
    margin-right: 10px;
    accent-color: #00bcd4;
}

.btn-modern {
    background: linear-gradient(90deg, #00bcd4, #007bff);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    border: none;
    border-radius: 10px;
    padding: 15px 0;
    width: 60%;
    margin: 2.2rem auto 0;
    display: block;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

    .btn-modern:hover {
        background: linear-gradient(90deg, #00a0c6, #0066cc);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0, 123, 255, 0.45);
    }
/* Force all textboxes to keep the same dark theme */
.demo-form .form-control {
    background-color: #1c1c1c !important;
    color: #f2f2f2 !important;
    border: 1.5px solid #333 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    /* Placeholder text color */
    .demo-form .form-control::placeholder {
        color: #999 !important;
    }

    /* Focused state */
    .demo-form .form-control:focus {
        background-color: #262626 !important;
        border-color: #00bcd4 !important;
        box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.2) !important;
        color: #fff !important;
    }


    /* showsingledemo styling */
.intrinsic-container {
    position: relative;
    height: 0;
    overflow: hidden;
}

.intrinsic-container-16x9 {
    padding-bottom: 56.25%;
}

.intrinsic-container iframe, .intrinsic-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    margin-left: 10%;
    padding-bottom: 20px;
}

.copyright p {
    font-size: 0.95rem;
}

footer.footer {
    background: #f8f9fa;
    padding-top: 20px;
}
/* ===========================
   Dark Thank You Card (Demo Page)
   =========================== */

.thank-you-card-dark {
    max-width: 900px;
    margin: 0 auto;
    background: #14181f;
    border-radius: 16px;
    padding: 45px 55px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

/* Header */
.thank-you-header-dark {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 26px;
    padding-bottom: 14px;
}

    .thank-you-header-dark h3 {
        font-family: 'Manrope', 'Roboto', sans-serif;
        font-size: 1.85rem;
        font-weight: 600;
        color: #f2f4f8;
        margin: 0;
        letter-spacing: 0.3px;
    }

/* Body */
.thank-you-body-dark p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.thank-you-body-dark a {
    color: #4ea1ff;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(78,161,255,0.35);
}

    .thank-you-body-dark a:hover {
        border-bottom-color: #4ea1ff;
    }

/* Error panel */
.thank-you-error-dark {
    background: rgba(217, 83, 79, 0.18);
    border: 1px solid rgba(217, 83, 79, 0.4);
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 28px;
}

    .thank-you-error-dark p {
        color: #ffb4b4;
        margin: 0;
    }

    .thank-you-error-dark a {
        color: #ffb4b4;
        font-weight: 600;
        text-decoration: underline;
    }



    /* showsingledemo end */
/* ====== Demo Page Stying End ====== */



/* ====== Example Page Stying Start ====== */
    
    /* === Equal height section for images and form === */
.example-section {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 3%;
    margin-left: 5%;
    margin-right: 5%;
    flex-wrap: wrap;
}

.example-left,
.example-right {
    flex: 1 1 45%;
    min-width: 400px;
    border-radius: 15px;
    overflow: hidden;
    background-color: black;
}

.example-left {
    border: 2px solid lightblue;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1%;
    background-color: black;
}

    .example-left img {
        width: 90%;
        margin: 15px auto;
        display: block;
        border-radius: 10px;
        border: 2px solid #555;
        max-width: 450px;
    }

/* Outer orange border container */
.example-right {
    /*border: 1px solid #ff9900;*/
    border-radius: 12px;
    background-color: #000;
    box-shadow: 0 0 25px rgba(255, 153, 0, 0.25);
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px; /* increase height of orange area */
}

/* Inner form box fills more space */
.form-wrapper {
    background: #121212;
    border-radius: 14px;
    width: 100%;
    max-width: 600px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* center the form fields vertically */
    padding: 50px 60px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
}

/* Stack inputs vertically with even spacing */
.fields-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

/* Input fields */
.form-control {
    background-color: #1b1b1b !important;
    border: 1px solid #333 !important;
    border-radius: 10px;
    color: #e0e0e0;
    padding: 16px 18px;
    font-size: 16px;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .form-control::placeholder {
        color: #999;
    }

    .form-control:focus {
        outline: none;
        /*border-color: #00bcd4;*/
        box-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
        background-color: #121212;
        color: #fff;
    }

.btn-modern {
    display: block;
    margin: 20px auto; /* centers horizontally */
    width: 50%;
    background: linear-gradient(90deg, #00bcd4, #007bff);
    border: none;
    color: #fff;
    padding: 16px 0;
    font-size: 17px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.6px;
    font-weight: 500;
}

    .btn-modern:hover {
        background: linear-gradient(90deg, #0097a7, #0062cc);
        box-shadow: 0 0 25px rgba(0, 188, 212, 0.3);
        transform: translateY(-2px);
    }


    /* showexamples page stylling */
.ft-thankyou-page-wrap {
    width: 80%;
    max-width: 980px;
    margin: 120px auto 70px auto;
    padding: 0 20px;
    font-family: Arial, Helvetica, sans-serif;
}

.ft-thankyou-confirmation-card {
    background: #ffffff;
    border: 1px solid #e5e8ec;
    border-radius: 18px;
    padding: 55px 65px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.055);
    position: relative;
    overflow: hidden;
}

    .ft-thankyou-confirmation-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 35px;
        right: 35px;
        height: 1px;
        background: linear-gradient(90deg, transparent, #d8dee6, transparent);
    }

.ft-thankyou-title-area {
    text-align: center;
    margin-bottom: 28px;
}

.ft-thankyou-title {
    margin: 0;
    color: #333333;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 0.2px;
}

    .ft-thankyou-title::after {
        content: "";
        display: block;
        width: 64px;
        height: 2px;
        background: #c9d3df;
        margin: 15px auto 0 auto;
        border-radius: 10px;
    }

.ft-thankyou-message-content {
    color: #4a4a4a;
    font-size: 1.08em;
    line-height: 1.75;
    text-align: center;
}

    .ft-thankyou-message-content p {
        margin-bottom: 22px;
    }

    .ft-thankyou-message-content a {
        color: #3d6f9f;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(61, 111, 159, 0.28);
        transition: all 0.25s ease;
    }

        .ft-thankyou-message-content a:hover {
            color: #24527f;
            border-bottom-color: #24527f;
        }

.ft-thankyou-error-box {
    color: #4a4a4a;
    font-size: 1.08em;
    line-height: 1.7;
    text-align: center;
    background: #fffdfc;
    border: 1px solid #eadfda;
    border-radius: 12px;
    padding: 18px 22px;
    margin-top: 20px;
}

    .ft-thankyou-error-box p {
        margin: 0;
    }

    .ft-thankyou-error-box a {
        color: #3d6f9f;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid rgba(61, 111, 159, 0.28);
    }

        .ft-thankyou-error-box a:hover {
            color: #24527f;
            border-bottom-color: #24527f;
        }

@media (max-width: 768px) {
    .ft-thankyou-page-wrap {
        width: 92%;
        margin-top: 80px;
        padding: 0;
    }

    .ft-thankyou-confirmation-card {
        padding: 40px 28px;
    }

    .ft-thankyou-title {
        font-size: 1.75em;
    }

    .ft-thankyou-message-content,
    .ft-thankyou-error-box {
        font-size: 1em;
        text-align: left;
    }

    .ft-thankyou-title-area {
        text-align: center;
    }
}


    /* showexamples page style end*/

/* ====== Example Page Stying End ====== */