@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    scroll-padding-top: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
}

.rdr-glow {
    box-shadow: 0 0 25px rgba(116, 255, 0, 0.3);
    border: 2px solid #74ff00;
}

.service-card,
.team-card,
.report-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.team-card:hover,
.report-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

#data-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-340px * 9));
    }
}

.news-track {
    display: flex;
    width: calc(340px * 18);
    animation: scroll 50s linear infinite;
}

.news-slide {
    width: 340px;
    padding: 0 12px;
    flex-shrink: 0;
}

@keyframes scroll-fast {
    0% {
        transform: translateX(calc(-250px * 12));
    }

    100% {
        transform: translateX(0);
    }
}

.logo-track {
    display: flex;
    width: calc(250px * 36);
    animation: scroll-fast 40s linear infinite;
}

.logo-slide {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-slide:hover img {
    transform: scale(1.1);
}

.instagram-widget-container {
    min-height: 500px;
    background: #ffffff;
    border-radius: 2.5rem;
    border: 1px solid #e2e8f0;
}

.lightwidget-widget {
    border-radius: 2.5rem 2.5rem 0 0;
}

/* Chat AI */
#ai-assistant-modal {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    max-height: 70vh;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 100;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

#ai-assistant-modal.active {
    display: flex;
}

#mobile-menu-panel {
    display: none;
}

#mobile-menu-panel.active {
    display: block;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* Juicer Spacing Overrides */
.juicer-feed.slider li.j-slide {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
}