  :root {
            --primary: #3b82f6;
            --primary-light: #93c5fd;
            --primary-dark: #1d4ed8;
            --accent: #06b6d4;
            --background: #f8fafc;
            --card-bg: #ffffff;
            --text: #1e293b;
            --text-light: #64748b;
            --border: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
        }

        /* Dark theme variables */
        [data-theme="dark"] {
            --primary: #60a5fa;
            --primary-light: #1e40af;
            --primary-dark: #93c5fd;
            --accent: #22d3ee;
            --background: #0f172a;
            --card-bg: #1e293b;
            --text: #f8fafc;
            --text-light: #94a3b8;
            --border: #334155;
            --success: #34d399;
            --warning: #fbbf24;
            --danger: #f87171;
        }

        body {
            font-family: 'Outfit', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--background);
            color: var(--text);
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background-color: var(--card-bg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }

        [data-theme="dark"] header {
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo i {
            margin-right: 10px;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text);
            cursor: pointer;
            z-index: 101;
            padding: 10px;
        }

        /* Navigation */
        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s;
        }

        nav a:hover:after {
            width: 100%;
        }

        /* Theme Toggle */
        .theme-toggle {
            display: flex;
            align-items: center;
            margin-left: 20px;
            cursor: pointer;
            padding: 8px;
            border-radius: 50%;
            background-color: var(--border);
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            background-color: var(--primary-light);
        }

        .theme-toggle i {
            font-size: 18px;
            color: var(--text);
        }

        .header-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: white;
        }

        /* Mobile Menu Styles */
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--card-bg);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 100;
                padding-top: 80px;
                flex-direction: column;
                align-items: flex-start;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                width: 100%;
            }

            nav a {
                display: block;
                padding: 10px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .header-actions.desktop {
                display: none;
            }

            .header-actions.mobile {
                display: flex;
                flex-direction: column;
                padding: 20px;
                margin-top: 20px;
                border-top: 1px solid var(--border);
                width: 100%;
            }

            .header-actions.mobile .btn {
                width: 100%;
                text-align: center;
            }

            .theme-toggle.mobile {
                margin-left: 0;
                margin-top: 20px;
                align-self: flex-start;
            }
        }
/* Add this to your existing CSS */
.header-actions.mobile {
    display: none; /* Hide mobile actions by default */
}

@media (max-width: 768px) {
    .header-actions.desktop {
        display: none; /* Hide desktop actions on mobile */
    }
    
    .header-actions.mobile {
        display: flex; /* Show mobile actions on mobile */
        flex-direction: column;
        padding: 20px;
        margin-top: 20px;
        border-top: 1px solid var(--border);
        width: 100%;
    }
}
        /* Hero Section with Video Background */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    color: white; /* Change text color to contrast with video */
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text contrast */
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white; /* Ensure text is visible on video */
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Adjust button styles for video background */
.hero .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.hero .btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.feature-icon {
    margin-bottom: 25px;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}
 .typing-container {
        min-height: 4.5rem; /* Prevents layout shift */
        position: relative;
    }
    
    #typed-heading {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        display: inline-block; /* For cursor positioning */
    }
    
    /* Animated cursor */
    #typed-heading::after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 1.2em;
        background: var(--primary);
        margin-left: 5px;
        vertical-align: text-bottom;
        animation: blink 1s infinite steps(1);
    }
    
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    
    /* Hero subtext fade-in */
    .hero-subtext {
        opacity: 0;
        animation: fadeIn 0.5s ease-out 3s forwards;
    }
    
    @keyframes fadeIn {
        to { opacity: 1; }
    }
/* Dark mode adjustments */
[data-theme="dark"] .feature-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .feature-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-bottom: 20px; /* Space for scrollbar */
}

.testimonial-card {
    min-width: 100%;
    flex: 0 0 auto;
    transition: all 0.3s ease;
}

.testimonial-card-inner {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    border: 3px solid var(--primary-light);
}

.testimonial-stars {
    color: var(--warning);
    margin-bottom: 25px;
    font-size: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    padding: 0 10px;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 24px;
    color: var(--primary-light);
    opacity: 0.3;
    position: absolute;
}

.testimonial-text::before {
    top: -10px;
    left: -5px;
}

.testimonial-text::after {
    bottom: -20px;
    right: -5px;
}

.testimonial-author {
    margin-top: 30px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 14px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-prev,
.slider-next {
    background: var(--card-bg);
    border: 1px solid var(--border);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,25 C75,50 50,25 0,50 L0,0 Z"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .testimonials {
        padding: 80px 0;
    }
    
    .cta {
        padding: 100px 0;
    }
    
    .cta h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .testimonial-card-inner {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-light,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-card-inner {
        padding: 25px;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}

     /* Dashboard Preview Section */
    .dashboard-preview {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    }
    
    [data-theme="dark"] .dashboard-preview {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    
    .dashboard-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }
    
  .dashboard-content h2 {
  color: var(--text);
}

.dashboard-content p,
.dashboard-content li span {
  color: var(--text-light);
}

.dashboard-features i {
  color: var(--primary);
}
.dashboard-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.dashboard-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

    /* Video Container */
    .dashboard-video-container {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        aspect-ratio: 16/9;
    }
    
    .dashboard-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
        transform: scale(1.01); /* Prevents border-radius clipping */
    }
    
    /* Animated Highlights */
    .dashboard-highlight {
        position: absolute;
        border: 2px solid var(--primary);
        border-radius: 8px;
        pointer-events: none;
        opacity: 0;
        transform: scale(0.95);
        transition: all 0.5s ease;
        z-index: 2;
    }
    
    .dashboard-highlight::after {
        content: attr(data-highlight);
        position: absolute;
        background: var(--primary);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        white-space: nowrap;
    }
    
    .highlight-1 {
        top: 15%;
        left: 10%;
        width: 30%;
        height: 15%;
        animation: highlightPulse 4s infinite 1s;
    }
    
    .highlight-1::after {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .highlight-2 {
        top: 40%;
        right: 10%;
        width: 25%;
        height: 20%;
        animation: highlightPulse 4s infinite 2s;
    }
    
    .highlight-2::after {
        top: -30px;
        right: 0;
    }
    
    .highlight-3 {
        bottom: 20%;
        left: 20%;
        width: 35%;
        height: 15%;
        animation: highlightPulse 4s infinite 3s;
    }
    
    .highlight-3::after {
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    @keyframes highlightPulse {
        0%, 100% { opacity: 0; transform: scale(0.95); }
        50% { opacity: 1; transform: scale(1); }
    }
    
    /* Responsive */
    @media (max-width: 1024px) {
        .dashboard-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .dashboard-content {
            max-width: 100%;
        }
        
        .dashboard-video-container {
            order: -1;
        }
    }
        /* CTA Section */
      /* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,25 C75,50 50,25 0,50 L0,0 Z"></path></svg>');
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.5;
}

[data-theme="dark"] .cta::before {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(0,0,0,0.1)" d="M0,0 L100,0 L100,25 C75,50 50,25 0,50 L0,0 Z"></path></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background-color: white;
    color: var(--primary);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta {
        padding: 100px 0;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-light,
    .btn-outline-light {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta h2 {
        font-size: 28px;
    }
}/* Footer */
footer {
    background-color: var(--footer-bg, #1a1a1a);
    color: var(--footer-text, white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--footer-text, white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--footer-text, white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--footer-text, white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--footer-text, white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--footer-link, rgba(255, 255, 255, 0.7));
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--footer-link-hover, white);
    padding-left: 5px;
}

.footer-newsletter input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: none;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--footer-text, white);
}

.footer-newsletter input::placeholder {
    color: var(--footer-placeholder, rgba(255, 255, 255, 0.6));
}

.footer-newsletter button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    background-color: var(--primary);
    color: white;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-newsletter button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--footer-divider, rgba(255, 255, 255, 0.1));
    color: var(--footer-bottom-text, rgba(255, 255, 255, 0.6));
    font-size: 14px;
}

/* Dark mode footer overrides */
[data-theme="dark"] footer {
    background-color: var(--footer-bg, #0a0a0a);
}

[data-theme="dark"] .footer-links a {
    color: var(--footer-link, rgba(255, 255, 255, 0.7));
}

[data-theme="dark"] .footer-links a:hover {
    color: var(--footer-link-hover, white);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .dashboard-container {
                flex-direction: column;
            }
            
            .dashboard-animation {
                position: relative;
                width: 100%;
                max-width: 100%;
                transform: none;
                margin-top: 50px;
            }
            
            .hero {
                padding: 150px 0 80px;
                text-align: center;
            }
            
            .hero-content {
                max-width: 100%;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

        @keyframes heartbeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.1); }
  50% { transform: scale(1); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.heartbeat {
  animation: heartbeat 1.5s infinite;
}

/* Pricing Page Styles */
.pricing-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--primary-dark);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background-color: var(--success);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.card-header p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price span:first-child {
    color: var(--primary);
}

.annual-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.features {
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.features i {
    color: var(--primary);
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.pricing-faq {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: var(--card-bg);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question:hover {
    background: var(--hover-bg);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--card-bg);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
}

.hidden {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .pricing-hero p {
        font-size: 1rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.logo-image {
    height: 32px; /* Reduced from 40px to 32px */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}
/* ── Auditree: Make videos show instantly on load ── */

/* Hero background video – always visible, no delay */
.video-background video {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Dashboard section video container – skip fade-in delay */
.dashboard-video-container {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.dashboard-video {
  opacity: 1 !important;
  transform: none !important;
}

/* Override any .fade-in / .delay-* classes on video containers */
.fade-in:has(video),
.fade-in.delay-1:has(video) {
  opacity: 1 !important;
  transform: translateY(0) !important;
  animation: none !important;
  transition: none !important;
}