/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1b5e20;
    --primary: #2e7d32;
    --primary-light: #4caf50;
    --primary-lighter: #81c784;
    --primary-lightest: #c8e6c9;
    --background: #f1f8e9;
    --text-dark: #1b5e20;
    --text-light: #ffffff;
    --shadow: rgba(27, 94, 32, 0.1);
    --card-bg: rgba(241, 248, 233, 0.95);
    --glow-intensity: 0.6;
    --glow-spread: 25px;
    --hover-scale: 1.05;
    --transition-speed: 0.5s;
}

html {
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--background) 0%, var(--primary-lightest) 100%);
    min-height: 100vh;
    color: var(--text-dark);
    padding-top: 80px;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--text-light);
    padding: 1rem;
    margin: 10px;
    border-radius: 11px;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid var(--primary-light);
    z-index: 9999;
    transition: transform 0.3s ease;
    will-change: transform;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.logo-svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 11px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.nav-links a:hover, .nav-links a.active {
    background: var(--primary-light);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    margin-top: 20px;
    border: 2px solid var(--primary);
    border-radius: 11px;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 50%;
    height: auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.hero-image:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateZ(20px) rotateY(10deg);
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary);
    border-radius: 11px;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-box img {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.feature-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin: 0 auto;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 10px;
        background: var(--primary);
        z-index: 1000;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary);
        padding: 10px;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links a {
        display: block;
        padding: 10px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 10px;
        top: 5px;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
    }

    .features {
        padding: 20px;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .feature-box h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .feature-box {
        padding: 15px;
    }

    .feature-box img {
        width: 40px;
        height: 40px;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }
}

/* Story Section Styles */
.story {
    padding: 4rem 2rem;
    border: 2px solid var(--primary);
    border-radius: 11px;
    margin: 10px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.5);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
}

.story h1 {
    text-align: center;
    color: var(--primary);
    font-size: 3rem;
    margin-bottom: 3rem;
}

.story-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 11px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.story-card img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.story-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.story-card p {
    color: #666;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive Design */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .story {
        margin-top: 80px;
        padding: 20px;
    }

    .story h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .story-card {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .story-card img {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .story-card h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .story-card p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .story h1 {
        font-size: 1.8rem;
    }

    .story-card {
        padding: 1.25rem;
    }

    .story-card img {
        width: 50px;
        height: 50px;
    }

    .story-card h2 {
        font-size: 1.2rem;
    }

    .story-card p {
        font-size: 0.9rem;
    }
}

/* Values Section Styles */
.values {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary);
    border-radius: 11px;
    margin: 10px;
    position: relative;
    z-index: 1;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values h2 {
    text-align: center;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 11px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.value-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .values {
        padding: 2rem 1rem;
    }

    .values h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0.5rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .value-card img {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .value-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .value-card {
        padding: 1.25rem;
    }

    .value-card img {
        width: 45px;
        height: 45px;
    }

    .value-card h3 {
        font-size: 1.1rem;
    }

    .value-card p {
        font-size: 0.85rem;
    }
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 2rem;
    margin: 10px;
    border-radius: 11px;
    box-shadow: 0 -4px 15px var(--shadow);
    border: 2px solid var(--primary);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    display: inline-block;
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.social-links a:hover {
    transform: translateZ(20px) rotateY(10deg);
    opacity: 1;
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.social-links a i {
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.2);
}

/* Chat Container */
.chat-container {
    background: linear-gradient(135deg, var(--background) 0%, var(--primary-lightest) 100%);
    border: 2px solid var(--primary);
    border-radius: 11px;
    position: relative;
    z-index: 1;
}

.chat-sidebar {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-right: 2px solid var(--primary);
}

.chat-main {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
}

/* Message Styles */
.message-content {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border: 2px solid var(--primary);
    border-radius: 11px;
}

.message.user .message-content {
    background: var(--primary-lightest);
    border-color: var(--primary-light);
}

.message.system .message-content {
    background: var(--card-bg);
}

/* Input Area */
.chat-input-container {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-top: 2px solid var(--primary);
}

textarea {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border: 2px solid var(--primary);
    border-radius: 11px;
}

textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--primary-lightest);
}

.send-btn {
    background: var(--primary);
    color: var(--text-light);
}

.send-btn:hover {
    background: var(--primary-dark);
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    /* Navbar Mobile Styles */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 10px;
        background: var(--primary);
        z-index: 1000;
    }

    .navbar.hidden {
        transform: translateY(-100%);
    }

    .navbar.visible {
        transform: translateY(0);
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: none;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-links a {
        width: 100%;
        padding: 10px;
        margin: 5px 0;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 10px;
        top: 5px;
        background: none;
        border: none;
        color: var(--text-light);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
    }

    /* Hero Section Mobile */
    .hero {
        margin-top: 80px;
        padding: 20px;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        width: 100%;
        padding: 0 15px;
    }

    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    /* Features Section Mobile */
    .features {
        padding: 20px;
    }

    .features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .feature-box img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

    .feature-box h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Footer Mobile */
    .footer {
        padding: 20px;
    }

    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a img {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-content h1,
    .features h2 {
        font-size: 1.8rem;
    }

    .feature-box h3 {
        font-size: 1.2rem;
    }

    .feature-box p {
        font-size: 0.9rem;
    }

    .feature-box {
        padding: 15px;
    }

    .feature-box img {
        width: 40px;
        height: 40px;
    }

    .hero-image img {
        max-width: 90%;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .cta-button img {
        width: 20px;
        height: 20px;
    }
}

/* Feature Boxes */
.feature-box {
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-light);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.feature-box i {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Story Boxes */
.story-box {
    background: rgba(var(--primary-rgb), 0.03);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.story-box:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.1);
    background: rgba(var(--primary-rgb), 0.05);
}

.story-box:hover::before {
    opacity: 1;
}

.story-box h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.4rem;
    position: relative;
    padding-left: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-box h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.story-box h3:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.story-box p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-box:hover p {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

/* Core Values */
.core-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background: rgba(var(--primary-rgb), 0.03);
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.1);
    background: rgba(var(--primary-rgb), 0.05);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.value-item:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.value-item h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover h4 {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

.value-item p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover p {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

/* 3D Icon Styles */
.icon-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.icon-3d:hover {
    transform: rotateY(10deg) rotateX(10deg);
}

/* Enhanced CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 11px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::after {
    transform: translateX(100%);
    animation: shine 1.5s infinite;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.cta-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateZ(20px) rotateY(10deg);
}

.cta-button .icon-3d {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Feature Box Icons */
.feature-box .icon-3d {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-box:hover .icon-3d {
    transform: scale(1.1) translateZ(20px) rotateY(10deg);
}

/* Footer Icons */
.footer .social-links {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.footer .social-links a.icon-3d {
    width: 48px;
    height: 48px;
}

.footer .social-links a.icon-3d img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer .social-links a:hover {
    transform: translateZ(10px) rotateY(10deg);
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.footer .social-links a:hover img {
    transform: scale(1.1);
}

/* Story and Value Card Icons */
.story-card .icon-3d,
.value-card .icon-3d {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.story-card:hover .icon-3d,
.value-card:hover .icon-3d {
    transform: scale(1.1) translateZ(20px) rotateY(10deg);
}

/* Add cursor pointer to all interactive elements */
.nav-link,
.btn,
.feature-box,
.social-icon,
.logo,
.hero-content,
.cta-button,
.footer-link,
.footer-icon {
    cursor: pointer;
}

/* Add glowing effect to all interactive elements */
.nav-link,
.btn,
.feature-box,
.social-icon,
.logo,
.hero-content,
.cta-button,
.footer-link,
.footer-icon {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add shine effect */
.nav-link::after,
.btn::after,
.feature-box::after,
.social-icon::after,
.logo::after,
.hero-content::after,
.cta-button::after,
.footer-link::after,
.footer-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nav-link:hover::after,
.btn:hover::after,
.feature-box:hover::after,
.social-icon:hover::after,
.logo:hover::after,
.hero-content:hover::after,
.cta-button:hover::after,
.footer-link:hover::after,
.footer-icon:hover::after {
    transform: translateX(100%);
    animation: shine 1.5s infinite;
}

/* Add glow effect to buttons */
.btn,
.cta-button {
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.btn:hover,
.cta-button:hover {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Add glow effect to feature boxes */
.feature-box {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.feature-box:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-5px) scale(1.02);
}

/* Add glow effect to social icons */
.social-icon {
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.social-icon:hover {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-3px) scale(1.1);
}

/* Add glow effect to logo */
.logo {
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.1);
}

.logo:hover {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
    transform: scale(1.05);
}

/* Add glow effect to nav links */
.nav-link {
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.nav-link:hover {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-2px);
}

/* Add glow effect to footer links */
.footer-link {
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.footer-link:hover {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    transform: translateX(5px);
}

/* Add glow effect to footer icons */
.footer-icon {
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.1);
}

.footer-icon:hover {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    transform: translateY(-3px) scale(1.1);
}

/* Add glow effect to hero content */
.hero-content {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.1);
}

.hero-content:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.3);
}

/* Add animations */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* Add pulse animation to active elements */
.nav-link.active,
.feature-box.active {
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

/* Add hover effect to images */
.feature-box img,
.logo img,
.social-icon img {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
}

.feature-box:hover img,
.logo:hover img,
.social-icon:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
}

/* Add hover effect to text */
.feature-box h3,
.feature-box p,
.hero-content h1,
.hero-content p {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover h3,
.feature-box:hover p,
.hero-content:hover h1,
.hero-content:hover p {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
}

/* Stronger Glow Effects */
.nav-link,
.btn,
.feature-box,
.social-icon,
.logo,
.hero-content,
.cta-button,
.footer-link,
.footer-icon {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.btn:hover,
.feature-box:hover,
.social-icon:hover,
.logo:hover,
.hero-content:hover,
.cta-button:hover,
.footer-link:hover,
.footer-icon:hover {
    box-shadow: 0 0 var(--glow-spread) rgba(var(--primary-rgb), var(--glow-intensity));
    transform: translateY(-5px) scale(var(--hover-scale));
}

/* Stronger Shine Effect */
.nav-link::after,
.btn::after,
.feature-box::after,
.social-icon::after,
.logo::after,
.hero-content::after,
.cta-button::after,
.footer-link::after,
.footer-icon::after {
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

/* Stronger Button Effects */
.btn,
.cta-button {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.4);
}

.btn:hover,
.cta-button:hover {
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.8);
    transform: translateY(-8px) scale(1.05);
}

/* Stronger Feature Box Effects */
.feature-box {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.feature-box:hover {
    box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-10px) scale(1.05);
}

/* Stronger Social Icon Effects */
.social-icon {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.social-icon:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-8px) scale(1.2);
}

/* Stronger Logo Effects */
.logo {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.logo:hover {
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.7);
    transform: scale(1.1);
}

/* Stronger Nav Link Effects */
.nav-link {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.nav-link:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-5px);
}

/* Stronger Footer Link Effects */
.footer-link {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.footer-link:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.7);
    transform: translateX(8px);
}

/* Stronger Footer Icon Effects */
.footer-icon {
    box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
}

.footer-icon:hover {
    box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-8px) scale(1.2);
}

/* Stronger Hero Content Effects */
.hero-content {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.hero-content:hover {
    box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.7);
}

/* Enhanced Animations */
@keyframes shine {
    0% {
        transform: translateX(-100%) scale(1.5);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) scale(1.5);
        opacity: 0.5;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.8);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(var(--primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0);
    }
}

/* Stronger Active Element Effects */
.nav-link.active,
.feature-box.active {
    animation: pulse 2s infinite;
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.8);
}

/* Stronger Image Effects */
.feature-box img,
.logo img,
.social-icon img {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover img,
.logo:hover img,
.social-icon:hover img {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

/* Stronger Text Effects */
.feature-box h3,
.feature-box p,
.hero-content h1,
.hero-content p {
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box:hover h3,
.feature-box:hover p,
.hero-content:hover h1,
.hero-content:hover p {
    transform: translateY(-5px);
    text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.6);
}

/* Stronger Card Effects */
.feature-card,
.story-card,
.value-card {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover,
.story-card:hover,
.value-card:hover {
    box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-10px) scale(1.05);
}

/* Stronger Icon Effects */
.icon-3d {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: all var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-3d:hover {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

/* Stronger Story Box Effects */
.story-box {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.story-box:hover {
    box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.7);
    transform: translateX(10px) scale(1.05);
}

/* Stronger Value Item Effects */
.value-item {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.value-item:hover {
    box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-8px) scale(1.05);
}

/* Continuous Animation Effects */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    }
    50% {
        box-shadow: 0 0 35px rgba(var(--primary-rgb), 0.7);
    }
    100% {
        box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-text {
    0% {
        text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(var(--primary-rgb), 0.6);
    }
    100% {
        text-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
    }
}

/* Apply continuous animations to all content */
.feature-box,
.story-box,
.value-item,
.feature-card,
.story-card,
.value-card {
    animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite;
}

.feature-box img,
.logo img,
.social-icon img,
.icon-3d {
    animation: float 5s ease-in-out infinite;
}

.feature-box h3,
.feature-box p,
.hero-content h1,
.hero-content p,
.story-box h3,
.story-box p,
.value-item h4,
.value-item p {
    animation: pulse-text 4s ease-in-out infinite;
}

.nav-link,
.btn,
.cta-button,
.footer-link {
    animation: glow 4s ease-in-out infinite;
}

.social-icon,
.footer-icon {
    animation: float 5s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Enhanced continuous shine effect */
.nav-link::after,
.btn::after,
.feature-box::after,
.social-icon::after,
.logo::after,
.hero-content::after,
.cta-button::after,
.footer-link::after,
.footer-icon::after {
    animation: shine 3s infinite;
}

/* Continuous rotation for icons */
.icon-3d {
    animation: rotate 20s linear infinite, float 5s ease-in-out infinite;
}

/* Continuous pulse for active elements */
.nav-link.active,
.feature-box.active {
    animation: pulse 2s infinite, glow 4s ease-in-out infinite;
}

/* Continuous card effects */
.feature-card,
.story-card,
.value-card {
    animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Continuous hero content effects */
.hero-content {
    animation: float 7s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Continuous story box effects */
.story-box {
    animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Continuous value item effects */
.value-item {
    animation: float 5s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Keep hover effects but make them more dramatic */
.feature-box:hover,
.story-box:hover,
.value-item:hover,
.feature-card:hover,
.story-card:hover,
.value-card:hover {
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
    transform: scale(1.05);
}

.nav-link:hover,
.btn:hover,
.cta-button:hover,
.footer-link:hover {
    animation: glow 2s ease-in-out infinite;
    transform: scale(1.1);
}

.social-icon:hover,
.footer-icon:hover {
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
    transform: scale(1.2);
}

/* Add continuous animation to chat elements */
.chat-sidebar,
.chat-main,
.message-content,
.chat-history-item {
    animation: glow 4s ease-in-out infinite;
}

.message-header .icon-3d {
    animation: float 5s ease-in-out infinite, rotate 20s linear infinite;
}

.send-btn {
    animation: glow 4s ease-in-out infinite;
}

/* Add continuous animation to form elements */
textarea {
    animation: glow 4s ease-in-out infinite;
}

/* Add continuous animation to action buttons */
.action-btn {
    animation: float 5s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Add continuous animation to chat history */
.chat-history-item {
    animation: float 6s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Add continuous animation to delete button */
.delete-chat-btn {
    animation: glow 4s ease-in-out infinite;
}

/* Add continuous animation to return home button */
.return-home-btn {
    animation: float 5s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Add continuous animation to new chat button */
.new-chat-btn {
    animation: float 5s ease-in-out infinite, glow 4s ease-in-out infinite;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    transform: translateX(0);
}

.close-menu-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
    background: var(--primary);
}

.mobile-menu-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 11px;
    transition: all 0.3s ease;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background: var(--primary-light);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }
} 