/* ============================================
   Digital QR Visiting Card System - ULTRA PREMIUM STYLES
   Glassmorphism + Animations + Lite Colorful Themes + Unique Design
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #a855f7;
    --accent: #ec4899;
    --white: #ffffff;
    --black: #0f172a;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ---- Toast Notification ---- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--gray-900);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.toast i { color: #22c55e; font-size: 18px; }

/* ============================================
   CARD PAGE STYLES - ULTRA PREMIUM
   ============================================ */

.card-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/* ---- Animated Background Blobs ---- */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}
.blob-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation: blobFloat1 15s ease-in-out infinite; }
.blob-2 { width: 350px; height: 350px; bottom: -80px; right: -80px; animation: blobFloat2 18s ease-in-out infinite; }
.blob-3 { width: 300px; height: 300px; top: 50%; left: 50%; animation: blobFloat3 20s ease-in-out infinite; }

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, 80px) scale(1.15); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -50px) scale(1.1); }
    66% { transform: translate(40px, -30px) scale(0.95); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2) rotate(45deg); }
}

/* Floating particles */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ============================================
   LITE COLORFUL THEMES
   ============================================ */

/* Theme: Gradient Blue - Soft & Dreamy */
.theme-gradient-blue {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 30%, #a5b4fc 60%, #818cf8 100%);
}
.theme-gradient-blue .bg-blob {
    background: radial-gradient(circle, rgba(99,102,241,0.3) 0%, transparent 70%);
}
.theme-gradient-blue .glass-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #312e81;
}
.theme-gradient-blue .profile-name { color: #3730a3; }
.theme-gradient-blue .profile-designation { color: #6366f1; }
.theme-gradient-blue .section-title { color: #4338ca; }
.theme-gradient-blue .detail-value { color: #1e1b4b; }
.theme-gradient-blue .action-btn { background: rgba(99, 102, 241, 0.1); color: #4338ca; border-color: rgba(99,102,241,0.2); }
.theme-gradient-blue .action-btn:hover { background: rgba(99, 102, 241, 0.2); }
.theme-gradient-blue .company-badge { background: rgba(99, 102, 241, 0.15); color: #4338ca; }

/* Theme: Gradient Purple - Soft Lavender */
.theme-gradient-purple {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 30%, #d8b4fe 60%, #c084fc 100%);
}
.theme-gradient-purple .bg-blob {
    background: radial-gradient(circle, rgba(168,85,247,0.25) 0%, transparent 70%);
}
.theme-gradient-purple .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #581c87;
}
.theme-gradient-purple .profile-name { color: #6b21a8; }
.theme-gradient-purple .profile-designation { color: #a855f7; }
.theme-gradient-purple .section-title { color: #7e22ce; }
.theme-gradient-purple .detail-value { color: #3b0764; }
.theme-gradient-purple .action-btn { background: rgba(168, 85, 247, 0.1); color: #6b21a8; border-color: rgba(168,85,247,0.2); }
.theme-gradient-purple .action-btn:hover { background: rgba(168, 85, 247, 0.2); }
.theme-gradient-purple .company-badge { background: rgba(168, 85, 247, 0.15); color: #6b21a8; }

/* Theme: Gradient Dark - Elegant Midnight */
.theme-gradient-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 70%, #475569 100%);
}
.theme-gradient-dark .bg-blob {
    background: radial-gradient(circle, rgba(148,163,184,0.15) 0%, transparent 70%);
}
.theme-gradient-dark .glass-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
}
.theme-gradient-dark .profile-name { color: #ffffff; }
.theme-gradient-dark .profile-designation { color: #94a3b8; }
.theme-gradient-dark .section-title { color: #e2e8f0; }
.theme-gradient-dark .detail-value { color: #f8fafc; }
.theme-gradient-dark .action-btn { background: rgba(255, 255, 255, 0.08); color: #e2e8f0; border-color: rgba(255,255,255,0.1); }
.theme-gradient-dark .action-btn:hover { background: rgba(255, 255, 255, 0.15); }
.theme-gradient-dark .company-badge { background: rgba(255, 255, 255, 0.1); color: #e2e8f0; }

/* Theme: White - Clean & Minimal */
.theme-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 40%, #f1f5f9 70%, #e2e8f0 100%);
}
.theme-white .bg-blob {
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
}
.theme-white .glass-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: #1e293b;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0,0,0,0.02);
}
.theme-white .profile-name { color: #0f172a; }
.theme-white .profile-designation { color: #64748b; }
.theme-white .section-title { color: #334155; }
.theme-white .detail-value { color: #1e293b; }
.theme-white .action-btn { background: rgba(241, 245, 249, 0.8); color: #475569; border-color: #e2e8f0; }
.theme-white .action-btn:hover { background: #e2e8f0; }
.theme-white .company-badge { background: #f1f5f9; color: #475569; }

/* Theme: Gradient Orange - Warm Sunset */
.theme-gradient-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 30%, #fed7aa 60%, #fdba74 100%);
}
.theme-gradient-orange .bg-blob {
    background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 70%);
}
.theme-gradient-orange .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #7c2d12;
}
.theme-gradient-orange .profile-name { color: #9a3412; }
.theme-gradient-orange .profile-designation { color: #c2410c; }
.theme-gradient-orange .section-title { color: #ea580c; }
.theme-gradient-orange .detail-value { color: #431407; }
.theme-gradient-orange .action-btn { background: rgba(249, 115, 22, 0.1); color: #9a3412; border-color: rgba(249,115,22,0.2); }
.theme-gradient-orange .action-btn:hover { background: rgba(249, 115, 22, 0.2); }
.theme-gradient-orange .company-badge { background: rgba(249, 115, 22, 0.15); color: #9a3412; }

/* Theme: Gradient Green - Fresh Mint */
.theme-gradient-green {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 30%, #a7f3d0 60%, #6ee7b7 100%);
}
.theme-gradient-green .bg-blob {
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
}
.theme-gradient-green .glass-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #064e3b;
}
.theme-gradient-green .profile-name { color: #065f46; }
.theme-gradient-green .profile-designation { color: #059669; }
.theme-gradient-green .section-title { color: #047857; }
.theme-gradient-green .detail-value { color: #022c22; }
.theme-gradient-green .action-btn { background: rgba(16, 185, 129, 0.1); color: #065f46; border-color: rgba(16,185,129,0.2); }
.theme-gradient-green .action-btn:hover { background: rgba(16, 185, 129, 0.2); }
.theme-gradient-green .company-badge { background: rgba(16, 185, 129, 0.15); color: #065f46; }

/* ---- Card Container ---- */
.card-container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding-bottom: 40px;
    animation: containerSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes containerSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---- Glass Card ---- */
.glass-card {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255,255,255,0.3) inset;
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    opacity: 0.6;
}

/* ---- Profile Section ---- */
.profile-section {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}
.company-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: badgePop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s both;
}
@keyframes badgePop {
    from { opacity: 0; transform: scale(0.5) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.profile-photo-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
    animation: photoFloat 3s ease-in-out infinite;
}
@keyframes photoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.profile-photo-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent), var(--secondary));
    animation: ringRotate 4s linear infinite;
    opacity: 0.7;
}
@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.profile-photo {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.4);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}
.profile-photo:hover { transform: scale(1.05); }

.profile-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    animation: textReveal 0.8s ease 0.4s both;
}
@keyframes textReveal {
    from { opacity: 0; transform: translateY(15px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.profile-designation {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
    animation: textReveal 0.8s ease 0.5s both;
}
.profile-department {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 14px;
    animation: textReveal 0.8s ease 0.6s both;
}
.profile-bio {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 340px;
    margin: 0 auto;
    animation: textReveal 0.8s ease 0.7s both;
}

/* ---- Actions Grid ---- */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}
.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 8px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    animation: actionPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.action-btn:nth-child(1) { animation-delay: 0.8s; }
.action-btn:nth-child(2) { animation-delay: 0.9s; }
.action-btn:nth-child(3) { animation-delay: 1.0s; }
.action-btn:nth-child(4) { animation-delay: 1.1s; }

@keyframes actionPop {
    from { opacity: 0; transform: scale(0.3) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.action-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}
.action-btn:hover::before { transform: translateX(100%); }

.action-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.action-btn:active { transform: translateY(-2px) scale(0.98); }

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}
.action-btn:hover .action-icon { transform: scale(1.15) rotate(-5deg); }

.action-call .action-icon { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 4px 15px rgba(34,197,94,0.3); }
.action-whatsapp .action-icon { background: linear-gradient(135deg, #22c55e, #15803d); box-shadow: 0 4px 15px rgba(34,197,94,0.3); }
.action-email .action-icon { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 4px 15px rgba(59,130,246,0.3); }
.action-website .action-icon { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 15px rgba(245,158,11,0.3); }

.action-btn span { font-size: 12px; font-weight: 600; position: relative; z-index: 1; }

/* ---- Details Section ---- */
.details-section {
    margin-bottom: 32px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: slideInRight 0.6s ease both;
}
.detail-item:nth-child(1) { animation-delay: 1.2s; }
.detail-item:nth-child(2) { animation-delay: 1.3s; }
.detail-item:nth-child(3) { animation-delay: 1.4s; }
.detail-item:nth-child(4) { animation-delay: 1.5s; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.detail-item:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.detail-item::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}
.detail-item:hover::after { opacity: 1; }

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.detail-item:hover .detail-icon { transform: rotate(10deg) scale(1.1); }

.theme-gradient-blue .detail-icon { background: rgba(99,102,241,0.1); color: #4338ca; }
.theme-gradient-purple .detail-icon { background: rgba(168,85,247,0.1); color: #6b21a8; }
.theme-gradient-dark .detail-icon { background: rgba(255,255,255,0.08); color: #e2e8f0; }
.theme-white .detail-icon { background: #f1f5f9; color: #475569; }
.theme-gradient-orange .detail-icon { background: rgba(249,115,22,0.1); color: #9a3412; }
.theme-gradient-green .detail-icon { background: rgba(16,185,129,0.1); color: #065f46; }

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.detail-label {
    font-size: 11px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 2px;
}
.detail-value {
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.copy-icon {
    opacity: 0.3;
    font-size: 14px;
    transition: all 0.3s;
}
.detail-item:hover .copy-icon { opacity: 0.8; transform: scale(1.2); }

/* ---- Social Section ---- */
.social-section { margin-bottom: 32px; }
.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}
.section-title::before,
.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0.3;
}
.section-title::before { left: 20px; }
.section-title::after { right: 20px; }

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: socialPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.social-btn:nth-child(1) { animation-delay: 1.6s; }
.social-btn:nth-child(2) { animation-delay: 1.7s; }
.social-btn:nth-child(3) { animation-delay: 1.8s; }
.social-btn:nth-child(4) { animation-delay: 1.9s; }
.social-btn:nth-child(5) { animation-delay: 2.0s; }

@keyframes socialPop {
    from { opacity: 0; transform: scale(0) rotate(-180deg); }
    to { opacity: 1; transform: scale(1) rotate(0); }
}

.social-btn:hover {
    transform: translateY(-6px) scale(1.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.theme-gradient-blue .social-btn { background: rgba(99,102,241,0.1); color: #4338ca; border: 1px solid rgba(99,102,241,0.2); }
.theme-gradient-purple .social-btn { background: rgba(168,85,247,0.1); color: #6b21a8; border: 1px solid rgba(168,85,247,0.2); }
.theme-gradient-dark .social-btn { background: rgba(255,255,255,0.08); color: #e2e8f0; border: 1px solid rgba(255,255,255,0.15); }
.theme-white .social-btn { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }
.theme-gradient-orange .social-btn { background: rgba(249,115,22,0.1); color: #9a3412; border: 1px solid rgba(249,115,22,0.2); }
.theme-gradient-green .social-btn { background: rgba(16,185,129,0.1); color: #065f46; border: 1px solid rgba(16,185,129,0.2); }

.social-btn.linkedin:hover { background: #0077b5; color: white; border-color: #0077b5; }
.social-btn.twitter:hover { background: #000; color: white; border-color: #000; }
.social-btn.facebook:hover { background: #1877f2; color: white; border-color: #1877f2; }
.social-btn.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; border-color: transparent; }
.social-btn.youtube:hover { background: #ff0000; color: white; border-color: #ff0000; }

/* ---- Catalog Section ---- */
.catalog-section { margin-bottom: 32px; }
.catalog-grid { display: flex; flex-direction: column; gap: 12px; }
.catalog-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.6s ease both;
}
.catalog-item:nth-child(1) { animation-delay: 2.1s; }
.catalog-item:nth-child(2) { animation-delay: 2.2s; }
.catalog-item:nth-child(3) { animation-delay: 2.3s; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.catalog-item:hover {
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.catalog-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.catalog-item:hover .catalog-icon { transform: scale(1.15) rotate(-5deg); }

.catalog-icon .fa-file-pdf { color: #ef4444; }
.catalog-icon .fa-image { color: #3b82f6; }
.catalog-info { flex: 1; min-width: 0; }
.catalog-title { font-size: 15px; font-weight: 700; display: block; }
.catalog-desc { font-size: 13px; opacity: 0.6; display: block; margin-top: 3px; }
.catalog-download { opacity: 0.4; font-size: 16px; transition: all 0.3s; }
.catalog-item:hover .catalog-download { opacity: 1; transform: translateY(-2px); }

/* ---- CTA Section ---- */
.cta-section {
    text-align: center;
    margin-bottom: 32px;
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 0.8s ease 2.4s both;
}
@keyframes ctaPulse {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.theme-gradient-blue .cta-section { background: rgba(99,102,241,0.08); }
.theme-gradient-purple .cta-section { background: rgba(168,85,247,0.08); }
.theme-gradient-dark .cta-section { background: rgba(255,255,255,0.05); }
.theme-white .cta-section { background: #f8fafc; }
.theme-gradient-orange .cta-section { background: rgba(249,115,22,0.08); }
.theme-gradient-green .cta-section { background: rgba(16,185,129,0.08); }

.btn-save-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.35);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    margin-bottom: 24px;
}
.btn-save-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-save-contact:hover::before { left: 100%; }
.btn-save-contact:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.45);
}
.btn-save-contact:active { transform: translateY(-1px) scale(0.98); }
.btn-save-contact i { font-size: 22px; }

.qr-showcase { margin-top: 20px; }
.qr-image {
    width: 170px;
    height: 170px;
    border-radius: var(--radius);
    background: white;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    animation: qrBounce 0.8s ease 2.6s both;
}
@keyframes qrBounce {
    from { opacity: 0; transform: scale(0.5); }
    60% { transform: scale(1.1); }
    to { opacity: 1; transform: scale(1); }
}
.qr-image:hover { transform: scale(1.08) rotate(2deg); }
.qr-label {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 10px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---- Company Section ---- */
.company-section {
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.8s ease 2.8s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.theme-gradient-blue .company-section { background: rgba(99,102,241,0.05); }
.theme-gradient-purple .company-section { background: rgba(168,85,247,0.05); }
.theme-gradient-dark .company-section { background: rgba(255,255,255,0.03); }
.theme-white .company-section { background: #f8fafc; }
.theme-gradient-orange .company-section { background: rgba(249,115,22,0.05); }
.theme-gradient-green .company-section { background: rgba(16,185,129,0.05); }

.company-desc {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
}

/* ---- Card Footer ---- */
.card-footer {
    text-align: center;
    padding: 28px;
    opacity: 0.5;
    font-size: 13px;
    animation: fadeInUp 0.8s ease 3.0s both;
}
.card-footer strong { font-weight: 700; }
.footer-note { margin-top: 4px; opacity: 0.7; }

/* ============================================
   LANDING PAGE STYLES - ULTRA PREMIUM
   ============================================ */

.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.landing-page::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(99,102,241,0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(168,85,247,0.06) 0%, transparent 50%),
                radial-gradient(circle at 50% 80%, rgba(236,72,153,0.04) 0%, transparent 50%);
    animation: landingBgMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes landingBgMove {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.landing-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 70px 20px 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.landing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
    animation: headerGlow 10s ease-in-out infinite;
}
@keyframes headerGlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.15); }
}
.header-content { position: relative; z-index: 1; animation: headerReveal 1s ease both; }
@keyframes headerReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.landing-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.landing-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 0.5px;
}
.header-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}
.header-wave svg {
    width: 100%;
    height: 80px;
}

/* ---- Sections ---- */
.featured-section, .all-employees-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.section-heading {
    font-size: 26px;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}
.section-heading::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    margin-left: 10px;
}

/* ---- Search ---- */
.search-box {
    position: relative;
    margin-bottom: 30px;
    max-width: 500px;
    animation: searchSlide 0.8s ease both;
}
@keyframes searchSlide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: 18px;
    transition: color 0.3s;
}
.search-box input {
    width: 100%;
    padding: 16px 18px 16px 52px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-family: inherit;
    background: white;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}
.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99,102,241,0.1), 0 4px 12px rgba(0,0,0,0.05);
}
.search-box input:focus + i,
.search-box:focus-within i { color: var(--primary); }

/* ---- Cards Grid ---- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.employee-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: white;
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--gray-800);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    animation: cardAppear 0.6s ease both;
}
.employee-card:nth-child(1) { animation-delay: 0.05s; }
.employee-card:nth-child(2) { animation-delay: 0.1s; }
.employee-card:nth-child(3) { animation-delay: 0.15s; }
.employee-card:nth-child(4) { animation-delay: 0.2s; }
.employee-card:nth-child(5) { animation-delay: 0.25s; }
.employee-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.employee-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
}
.employee-card:hover::before { opacity: 1; }

.employee-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}
.employee-card:active { transform: translateY(-4px) scale(0.98); }

.card-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
}
.employee-card:hover .card-photo {
    border-color: var(--primary-light);
    transform: scale(1.1);
}
.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.employee-card:hover .card-photo img { transform: scale(1.1); }

.card-info { flex: 1; min-width: 0; }
.card-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--gray-900);
}
.card-info p {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 8px;
}
.dept-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    color: var(--gray-600);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.card-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}
.employee-card:hover .card-arrow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: translateX(4px) scale(1.1);
}

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: 70px 20px;
    color: var(--gray-400);
    grid-column: 1 / -1;
    animation: fadeInUp 0.8s ease both;
}
.empty-state i {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
    opacity: 0.5;
}
.empty-state p {
    font-size: 18px;
    margin-bottom: 24px;
}
.empty-state .btn-primary {
    display: inline-flex;
}

/* ---- Footer ---- */
.landing-footer {
    text-align: center;
    padding: 50px 20px;
    color: var(--gray-500);
    font-size: 15px;
    border-top: 1px solid var(--gray-200);
    position: relative;
    z-index: 1;
    background: rgba(255,255,255,0.5);
}
.admin-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(99,102,241,0.08);
    transition: all 0.3s;
}
.admin-link:hover {
    background: rgba(99,102,241,0.15);
    transform: translateY(-2px);
}

/* ============================================
   ERROR PAGES
   ============================================ */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0, #f1f5f9);
    position: relative;
    overflow: hidden;
}
.error-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, transparent 50%);
    animation: errorBgRotate 15s linear infinite;
}
@keyframes errorBgRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.error-content {
    text-align: center;
    padding: 50px;
    position: relative;
    z-index: 1;
    animation: errorReveal 0.8s ease both;
}
@keyframes errorReveal {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.error-content h1 {
    font-size: 140px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    animation: errorNumberPulse 2s ease-in-out infinite;
}
@keyframes errorNumberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.error-content p {
    font-size: 22px;
    color: var(--gray-600);
    margin-bottom: 36px;
    font-weight: 500;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}
.btn-primary:active { transform: translateY(-1px) scale(0.98); }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 480px) {
    .card-page { padding: 12px; }
    .glass-card { padding: 24px 16px; border-radius: var(--radius-lg); }
    .profile-name { font-size: 24px; }
    .profile-photo-wrapper { width: 110px; height: 110px; }
    .actions-grid { gap: 10px; }
    .action-btn { padding: 14px 4px; }
    .action-icon { width: 40px; height: 40px; font-size: 16px; }
    .action-btn span { font-size: 11px; }
    .qr-image { width: 140px; height: 140px; }
    .landing-title { font-size: 32px; }
    .landing-header { padding: 50px 20px 70px; }
    .cards-grid { grid-template-columns: 1fr; }
    .error-content h1 { font-size: 100px; }
    .section-heading { font-size: 20px; }
    .section-heading::before, .section-heading::after { display: none; }
}

@media (min-width: 481px) and (max-width: 768px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .landing-title { font-size: 36px; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* ---- Selection Color ---- */
::selection {
    background: rgba(99, 102, 241, 0.2);
    color: var(--gray-900);
}


/* ============================================
   COLORFUL FLOATING BUBBLES ANIMATION
   ============================================ */

.bubbles-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    opacity: 0.6;
    animation: bubbleRise linear infinite;
    box-shadow: inset 0 0 20px rgba(255,255,255,0.5), 0 0 10px rgba(255,255,255,0.3);
}

@keyframes bubbleRise {
    0% {
        transform: translateY(0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-120vh) scale(0.3) rotate(360deg);
        opacity: 0;
    }
}

/* Bubble sizes and colors */
.bubble:nth-child(1)  { width: 40px; height: 40px; left: 5%;   animation-duration: 12s; animation-delay: 0s;   background: linear-gradient(135deg, #ff6b6b, #ee5a6f); }
.bubble:nth-child(2)  { width: 25px; height: 25px; left: 15%;  animation-duration: 15s; animation-delay: 1s;   background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.bubble:nth-child(3)  { width: 55px; height: 55px; left: 25%;  animation-duration: 10s; animation-delay: 2s;   background: linear-gradient(135deg, #ffe66d, #f4d03f); }
.bubble:nth-child(4)  { width: 30px; height: 30px; left: 35%;  animation-duration: 18s; animation-delay: 0.5s; background: linear-gradient(135deg, #a8e6cf, #7fcdcd); }
.bubble:nth-child(5)  { width: 45px; height: 45px; left: 45%;  animation-duration: 14s; animation-delay: 3s;   background: linear-gradient(135deg, #ff8b94, #ff6b6b); }
.bubble:nth-child(6)  { width: 20px; height: 20px; left: 55%;  animation-duration: 16s; animation-delay: 1.5s; background: linear-gradient(135deg, #c7ceea, #a8d8ea); }
.bubble:nth-child(7)  { width: 50px; height: 50px; left: 65%;  animation-duration: 11s; animation-delay: 2.5s; background: linear-gradient(135deg, #ffd93d, #ff6b6b); }
.bubble:nth-child(8)  { width: 35px; height: 35px; left: 75%;  animation-duration: 13s; animation-delay: 0.8s; background: linear-gradient(135deg, #6bcb77, #4d96ff); }
.bubble:nth-child(9)  { width: 28px; height: 28px; left: 85%;  animation-duration: 17s; animation-delay: 3.5s; background: linear-gradient(135deg, #ff9a9e, #fecfef); }
.bubble:nth-child(10) { width: 42px; height: 42px; left: 95%;  animation-duration: 12s; animation-delay: 1.2s; background: linear-gradient(135deg, #a18cd1, #fbc2eb); }
.bubble:nth-child(11) { width: 22px; height: 22px; left: 10%;  animation-duration: 19s; animation-delay: 4s;   background: linear-gradient(135deg, #84fab0, #8fd3f4); }
.bubble:nth-child(12) { width: 38px; height: 38px; left: 20%;  animation-duration: 14s; animation-delay: 2.8s; background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.bubble:nth-child(13) { width: 48px; height: 48px; left: 30%;  animation-duration: 10s; animation-delay: 0.3s; background: linear-gradient(135deg, #ff9a9e, #fad0c4); }
.bubble:nth-child(14) { width: 26px; height: 26px; left: 40%;  animation-duration: 16s; animation-delay: 5s;   background: linear-gradient(135deg, #a1c4fd, #c2e9fb); }
.bubble:nth-child(15) { width: 33px; height: 33px; left: 50%;  animation-duration: 13s; animation-delay: 1.8s; background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.bubble:nth-child(16) { width: 44px; height: 44px; left: 60%;  animation-duration: 15s; animation-delay: 3.2s; background: linear-gradient(135deg, #f093fb, #f5576c); }
.bubble:nth-child(17) { width: 18px; height: 18px; left: 70%;  animation-duration: 11s; animation-delay: 0.6s; background: linear-gradient(135deg, #4facfe, #00f2fe); }
.bubble:nth-child(18) { width: 52px; height: 52px; left: 80%;  animation-duration: 18s; animation-delay: 4.5s; background: linear-gradient(135deg, #43e97b, #38f9d7); }
.bubble:nth-child(19) { width: 29px; height: 29px; left: 90%;  animation-duration: 12s; animation-delay: 2.2s; background: linear-gradient(135deg, #fa709a, #fee140); }
.bubble:nth-child(20) { width: 36px; height: 36px; left: 3%;   animation-duration: 14s; animation-delay: 3.8s; background: linear-gradient(135deg, #30cfd0, #330867); }

/* ============================================
   ICON FIXES - Font Awesome 6 Compatibility
   ============================================ */

/* Fix for copy icon */
.copy-icon {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

/* Ensure all icons display correctly */
.detail-icon i,
.action-icon i,
.social-btn i,
.catalog-icon i,
.card-arrow i,
.btn-save-contact i,
.qr-label i,
.toast i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Fix phone icon specifically */
.fa-phone-alt::before { content: "\f879"; }
.fa-phone::before { content: "\f095"; }
.fa-envelope::before { content: "\f0e0"; }
.fa-whatsapp::before { content: "\f232"; }
.fa-globe::before { content: "\f0ac"; }
.fa-map-marker-alt::before { content: "\f3c5"; }
.fa-copy::before { content: "\f0c5"; }
.fa-user-plus::before { content: "\f234"; }
.fa-check-circle::before { content: "\f058"; }
.fa-external-link-alt::before { content: "\f35d"; }
.fa-download::before { content: "\f019"; }
.fa-file-pdf::before { content: "\f1c1"; }
.fa-image::before { content: "\f03e"; }
.fa-folder-open::before { content: "\f07c"; }
.fa-eye::before { content: "\f06e"; }
.fa-edit::before { content: "\f044"; }
.fa-trash::before { content: "\f1f8"; }
.fa-sync-alt::before { content: "\f2f1"; }
.fa-plus::before { content: "\f067"; }
.fa-search::before { content: "\f002"; }
.fa-arrow-right::before { content: "\f061"; }
.fa-users::before { content: "\f0c0"; }
.fa-chart-line::before { content: "\f201"; }
.fa-chart-bar::before { content: "\f080"; }
.fa-cog::before { content: "\f013"; }
.fa-user-shield::before { content: "\f505"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-sign-out-alt::before { content: "\f2f5"; }
.fa-bars::before { content: "\f0c9"; }
.fa-times::before { content: "\f00d"; }
.fa-chevron-left::before { content: "\f053"; }
.fa-chevron-right::before { content: "\f054"; }
.fa-info-circle::before { content: "\f05a"; }
.fa-exclamation-circle::before { content: "\f06a"; }
.fa-exclamation-triangle::before { content: "\f071"; }
.fa-check::before { content: "\f00c"; }
.fa-qrcode::before { content: "\f029"; }
.fa-history::before { content: "\f1da"; }
.fa-trophy::before { content: "\f091"; }
.fa-mobile-alt::before { content: "\f3cd"; }
.fa-tablet-alt::before { content: "\f3fa"; }
.fa-desktop::before { content: "\f108"; }
.fa-linkedin-in::before { content: "\f0e1"; }
.fa-facebook-f::before { content: "\f39e"; }
.fa-instagram::before { content: "\f16d"; }
.fa-youtube::before { content: "\f167"; }
.fa-twitter::before { content: "\f099"; }
.fa-cloud-upload-alt::before { content: "\f382"; }
.fa-lock::before { content: "\f023"; }
.fa-user::before { content: "\f007"; }
.fa-folder::before { content: "\f07b"; }

/* LinkedIn brand icon fix */
.fab.fa-linkedin-in::before { content: "\f0e1"; }
.fab.fa-twitter::before { content: "\f099"; }
.fab.fa-facebook-f::before { content: "\f39e"; }
.fab.fa-instagram::before { content: "\f16d"; }
.fab.fa-youtube::before { content: "\f167"; }
.fab.fa-whatsapp::before { content: "\f232"; }
