
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
}

html {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: #f3f4f6;
}
/* Hero Section Image Optimization */
.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Light mode text colors for dark backgrounds */
.dark .text-gray-800 {
    color: #f3f4f6;
}
.dark .text-gray-600 {
    color: #d1d5db;
}
.dark .bg-gray-100 {
    background-color: #111827;
}
.dark .bg-white {
    background-color: #1f2937;
    border: 1px solid #374151;
}
/* Footer Styling */
custom-footer {
    display: block;
    background: #050B1A !important;
    color: rgba(255, 255, 255, 0.7) !important;
    width: 100%;
}

/* Compliance Page Specific Styles */
.compliance-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
}

/* Case Studies Page Specific Styles */
.case-study-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
    transform: translateY(-5px);
}

.source-link {
    transition: color 0.2s ease;
}

.source-link:hover {
    text-decoration: underline;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #3b82f6;
    border-radius: 4px;
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Mobile menu transitions */
.mobile-menu {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Ensure proper stacking context */
custom-navbar {
    position: relative;
    z-index: 1000;
}
/* Delays for staggered animations */
.delay-100 {
    animation-delay: 0.1s;
}

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

.delay-300 {
    animation-delay: 0.3s;
}