﻿/* Base Styles */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f4f4f4;
    color: #333;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
    flex-wrap: nowrap;
}

    .header img {
        height: 58px;
        object-fit: contain;
        margin-right: 15px;
    }

#main-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

    #main-nav a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        padding: 8px 12px;
    }

.get-started {
    background: #007bff;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}
.get-started-building {
    background: #fff;
    color: #007bff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* Hamburger button (hidden on desktop) */
.hamburger {
    display: none;
}

/* Spacer below fixed header */
.spacer {
    height: 80px;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 80px 100px;
    background: linear-gradient(to right, #4a90e2, #007bff);
    color: #fff;
    gap: 60px;
}

    .hero .text {
        flex: 1;
        max-width: 600px;
    }

    .hero h1 {
        font-size: 56px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
        text-transform: uppercase;
        animation: fadeInUp 1s ease-out;
    }

        .hero h1 .highlight {
            background-image: linear-gradient(to right, #000000, #ff0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

    .hero p {
        font-size: 22px;
        margin-bottom: 30px;
        opacity: 0.95;
        animation: fadeIn 1.5s ease-out;
    }

    .hero .get-started {
        display: inline-block;
        background: #fff;
        color: #007bff;
        padding: 14px 28px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: background 0.3s ease, color 0.3s ease;
    }

        .hero .get-started:hover {
            background: #007bff;
            color: #fff;
        }

/* Chatbot Preview */
.chatbot-sim {
    flex: 1;
    max-width: 400px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 2s ease-out;
}

    .chatbot-sim img {
        width: 100%;
        height: auto;
        max-height: 350px;
        object-fit: contain;
        border-radius: 10px;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 50px 20px;
    background: #fff;
}

    .section h2 {
        text-align: center;
        margin-bottom: 30px;
    }

.products,
.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

    .products div {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
        flex: 1 1 250px;
        max-width: 300px;
    }

.gallery-item {
    flex: 1 1 250px;
    max-width: 300px;
}

    .gallery-item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        display: block;
        margin: 0 auto;
    }

.gallery img {
    height: 200px;
    width: auto;
    border-radius: 10px;
}

/* 📱 Mobile optimization */
@media (max-width: 600px) {
    .gallery-item {
        max-width: 100%;
        flex: 1 1 100%;
    }

        .gallery-item img,
        .gallery img {
            height: 150px;
            width: 100%;
            border-radius: 6px;
        }
}


/* Contact Form */
.contact {
    text-align: center;
}

    .contact p {
        margin: 10px 0;
    }

form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
    padding: 0 10px;
}

    form input,
    form textarea {
        width: 100%;
        padding: 10px;
        margin: 10px 0 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

    form button {
        background-color: #007bff;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        min-height: 44px;
        min-width: 120px;
        font-size: 1rem;
    }

/* Footer */
.modern-footer {
    background-color: #0f0f0f;
    color: #e0e0e0;
    padding: 30px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
    text-align: center;
    margin: 10px 0;
}

.footer-left {
    text-align: left;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-center a {
    margin: 0 10px;
    font-size: 1.4rem;
    color: #e0e0e0;
    transition: color 0.3s ease;
}

    .footer-center a:hover {
        color: #00bfff;
    }

.footer-right {
    text-align: right;
}

    .footer-right a {
        color: #e0e0e0;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .footer-right a:hover {
            color: #00bfff;
        }

.beta-note {
    text-align: center;
    font-size: 0.9rem;
    color: #bbb;
    margin-top: 15px;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 20px;
    }

    .hamburger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #333;
        cursor: pointer;
    }

    #main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

        #main-nav.show {
            display: flex;
        }

        #main-nav a {
            padding: 10px 0;
            width: 100%;
            border-top: 1px solid #eee;
        }

    .get-started {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

        .hero h1 {
            font-size: 36px;
        }

        .hero p {
            font-size: 18px;
        }

    .chatbot-sim {
        margin-top: 30px;
        max-width: 100%;
    }

    .products div,
    .gallery-item {
        max-width: 100%;
    }

    form {
        padding: 0 10px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;

  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    margin: 10px 0;
  }

  .footer-left {
    font-size: 0.8rem;
  }

  .footer-center a {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  .footer-right a {
    display: block;
    margin: 5px 0;
  }

  .beta-note {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}
/* Pricing Section */
#pricing {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

    


.pricing-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    animation: fadeIn 1.5s ease-out;
}

    .pricing-details > div {
        background: #fff;
        padding: 30px 25px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        max-width: 400px;
        flex: 1 1 300px;
        text-align: left;
    }

    .pricing-details h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: #333;
    }

    .pricing-details p {
        font-size: 1rem;
        color: #555;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .pricing-details ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .pricing-details li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        font-size: 0.95rem;
        color: #444;
    }

        .pricing-details li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #007bff;
            font-weight: bold;
        }

/* Responsive Enhancements */
@media (max-width: 768px) {
    #pricing h2 {
        font-size: 1.6rem;
    }

    .pricing-details {
        flex-direction: column;
        align-items: center;
    }

        .pricing-details > div {
            max-width: 100%;
        }
}

/* Blog Post Styling */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    line-height: 1.7;
    animation: fadeIn 1s ease-out;
}

    .blog-post h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
        font-weight: 700;
        color: #007bff;
    }

    .blog-post h2 {
        font-size: 1.6rem;
        margin-top: 40px;
        margin-bottom: 15px;
        font-weight: 600;
        color: #333;
    }

    .blog-post p {
        margin-bottom: 20px;
        color: #444;
    }

    .blog-post ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }

    .blog-post li {
        margin-bottom: 10px;
    }

    .blog-post code {
        background: #f0f0f0;
        padding: 2px 6px;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
    }

    .blog-post pre {
        background: #f9f9f9;
        padding: 15px;
        border-radius: 6px;
        overflow-x: auto;
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* Responsive Enhancements */
@media (max-width: 768px) {
    .blog-post {
        padding: 40px 15px;
    }

        .blog-post h1 {
            font-size: 1.8rem;
        }

        .blog-post h2 {
            font-size: 1.4rem;
        }

        .blog-post p {
            font-size: 1rem;
        }

        .blog-post pre {
            font-size: 0.9rem;
        }
}
.section.contact {
    padding: 20px;
}

    .section.contact form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
    }

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 1rem;
    word-break: break-word;
}

@media (max-width: 600px) {
    .section.contact {
        padding: 10px;
    }

    .alert {
        font-size: 0.95rem;
        padding: 12px;
    }

    .section.contact form {
        padding: 0 10px;
    }
}
