:root {
    --landing_page_background_color: #f5f4ee;
    --wrapper_page_background_color: #fbf9ed;
    --text_color: #0f0f0d;
    --navbar_background_color: #fbf9ed;
    --input_background_color: #444444;
    --input_text_color: #000000;
    --button_color: #0282c3;
    --left--main-backgorund_color: #eae8df;
    --svg_background_color: #1f1f20; 
    --svg_color: #ffffff; 
    --gradient-start: #1a2a6c;
    --gradient-end: #2a93d5;
    --nav-background: rgba(255, 255, 255, 0.1);
    --nav-text: #ffffff;
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #4F46E5;
    --gray-light: #f8f8f8;
    --gray-medium: #e5e5e5;
}
body {
    background: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}
input {
    background-color: var(--input_background_color);
    color: var(--input_text_color);
    border: none;
    border-radius: 20px;
    outline: none; /* Remove focus color */
}
button {
    background-color: var(--svg_background_color);
    color: var(--svg_color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
button svg {
    fill: var(--svg_color);
}
button:hover,
button:active {
    transform: scale(1.1); /* Expand on hover and click */
}
.wrapper {
    max-width: 100%;
    height: 100vh;
    margin: auto;
    position: relative;
    padding: 5px;
    transition: transform 0.3s ease;
    overflow: hidden;
}
.flex-container {
    display: flex;
    width: 100%;
    height: 100%;
    
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
    transition: transform 0.3s ease;
    padding: 15px;
    border-bottom: 1px solid #ccc; /* Horizontal line */
}
.left-main {
    width: 20%;
    height: 100%;
    padding: 15px;
    overflow: hidden;
    background-color: var(--left--main-backgorund_color);    
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    display: none;
}
.right-main {
    width: 100%;
    max-height: 95vh;
    padding: 15px;
    overflow: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Add gap between content */
    
}
.right_main-chat-input {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: rgb(255, 255, 255);
    border: 1px solid #ccc; /* Border line */
    border-radius: 10px;
    padding: 10px;
    margin-top: 30px;;
}
.right_main-chat-input input {
    flex: 1;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    border: none;
    border-radius: 10px;
    margin-right: 10px;
    outline: none; /* Remove focus color */
}
.right_main-chat-input button {
    padding: 10px;
    background-color: var(--svg_background_color);
    color: var(--svg_color);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.right_main-chat-input button svg {
    fill: var(--svg_color);
}
.right_main-chat-input button:hover,
.right_main-chat-input button:active {
    transform: scale(1.1); /* Expand on hover and click */
}
.navbar {
    width: 100%;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    transition: transform 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
}
.hamburger {
    background-color: var(--svg_background_color);
    color: var(--svg_color);
    border: none;
    border-radius: 20px;
    cursor: pointer;
    padding: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1001;
}
.hamburger svg {
    fill: var(--svg_color);
}
.hamburger:hover,
.hamburger:active {
    transform: scale(1.1); /* Expand on hover and click */
}
.chat-header {
    padding: 10px;
}
.chat-input {
    display: flex;
    align-items: center;
    background-color: var(--input_background_color);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.chat-input input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: var(--input_background_color);
    color: var(--input_text_color);
    margin-right: 10px;
    font-size: 16px;
    outline: none; /* Remove focus color */
}
.chat-input button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background-color: var(--button_color);
    color: var(--text_color);
    cursor: pointer;
}
.chat-input button:hover {
    background-color: var(--secondary_color);
}
.save_chat_container {
    margin-top: 50px; /* Move down a little more */
    padding-bottom: 10px;
    align-items: center;
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto;
    grid-template-areas: "input button";
    font-weight: bold;
    font-size: 16px;
    font: 1em sans-serif;
}
.chat-container {
    background: rgba(30, 30, 30, 0.1);  /* Changed from 0.7 to 0.6 for more transparency */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    height: 60vh;
    min-height: 300px;
    max-height: 600px;
    overflow-y: auto;
    color: white;
    border-radius: 12px;
    align-items: flex-start;
    padding: 20px;
    margin: 20px 0;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
}

.message {
    max-width: 70%;
    padding: 15px;
    border-radius: 15px;
    margin: 8px 0;
    word-wrap: break-word;
    line-height: 1.4;
}

.user-message {
    align-self: flex-end;
    background-color: #4F46E5; /* User message background color */
    color: #fff;
    border-bottom-right-radius: 5px;
    margin-left: auto;
    margin-right: 10px;
}

.bot-message {
    align-self: flex-start;
    background-color: #E5E5EA; /* Bot message background color */
    color: #000;
    border-bottom-left-radius: 5px;
    margin-right: auto;
    margin-left: 10px;
}

.bot-message blockquote {
    color: #9f7aea;
    font-style: italic;
    border-left: 4px solid #9f7aea;
    padding-left: 1rem;
    margin: 1rem 0;
    background: rgba(159, 122, 234, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
}

#next-quote-button {
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #4F46E5;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.right-main-content {
    max-width: 800px;  /* Increased from 600px */
    width: 90%;        /* Changed to percentage for better responsiveness */
    margin: 20px auto; /* Center horizontally */
    padding: 20px;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: center;
    color: white;
    min-height: 500px;  /* Minimum height */
    max-height: 80vh;   /* Maximum height relative to viewport */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 80px; /* Add space for fixed navbar */
}
.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    color: var(--text_color); /* Use text color from variables */
    padding: 5px;
    border-radius: 5px;
    width: auto;
    box-sizing: border-box; 
    position: relative; 
    overflow: hidden;
    
}

.quote {
    max-width: 600px;
    max-height: fit-content;
    overflow-y: none;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    animation: scrollQuote 10s linear infinite;
    position: relative;
    text-align: center;
    color:white;
    white-space: nowrap;
}

.quote:hover {
    animation-play-state: paused;
}


@keyframes scrollQuote {
    0% { transform: translateX(100%); opacity: 1; }
    90% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-100%); opacity: 0; }
}

.nav-header {
    top: 15px;
    width: 80%;
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 50;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 2rem 1rem;
    background: rgba(255, 255, 255, 0.353);
    margin: 0px auto;
    transition: background-color 0.3s;
    border: 0.5px solid rgba(0, 0, 0, 0.1);  
    border-radius: 10px;
}

.nav-brand {
    color: rgb(0, 0, 0);
    font-size: 1.35rem;
    font-weight: 520;
    letter-spacing: -0.01em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    color: rgb(0, 0, 0);
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    position: relative;
    overflow: hidden;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.site-footer {
    background: rgba(204, 213, 174, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    color: white;
    text-align: center;
}

.footer-section h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--text_color);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-section {
        width: 100%;
    }
}

.shapes-container {
    position: fixed;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    transition: filter 0.3s ease;
    will-change: transform;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.4), rgba(59, 130, 246, 0.2));
    top: 20%;
    left: 10%;
    filter: blur(30px);
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.6), rgba(16, 185, 129, 0.3));
    bottom: 15%;
    right: 10%;
    filter: blur(25px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.6), rgba(59, 130, 246, 0.3));
    top: 40%;
    left: 30%;
    filter: blur(20px);
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle at 30% 70%, rgba(236, 72, 153, 0.4), rgba(124, 58, 237, 0.2));
    top: 20%;
    right: 25%;
    filter: blur(35px);
}

.shape:hover {
    filter: blur(15px);
}

.landing-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.landing-content {
    max-width: 800px;
    text-align: center;
    color: white;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(8px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.landing-logo {
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto;
}

.landing-description {
    font-size: 1.2rem;
    margin: 2rem 0;
    line-height: 1.6;
}

.landing-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.feature {
    flex: 1;
    max-width: 300px;
}

.feature-image-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 0 auto 1rem;
}

.primary-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: #000000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    background: var(--text-color);
    color: var(--bg-color);
    padding:20px;
    border-radius: 8px;
}

.primary-button:hover {
    transform: translateY(-2px);
    transform:scale(1.1);
}

/* Landing Page Sections */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    min-height: 70vh;
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 800px;
    color:#000000;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    
}

.hero-subtitle {
    color:#000000;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.use-cases-section,
.features-section {
    padding: 6rem 2rem;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem;
    background: var(--gray-light);
    text-align: center;
}

.use-cases-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    height: 30vh;
    margin: 2rem auto;
    text-align: center;
}

.use-case-card,
.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.use-case-card h3,
.use-case-card p,
.feature-card h3,
.feature-card p {
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
}

/* Remove testimonials and CTA section styles */
.testimonials-section,
.testimonials-wrapper,
.testimonials-track,
.testimonial-card,
.cta-section {
    display: none;
}

/* Keep consistent footer styling */
.site-footer {
    background: rgba(204, 213, 174, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    margin-top: auto;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-footer {
    background: rgba(20, 20, 20, 0.95);
    padding: 4rem 2rem 2rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .use-cases-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.hero-section,
.use-cases-section,
.features-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    color:#000000; 
    
}

.hero-subtitle {
    
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3rem;
}
.hero-subtitle-two {
    padding-top: 30px;;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color:#000000; 
}

.use-cases-grid {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.use-case-card {
    flex: 1;
    background: var(--gray-light);
    color: var(--text-color);
    border: 1px solid var(--gray-medium);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
}

.use-case-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--gray-light);
    color: var(--text-color);
    border: 1px solid var(--gray-medium);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

/* Add responsive design improvements */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .use-cases-grid {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.hero-subtitle-section {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--gray-light);
}

.subtitle-container {
    max-width: 800px;
    margin: 0 auto;
}

.subtitle-container h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.subtitle-container p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
