/* Main Colors */
:root {
    --primary: #1a56db;
    --secondary: #3b82f6;
    --dark: #1e293b;
    --light: #f8fafc;
}

/* Tailwind Extensions */
.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary);
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0f46c7;
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2563eb;
}

/* Tab Functionality */
.tab-content {
    display: none;
}

.active-tab {
    display: block;
}

/* Counter Animation */
.counter {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--primary);
}

/* Feature Cards Animation */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Plan Cards Animation */
.plan-card {
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Add Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 1.875rem !important;
    }
    h2 {
        font-size: 1.5rem !important;
    }
    h3 {
        font-size: 1.25rem !important;
    }
    .counter {
        font-size: 1.5rem;
    }
}

/* Animation for FAQ accordion */
.faq-question i {
    transition: transform 0.3s ease;
}

/* User dashboard specific styles */
.dashboard-stat {
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
