/* Custom CSS Variables */
:root {
    --background: #ffffff;
    --foreground: oklch(0.145 0 0);
}

.dark {
    --background: oklch(0.145 0 0);
    --foreground: oklch(0.985 0 0);
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding-top: 64px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leading-tight {
    --tw-leading: var(--leading-tight);
    line-height: var(--leading-tight);
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Grid Background Pattern */
.bg-grid-gray-900\/\[0\.04\] {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

.dark .bg-grid-white\/\[0\.02\] {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
}

/* Card Hover Effects */
.service-card, .use-case-card, .client-card, .case-study-card {
    transition: all 0.3s ease;
}

.service-card:hover, .use-case-card:hover, .client-card:hover, .case-study-card:hover {
    transform: translateY(-8px);
}

/* Navigation Active State */
.nav-link {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.dark .nav-link.active::after {
    background: #60a5fa;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Tabs styles */
.tabs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .tabs-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tab-button {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background-color: transparent;
    border: 1px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    color: rgba(128, 128, 128, 0.8);
    font-weight: bold;
}

.dark .tab-button {
    border-color: transparent;
}

.tab-button:hover {
    background-color: transparent;
}

.dark .tab-button:hover {
    background-color: #1f2937;
}

.tab-button.active {
    background-color: transparent;
    color: white;
    border-color: transparent;
}

.tab-content {
    display: none;
}
.tab-content h2,h3{
    color: white;
}

.tab-content span{
    color: white;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

/* Form success message */
.form-success {
    animation: fadeIn 0.5s ease-out;
}

/* Badge styles */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: #dbeafe;
    color: #1e40af;
}

.dark .badge {
    background-color: #1e3a8a;
    color: #93c5fd;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid #e5e7eb;
}

.dark .badge-outline {
    border-color: #374151;
}




.bg-muted {
    background-color: var(--muted);
}

.text-color-white{
    color:white;
}