/* _content/WebneyInc.Web.Library/WebUI/Authentication/PageForgotPassword.razor.rz.scp.css */
/* Page-specific styles for Forgot Password page */

/* Success Alert */
.success-alert[b-ulj2k28bsu] {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.confirmation-email[b-ulj2k28bsu] {
    font-family: var(--font-family-headings);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.confirmation-message[b-ulj2k28bsu] {
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 1.5rem;
}

.link-button[b-ulj2k28bsu] {
    background: none;
    border: none;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    padding: 0;
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.link-button:hover[b-ulj2k28bsu] {
    color: #764ba2;
    text-decoration: underline;
}
/* _content/WebneyInc.Web.Library/WebUI/Authentication/PageLogin.razor.rz.scp.css */
/* Authentication Container */
.auth-container[b-wzmojyhcpe] {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    position: relative;
    overflow: hidden;
}

/* Dark Mode Container - Removed to use global vibrant purple gradient from _auth-shared.scss */
/* The global style applies: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%) */

/* Auth Card */
.auth-card[b-wzmojyhcpe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Auth Header */
.auth-header[b-wzmojyhcpe] {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown-b-wzmojyhcpe 0.8s ease-out;
}

.auth-icon[b-wzmojyhcpe] {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce-b-wzmojyhcpe 2s ease-in-out infinite;
}

.auth-title[b-wzmojyhcpe] {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

:global(.e-dark-mode) .auth-title[b-wzmojyhcpe] {
    color: rgba(255, 255, 255, 0.98);
}

.auth-subtitle[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

:global(.e-dark-mode) .auth-subtitle[b-wzmojyhcpe] {
    color: rgba(221, 214, 254, 0.85);
}

/* Auth Form */
.auth-form[b-wzmojyhcpe] {
    background: rgba(226, 232, 240, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp-b-wzmojyhcpe 0.8s ease-out;
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

:global(.e-dark-mode) .auth-form[b-wzmojyhcpe] {
    background: rgba(30, 27, 75, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
}

.form-group[b-wzmojyhcpe] {
    margin-bottom: 1.75rem;
}

.form-label[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a202c;
    display: block;
    margin-bottom: 0.625rem;
    letter-spacing: 0.025em;
}

:global(.e-dark-mode) .form-label[b-wzmojyhcpe] {
    color: #c4b5fd;
}

.form-input[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    width: 100%;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: #f8fafc;
    color: #1a202c;
}

:global(.e-dark-mode) .form-input[b-wzmojyhcpe] {
    background: rgba(30, 27, 75, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: rgba(255, 255, 255, 0.95);
}

.form-input:hover[b-wzmojyhcpe] {
    border-color: #cbd5e1;
    background: #ffffff;
}

:global(.e-dark-mode) .form-input:hover[b-wzmojyhcpe] {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(30, 27, 75, 0.8);
}

.form-input:focus[b-wzmojyhcpe] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
    background: #ffffff;
}

:global(.e-dark-mode) .form-input:focus[b-wzmojyhcpe] {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
    background: rgba(30, 27, 75, 0.8);
}

.form-input[b-wzmojyhcpe]::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

:global(.e-dark-mode) .form-input[b-wzmojyhcpe]::placeholder {
    color: rgba(167, 139, 250, 0.5);
}

/* Form Options */
.form-options[b-wzmojyhcpe] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me[b-wzmojyhcpe] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-family-base);
    font-size: 0.9375rem;
    color: #475569;
    cursor: pointer;
    user-select: none;
}

:global(.e-dark-mode) .remember-me[b-wzmojyhcpe] {
    color: rgba(221, 214, 254, 0.9);
}

.remember-me input[type="checkbox"][b-wzmojyhcpe] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
    accent-color: #667eea;
}

:global(.e-dark-mode) .remember-me input[type="checkbox"][b-wzmojyhcpe] {
    accent-color: #8b5cf6;
}

.forgot-link[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    font-size: 0.9375rem;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

:global(.e-dark-mode) .forgot-link[b-wzmojyhcpe] {
    color: rgba(167, 139, 250, 0.9);
}

.forgot-link[b-wzmojyhcpe]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #764ba2;
    transition: width 0.3s ease;
}

:global(.e-dark-mode) .forgot-link[b-wzmojyhcpe]::after {
    background: #a78bfa;
}

.forgot-link:hover[b-wzmojyhcpe] {
    color: #764ba2;
}

:global(.e-dark-mode) .forgot-link:hover[b-wzmojyhcpe] {
    color: #c4b5fd;
}

.forgot-link:hover[b-wzmojyhcpe]::after {
    width: 100%;
}

/* Primary Button */
.btn-auth-primary[b-wzmojyhcpe] {
    width: 100%;
    padding: 1.125rem 1.5rem;
    font-family: var(--font-family-base);
    font-size: 1.0625rem;
    font-weight: 600;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 14px rgba(0, 91, 193, 0.25);
    position: relative;
    overflow: hidden;
}

:global(.e-dark-mode) .btn-auth-primary[b-wzmojyhcpe] {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-auth-primary[b-wzmojyhcpe]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-auth-primary:hover[b-wzmojyhcpe]::before {
    opacity: 1;
}

.btn-auth-primary:hover[b-wzmojyhcpe] {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.35);
}

:global(.e-dark-mode) .btn-auth-primary:hover[b-wzmojyhcpe] {
    box-shadow: 0 12px 28px rgba(139, 92, 246, 0.6);
}

.btn-auth-primary:active[b-wzmojyhcpe] {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
}

:global(.e-dark-mode) .btn-auth-primary:active[b-wzmojyhcpe] {
    box-shadow: 0 6px 18px rgba(139, 92, 246, 0.4);
}

/* Divider */
.divider[b-wzmojyhcpe] {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider-text[b-wzmojyhcpe] {
    position: relative;
    display: inline-block;
    padding: 0 1rem;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 500;
    background: transparent;
}

:global(.e-dark-mode) .divider-text[b-wzmojyhcpe] {
    color: rgba(167, 139, 250, 0.7);
}

.divider[b-wzmojyhcpe]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
}

:global(.e-dark-mode) .divider[b-wzmojyhcpe]::before {
    background: rgba(139, 92, 246, 0.2);
}
/* Social Buttons */
.social-buttons[b-wzmojyhcpe] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}

.btn-social[b-wzmojyhcpe] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.125rem 0.75rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-family-base);
    color: #1a202c;
    position: relative;
    overflow: hidden;
}

:global(.e-dark-mode) .btn-social[b-wzmojyhcpe] {
    background: rgba(30, 27, 75, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: rgba(221, 214, 254, 0.9);
}

.btn-social[b-wzmojyhcpe]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-social:hover[b-wzmojyhcpe]::before {
    opacity: 1;
}

.btn-social:hover[b-wzmojyhcpe] {
    border-color: #667eea;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

:global(.e-dark-mode) .btn-social:hover[b-wzmojyhcpe] {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 6px 16px rgba(139, 92, 246, 0.3);
}

.btn-social:active[b-wzmojyhcpe] {
    transform: translateY(-1px);
}

.social-icon[b-wzmojyhcpe] {
    font-size: 1.75rem;
    position: relative;
    z-index: 1;
}

/* Form Divider */
.form-divider[b-wzmojyhcpe] {
    margin: 1.5rem 0;
    border: none;
    border-top: 1px solid #e2e8f0;
}

:global(.e-dark-mode) .form-divider[b-wzmojyhcpe] {
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

/* Footer */
.footer-text[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    color: #4a5568;
    text-align: center;
    margin: 0;
}

:global(.e-dark-mode) .footer-text[b-wzmojyhcpe] {
    color: rgba(221, 214, 254, 0.85);
}

.auth-link[b-wzmojyhcpe] {
    font-weight: 600;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

:global(.e-dark-mode) .auth-link[b-wzmojyhcpe] {
    color: rgba(167, 139, 250, 0.9);
}

.auth-link:hover[b-wzmojyhcpe] {
    color: #764ba2;
}

:global(.e-dark-mode) .auth-link:hover[b-wzmojyhcpe] {
    color: #c4b5fd;
}

/* Auth Illustration */
.auth-illustration[b-wzmojyhcpe] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

:global(.e-dark-mode) .auth-illustration[b-wzmojyhcpe] {
    background: rgba(30, 27, 75, 0.2);
    border-left: 1px solid rgba(139, 92, 246, 0.2);
}

.illustration-content[b-wzmojyhcpe] {
    position: relative;
    text-align: center;
    animation: fadeIn-b-wzmojyhcpe 1s ease-out;
}

.illustration-text[b-wzmojyhcpe] {
    position: relative;
    z-index: 2;
}

.illustration-text h3[b-wzmojyhcpe] {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

:global(.e-dark-mode) .illustration-text h3[b-wzmojyhcpe] {
    color: rgba(255, 255, 255, 0.98);
}

.illustration-text p[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

:global(.e-dark-mode) .illustration-text p[b-wzmojyhcpe] {
    color: rgba(221, 214, 254, 0.85);
}

.floating-shape[b-wzmojyhcpe] {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

:global(.e-dark-mode) .shape-1[b-wzmojyhcpe] {
    background: rgba(139, 92, 246, 0.15);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.2);
}

:global(.e-dark-mode) .shape-2[b-wzmojyhcpe] {
    background: rgba(167, 139, 250, 0.15);
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.2);
}

:global(.e-dark-mode) .shape-3[b-wzmojyhcpe] {
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
}

.shape-1[b-wzmojyhcpe] {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation: float-b-wzmojyhcpe 8s ease-in-out infinite;
}

.shape-2[b-wzmojyhcpe] {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: -30px;
    animation: float-b-wzmojyhcpe 6s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-3[b-wzmojyhcpe] {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    animation: float-b-wzmojyhcpe 7s ease-in-out infinite;
    animation-delay: 2s;
}

.illustration-text[b-wzmojyhcpe] {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 500px;
}

.illustration-text h2[b-wzmojyhcpe] {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.illustration-text p[b-wzmojyhcpe] {
    font-family: var(--font-family-base);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Animations */
@keyframes fadeInDown-b-wzmojyhcpe {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-wzmojyhcpe {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn-b-wzmojyhcpe {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce-b-wzmojyhcpe {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float-b-wzmojyhcpe {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .auth-container[b-wzmojyhcpe] {
        grid-template-columns: 1fr;
    }

    .auth-illustration[b-wzmojyhcpe] {
        display: none;
    }

    .auth-card[b-wzmojyhcpe] {
        padding: 1rem;
    }

    .auth-form[b-wzmojyhcpe] {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .auth-title[b-wzmojyhcpe] {
        font-size: 2rem;
    }

    .auth-subtitle[b-wzmojyhcpe] {
        font-size: 1rem;
    }

    .auth-form[b-wzmojyhcpe] {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .social-buttons[b-wzmojyhcpe] {
        grid-template-columns: 1fr;
    }

    .btn-social[b-wzmojyhcpe] {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Authentication/PageMFA.razor.rz.scp.css */
/* Page-specific styles for MFA page */

/* MFA Code Input */
.mfa-code-input[b-qkmlg9lld7] {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.code-digit[b-qkmlg9lld7] {
    width: 50px;
    height: 60px;
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: #1a202c;
    transition: all 0.3s ease;
    outline: none;
}

.code-digit:focus[b-qkmlg9lld7],
.code-digit.focused[b-qkmlg9lld7] {
    border-color: #005BC1;
    box-shadow: 0 0 0 3px rgba(0, 91, 193, 0.1);
}

.code-digit:not(:placeholder-shown)[b-qkmlg9lld7] {
    border-color: #005BC1;
    background: linear-gradient(135deg, rgba(0, 91, 193, 0.05), rgba(191, 13, 62, 0.05));
}

/* Error Alert */
.error-alert[b-qkmlg9lld7] {
    padding: 1rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-radius: 12px;
    text-align: center;
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: shake-b-qkmlg9lld7 0.5s ease;
}

@keyframes shake-b-qkmlg9lld7 {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Resend Text */
.resend-text[b-qkmlg9lld7] {
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    color: #718096;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Alternative Methods */
.alternative-methods[b-qkmlg9lld7] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-alternative[b-qkmlg9lld7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    font-weight: 500;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-alternative:hover[b-qkmlg9lld7] {
    border-color: #005BC1;
    background: linear-gradient(135deg, rgba(0, 91, 193, 0.05), rgba(191, 13, 62, 0.05));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 193, 0.2);
}

.method-icon[b-qkmlg9lld7] {
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .code-digit[b-qkmlg9lld7] {
        width: 40px;
        height: 50px;
        font-size: 1.25rem;
    }

    .mfa-code-input[b-qkmlg9lld7] {
        gap: 0.5rem;
    }

    .alternative-methods[b-qkmlg9lld7] {
        grid-template-columns: 1fr;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Authentication/PageRegister.razor.rz.scp.css */
/* Page-specific styles for Register page */

/* Form Row for side-by-side inputs */
.form-row[b-ql7u5su5pb] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0;
}

/* Password Strength Indicator */
.password-strength[b-ql7u5su5pb] {
    margin-top: 0.5rem;
}

.strength-bar[b-ql7u5su5pb] {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.strength-bar-fill[b-ql7u5su5pb] {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.strength-bar-fill.strength-weak[b-ql7u5su5pb] {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.strength-bar-fill.strength-medium[b-ql7u5su5pb] {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.strength-bar-fill.strength-strong[b-ql7u5su5pb] {
    background: linear-gradient(90deg, #10b981, #059669);
}

.strength-text[b-ql7u5su5pb] {
    font-family: var(--font-family-base);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strength-text.strength-weak[b-ql7u5su5pb] {
    color: #ef4444;
}

.strength-text.strength-medium[b-ql7u5su5pb] {
    color: #f59e0b;
}

.strength-text.strength-strong[b-ql7u5su5pb] {
    color: #10b981;
}

/* Terms Checkbox */
.terms-checkbox[b-ql7u5su5pb] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"][b-ql7u5su5pb] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #005BC1;
}

.terms-checkbox span[b-ql7u5su5pb] {
    font-family: var(--font-family-base);
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
}

/* Feature List in Illustration */
.feature-list[b-ql7u5su5pb] {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item[b-ql7u5su5pb] {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    animation: fadeInLeft-b-ql7u5su5pb 0.8s ease-out;
}

.feature-item:nth-child(1)[b-ql7u5su5pb] {
    animation-delay: 0.2s;
}

.feature-item:nth-child(2)[b-ql7u5su5pb] {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3)[b-ql7u5su5pb] {
    animation-delay: 0.6s;
}

.feature-icon[b-ql7u5su5pb] {
    font-size: 1.5rem;
    color: #10b981;
    background: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item span[b-ql7u5su5pb] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

@keyframes fadeInLeft-b-ql7u5su5pb {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-row[b-ql7u5su5pb] {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Components/GlobalErrorHandler.razor.rz.scp.css */
.error-boundary-container[b-lqgh8d7k3o] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light, #f9fafb);
    padding: 0; /* No padding - let child components control their own spacing */
}

.e-dark-mode .error-boundary-container[b-lqgh8d7k3o] {
    background-color: var(--bg-dark, #111827);
}

.error-boundary-content[b-lqgh8d7k3o] {
    max-width: 28rem;
    width: 100%;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.e-dark-mode .error-boundary-content[b-lqgh8d7k3o] {
    background-color: #1f2937;
}

.error-icon[b-lqgh8d7k3o] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    background-color: #fee2e2;
    border-radius: 9999px;
    color: #dc2626;
}

.e-dark-mode .error-icon[b-lqgh8d7k3o] {
    background-color: #7f1d1d;
    color: #f87171;
}

.error-title[b-lqgh8d7k3o] {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #111827;
    margin-bottom: 0.5rem;
}

.e-dark-mode .error-title[b-lqgh8d7k3o] {
    color: white;
}

.error-message[b-lqgh8d7k3o] {
    text-align: center;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.e-dark-mode .error-message[b-lqgh8d7k3o] {
    color: #9ca3af;
}

.error-details[b-lqgh8d7k3o] {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 0.375rem;
    max-height: 10rem;
    overflow: auto;
}

.e-dark-mode .error-details[b-lqgh8d7k3o] {
    background-color: #374151;
}

.error-details-title[b-lqgh8d7k3o] {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111827;
    font-size: 0.875rem;
}

.e-dark-mode .error-details-title[b-lqgh8d7k3o] {
    color: white;
}

.error-details-text[b-lqgh8d7k3o] {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: #1f2937;
}

.e-dark-mode .error-details-text[b-lqgh8d7k3o] {
    color: #e5e7eb;
}

.error-actions[b-lqgh8d7k3o] {
    display: flex;
    gap: 0.75rem;
}

.error-actions button[b-lqgh8d7k3o] {
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.btn-primary[b-lqgh8d7k3o] {
    background-color: var(--primary-color, #667eea);
    color: white;
}

.btn-primary:hover[b-lqgh8d7k3o] {
    background-color: var(--primary-hover, #5568d3);
}

.btn-secondary[b-lqgh8d7k3o] {
    background-color: #e5e7eb;
    color: #1f2937;
}

.e-dark-mode .btn-secondary[b-lqgh8d7k3o] {
    background-color: #374151;
    color: white;
}

.btn-secondary:hover[b-lqgh8d7k3o] {
    background-color: #d1d5db;
}

.e-dark-mode .btn-secondary:hover[b-lqgh8d7k3o] {
    background-color: #4b5563;
}
/* _content/WebneyInc.Web.Library/WebUI/Components/ToastContainer.razor.rz.scp.css */
/* Toast Container - Fixed position at top-right */
.toast-container[b-nm0envquft] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 24rem;
    pointer-events: none;
}

/* Individual Toast */
.toast[b-nm0envquft] {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
    animation: slideIn-b-nm0envquft 0.3s ease-out;
    min-width: 20rem;
}

/* Toast Content */
.toast-content[b-nm0envquft] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.toast-icon[b-nm0envquft] {
    font-size: 1.25rem;
    font-weight: 600;
}

.toast-message[b-nm0envquft] {
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
}

.toast-close[b-nm0envquft] {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    margin-left: 0.5rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.toast-close:hover[b-nm0envquft] {
    opacity: 1;
}

/* Success Toast - Green */
.toast-success[b-nm0envquft] {
    background: rgba(16, 185, 129, 0.95);
    color: white;
}

.dark .toast-success[b-nm0envquft] {
    background: rgba(16, 185, 129, 0.9);
}

/* Info Toast - Blue */
.toast-info[b-nm0envquft] {
    background: rgba(59, 130, 246, 0.95);
    color: white;
}

.dark .toast-info[b-nm0envquft] {
    background: rgba(59, 130, 246, 0.9);
}

/* Warning Toast - Orange */
.toast-warning[b-nm0envquft] {
    background: rgba(245, 158, 11, 0.95);
    color: white;
}

.dark .toast-warning[b-nm0envquft] {
    background: rgba(245, 158, 11, 0.9);
}

/* Error Toast - Red */
.toast-error[b-nm0envquft] {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.dark .toast-error[b-nm0envquft] {
    background: rgba(239, 68, 68, 0.9);
}

/* Animation */
@keyframes slideIn-b-nm0envquft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .toast-container[b-nm0envquft] {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .toast[b-nm0envquft] {
        min-width: auto;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/Footer.razor.rz.scp.css */
.app-footer[b-o4gmutx6ml] {
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    color: white;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .app-footer[b-o4gmutx6ml] {
        padding: 2rem;
    }
}

:root[data-bs-theme="dark"] .app-footer[b-o4gmutx6ml] {
    background: linear-gradient(135deg, #4c51bf 0%, #5a3e84 100%);
    border-top-color: rgba(255, 255, 255, 0.05);
}

.footer-container[b-o4gmutx6ml] {
    max-width: 100%;
}

.footer-bottom[b-o4gmutx6ml] {
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/Header.razor.rz.scp.css */
/* ========================================
   Header - Scoped CSS
   ======================================== */

.app-navbar[b-xav1izn0zn] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 50;
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container[b-xav1izn0zn] {
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
}

.navbar-content[b-xav1izn0zn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1.5rem;
}

/* Menu Toggle Button */
.menu-toggle[b-xav1izn0zn] {
    margin-right: 1rem;
    font-size: 1.5rem;
    padding: 0.5rem 0.25rem; /* Reduced horizontal padding */
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle span[b-xav1izn0zn] {
    display: block;
    line-height: 1;
}

/* App Title */
.app-title[b-xav1izn0zn] {
    font-family: var(--font-family-headings, 'Manrope', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Navbar Actions */
.navbar-actions[b-xav1izn0zn] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Icon Buttons */
.btn-icon[b-xav1izn0zn] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover[b-xav1izn0zn] {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Outlined Buttons (Sign In/Sign Out) */
.btn-outlined[b-xav1izn0zn] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.2s;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outlined:hover[b-xav1izn0zn] {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Dark Mode Styles */
.e-dark-mode .app-navbar[b-xav1izn0zn] {
    background: linear-gradient(135deg, #4c51bf 0%, #5a3e84 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.e-dark-mode .btn-icon[b-xav1izn0zn] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.e-dark-mode .btn-icon:hover[b-xav1izn0zn] {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.e-dark-mode .btn-outlined[b-xav1izn0zn] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
}

.e-dark-mode .btn-outlined:hover[b-xav1izn0zn] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/MainLayout.razor.rz.scp.css */
/* ========================================
   MainLayout - Scoped CSS (Matches React Layout)
   Structure: app-container → content-wrapper → (drawer + main-content)
   ======================================== */

/* Root container - full viewport height */
.app-container[b-9uac8qnier] {
    min-height: 100vh;
    width: 100%; /* Ensure full browser width */
    display: flex;
    flex-direction: column;
}

/* Content wrapper - flex container for drawer + main content */
.content-wrapper[b-9uac8qnier] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* ========================================
   Drawer (Left Navigation)
   ======================================== */

.drawer[b-9uac8qnier] {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    flex-shrink: 0;
}

/* Light mode drawer background */
:global(:not(.dark):not(.e-dark-mode)) .drawer[b-9uac8qnier] {
    background-color: white;
}

/* Dark mode drawer - use :global() to escape CSS scoping */
:global(.dark) .drawer[b-9uac8qnier],
:global(html.dark) .drawer[b-9uac8qnier],
:global(.e-dark-mode) .drawer[b-9uac8qnier],
:global(html.e-dark-mode) .drawer[b-9uac8qnier],
:global(body.e-dark-mode) .drawer[b-9uac8qnier] {
    background-color: #1f2937 !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3) !important;
}

.drawer-open[b-9uac8qnier] {
    width: 16rem; /* 256px */
}

.drawer-closed[b-9uac8qnier] {
    width: 0;
}

/* ========================================
   Main Content Area (Edge-to-Edge)
   ======================================== */

.main-content[b-9uac8qnier] {
    display: flex;
    flex-direction: column; /* Stack content and footer vertically */
    flex: 1; /* Fill remaining space - prevents content from following drawer */
    min-height: 100%;
    /* NO max-width - content spans full width */
    /* NO padding - moved to content-area to prevent double padding on footer */
    margin-left: 0 !important; /* Override Syncfusion sidebar inline style */
}

/* Content area wrapper - grows to fill available space, pushing footer down */
.content-area[b-9uac8qnier] {
    flex: 1; /* Takes all available vertical space */
    display: flex;
    flex-direction: column;
    /* Padding for comfortable reading - pages can override with p-0 class */
    padding: 1.5rem; /* 24px */
    margin-left: 0 !important; /* Override Syncfusion sidebar inline style */
}

@media (min-width: 768px) {
    .content-area[b-9uac8qnier] {
        padding: 2rem; /* 32px on larger screens */
        margin-left: 0 !important; /* Override Syncfusion sidebar inline style */
    }
}

/* ========================================
   Responsive Behavior
   ======================================== */

/* Mobile: Drawer overlays content when open */
@media (max-width: 768px) {
    .drawer[b-9uac8qnier] {
        position: fixed;
        top: 64px; /* Below header */
        left: 0;
        bottom: 0;
        z-index: 100;
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    }
    
    .drawer-open[b-9uac8qnier] {
        width: 16rem;
    }
    
    .drawer-closed[b-9uac8qnier] {
        width: 0;
        transform: translateX(-100%);
    }
}

/* Tablet and Desktop: Drawer always visible */
@media (min-width: 769px) {
    .drawer-open[b-9uac8qnier] {
        width: 16rem;
    }
    
    .drawer-closed[b-9uac8qnier] {
        width: 0;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/NavMenu.razor.rz.scp.css */
/* NavMenu Scoped Styles */

.nav-menu-container[b-638gnhazo2] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem; /* Add top padding for space below header */
}

.nav-menu-link[b-638gnhazo2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    color: var(--mud-palette-text-primary);
    transition: all 0.2s ease;
    font-weight: 500;
    position: relative;
}

.nav-menu-link:hover[b-638gnhazo2] {
    background: var(--mud-palette-action-default-hover);
}

.nav-menu-link.active[b-638gnhazo2] {
    background: linear-gradient(135deg, rgba(0, 91, 193, 0.1) 0%, rgba(191, 13, 62, 0.1) 100%);
    color: #005BC1;
}

.nav-icon[b-638gnhazo2] {
    font-size: 1.25rem;
    line-height: 1;
}

/* Dark mode overrides */
.e-dark-mode .nav-menu-link.active[b-638gnhazo2] {
    background: linear-gradient(135deg, rgba(144, 205, 244, 0.15) 0%, rgba(183, 148, 246, 0.15) 100%);
    color: #90cdf4;
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/PublicFooter.razor.rz.scp.css */
/* =============================================================================
 * Public Footer Component Styles
 * ============================================================================= */

.public-footer[b-nahb5bzbgy] {
    background: #f8f9fa;
    padding: 3rem 1rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.public-footer.dark[b-nahb5bzbgy] {
    background: #1a1a2e;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-container[b-nahb5bzbgy] {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid[b-nahb5bzbgy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid[b-nahb5bzbgy] {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-column[b-nahb5bzbgy] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title[b-nahb5bzbgy] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 0.5rem 0;
}

.public-footer.dark .footer-title[b-nahb5bzbgy] {
    color: #ffffff;
}

.footer-subtitle[b-nahb5bzbgy] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.public-footer.dark .footer-subtitle[b-nahb5bzbgy] {
    color: #e0e0e0;
}

.footer-description[b-nahb5bzbgy] {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.public-footer.dark .footer-description[b-nahb5bzbgy] {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a[b-nahb5bzbgy] {
    font-size: 0.875rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover[b-nahb5bzbgy] {
    color: #005BC1;
    text-decoration: underline;
}

.public-footer.dark .footer-column a[b-nahb5bzbgy] {
    color: rgba(255, 255, 255, 0.6);
}

.public-footer.dark .footer-column a:hover[b-nahb5bzbgy] {
    color: #8b9fee;
}

/* Social Links */
.social-links[b-nahb5bzbgy] {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-link[b-nahb5bzbgy] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover[b-nahb5bzbgy] {
    background: #005BC1;
    color: white;
    transform: translateY(-2px);
}

.public-footer.dark .social-link[b-nahb5bzbgy] {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.public-footer.dark .social-link:hover[b-nahb5bzbgy] {
    background: #8b9fee;
    color: #1a1a2e;
}

/* Footer Divider */
.footer-divider[b-nahb5bzbgy] {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 2rem 0 1.5rem;
}

.public-footer.dark .footer-divider[b-nahb5bzbgy] {
    border-top-color: rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.footer-bottom[b-nahb5bzbgy] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.copyright[b-nahb5bzbgy] {
    color: #666;
    margin: 0;
}

.public-footer.dark .copyright[b-nahb5bzbgy] {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links[b-nahb5bzbgy] {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a[b-nahb5bzbgy] {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover[b-nahb5bzbgy] {
    color: #005BC1;
}

.public-footer.dark .footer-bottom-links a[b-nahb5bzbgy] {
    color: rgba(255, 255, 255, 0.5);
}

.public-footer.dark .footer-bottom-links a:hover[b-nahb5bzbgy] {
    color: #8b9fee;
}

/* Responsive */
@media (max-width: 640px) {
    .public-footer[b-nahb5bzbgy] {
        padding: 2rem 1rem 1.5rem;
    }

    .footer-grid[b-nahb5bzbgy] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom[b-nahb5bzbgy] {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links[b-nahb5bzbgy] {
        justify-content: center;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/PublicHeader.razor.rz.scp.css */
/* =============================================================================
 * Public Header Styles
 * ============================================================================= */

.public-navbar[b-gf7ysavns3] {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.public-navbar.dark[b-gf7ysavns3] {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar-container[b-gf7ysavns3] {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.navbar-content[b-gf7ysavns3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    overflow: visible;
}

/* Brand Logo */
.brand-logo[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    transition: all 0.3s ease;
}

.brand-logo:hover[b-gf7ysavns3],
.brand-logo:visited[b-gf7ysavns3],
.brand-logo:active[b-gf7ysavns3],
.brand-logo:focus[b-gf7ysavns3] {
    text-decoration: none !important;
    opacity: 0.8;
}

.public-navbar.dark .brand-logo[b-gf7ysavns3] {
    color: #ffffff;
}

.brand-logo-img[b-gf7ysavns3] {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}

.brand-icon[b-gf7ysavns3] {
    font-size: 1.5rem;
}

.brand-text[b-gf7ysavns3] {
    font-family: var(--font-family-headings);
}

/* Navigation Menu */
.navbar-menu[b-gf7ysavns3] {
    display: none;
    align-items: center;
    gap: 2rem;
    overflow: visible;
}

@media (min-width: 1024px) {
    .navbar-menu[b-gf7ysavns3] {
        display: flex;
    }
}

.nav-link[b-gf7ysavns3] {
    position: relative;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-base);
}

.nav-link:hover[b-gf7ysavns3] {
    color: #005BC1;
}

.public-navbar.dark .nav-link[b-gf7ysavns3] {
    color: rgba(255, 255, 255, 0.9);
}

.public-navbar.dark .nav-link:hover[b-gf7ysavns3] {
    color: #66a5e1;
}

/* Dropdown */
.nav-dropdown[b-gf7ysavns3] {
    position: relative;
    display: inline-block;
}

.dropdown-toggle[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow[b-gf7ysavns3] {
    font-size: 0.625rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover .dropdown-arrow[b-gf7ysavns3] {
    transform: rotate(180deg);
}

.dropdown-menu[b-gf7ysavns3] {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0.5rem;
    animation: slideDown-b-gf7ysavns3 0.2s ease-out;
    z-index: 9999;
    opacity: 1;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.public-navbar.dark .dropdown-menu[b-gf7ysavns3] {
    background: #2a2a4e;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@keyframes slideDown-b-gf7ysavns3 {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-item:hover[b-gf7ysavns3] {
    background: #f8f9fa;
}

.public-navbar.dark .dropdown-item:hover[b-gf7ysavns3] {
    background: rgba(255, 255, 255, 0.1);
}

.item-icon[b-gf7ysavns3] {
    font-size: 1.75rem;
}

.item-content[b-gf7ysavns3] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.item-title[b-gf7ysavns3] {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a2e;
}

.public-navbar.dark .item-title[b-gf7ysavns3] {
    color: #ffffff;
}

.item-subtitle[b-gf7ysavns3] {
    font-size: 0.75rem;
    color: #666;
}

.public-navbar.dark .item-subtitle[b-gf7ysavns3] {
    color: rgba(255, 255, 255, 0.6);
}

/* Navbar Actions */
.navbar-actions[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-icon[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.btn-icon:hover[b-gf7ysavns3] {
    background: #f8f9fa;
}

.public-navbar.dark .btn-icon[b-gf7ysavns3] {
    border-color: rgba(255, 255, 255, 0.2);
}

.public-navbar.dark .btn-icon:hover[b-gf7ysavns3] {
    background: rgba(255, 255, 255, 0.1);
}

.btn[b-gf7ysavns3] {
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-family-base);
}

.btn-outlined[b-gf7ysavns3] {
    background: transparent;
    color: #005BC1;
    border: 2px solid #005BC1;
}

.btn-outlined:hover[b-gf7ysavns3] {
    background: #005BC1;
    color: white;
}

.public-navbar.dark .btn-outlined[b-gf7ysavns3] {
    color: #66a5e1;
    border-color: #66a5e1;
}

.public-navbar.dark .btn-outlined:hover[b-gf7ysavns3] {
    background: #66a5e1;
    color: #1a1a2e;
}

.btn-filled[b-gf7ysavns3] {
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    color: white;
    border: 2px solid transparent;
    font-size: 0.8125rem;
    padding: 0.4rem 1rem;
}

.btn-filled:hover[b-gf7ysavns3] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(103, 126, 234, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-gf7ysavns3] {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 1023px) {
    .mobile-menu-toggle[b-gf7ysavns3] {
        display: flex;
    }
}

.mobile-menu-toggle:hover[b-gf7ysavns3] {
    background: #f8f9fa;
}

.public-navbar.dark .mobile-menu-toggle[b-gf7ysavns3] {
    border-color: rgba(255, 255, 255, 0.2);
}

.public-navbar.dark .mobile-menu-toggle:hover[b-gf7ysavns3] {
    background: rgba(255, 255, 255, 0.1);
}

.menu-icon[b-gf7ysavns3] {
    font-size: 1.5rem;
    color: #333;
}

.public-navbar.dark .menu-icon[b-gf7ysavns3] {
    color: #ffffff;
}

/* Mobile Menu */
.mobile-menu[b-gf7ysavns3] {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
    animation: slideDown-b-gf7ysavns3 0.3s ease;
}

.public-navbar.dark .mobile-menu[b-gf7ysavns3] {
    border-top-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .mobile-menu[b-gf7ysavns3] {
        display: none;
    }
}

@keyframes slideDown-b-gf7ysavns3 {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

.mobile-nav-link[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.mobile-nav-link:hover[b-gf7ysavns3] {
    background: #f8f9fa;
}

.public-navbar.dark .mobile-nav-link[b-gf7ysavns3] {
    color: rgba(255, 255, 255, 0.9);
}

.public-navbar.dark .mobile-nav-link:hover[b-gf7ysavns3] {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown[b-gf7ysavns3] {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-content[b-gf7ysavns3] {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    animation: expandDown-b-gf7ysavns3 0.3s ease;
}

@keyframes expandDown-b-gf7ysavns3 {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 300px;
    }
}

.mobile-dropdown-item[b-gf7ysavns3] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-dropdown-item:hover[b-gf7ysavns3] {
    background: #f8f9fa;
}

.public-navbar.dark .mobile-dropdown-item[b-gf7ysavns3] {
    color: rgba(255, 255, 255, 0.8);
}

.public-navbar.dark .mobile-dropdown-item:hover[b-gf7ysavns3] {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-actions[b-gf7ysavns3] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid #e0e0e0;
    margin-top: 0.5rem;
}

.public-navbar.dark .mobile-menu-actions[b-gf7ysavns3] {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.mobile-btn[b-gf7ysavns3] {
    width: 100%;
    text-align: center;
}
/* _content/WebneyInc.Web.Library/WebUI/Layout/PublicLayout.razor.rz.scp.css */
/* Public Layout Scoped Styles */
/* Shared styles are in _layout-shared.scss, only page-specific overrides here */

.public-layout[b-w0tn907w3f] {
    width: 100%;
    min-height: 100vh;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
}

/* Public-specific navbar styling (gradient background in light mode) */
.public-navbar[b-w0tn907w3f] {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Overrides - Using ::deep to force specificity */
[b-w0tn907w3f] .e-dark-mode .btn-filled,
[b-w0tn907w3f] .e-dark-mode.public-layout .btn-filled,
[b-w0tn907w3f] .e-dark-mode .public-navbar .btn-filled,
[b-w0tn907w3f] body.e-dark-mode .btn-filled,
[b-w0tn907w3f] html.e-dark-mode .btn-filled {
    background: #4a9eff !important;
    background-image: none !important;
    color: #ffffff !important;
    border: 1px solid #4a9eff !important;
}

[b-w0tn907w3f] .e-dark-mode .btn-filled:hover,
[b-w0tn907w3f] .e-dark-mode.public-layout .btn-filled:hover,
[b-w0tn907w3f] .e-dark-mode .public-navbar .btn-filled:hover,
[b-w0tn907w3f] body.e-dark-mode .btn-filled:hover,
[b-w0tn907w3f] html.e-dark-mode .btn-filled:hover {
    background: #357ae8 !important;
    border-color: #357ae8 !important;
}

[b-w0tn907w3f] .e-dark-mode .btn-outlined,
[b-w0tn907w3f] body.e-dark-mode .btn-outlined,
[b-w0tn907w3f] html.e-dark-mode .btn-outlined {
    background: transparent !important;
    color: rgba(255, 255, 255, 0.87) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

[b-w0tn907w3f] .e-dark-mode .btn-outlined:hover,
[b-w0tn907w3f] body.e-dark-mode .btn-outlined:hover,
[b-w0tn907w3f] html.e-dark-mode .btn-outlined:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu[b-w0tn907w3f] {
        display: none;
    }
    
    .footer-grid[b-w0tn907w3f] {
        grid-template-columns: 1fr;
    }
}


/* _content/WebneyInc.Web.Library/WebUI/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-ns1pfoz6k2],
.components-reconnect-repeated-attempt-visible[b-ns1pfoz6k2],
.components-reconnect-failed-visible[b-ns1pfoz6k2],
.components-pause-visible[b-ns1pfoz6k2],
.components-resume-failed-visible[b-ns1pfoz6k2],
.components-rejoining-animation[b-ns1pfoz6k2] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-retrying[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-failed[b-ns1pfoz6k2],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-ns1pfoz6k2] {
    display: block;
}


#components-reconnect-modal[b-ns1pfoz6k2] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-ns1pfoz6k2 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-ns1pfoz6k2 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-ns1pfoz6k2 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-ns1pfoz6k2]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-ns1pfoz6k2 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-ns1pfoz6k2 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-ns1pfoz6k2 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-ns1pfoz6k2 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-ns1pfoz6k2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-ns1pfoz6k2] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-ns1pfoz6k2] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-ns1pfoz6k2] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-ns1pfoz6k2] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-ns1pfoz6k2] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-ns1pfoz6k2] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-ns1pfoz6k2 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-ns1pfoz6k2] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-ns1pfoz6k2 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/Components/Breadcrumb.razor.rz.scp.css */
/* =============================================================================
 * Breadcrumb Component Styles
 * ============================================================================= */

.breadcrumb-nav[b-js62xxrgc1] {
    padding: 1rem;
    margin-bottom: 0;
}

.breadcrumb-nav.theme-si[b-js62xxrgc1] {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.breadcrumb-nav.theme-ws[b-js62xxrgc1] {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.breadcrumb-nav.theme-ca[b-js62xxrgc1] {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.breadcrumb-list[b-js62xxrgc1] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    font-size: 0.875rem;
    max-width: 1280px;
}

.breadcrumb-item[b-js62xxrgc1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-link[b-js62xxrgc1] {
    color: #005BC1;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb-link:hover[b-js62xxrgc1] {
    color: #004a9c;
    text-decoration: underline;
}

.breadcrumb-current[b-js62xxrgc1] {
    color: #666;
    font-weight: 600;
}

.breadcrumb-separator[b-js62xxrgc1] {
    color: #999;
    user-select: none;
    margin: 0 0.25rem;
}

/* Dark Mode */
.breadcrumb-nav.dark.theme-si[b-js62xxrgc1],
.breadcrumb-nav.dark.theme-ws[b-js62xxrgc1],
.breadcrumb-nav.dark.theme-ca[b-js62xxrgc1] {
    background: #1a1a1a !important;
}

.breadcrumb-nav.dark .breadcrumb-link[b-js62xxrgc1] {
    color: #8b9fee;
}

.breadcrumb-nav.dark .breadcrumb-link:hover[b-js62xxrgc1] {
    color: #b4c1f8;
}

.breadcrumb-nav.dark .breadcrumb-current[b-js62xxrgc1] {
    color: #e0e0e0;
}

.breadcrumb-nav.dark .breadcrumb-separator[b-js62xxrgc1] {
    color: #666;
}

/* Responsive */
@media (max-width: 640px) {
    .breadcrumb-nav[b-js62xxrgc1] {
        padding: 0.75rem 0;
        margin-bottom: 1rem;
    }

    .breadcrumb-list[b-js62xxrgc1] {
        font-size: 0.8125rem;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/Components/HeroSection.razor.rz.scp.css */
/* =============================================================================
 * Hero Section Component Styles
 * ============================================================================= */

/* .hero-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 4rem 1rem 6rem;
    overflow: hidden;
} */

.hero-section.dark[b-re6cc8z7fv] {
    background: rgb(26, 26, 26) !important;
}

.hero-container[b-re6cc8z7fv] {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-grid[b-re6cc8z7fv] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid[b-re6cc8z7fv] {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Hero Content */
.hero-content[b-re6cc8z7fv] {
    z-index: 2;
}

.hero-text-wrapper[b-re6cc8z7fv] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tagline[b-re6cc8z7fv] {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(103, 126, 234, 0.1);
    border: 1px solid rgba(103, 126, 234, 0.3);
    border-radius: 20px;
    /* color: #667eea; */
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.hero-section.dark .hero-tagline[b-re6cc8z7fv] {
    background: rgba(139, 159, 238, 0.2);
    border-color: rgba(139, 159, 238, 0.4);
    color: #8b9fee;
}

.hero-title[b-re6cc8z7fv] {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.hero-section.dark .hero-title[b-re6cc8z7fv] {
    color: #ffffff;
}

@media (min-width: 768px) {
    .hero-title[b-re6cc8z7fv] {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title[b-re6cc8z7fv] {
        font-size: 4rem;
    }
}

.hero-subtitle[b-re6cc8z7fv] {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
}

.hero-section.dark .hero-subtitle[b-re6cc8z7fv] {
    color: rgba(255, 255, 255, 0.8);
}

/* Hero Actions */
.hero-actions[b-re6cc8z7fv] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-icon[b-re6cc8z7fv] {
    transition: transform 0.3s ease;
}

/* Hero Stats */
.hero-stats[b-re6cc8z7fv] {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.hero-section.dark .hero-stats[b-re6cc8z7fv] {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.stat-item[b-re6cc8z7fv] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon[b-re6cc8z7fv] {
    font-size: 2rem;
}

.stat-content[b-re6cc8z7fv] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.stat-value[b-re6cc8z7fv] {
    font-size: 1.5rem;
    font-weight: 700;
    /* color: #1a1a2e; */
}

.hero-section.dark .stat-value[b-re6cc8z7fv] {
    color: #ffffff;
}

.stat-label[b-re6cc8z7fv] {
    font-size: 0.875rem;
    /* color: #666; */
}

.hero-section.dark .stat-label[b-re6cc8z7fv] {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Visual */
.hero-visual[b-re6cc8z7fv] {
    position: relative;
    min-height: 400px;
    max-width: 40rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-wrapper[b-re6cc8z7fv] {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Background Elements */
.bg-elements[b-re6cc8z7fv] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle[b-re6cc8z7fv] {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1[b-re6cc8z7fv] {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #005BC1, #BF0D3E);
    top: 10%;
    right: 10%;
    animation: float-b-re6cc8z7fv 6s ease-in-out infinite;
}

.circle-2[b-re6cc8z7fv] {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #BF0D3E, #f093fb);
    bottom: 20%;
    left: 10%;
    animation: float-b-re6cc8z7fv 8s ease-in-out infinite;
    animation-delay: 1s;
}

.circle-3[b-re6cc8z7fv] {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float-b-re6cc8z7fv 7s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes float-b-re6cc8z7fv {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Visual Placeholder */
.visual-placeholder[b-re6cc8z7fv] {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-section.dark .visual-placeholder[b-re6cc8z7fv] {
    background: linear-gradient(135deg, #2a2a3e 0%, #1a1a2e 100%);
}

.placeholder-content[b-re6cc8z7fv] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.placeholder-icon[b-re6cc8z7fv] {
    font-size: 4rem;
    opacity: 0.5;
}

.placeholder-text[b-re6cc8z7fv] {
    font-size: 1rem;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Floating Cards */
.floating-cards[b-re6cc8z7fv] {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card[b-re6cc8z7fv] {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-section.dark .floating-card[b-re6cc8z7fv] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.floating-card.card-1[b-re6cc8z7fv] {
    top: 15%;
    left: 10%;
    animation: floatCard-b-re6cc8z7fv 4s ease-in-out infinite;
}

.floating-card.card-2[b-re6cc8z7fv] {
    top: 50%;
    right: 5%;
    animation: floatCard-b-re6cc8z7fv 5s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-card.card-3[b-re6cc8z7fv] {
    bottom: 20%;
    left: 15%;
    animation: floatCard-b-re6cc8z7fv 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floatCard-b-re6cc8z7fv {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon[b-re6cc8z7fv] {
    font-size: 1.25rem;
}

/* Scroll Indicator */
.scroll-indicator[b-re6cc8z7fv] {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover[b-re6cc8z7fv] {
    opacity: 1;
}

.scroll-text[b-re6cc8z7fv] {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* color: #666; */
}

.hero-section.dark .scroll-text[b-re6cc8z7fv] {
    color: rgba(255, 255, 255, 0.6);
}

.scroll-arrow[b-re6cc8z7fv] {
    font-size: 1.5rem;
    animation: bounce-b-re6cc8z7fv 2s ease-in-out infinite;
}

@keyframes bounce-b-re6cc8z7fv {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Responsive */
@media (max-width: 1023px) {
    .hero-section[b-re6cc8z7fv] {
        padding: 3rem 1rem 4rem;
    }

    .hero-visual[b-re6cc8z7fv] {
        min-height: 300px;
    }

    .visual-placeholder[b-re6cc8z7fv] {
        height: 300px;
    }

    .floating-card[b-re6cc8z7fv] {
        display: none;
    }
}

@media (max-width: 640px) {
    .hero-section[b-re6cc8z7fv] {
        padding: 2rem 1rem 3rem;
    }

    .hero-title[b-re6cc8z7fv] {
        font-size: 2rem;
    }

    .hero-subtitle[b-re6cc8z7fv] {
        font-size: 1rem;
    }

    .hero-actions[b-re6cc8z7fv] {
        flex-direction: column;
        width: 100%;
    }

    .hero-stats[b-re6cc8z7fv] {
        gap: 1rem;
    }

    .stat-value[b-re6cc8z7fv] {
        font-size: 1.25rem;
    }
}

/* =============================================================================
 * Hero Carousel Styles
 * ============================================================================= */

.hero-carousel[b-re6cc8z7fv] {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.carousel-figure[b-re6cc8z7fv] {
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.carousel-video[b-re6cc8z7fv] {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}

/* Carousel Indicators Styling */
[b-re6cc8z7fv] .e-carousel .e-carousel-indicators {
    bottom: 10px;
}

[b-re6cc8z7fv] .e-carousel .e-indicator-bars .e-indicator-bar {
    background: rgba(255, 255, 255, 0.5);
    width: 40px;
    height: 4px;
    border-radius: 2px;
    margin: 0 6px;
}

[b-re6cc8z7fv] .e-carousel .e-indicator-bars .e-indicator-bar.e-active {
    background: #ffffff;
}

/* Dark mode carousel adjustments */
.hero-section.dark .hero-carousel[b-re6cc8z7fv] {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
/* _content/WebneyInc.Web.Library/WebUI/Public/Components/OfferingCard.razor.rz.scp.css */
/* =============================================================================
 * Offering Card Component Styles
 * ============================================================================= */

.offering-card[b-svdeche6zm] {
    position: relative;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 500px;
}

/* Theme Variants - Light Mode */
.offering-card.theme-si[b-svdeche6zm] {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border-color: #90caf9;
}

.offering-card.theme-ws[b-svdeche6zm] {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    border-color: #a5d6a7;
}

.offering-card.theme-ca[b-svdeche6zm] {
    background: linear-gradient(135deg, #fff8e1 0%, #fffbf0 100%);
    border-color: #ffe082;
}

/* Dark Mode Variants */
.dark .offering-card.theme-si[b-svdeche6zm] {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    border-color: #42a5f5;
    color: white;
}

.dark .offering-card.theme-ws[b-svdeche6zm] {
    background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
    border-color: #66bb6a;
    color: white;
}

.dark .offering-card.theme-ca[b-svdeche6zm] {
    background: linear-gradient(135deg, #f57f17 0%, #ff8f00 100%);
    border-color: #ffb74d;
    color: white;
}

/* Hover Effects */
.offering-card:hover[b-svdeche6zm] {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.offering-card.theme-si:hover[b-svdeche6zm] {
    border-color: #1976d2;
    box-shadow: 0 20px 40px rgba(25, 118, 210, 0.3);
}

.offering-card.theme-ws:hover[b-svdeche6zm] {
    border-color: #388e3c;
    box-shadow: 0 20px 40px rgba(56, 142, 60, 0.3);
}

.offering-card.theme-ca:hover[b-svdeche6zm] {
    border-color: #ffa000;
    box-shadow: 0 20px 40px rgba(255, 160, 0, 0.3);
}

/* Header Section */
.offering-header[b-svdeche6zm] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.offering-icon-wrapper[b-svdeche6zm] {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dark .offering-icon-wrapper[b-svdeche6zm] {
    background: rgba(0, 0, 0, 0.3);
}

.offering-icon[b-svdeche6zm] {
    font-size: 2rem;
    line-height: 1;
}

.offering-title[b-svdeche6zm] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: inherit;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.offering-badge[b-svdeche6zm] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(0, 91, 193, 0.2);
    color: #005BC1;
}

.dark .offering-badge[b-svdeche6zm] {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Description */
.offering-description[b-svdeche6zm] {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.dark .offering-description[b-svdeche6zm] {
    color: rgba(255, 255, 255, 0.9);
}

/* Features List */
.offering-features[b-svdeche6zm] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item[b-svdeche6zm] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.feature-checkmark[b-svdeche6zm] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4caf50;
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text[b-svdeche6zm] {
    color: #333;
    line-height: 1.5;
}

.dark .feature-text[b-svdeche6zm] {
    color: rgba(255, 255, 255, 0.85);
}

/* Image Placeholder */
.offering-image-wrapper[b-svdeche6zm] {
    margin-top: auto;
}

.offering-image-placeholder[b-svdeche6zm] {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.dark .offering-image-placeholder[b-svdeche6zm] {
    background: linear-gradient(135deg, #424242 0%, #616161 100%);
}

.image-overlay[b-svdeche6zm] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offering-image-placeholder:hover .image-overlay[b-svdeche6zm] {
    opacity: 1;
}

.overlay-text[b-svdeche6zm] {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Call to Action */
.offering-cta[b-svdeche6zm] {
    margin-top: auto;
}

.btn-offering[b-svdeche6zm] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.theme-si .btn-offering[b-svdeche6zm] {
    background: #1976d2;
    color: white;
}

.theme-ws .btn-offering[b-svdeche6zm] {
    background: #388e3c;
    color: white;
}

.theme-ca .btn-offering[b-svdeche6zm] {
    background: #ffa000;
    color: white;
}

.btn-offering:hover[b-svdeche6zm] {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.theme-si .btn-offering:hover[b-svdeche6zm] {
    background: #1565c0;
}

.theme-ws .btn-offering:hover[b-svdeche6zm] {
    background: #2e7d32;
}

.theme-ca .btn-offering:hover[b-svdeche6zm] {
    background: #ff8f00;
}

.btn-arrow[b-svdeche6zm] {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-offering:hover .btn-arrow[b-svdeche6zm] {
    transform: translateX(4px);
}

/* Hover Glow Effect */
.hover-glow[b-svdeche6zm] {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.theme-si .hover-glow[b-svdeche6zm] {
    background: radial-gradient(circle at 50% 50%, rgba(25, 118, 210, 0.1) 0%, transparent 70%);
}

.theme-ws .hover-glow[b-svdeche6zm] {
    background: radial-gradient(circle at 50% 50%, rgba(56, 142, 60, 0.1) 0%, transparent 70%);
}

.theme-ca .hover-glow[b-svdeche6zm] {
    background: radial-gradient(circle at 50% 50%, rgba(255, 160, 0, 0.1) 0%, transparent 70%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .offering-card[b-svdeche6zm] {
        padding: 1.5rem;
        min-height: auto;
    }

    .offering-title[b-svdeche6zm] {
        font-size: 1.25rem;
    }

    .offering-icon-wrapper[b-svdeche6zm] {
        width: 48px;
        height: 48px;
    }

    .offering-icon[b-svdeche6zm] {
        font-size: 1.75rem;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/Offerings/PageCorporateAcademy.razor.rz.scp.css */
/* =============================================================================
 * Corporate Academy Detail Page - Specific Overrides
 * Note: Shared offering detail styles are in OfferingDetailStyles.css
 * ============================================================================= */

/* Corporate Academy specific color theme */
.detail-hero.theme-ca .hero-icon-large[b-j6wvlh6ajb] {
    color: #f57f17;
}

.offering-detail-page.dark .detail-hero.theme-ca .hero-icon-large[b-j6wvlh6ajb] {
    color: #ffd54f;
}

.theme-ca .stat-icon[b-j6wvlh6ajb] {
    color: #f57f17;
}

.offering-detail-page.dark .theme-ca .stat-icon[b-j6wvlh6ajb] {
    color: #ffd54f;
}

/* Corporate Academy specific tech tags */
.theme-ca .tech-tag[b-j6wvlh6ajb] {
    background: #fff8e1;
    color: #ff8f00;
}

.offering-detail-page.dark .theme-ca .tech-tag[b-j6wvlh6ajb] {
    background: rgba(245, 127, 23, 0.2);
    color: #ffd54f;
}

/* Corporate Academy feature cards accent */
.theme-ca .feature-detail-card:hover[b-j6wvlh6ajb] {
    border-color: #f57f17;
    box-shadow: 0 12px 24px rgba(245, 127, 23, 0.15);
}

.offering-detail-page.dark .theme-ca .feature-detail-card:hover[b-j6wvlh6ajb] {
    border-color: #ffd54f;
}

/* Process timeline accent for Corporate Academy */

.theme-ca .step-icon[b-j6wvlh6ajb] {
    color: #f57f17;
}

.offering-detail-page.dark .theme-ca .step-icon[b-j6wvlh6ajb] {
    color: #ffd54f;
}
/* _content/WebneyInc.Web.Library/WebUI/Public/Offerings/PageSystemInnovations.razor.rz.scp.css */
/* =============================================================================
 * System Innovations Detail Page - Specific Overrides
 * Note: Shared offering detail styles are in OfferingDetailStyles.css
 * ============================================================================= */

/* System Innovations specific color theme */
.detail-hero.theme-si .hero-icon-large[b-k3wrcsv5ry] {
    color: #1976d2;
}

.offering-detail-page.dark .detail-hero.theme-si .hero-icon-large[b-k3wrcsv5ry] {
    color: #64b5f6;
}

.theme-si .stat-icon[b-k3wrcsv5ry] {
    color: #1976d2;
}

.offering-detail-page.dark .theme-si .stat-icon[b-k3wrcsv5ry] {
    color: #64b5f6;
}

/* System Innovations specific tech tags */
.theme-si .tech-tag[b-k3wrcsv5ry] {
    background: #e3f2fd;
    color: #1565c0;
}

.offering-detail-page.dark .theme-si .tech-tag[b-k3wrcsv5ry] {
    background: rgba(25, 118, 210, 0.2);
    color: #64b5f6;
}

/* System Innovations feature cards accent */
.theme-si .feature-detail-card:hover[b-k3wrcsv5ry] {
    border-color: #1976d2;
    box-shadow: 0 12px 24px rgba(25, 118, 210, 0.15);
}

.offering-detail-page.dark .theme-si .feature-detail-card:hover[b-k3wrcsv5ry] {
    border-color: #64b5f6;
}

/* Process timeline accent for System Innovations */

.theme-si .step-icon[b-k3wrcsv5ry] {
    color: #1976d2;
}

.offering-detail-page.dark .theme-si .step-icon[b-k3wrcsv5ry] {
    color: #64b5f6;
}
/* _content/WebneyInc.Web.Library/WebUI/Public/Offerings/PageWorkforceSolutions.razor.rz.scp.css */
/* =============================================================================
 * Workforce Solutions Detail Page - Specific Overrides
 * Note: Shared offering detail styles are in OfferingDetailStyles.css
 * ============================================================================= */

/* Workforce Solutions specific color theme */
.detail-hero.theme-ws .hero-icon-large[b-tn3axqvkjr] {
    color: #388e3c;
}

.offering-detail-page.dark .detail-hero.theme-ws .hero-icon-large[b-tn3axqvkjr] {
    color: #81c784;
}

.theme-ws .stat-icon[b-tn3axqvkjr] {
    color: #388e3c;
}

.offering-detail-page.dark .theme-ws .stat-icon[b-tn3axqvkjr] {
    color: #81c784;
}

/* Workforce Solutions specific tech tags */
.theme-ws .tech-tag[b-tn3axqvkjr] {
    background: #e8f5e9;
    color: #2e7d32;
}

.offering-detail-page.dark .theme-ws .tech-tag[b-tn3axqvkjr] {
    background: rgba(56, 142, 60, 0.2);
    color: #81c784;
}

/* Workforce Solutions feature cards accent */
.theme-ws .feature-detail-card:hover[b-tn3axqvkjr] {
    border-color: #388e3c;
    box-shadow: 0 12px 24px rgba(56, 142, 60, 0.15);
}

.offering-detail-page.dark .theme-ws .feature-detail-card:hover[b-tn3axqvkjr] {
    border-color: #81c784;
}

/* Process timeline accent for Workforce Solutions */

.theme-ws .step-icon[b-tn3axqvkjr] {
    color: #388e3c;
}

.offering-detail-page.dark .theme-ws .step-icon[b-tn3axqvkjr] {
    color: #81c784;
}
/* _content/WebneyInc.Web.Library/WebUI/Public/PageAbout.razor.rz.scp.css */
/* About Page Styles */

.page-about[b-vuyem7ikpc] {
    min-height: 100vh;
}

/* Hero Section */
.about-hero[b-vuyem7ikpc] {
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero[b-vuyem7ikpc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-container[b-vuyem7ikpc] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title[b-vuyem7ikpc] {
    font-family: var(--font-family-headings);
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    animation: fadeInDown-b-vuyem7ikpc 0.8s ease-out;
}

.hero-subtitle[b-vuyem7ikpc] {
    font-family: var(--font-family-base);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    animation: fadeInUp-b-vuyem7ikpc 0.8s ease-out 0.2s both;
}

/* Mission Section */
.mission-section[b-vuyem7ikpc] {
    padding: 5rem 2rem;
    background: white;
}

.content-container[b-vuyem7ikpc] {
    max-width: 1400px;
    margin: 0 auto;
}

.mission-grid[b-vuyem7ikpc] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title[b-vuyem7ikpc] {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 1.5rem 0;
}

.section-description[b-vuyem7ikpc] {
    font-family: var(--font-family-base);
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.mission-image[b-vuyem7ikpc] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder[b-vuyem7ikpc] {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 91, 193, 0.4);
    animation: float-b-vuyem7ikpc 6s ease-in-out infinite;
}

.image-icon[b-vuyem7ikpc] {
    font-size: 8rem;
}

@keyframes float-b-vuyem7ikpc {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Values Section */
.values-section[b-vuyem7ikpc] {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    position: relative;
    overflow: hidden;
}

.values-section[b-vuyem7ikpc]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.section-title-center[b-vuyem7ikpc] {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 3rem 0;
    position: relative;
    z-index: 1;
}

.values-grid[b-vuyem7ikpc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.value-card[b-vuyem7ikpc] {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-card:hover[b-vuyem7ikpc] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.value-icon[b-vuyem7ikpc] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title[b-vuyem7ikpc] {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin: 0 0 1rem 0;
}

.value-description[b-vuyem7ikpc] {
    font-family: var(--font-family-base);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section[b-vuyem7ikpc] {
    padding: 5rem 2rem;
    background: white;
}

.section-subtitle-center[b-vuyem7ikpc] {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    margin: -2rem 0 3rem 0;
}

.team-grid[b-vuyem7ikpc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card[b-vuyem7ikpc] {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover[b-vuyem7ikpc] {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-avatar[b-vuyem7ikpc] {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.team-name[b-vuyem7ikpc] {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.team-role[b-vuyem7ikpc] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    color: #005BC1;
    font-weight: 500;
    margin: 0 0 1rem 0;
}

.team-bio[b-vuyem7ikpc] {
    font-family: var(--font-family-base);
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Stats Section */
.stats-section[b-vuyem7ikpc] {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
}

.stats-grid[b-vuyem7ikpc] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card[b-vuyem7ikpc] {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover[b-vuyem7ikpc] {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number[b-vuyem7ikpc] {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.stat-label[b-vuyem7ikpc] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInDown-b-vuyem7ikpc {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-vuyem7ikpc {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode */
:global(.e-dark-mode) .page-about[b-vuyem7ikpc] {
    background: #0a0a0a;
}

:global(.e-dark-mode) .mission-section[b-vuyem7ikpc] {
    background: white;
}

:global(.e-dark-mode) .section-title[b-vuyem7ikpc],
:global(.e-dark-mode) .section-title-center[b-vuyem7ikpc] {
    color: rgba(255, 255, 255, 0.95);
}

:global(.e-dark-mode) .section-description[b-vuyem7ikpc] {
    color: rgba(255, 255, 255, 0.7);
}

:global(.e-dark-mode) .values-section[b-vuyem7ikpc] {
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
}

/* Keep the section title white in values section since it's on purple background */
:global(.e-dark-mode) .values-section .section-title-center[b-vuyem7ikpc] {
    color: white;
}

:global(.e-dark-mode) .value-card[b-vuyem7ikpc] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

:global(.e-dark-mode) .value-title[b-vuyem7ikpc] {
    color: white;
}

:global(.e-dark-mode) .value-description[b-vuyem7ikpc] {
    color: rgba(255, 255, 255, 0.9);
}

:global(.e-dark-mode) .team-section[b-vuyem7ikpc] {
    background: white;
}

:global(.e-dark-mode) .team-card[b-vuyem7ikpc] {
    background: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

:global(.e-dark-mode) .team-name[b-vuyem7ikpc] {
    color: rgba(255, 255, 255, 0.95);
}

:global(.e-dark-mode) .team-bio[b-vuyem7ikpc] {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-vuyem7ikpc] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-vuyem7ikpc] {
        font-size: 1.125rem;
    }

    .mission-grid[b-vuyem7ikpc] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-placeholder[b-vuyem7ikpc] {
        width: 300px;
        height: 300px;
    }

    .image-icon[b-vuyem7ikpc] {
        font-size: 6rem;
    }

    .section-title[b-vuyem7ikpc] {
        font-size: 2rem;
    }

    .values-grid[b-vuyem7ikpc],
    .team-grid[b-vuyem7ikpc] {
        grid-template-columns: 1fr;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/PageCareers.razor.rz.scp.css */
/* =============================================================================
 * Careers Page Styles - Similar to About Page
 * ============================================================================= */

.page-careers[b-9wab9e9zdi] {
    min-height: 100vh;
}

/* Hero Section */
.careers-hero[b-9wab9e9zdi] {
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
    color: white;
}

.dark .careers-hero[b-9wab9e9zdi] {
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%) !important;
}

.hero-container[b-9wab9e9zdi] {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title[b-9wab9e9zdi] {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.hero-subtitle[b-9wab9e9zdi] {
    font-family: var(--font-family-base);
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    margin: 0;
}

/* Openings Section */
.openings-section[b-9wab9e9zdi] {
    padding: 5rem 2rem;
    background: white;
}

.dark .openings-section[b-9wab9e9zdi] {
    background: #1a1a1a;
}

.content-container[b-9wab9e9zdi] {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title[b-9wab9e9zdi] {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    color: #1a202c;
}

.dark .section-title[b-9wab9e9zdi] {
    color: #ffffff;
}

.no-openings-card[b-9wab9e9zdi] {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: #f7fafc;
    border-radius: 16px;
    border: 2px dashed #cbd5e0;
    text-align: center;
}

.dark .no-openings-card[b-9wab9e9zdi] {
    background: #2a2a3e;
    border-color: #4a4a5e;
}

.no-openings-icon[b-9wab9e9zdi] {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.no-openings-card h3[b-9wab9e9zdi] {
    font-family: var(--font-family-headings);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #2d3748;
}

.dark .no-openings-card h3[b-9wab9e9zdi] {
    color: #ffffff;
}

.no-openings-card p[b-9wab9e9zdi] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 0 2rem;
}

.dark .no-openings-card p[b-9wab9e9zdi] {
    color: #d1d5db;
}

.btn-contact[b-9wab9e9zdi] {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact:hover[b-9wab9e9zdi] {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 91, 193, 0.4);
}

/* Why Work Section */
.why-work-section[b-9wab9e9zdi] {
    padding: 5rem 2rem;
    background: #f7fafc;
}

.dark .why-work-section[b-9wab9e9zdi] {
    background: #0f0f1a;
}

.benefits-grid[b-9wab9e9zdi] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card[b-9wab9e9zdi] {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dark .benefit-card[b-9wab9e9zdi] {
    background: #2a2a3e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover[b-9wab9e9zdi] {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon[b-9wab9e9zdi] {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3[b-9wab9e9zdi] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    color: #2d3748;
}

.dark .benefit-card h3[b-9wab9e9zdi] {
    color: #ffffff;
}

.benefit-card p[b-9wab9e9zdi] {
    font-family: var(--font-family-base);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

.dark .benefit-card p[b-9wab9e9zdi] {
    color: #d1d5db;
}

/* CTA Section - using shared .cta-section from global styles */

.btn-cta[b-9wab9e9zdi] {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #005BC1 0%, #8B2A4A 50%, #BF0D3E 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 91, 193, 0.4), 0 2px 10px rgba(191, 13, 62, 0.3) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-cta[b-9wab9e9zdi]::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 ease;
}

.btn-cta:hover[b-9wab9e9zdi]::before {
    left: 100%;
}

.btn-cta:hover[b-9wab9e9zdi] {
    background: linear-gradient(135deg, #0070E0 0%, #A33456 50%, #D91E4F 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 91, 193, 0.5), 0 6px 15px rgba(191, 13, 62, 0.4) !important;
}

.btn-cta:active[b-9wab9e9zdi] {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(0, 91, 193, 0.45), 0 4px 12px rgba(191, 13, 62, 0.35) !important;
}

/* Animations */
@keyframes fadeInDown-b-9wab9e9zdi {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-9wab9e9zdi {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title[b-9wab9e9zdi] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-9wab9e9zdi] {
        font-size: 1rem;
    }

    .section-title[b-9wab9e9zdi] {
        font-size: 2rem;
    }

    .benefits-grid[b-9wab9e9zdi] {
        grid-template-columns: 1fr;
    }

    .no-openings-card[b-9wab9e9zdi] {
        padding: 2rem 1.5rem;
    }

    .openings-section[b-9wab9e9zdi],
    .why-work-section[b-9wab9e9zdi],
    .cta-section[b-9wab9e9zdi] {
        padding: 4rem 1rem;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/PageContact.razor.rz.scp.css */
/* Contact Page Styles */

.page-contact[b-rhslz43doq] {
    min-height: 100vh;
}

/* Hero Section */
.contact-hero[b-rhslz43doq] {
    padding: 6rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero[b-rhslz43doq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-container[b-rhslz43doq] {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title[b-rhslz43doq] {
    font-family: var(--font-family-headings);
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    animation: fadeInDown-b-rhslz43doq 0.8s ease-out;
}

.hero-subtitle[b-rhslz43doq] {
    font-family: var(--font-family-base);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    animation: fadeInUp-b-rhslz43doq 0.8s ease-out 0.2s both;
}

/* Contact Content */
.contact-content[b-rhslz43doq] {
    padding: 5rem 2rem;
    background: white;
}

.content-container[b-rhslz43doq] {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid[b-rhslz43doq] {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.section-title[b-rhslz43doq] {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 2rem 0;
}

/* Contact Form Container - Uses global .form-container/.contact-form from _auth-shared.scss */
/* Additional contact-specific styling if needed */

.form-row[b-rhslz43doq] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group[b-rhslz43doq] {
    margin-bottom: 1.5rem;
}

.form-label[b-rhslz43doq] {
    font-family: var(--font-family-base);
    font-weight: 500;
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

/* Note: .form-input, .form-textarea, and .btn-submit styles are now in _auth-shared.scss (standardized for all forms) */

/* Contact Page Specific Overrides */

.btn-icon[b-rhslz43doq] {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon[b-rhslz43doq] {
    transform: translateX(5px);
}

/* Contact Info */
.contact-info-section[b-rhslz43doq] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-cards[b-rhslz43doq] {
    display: grid;
    gap: 1.5rem;
}

.info-card[b-rhslz43doq] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.info-card:hover[b-rhslz43doq] {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.info-icon[b-rhslz43doq] {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.info-title[b-rhslz43doq] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.75rem 0;
}

.info-text[b-rhslz43doq] {
    font-family: var(--font-family-base);
    color: #718096;
    margin: 0.25rem 0;
    line-height: 1.6;
}

.btn-chat[b-rhslz43doq] {
    margin-top: 1rem;
    padding: 0.625rem 1.25rem;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: var(--font-family-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-chat:hover[b-rhslz43doq] {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 91, 193, 0.4);
}

/* Social Section */
.social-section[b-rhslz43doq] {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.social-title[b-rhslz43doq] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 1rem 0;
}

.social-links[b-rhslz43doq] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link[b-rhslz43doq] {
    width: 50px;
    height: 50px;
    background: #f9fafb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover[b-rhslz43doq] {
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%);
    transform: translateY(-5px);
}

.social-icon[b-rhslz43doq] {
    font-size: 1.5rem;
    color: #4a5568;
    transition: color 0.3s ease;
}

.social-link:hover .social-icon[b-rhslz43doq] {
    color: white;
}

/* FAQ Section - CTA Style with Gradient Background */
.faq-section[b-rhslz43doq] {
    padding: 5rem 2rem !important;
    background: linear-gradient(135deg, #005BC1 0%, #BF0D3E 100%) !important;
    position: relative;
    overflow: hidden;
}

.faq-section[b-rhslz43doq]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-title-center[b-rhslz43doq] {
    font-family: var(--font-family-headings);
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff !important;
    text-align: center;
    margin: 0 0 3rem 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    -webkit-text-fill-color: #ffffff !important;
}

.faq-grid[b-rhslz43doq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item[b-rhslz43doq] {
    padding: 2rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover[b-rhslz43doq] {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.faq-question[b-rhslz43doq] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff !important;
    margin: 0 0 1rem 0;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.faq-answer[b-rhslz43doq] {
    font-family: var(--font-family-base);
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.7;
    margin: 0;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInDown-b-rhslz43doq {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-rhslz43doq {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode */
:global(.e-dark-mode) .page-contact[b-rhslz43doq] {
    background: #0a0a0a;
}

:global(.e-dark-mode) .contact-content[b-rhslz43doq] {
    background: white;
}

:global(.e-dark-mode) .section-title[b-rhslz43doq],
:global(.e-dark-mode) .section-title-center[b-rhslz43doq] {
    color: rgba(255, 255, 255, 0.95);
}

/* Dark mode styling now unified in _auth-shared.scss for .form-container/.contact-form */

:global(.e-dark-mode) .info-card[b-rhslz43doq],
:global(.e-dark-mode) .social-section[b-rhslz43doq] {
    background: rgba(15, 15, 35, 0.7);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

:global(.e-dark-mode) .form-label[b-rhslz43doq] {
    color: rgba(255, 255, 255, 0.9);
}

/* Note: .form-input, .form-textarea, and .btn-submit dark mode styles are now in _auth-shared.scss */

:global(.e-dark-mode) .info-title[b-rhslz43doq],
:global(.e-dark-mode) .social-title[b-rhslz43doq] {
    color: rgba(255, 255, 255, 0.95);
}

:global(.e-dark-mode) .info-text[b-rhslz43doq] {
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ section gradient styling works in both light and dark mode */

:global(.e-dark-mode) .social-link[b-rhslz43doq] {
    background: #1a1a1a;
}

:global(.e-dark-mode) .social-icon[b-rhslz43doq] {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title[b-rhslz43doq] {
        font-size: 2.5rem;
    }

    .hero-subtitle[b-rhslz43doq] {
        font-size: 1.125rem;
    }

    .contact-grid[b-rhslz43doq] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row[b-rhslz43doq] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title[b-rhslz43doq] {
        font-size: 1.75rem;
    }

    .faq-grid[b-rhslz43doq] {
        grid-template-columns: 1fr;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/PagePrivacyPolicy.razor.rz.scp.css */
/* =============================================================================
 * Legal Pages Styles (Privacy, Terms, Security) - Similar to About Page
 * ============================================================================= */

.page-legal[b-lxdohxjxq8] {
    min-height: 100vh;
}

/* Hero Title Section */
.legal-container[b-lxdohxjxq8] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.legal-title[b-lxdohxjxq8] {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #1a202c;
    animation: fadeInDown-b-lxdohxjxq8 0.8s ease-out;
}

.dark .legal-title[b-lxdohxjxq8] {
    color: #ffffff;
}

.legal-updated[b-lxdohxjxq8] {
    text-align: center;
    color: #718096;
    font-size: 0.9375rem;
    margin: 0 0 3rem;
    animation: fadeInUp-b-lxdohxjxq8 0.8s ease-out 0.2s both;
}

.dark .legal-updated[b-lxdohxjxq8] {
    color: #9ca3af;
}

/* Content Section - Uses global form-container */

.legal-section[b-lxdohxjxq8] {
    margin-bottom: 2.5rem;
}

.legal-section:last-child[b-lxdohxjxq8] {
    margin-bottom: 0;
}

.legal-section h2[b-lxdohxjxq8] {
    font-family: var(--font-family-headings);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #2d3748;
    border-bottom: 2px solid #005BC1;
    padding-bottom: 0.5rem;
}

.dark .legal-section h2[b-lxdohxjxq8] {
    color: #e5e7eb;
    border-bottom-color: #60a5fa;
}

.legal-section h3[b-lxdohxjxq8] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #4a5568;
}

.dark .legal-section h3[b-lxdohxjxq8] {
    color: #d1d5db;
}

.legal-section p[b-lxdohxjxq8] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 1rem;
}

.dark .legal-section p[b-lxdohxjxq8] {
    color: #9ca3af;
}

.legal-section ul[b-lxdohxjxq8] {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li[b-lxdohxjxq8] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.dark .legal-section li[b-lxdohxjxq8] {
    color: #9ca3af;
}

.legal-section strong[b-lxdohxjxq8] {
    color: #005BC1;
    font-weight: 600;
}

.dark .legal-section strong[b-lxdohxjxq8] {
    color: #60a5fa;
}

/* Animations */
@keyframes fadeInDown-b-lxdohxjxq8 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-lxdohxjxq8 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container[b-lxdohxjxq8] {
        padding: 4rem 1rem 3rem;
    }

    .legal-title[b-lxdohxjxq8] {
        font-size: 2rem;
    }

    .legal-section h2[b-lxdohxjxq8] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-lxdohxjxq8] {
        font-size: 1.125rem;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/PageSecurity.razor.rz.scp.css */
/* Shared legal page styles - see PagePrivacyPolicy.razor.css */

/* =============================================================================
 * Legal Pages Styles (Privacy, Terms, Security) - Similar to About Page
 * ============================================================================= */

.page-legal[b-1a7k7198jv] {
    min-height: 100vh;
}

/* Hero Title Section */
.legal-container[b-1a7k7198jv] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.legal-title[b-1a7k7198jv] {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #1a202c;
    animation: fadeInDown-b-1a7k7198jv 0.8s ease-out;
}

.dark .legal-title[b-1a7k7198jv] {
    color: #ffffff;
}

.legal-updated[b-1a7k7198jv] {
    text-align: center;
    color: #718096;
    font-size: 0.9375rem;
    margin: 0 0 3rem;
    animation: fadeInUp-b-1a7k7198jv 0.8s ease-out 0.2s both;
}

.dark .legal-updated[b-1a7k7198jv] {
    color: #9ca3af;
}

/* Content Section - Uses global form-container */

.legal-section[b-1a7k7198jv] {
    margin-bottom: 2.5rem;
}

.legal-section:last-child[b-1a7k7198jv] {
    margin-bottom: 0;
}

.legal-section h2[b-1a7k7198jv] {
    font-family: var(--font-family-headings);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #2d3748;
    border-bottom: 2px solid #005BC1;
    padding-bottom: 0.5rem;
}

.dark .legal-section h2[b-1a7k7198jv] {
    color: #e5e7eb;
    border-bottom-color: #60a5fa;
}

.legal-section h3[b-1a7k7198jv] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #4a5568;
}

.dark .legal-section h3[b-1a7k7198jv] {
    color: #d1d5db;
}

.legal-section p[b-1a7k7198jv] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 1rem;
}

.dark .legal-section p[b-1a7k7198jv] {
    color: #9ca3af;
}

.legal-section ul[b-1a7k7198jv] {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li[b-1a7k7198jv] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.dark .legal-section li[b-1a7k7198jv] {
    color: #9ca3af;
}

.legal-section strong[b-1a7k7198jv] {
    color: #005BC1;
    font-weight: 600;
}

.dark .legal-section strong[b-1a7k7198jv] {
    color: #60a5fa;
}

/* Animations */
@keyframes fadeInDown-b-1a7k7198jv {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-1a7k7198jv {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container[b-1a7k7198jv] {
        padding: 4rem 1rem 3rem;
    }

    .legal-title[b-1a7k7198jv] {
        font-size: 2rem;
    }

    .legal-section h2[b-1a7k7198jv] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-1a7k7198jv] {
        font-size: 1.125rem;
    }
}
/* _content/WebneyInc.Web.Library/WebUI/Public/PageTermsOfService.razor.rz.scp.css */
/* Shared legal page styles - see PagePrivacyPolicy.razor.css */

/* =============================================================================
 * Legal Pages Styles (Privacy, Terms, Security) - Similar to About Page
 * ============================================================================= */

.page-legal[b-8s7qkbm9x9] {
    min-height: 100vh;
}

/* Hero Title Section */
.legal-container[b-8s7qkbm9x9] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.legal-title[b-8s7qkbm9x9] {
    font-family: var(--font-family-headings);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 0.5rem;
    color: #1a202c;
    animation: fadeInDown-b-8s7qkbm9x9 0.8s ease-out;
}

.dark .legal-title[b-8s7qkbm9x9] {
    color: #ffffff;
}

.legal-updated[b-8s7qkbm9x9] {
    text-align: center;
    color: #718096;
    font-size: 0.9375rem;
    margin: 0 0 3rem;
    animation: fadeInUp-b-8s7qkbm9x9 0.8s ease-out 0.2s both;
}

.dark .legal-updated[b-8s7qkbm9x9] {
    color: #9ca3af;
}

/* Content Section - Uses global form-container */

.legal-section[b-8s7qkbm9x9] {
    margin-bottom: 2.5rem;
}

.legal-section:last-child[b-8s7qkbm9x9] {
    margin-bottom: 0;
}

.legal-section h2[b-8s7qkbm9x9] {
    font-family: var(--font-family-headings);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #2d3748;
    border-bottom: 2px solid #005BC1;
    padding-bottom: 0.5rem;
}

.dark .legal-section h2[b-8s7qkbm9x9] {
    color: #e5e7eb;
    border-bottom-color: #60a5fa;
}

.legal-section h3[b-8s7qkbm9x9] {
    font-family: var(--font-family-headings);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: #4a5568;
}

.dark .legal-section h3[b-8s7qkbm9x9] {
    color: #d1d5db;
}

.legal-section p[b-8s7qkbm9x9] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0 0 1rem;
}

.dark .legal-section p[b-8s7qkbm9x9] {
    color: #9ca3af;
}

.legal-section ul[b-8s7qkbm9x9] {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li[b-8s7qkbm9x9] {
    font-family: var(--font-family-base);
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.dark .legal-section li[b-8s7qkbm9x9] {
    color: #9ca3af;
}

.legal-section strong[b-8s7qkbm9x9] {
    color: #005BC1;
    font-weight: 600;
}

.dark .legal-section strong[b-8s7qkbm9x9] {
    color: #60a5fa;
}

/* Animations */
@keyframes fadeInDown-b-8s7qkbm9x9 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp-b-8s7qkbm9x9 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .legal-container[b-8s7qkbm9x9] {
        padding: 4rem 1rem 3rem;
    }

    .legal-title[b-8s7qkbm9x9] {
        font-size: 2rem;
    }

    .legal-section h2[b-8s7qkbm9x9] {
        font-size: 1.5rem;
    }

    .legal-section h3[b-8s7qkbm9x9] {
        font-size: 1.125rem;
    }
}
