/* site.css - extracted from index.html */
:root {
    --primary-color: #213f7d;
    --white: #ffffff;
    --highlight-blue: #0354f7;
    --default-text: #333;
    --light-gray: #f5f7fb;
    --border-color: #e1e4e8;
    --text-color: #333333;
    --message-bg: #e9f0ff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    background-color: var(--white);
    color: var(--default-text);
    font-size: 18px;
    line-height: 1.8;
}
header {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 100;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}
.logo span {
    color: var(--white);
    font-weight: 300;
}
.logo img {
    width: 50px;
    margin-right: 10px;
    padding-top:2px;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    margin-left: 2rem;
}
nav ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: var(--highlight-blue);
}
.hero {
    background: url('images/PeopleAroundTable.webp') center/cover no-repeat;
    height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(33, 63, 125, 0.85);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(33, 63, 125, 0.10);
}
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
}
.btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
}
section {
    padding: 5rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}
.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.section-title p {
    font-size: 1.3rem;
    color: var(--default-text);
    line-height: 1.6;
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
.about-text {
    flex: 1;
}
.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.timeline {
    position: relative;
    margin: 3rem 0;
}
.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}
.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}
.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}
.timeline-item:nth-child(even) {
    padding-left: 50%;
}
.timeline-content {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}
.timeline-content p {
    font-size: 1.05rem;
}
.timeline-date {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding: 0.6rem 1.2rem;
}
.services {
    background-color: #f9f9f9;
}
.ai-use-cases {
    background-color: #e9f0ff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg circle,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg polygon,
.service-card:hover .service-icon svg line {
    transition: all 0.3s ease;
    stroke: var(--highlight-blue);
}
.cta {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}
input,
textarea {
    font-size: 1.05rem !important;
    padding: 1rem !important;
}
.contact .section-title h2 {
    font-size: 3rem;
}
.contact .section-title p {
    font-size: 1.3rem;
}
footer {
    background-color: #111;
    color: var(--white);
    padding: 3rem 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}
.footer-col p,
.footer-col li {
    font-size: 1.05rem;
    color: var(--white);
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
}
.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #333;
}
@media (max-width: 992px) {
    .timeline::before {
        left: 30px;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        text-align: left;
    }
    .about-content {
        flex-direction: column;
    }
    nav ul {
        display: none;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .section-title h2 {
        font-size: 2.5rem;
    }
    .cta-content h2 {
        font-size: 2.3rem;
    }
}
.chat-container {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.chat-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
}
.chat-header h3 {
    font-size: 1.2rem;
    margin-left: 10px;
}
.logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.chat-body {
    height: 300px;
    overflow-y: auto;
    padding: 20px;
    background-color: var(--light-gray);
}
.message {
    max-width: 80%;
    padding: 12px 15px;
    border-radius: 18px;
    line-height: 1.4;
    position: relative;
    font-size: 0.95rem;
    margin: 0;
    margin-bottom: 15px;
}
.message.incoming {
    background-color: var(--message-bg);
    color: var(--primary-color);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    margin-right: auto;
}
.message.outgoing {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
    margin-left: auto;
}
.message-info {
    display: flex;
    align-items: center;
    gap: 8px;
}
.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
}
.company-avatar {
    background-color: var(--primary-color);
    margin-right: 8px;
    margin-left: 0;
}
.user-avatar.user {
    background-color: var(--message-bg);
    color: var(--primary-color);
}
.outgoing-container .message-info {
    justify-content: flex-end;
}
.incoming-container .message-info {
    justify-content: flex-start;
}
.form-container {
    border-top: 1px solid var(--border-color);
    background-color: var(--white);
    padding: 15px;
}
.hidden-inputs {
    display: none;
}
.chat-form {
    display: flex;
    gap: 10px;
}
.chat-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    outline: none;
    font-size: 1rem;
    transition: border-color 0.3s;
    resize: none;
}
.chat-input:focus {
    border-color: var(--primary-color);
}
.send-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.send-button:hover {
    background-color: var(--highlight-blue);
}
.send-button svg {
    width: 20px;
    height: 20px;
}
.user-details {
    padding: 15px;
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
}
.detail-row {
    display: flex;
    margin-bottom: 10px;
}
.detail-label {
    flex: 0 0 80px;
    font-weight: bold;
    color: var(--primary-color);
}
.detail-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
}
.message-timestamp {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
    text-align: right;
}
#formStatus {
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}
.success {
    background-color: #d4edda;
    color: #155724;
}
.error {
    background-color: #f8d7da;
    color: #721c24;
}
.loading {
    color: var(--primary-color);
}
