        :root {
            /* Thelbi Brand Colors - Professional Albanian palette */
            --thelbi-primary: #1e40af;      /* Deep blue - trust & intelligence */
            --thelbi-secondary: #3b82f6;    /* Bright blue - modern & dynamic */
            --thelbi-accent: #dc2626;       /* Albanian red - energy & passion */
            --thelbi-gold: #f59e0b;         /* Gold - premium & value */
            --thelbi-dark: #1f2937;         /* Dark slate - sophistication */
            --thelbi-light: #f8fafc;        /* Clean white-blue */
            --thelbi-success: #059669;      /* Success green */
            --thelbi-border: #e5e7eb;       /* Subtle borders */
            --thelbi-text: #374151;         /* Readable dark gray */
            --thelbi-text-light: #6b7280;   /* Secondary text */
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--thelbi-text);
            line-height: 1.6;
            background-color: #ffffff;
        }
        
        /* Thelbi Navigation */
        .thelbi-navbar {
            background: #fff !important;
            box-shadow: 0 2px 20px rgba(30, 64, 175, 0.10);
            padding: 1rem 0;
        }
        .navbar-toggler {
    border: none;
    background: var(--thelbi-primary) !important;
    color: #fff !important;
    border-radius: 8px;
    padding: 0.5rem 0.8rem;
    box-shadow: 0 2px 8px rgba(30,64,175,0.08);
    transition: background 0.2s;
}

.navbar-toggler .fas {
    color: #fff !important;
    font-size: 1.4rem;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    background: var(--thelbi-accent) !important;
    outline: none;
}
        .markdown-body h1, .markdown-body h2, .markdown-body h3 { margin-top: 1.5em; }
.markdown-body ul { padding-left: 1.4em; list-style-type: disc; }
.markdown-body p { margin-bottom: 1em; }
.markdown-body pre, .markdown-body code { background: #f3f4f6; border-radius: 4px; padding: 0.2em 0.4em; }
        .thelbi-brand {
            font-weight: 800;
            font-size: 2rem;
            color: var(--thelbi-primary) !important;
            text-decoration: none;
            letter-spacing: -0.5px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .thelbi-brand:hover {
            color: var(--thelbi-accent) !important;
            transform: scale(1.02);
        }

        /* Increase logo size */
        .thelbi-brand img {
            height: 40px; /* Increased from 38px */
            max-height: 40px;
            margin-right: 0.5rem;
        }

        .thelbi-tagline {
            font-size: 0.85rem;
            color: var(--thelbi-primary);
            font-weight: 500;
            margin-top: -4px;
            letter-spacing: 0.5px;
        }

        
        /* Navbar links */
        .navbar-nav .nav-link {
            color: var(--thelbi-primary) !important;
            font-weight: 500;
             padding: 0.5rem 0.7rem !important; /* less padding */
                margin: 0 0.3rem;                  /* less margin */
                font-size: 0.97rem;  
            border-radius: 6px;
            transition: all 0.3s ease;
            background: none;
        }

        .navbar-nav .nav-link:hover {
            color: var(--thelbi-accent) !important;
            background: rgba(30, 64, 175, 0.06);
            transform: translateY(-1px);
        }
        
        /* Hero Section */
        .thelbi-hero {
            background: linear-gradient(135deg, var(--thelbi-primary), var(--thelbi-secondary));
            color: white;
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .thelbi-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='%23ffffff' stroke-width='0.5' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23grid)' /%3E%3C/svg%3E") repeat;
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            font-weight: 500;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.4;
        }
        
        .hero-tagline {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--thelbi-gold);
            margin-bottom: 2.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Statistics Cards */
        .thelbi-stat-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 25px rgba(30, 64, 175, 0.08);
            border: 1px solid var(--thelbi-border);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .thelbi-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--thelbi-primary), var(--thelbi-secondary));
        }
        
        .thelbi-stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--thelbi-primary);
            margin-bottom: 0.5rem;
            line-height: 1;
        }
        
        .stat-label {
            color: var(--thelbi-text-light);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* Insight Cards */
        .thelbi-insight-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 8px 35px rgba(30, 64, 175, 0.08);
            border: 1px solid var(--thelbi-border);
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .thelbi-insight-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 50px rgba(30, 64, 175, 0.12);
        }
        
        .insight-header {
            display: flex;
            align-items: center;
            justify-content: between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--thelbi-light);
        }
        
        .insight-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--thelbi-dark);
            margin: 0;
        }
        
        .insight-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--thelbi-primary), var(--thelbi-secondary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        /* Skills Chart */
        .skill-bar {
            display: flex;
            align-items: center;
            margin-bottom: 1.25rem;
            padding: 1rem;
            background: var(--thelbi-light);
            border-radius: 12px;
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }
        
        .skill-bar:hover {
            background: #f1f5f9;
            border-left-color: var(--thelbi-primary);
            transform: translateX(4px);
        }
        
        .skill-name {
            min-width: 160px;
            font-weight: 600;
            color: var(--thelbi-dark);
            font-size: 0.95rem;
        }
        
        .skill-progress {
            flex: 1;
            height: 12px;
            background: #e2e8f0;
            border-radius: 8px;
            margin: 0 1.5rem;
            overflow: hidden;
            position: relative;
        }
        
        .skill-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--thelbi-primary), var(--thelbi-secondary));
            transition: width 1s ease;
            border-radius: 8px;
            position: relative;
        }
        
        .skill-fill::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }
        
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        
        .skill-count {
            font-weight: 700;
            color: var(--thelbi-primary);
            min-width: 50px;
            text-align: right;
            font-size: 0.95rem;
        }
        
        /* Salary Cards */
        .thelbi-salary-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            border-left: 5px solid var(--thelbi-success);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .thelbi-salary-card:hover {
            transform: translateX(4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .salary-role {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--thelbi-dark);
            margin-bottom: 0.5rem;
        }
        
        .salary-amount {
            font-size: 2rem;
            font-weight: 800;
            color: var(--thelbi-success);
            margin-bottom: 0.25rem;
        }
        
        /* Contribution Form */
        .thelbi-contribution-form {
            background: linear-gradient(135deg, var(--thelbi-light), #ffffff);
            border-radius: 20px;
            padding: 3rem;
            margin-top: 3rem;
            border: 1px solid var(--thelbi-border);
            box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
        }
        
        .form-control, .form-select {
            border-radius: 10px;
            border: 2px solid var(--thelbi-border);
            padding: 0.875rem 1.25rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--thelbi-primary);
            box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15);
            outline: none;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--thelbi-dark);
            margin-bottom: 0.5rem;
        }
        
        /* Buttons */
        .btn-thelbi-primary {
            background: linear-gradient(135deg, var(--thelbi-primary), var(--thelbi-secondary));
            border: none;
            border-radius: 12px;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
            transition: all 0.3s ease;
            text-transform: none;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
        }
        
        .btn-thelbi-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
            color: white;
        }
        
        /* Trust Indicators */
        .trust-indicator {
            text-align: center;
            padding: 1.5rem;
        }
        
        .trust-indicator i {
            font-size: 2.5rem;
            color: var(--thelbi-primary);
            margin-bottom: 1rem;
        }
        
        .trust-title {
            font-weight: 700;
            color: var(--thelbi-dark);
            margin-bottom: 0.5rem;
        }
        
        .trust-description {
            font-size: 0.9rem;
            color: var(--thelbi-text-light);
        }
        
        /* Footer */
       /* Enhanced Professional Footer */
.thelbi-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #f8fafc;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.thelbi-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--thelbi-primary), var(--thelbi-secondary), var(--thelbi-gold));
}

.footer-main {
    border-bottom: 1px solid #374151;
}

.footer-brand-section {
    padding-right: 2rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-brand-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-mission {
    font-size: 1rem;
    line-height: 1.6;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item {
    font-size: 0.9rem;
    color: #9ca3af;
}

.stat-item strong {
    color: var(--thelbi-gold);
    font-weight: 700;
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--thelbi-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--thelbi-gold);
    transform: translateX(4px);
}

.footer-links a::before {
    content: '→';
    margin-right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-compliance {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--thelbi-gold);
    width: 16px;
    text-align: center;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 6px 0 0 6px;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--thelbi-gold);
    box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
    color: #ffffff;
}

.btn-newsletter {
    background: linear-gradient(135deg, var(--thelbi-gold), #fbbf24);
    border: none;
    color: #1f2937;
    padding: 0.5rem 1rem;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.footer-bottom {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    color: #6b7280 !important;
    margin-top: 0.5rem !important;
}

.footer-meta {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 0.25rem;
}

.footer-update,
.footer-version {
    font-size: 0.8rem;
    color: #6b7280;
}

.footer-version {
    font-weight: 600;
    color: var(--thelbi-gold);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-brand-section {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .footer-logo-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .footer-stats {
        flex-direction: row;
        gap: 1rem;
    }
    
    .footer-meta {
        align-items: start;
        margin-top: 1rem;
    }
    
    .compliance-badges {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    /* Better navbar on mobile */
    .thelbi-brand {
        font-size: 1.3rem !important;
    }
    
    .thelbi-brand img {
        height: 32px !important;
        max-height: 32px !important;
    }
    
    /* Simplify footer on mobile */
    .footer-section-title {
        margin-top: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Improve touch targets */
    .footer-links a, 
    .navbar-nav .nav-link {
        padding: 0.6rem 0.8rem !important;
        margin: 0.2rem 0 !important;
    }
    
    /* Adjusted font sizes */
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    /* Better spacing */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Fix footer columns */
    .footer-main [class*="col-"] {
        margin-bottom: 1rem;
    }
}
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        /* Alerts */
        .alert {
            border-radius: 12px;
            border: none;
            padding: 1.25rem 1.5rem;
            font-weight: 500;
        }
        
        .alert-success {
            background: linear-gradient(135deg, #dcfce7, #f0fdf4);
            color: #15803d;
            border-left: 4px solid var(--thelbi-success);
        }
        
        .alert-info {
            background: linear-gradient(135deg, #dbeafe, #eff6ff);
            color: var(--thelbi-primary);
            border-left: 4px solid var(--thelbi-primary);
        }
        
        /* Badges */
        .badge {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .badge-thelbi {
            background: var(--thelbi-primary);
            color: white;
        }
        
        /* Premium Badge */
        .premium-badge {
            display: inline-block;
            background: linear-gradient(90deg, #f59e0b, #fbbf24);
            color: #fff;
            border-radius: 8px;
            padding: 0.2rem 0.7rem 0.2rem 0.5rem;
            font-size: 0.95rem;
            font-weight: 700;
            margin-left: 0.5rem;
            vertical-align: middle;
            box-shadow: 0 2px 8px rgba(245,158,11,0.13);
        }
        
        .premium-badge i {
            color: #fff;
            margin-right: 0.3rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .thelbi-insight-card, .thelbi-contribution-form {
                padding: 2rem 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .skill-name {
                min-width: 120px;
                font-size: 0.9rem;
            }
            
            .thelbi-brand {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .thelbi-stat-card {
                padding: 2rem 1.5rem;
            }
            
            .skill-bar {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
            }
            
            .skill-name, .skill-count {
                margin-bottom: 0.5rem;
            }
            
            .skill-progress {
                margin: 0.5rem 0;
            }
        }
         .logout-form {
        margin: 0;
        padding: 0;
    }
    
    .logout-form button.nav-link {
        cursor: pointer;
        color: var(--thelbi-primary) !important;
        font-weight: 500;
        margin: 0 0.5rem;
        padding: 0.5rem 1rem !important;
        border-radius: 6px;
        transition: all 0.3s ease;
        background: none;
    }
    
    .logout-form button.nav-link:hover {
        color: var(--thelbi-accent) !important;
        background: rgba(30, 64, 175, 0.06);
        transform: translateY(-1px);
    }
    /* Notification Improvements */
@media (max-width: 768px) {
    .notification-bell-container {
        top: auto !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 1050;
    }
    
    .notification-bell-container .dropdown-menu {
        position: fixed !important;
        top: auto !important;
        bottom: 60px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        max-height: 400px !important;
        overflow-y: auto !important;
        transform: none !important;
        margin: 0 !important;
    }
}

.notification-item:hover {
    background-color: #f8f9fa !important;
}

.notification-item.read {
    opacity: 0.7;
}

/* Notification bell styling */
.notification-bell-container .btn {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.notification-bell-container .badge {
    font-size: 0.7rem;
    min-width: 1.2rem;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Better dropdown styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
}

.dropdown-item {
    border-radius: 8px;
    margin: 2px 8px;
    padding: 8px 12px;
}

.dropdown-header {
    font-weight: 600;
    color: var(--thelbi-primary);
    padding: 12px 16px 8px;
}
