@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-blue: #1E56B3;
    --primary-blue-dark: #16438E;
    --accent-orange: #F7941D;
    --text-dark: #0B1F3A;
    --text-medium: #4A5568;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-soft: #F7FAFC;
    --bg-light-blue: #eff6ff;
    --border: #e2e8f0;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    background-color: var(--bg-white);
    color: var(--text-medium);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
}

/* Premium Navbar */
.glass {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999 !important;
}

.navbar-light {
    background: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.navbar-scrolled.navbar-light {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

/* CTA Buttons */
.btn-primary {
    background: var(--primary-blue);
    color: white !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(30, 86, 179, 0.2);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    box-shadow: 0 6px 20px rgba(30, 86, 179, 0.3);
    transform: translateY(-2px);
}

/* Cards */
.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1.5rem;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border-color: #cbd5e1;
}

/* Premium Light Section Utilities */
.section-light {
    background-color: var(--bg-soft);
}

/* Industry Ecosystem Card Styling */
.industry-card {
    position: relative;
    overflow: hidden;
}

/* Cleaned duplicate pseudo-elements */

.industry-card .explore-indicator {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--accent-orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) translateX(-10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

.industry-card:hover .explore-indicator {
    opacity: 1;
    transform: scale(1) translateX(0);
}

/* Gradients */
.text-gradient {
    color: var(--primary-blue);
}

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

.fade-up {
    animation: fade-up 0.8s ease-out forwards;
    opacity: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Premium Typography & Spacing */
p {
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.02em;
}

/* Hover Lift */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}
