/* CSS Variables and Root Styles */
main a {
    color: #0ea5e9;
    background-color: transparent;
    text-decoration: none;
}
main a:hover {
    color: red;
    background-color: transparent;
    text-decoration: underline;
}

:root {
    --primary-blue: #0ea5e9;
    --secondary-blue: #2563eb;
    --accent-blue: #1e3a8a;
    --primary-orange: #ff6b35;
    --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --text-muted: #999999;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-hero: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #1e3a8a 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --header-bg: rgba(255, 255, 255, 0.95);
    --border-light: #e5e5e5;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-light: 0 4px 20px rgba(14, 165, 233, 0.08);
    --shadow-medium: 0 8px 40px rgba(14, 165, 233, 0.12);
    --shadow-heavy: 0 20px 60px rgba(14, 165, 233, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --neon-blue: #00f5ff;
    --neon-green: #39ff14;
}

/* Dark Theme */
[data-theme="dark"] {
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-hero: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
    --card-bg: rgba(26, 26, 26, 0.95);
    --header-bg: rgba(12, 12, 12, 0.95);
    --border-light: #333333;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
    --primary-gradient: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
}

/* Global Font */
* {
    font-family: 'Inter', sans-serif !important;
}

/* Footer Positioning */
footer {
    position: fixed;
    bottom: 0;
    width: -webkit-fill-available;
}

/* D&B Seal Positioning */
#DunsRegisteredSeal,
iframe[src*="dunsregistered"] {
    position: fixed !important;
    bottom: 20px !important;
    left: 20px !important;
    z-index: 999999 !important;
    background: transparent !important;
    width: 120px !important;
    border: none !important;
}

/* Utility Classes */
.text-gradient {
    background: var(--bg-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.solution-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Animations */
.holographic {
    background: linear-gradient(45deg, #ff006e, #8338ec, #3a86ff, #06ffa5, #ffbe0b, #fb5607);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: holographic 3s ease-in-out infinite;
}

@keyframes holographic {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Loading States */
.loading-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}

html.loaded .loading-placeholder {
    opacity: 1;
}

/* Performance Optimization */
html {
    visibility: hidden;
}

html.loaded {
    visibility: visible;
}

#responseMessage {
    color: green!important;
    margin-bottom: 10px!important;
} 



/* Header CSS */

@media (max-width: 1023px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #e5e7eb;
        max-height: 80vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Ensure mobile menu content is visible */
    .mobile-menu .px-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    /* Mobile menu items styling */
    .mobile-menu a {
        display: block;
        padding: 12px 16px;
        color: #374151;
        text-decoration: none;
        border-bottom: 1px solid #f3f4f6;
        transition: all 0.2s ease;
    }

    .mobile-menu a:hover {
        background-color: #f8fafc;
        color: #2563eb;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }
}

.headtop p {
    text-align: center;
    padding: 3px 0 5px;
    color: #fff;
}

.headtop p a {
    font-size: 14px;
    color: #fff;
    margin: 0 10px;
}

.headtop {
    background: #057bb8;
    position: relative;
}