:root 
{
	--s99-copper: #613E35;              
	--s99-copper-light: #CC8877;       
	--s99-copper-dark: #28170b;        
	--s99-silver-light: #E5E5E5;       
	--s99-platinum: #e5e4e2;            
    --s99-gray: #909090;                
    --s99-gray-blue: #b8c2d3;              
    --s99-gray-beige: #d3c7b8;
	--s99-tech-glow: #00d4ff;
	--s99-data-stream: #39ff14;
	--s99-neural-purple: #8a2be2;
	--s99-tech-purple: #ff00ff;
	--s99-tech-yellow: #eeff00;
	--text-light: #f5f5f5;
	--text-dark: #242424;
    --error-color: #dc3545;
	--warning-color: #ffc107;                    
	--error-glow: rgba(220, 53, 69, 0.6);      
    --tech-purple-glow: rgba(255, 0, 255, 0.3);
	--tech-yellow-glow: rgba(238, 255, 0, 0.2);
	--bronze-shadow: 0 10px 40px rgba(97, 62, 53, 0.6);
	--bronze-shadow-box: 0 4px 20px rgba(97, 62, 53, 0.3);
	--neural-shadow-box: 0 20px 40px rgba(138, 43, 226, 0.2);
	--gradient-red: linear-gradient(135deg, #d90000, #f00000, #850404);
	--gradient-copper: linear-gradient(135deg, #613e35, #cc8877, #28170b);
	--gradient-neural: linear-gradient(135deg, 
						rgba(36, 36, 36, 0.95), 
						rgba(138, 43, 226, 0.15),
						rgba(57, 255, 20, 0.05),
						rgba(36, 36, 36, 0.95));
	--gradient-tech:linear-gradient(135deg, 
						rgba(40, 23, 11, 0.95), 
						rgba(0, 212, 255, 0.12),
						rgba(57, 255, 20, 0.08),
						rgba(36, 36, 36, 0.95));
	--container-max-width: 1600px;
    --font-family-primary: Tahoma, 'Segoe UI', Helvetica, Arial, system-ui, sans-serif; 
	--border-radius: 8px;
    --transition: all 0.3s ease;
    --dark-bg: #242424;
    --quantum-dark-bg: linear-gradient(135deg, 
        rgba(15, 15, 15, 0.95), 
        rgba(36, 36, 36, 0.5), 
        rgba(15, 15, 15, 0.95));
    --quantum-bronze-bg: linear-gradient(135deg, 
        rgba(229, 228, 226, 0.08), 
        rgba(97, 62, 53, 0.35),
        rgba(144, 144, 144, 0.1)
        );
    --quantum-light-bg: linear-gradient(135deg,
        #e5e4e2 0%,
        #E5E5E5 20%,
        #C0C0C0 30%,
        #E5E5E5 45%,
        #e5e4e2 60%,
        #C0C0C0 70%,
        #C0C0C0 80%,
        #e5e4e2 100%);
    --h1-tech-text: linear-gradient(45deg, 
        #00d4ff, 
        #8a2be2, 
        #00d4ff
    );
    --quantum-dark-overlay-: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 30%, rgba(57, 255, 20, 0.08) 0%, transparent 50%);
    --quantum-bronze-overlay:
    radial-gradient(ellipse 60% 40% at 45% 10%, rgba(97, 62, 53, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 85% 75%, rgba(204, 136, 119, 0.3) 0%, transparent 25%),
    radial-gradient(ellipse 80% 60% at 15% 25%, rgba(97, 62, 53, 0.4) 0%, transparent 25%),
    radial-gradient(ellipse 70% 50% at 75% 40%, rgba(204, 136, 119, 0.3) 0%, transparent 25%);
    --quantum-light-overlay:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 40%, transparent 70%),
        radial-gradient(ellipse at 80% 70%, rgba(138, 43, 226, 0.12) 0%, rgba(138, 43, 226, 0.04) 35%, transparent 65%),
        radial-gradient(circle at 50% 10%, rgba(57, 255, 20, 0.08) 0%, transparent 50%);
}

* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: var(--font-family-primary);
    background: radial-gradient(circle at 50% 50%, var(--dark-bg) 0%, var(--dark-bg) 100%);
    color: #fff;
    min-height: 100vh;
    padding: 10px 10px 10px 10px;
    overflow-x: hidden;
}

.site-header {
    position: relative;
    top: 0;
    z-index: 1000;
}

.container 
{
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.header-container 
{
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    width: 100%;
    padding: 10px 10px 10px 10px;
    margin-bottom: 20px;
    margin-left: 0;
}

.greeting-text 
{
    margin: 15px; 
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    background: var(--blue-gray, #b8c2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px #b8c2d3;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp 
{
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-section 
{
    margin-bottom: 5px;
    padding: 5px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    background: rgba(36, 36, 36, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;      
    max-width: var(--container-max-width);
    margin-left: auto;   
    margin-right: auto; 
}

.nav-section::before 
{
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.nav-title 
{
    font-size: 2rem;
    margin-bottom: 20px;
    color: #00ff88;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-description 
{
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
    font-size: 1.2rem;
    color: #ccc;
}

.button-group 
{
    display: flex;
    justify-content: center;
    align-items: center;  
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;     
    max-width: var(--container-max-width); 
    margin: 0 auto;    
}

.logo 
{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    perspective: 1000px;
    margin-bottom: 40px;
}

.logo-hologram 
{
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.45, 0.75, 0.75, 0.95);
    border: 3px solid rgba(184, 194, 211, 0.5);
    border-radius: 10px;
}

.logo:hover .logo-hologram::before { opacity: 0.5; }

@keyframes holoRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.logo-link 
{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light, #f5f5f5);
    padding: 8px 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(36, 36, 36, 0.05), rgba(36, 36, 36, 0.01));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(97, 62, 53, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.35, 0.35, 0.94);
}

.logo-link:hover 
{
    transform: translateY(-2px) rotateX(3deg);
    box-shadow: 0 8px 30px rgba(97, 62, 53, 0.6), 0 0 50px rgba(0, 212, 255, 0.4);
}

.logo-image 
{
    height: 85px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 15px rgba(97, 62, 53, 0.5))
        drop-shadow(0 0 30px rgba(0, 212, 255, 0.3));
    transition: all 0.6s ease;
}

.logo:hover .logo-image 
{
    filter:
        drop-shadow(0 0 25px rgba(97, 62, 53, 0.7))
        drop-shadow(0 0 50px rgba(0, 212, 255, 0.5))
        drop-shadow(0 0 70px rgba(138, 43, 226, 0.3));
    transform: rotateY(20deg) scale(1.05);
}

.logo-text 
{
    margin-left: 12.5px;
    display: flex;
    flex-direction: column;
}

.company-name 
{
    font-size: 2.25rem !important;
    font-weight: 700;
    background: var(--blue-gray-bg, #B8C2D3);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(184, 115, 51, 0.4);
    white-space: nowrap;
}

@keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }

.company-tagline 
{
    font-size: 1rem;
    text-align: center;
    color: var(--tech-glow, rgb(0, 212, 255));
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
    text-shadow: 0 0 8px var(--tech-glow, #00D4FF);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse { 0%, 100% { opacity: 0.7; } 50% { opacity: 1; } }

.ar-btn 
{
    padding: 15px 35px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--tech-glow, #00D4FF);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: visible;
    font-family: var(--font-family-primary);
    margin: 5px 1px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.ar-btn::before 
{
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.08), transparent);
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.ar-btn:hover::before 
{
    opacity: 1;
    transition-delay: 0s; 
}

.ar-overlay 
{
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: scan 2s linear infinite;
}

@keyframes scan { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }

.ar-data 
{
    position: absolute;
    font-size: 0.6rem;
    color: rgb(0, 213, 255);
    opacity: 0;
    font-family: var(--font-family-primary);
    pointer-events: none;
    z-index: 20;
    background: rgba(36, 36, 36, 0.3);
    padding: 3px 6px;
    border-radius: 3px;
    white-space: nowrap;
    border: 1px solid rgba(0, 213, 255, 0.5);
}

.ar-btn.active 
{
    border-color: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 212, 255, 1);
    transform: translateZ(0); 
}

.ar-btn.active::before 
{
  opacity: 1; 
}

@media (hover:hover) 
{
    .ar-btn.active:hover 
    {
        transform: scale(1.03);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.45);
    }
}

.custom-tooltip 
{
    position: absolute;
    background: rgba(36, 36, 36, 0.95);
    color: var(--tech-glow, #00D4FF);
    padding: 5px 5px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 100;
    border: 1px solid rgba(0, 255, 255, 0.3);
    pointer-events: none;
    font-family: var(--font-family-primary);
    transition: opacity 120ms ease, transform 120ms ease;
    opacity: 1;
    transform: translateY(0);
}

.custom-tooltip.is-fading 
{
    opacity: 0;
    transform: translateY(-2px);
}

.mobile-toggle 
{
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.toggle-line 
{
    width: 100%;
    height: 3px;
    background: var(--tech-glow, #00D4FF);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active .toggle-line:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-toggle.active .toggle-line:nth-child(2) { opacity: 0; }
.mobile-toggle.active .toggle-line:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px); }

@media (max-width: 1024px) and (min-width: 769px) 
{
    .header-container { padding: 10px 15px; }
    .button-group { gap: 15px; }
    .ar-btn { padding: 12px 25px; font-size: 1rem; }
    .logo-image { height: 75px; }
    .company-name { font-size: 2rem !important; }
    .company-tagline { font-size: 0.9rem; }
    .greeting-text { font-size: 1.3rem; }
}

@media (max-width: 768px) 
{
    .header-container 
    {
        display: flex;
        flex-direction: column;  
        align-items: center;   
        padding: 10px 15px;
        position: relative;
        min-height: 80px;
        width: 100%;
    }

     .logo {
        display: flex;
        flex-direction: column; 
        align-items: center;  
        margin-bottom: 20px;
    }

    .logo-image { height: 65px; }
    .company-name { font-size: 1.8rem !important; }
    .company-tagline { font-size: 0.8rem; }

    .greeting-text {
        width: 100%;
        margin: 10px 0 16px 0; 
        text-align: center;
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .mobile-toggle 
    { 
        display: flex;
        position: absolute; 
        top: 25px;
        right: 15px;
        z-index: 1006; 
    }

    .button-group 
    {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(36, 36, 36, 0.98);
        backdrop-filter: blur(20px);
        border: none; 
        border-radius: 0; 
        padding: 100px 20px 20px 20px;
        margin: 0; 
        flex-direction: column;
        gap: 15px;
        z-index: 1005; 
        box-shadow: none;
        overflow-y: auto; 
    }

    .button-group.active 
    { 
        display: flex;
    }

    .ar-btn 
    {
        padding: 18px 20px; 
        font-size: 1.1rem; 
        text-align: center;
        width: 100%;
        margin: 0;
    }

    .nav-section 
    { 
        margin-bottom: 30px; 
    }
    
    body 
    { 
        padding: 10px 10px; 
    }
}

@media (max-width: 480px) 
{
    .nav-section 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header-container 
    {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 12px;
    }

    .logo-image { height: 55px; }
    .company-name { font-size: 1.5rem !important; }
    .company-tagline { font-size: 0.7rem; }

    .greeting-text 
    {
        order: 2;    
        width: 100%;
        font-size: 1rem;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
        margin: 10px 0 14px 0;
    }

    .ar-btn { padding: 12px 15px; font-size: 0.9rem; }
    .button-group { margin: 5px; padding: 15px; }
}

@media (max-width: 380px) 
{
    .logo-image 
    { 
        height: 55px; 
    }
    
    .company-name 
    { 
        font-size: 1.5rem !important; 
        line-height: 1.2;
    }
    
    .company-tagline 
    { 
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    
    .greeting-text 
    { 
        font-size: 1rem;
        margin-top: 15px;
    }
    
    .ar-btn 
    { 
        padding: 15px 15px;
        font-size: 1rem;
    }
    
    .mobile-toggle 
    {
        top: 20px;
        right: 10px;
        width: 28px;
        height: 28px;
    }
    
    .toggle-line 
    {
        height: 2.5px;
    }
    
    .header-container 
    {
        padding: 8px 10px;
    }
    
    .button-group 
    {
        padding: 90px 15px 15px 15px;
    }
}

.breadcrumbs 
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: linear-gradient(135deg, rgba(36, 36, 36, 0.95), rgba(36, 36, 36, 0.85));
    backdrop-filter: blur(10px);
    padding: 5px;
    margin: 0 5px 10px;
    font-size: 15px;
    font-family: var(--font-family-primary);
    width:  var(--container-max-width);
    position: relative;
    overflow: hidden;
}

@keyframes breadcrumbRotate { to { transform: rotate(360deg); } }

.breadcrumbs a,
.breadcrumb-link 
{
    color: var(--tech-glow);
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    position: relative;
}

.breadcrumbs a:hover,
.breadcrumb-link:hover 
{
    color: var(--text-light);
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
    transform: translateY(-1px);
}

.breadcrumb-icon 
{
    margin-right: 6px;
    font-size: 15px;
    opacity: 0.8;
}

.breadcrumb-separator 
{
    margin: 0 10px;
    color: rgba(0, 212, 255, 0.6);
    font-weight: bold;
    font-size: 16px;
    text-shadow: 0 0 3px rgba(0, 212, 255, 0.3);
}

.breadcrumb-current 
{
    color: var(--text-light);
    font-weight: 600;
    padding: 4px 8px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(138, 43, 226, 0.1));
    border-radius: 4px;
    text-shadow: 0 0 5px rgba(138, 43, 226, 0.4);
    border: 1px solid rgba(138, 43, 226, 0.3);
}

@media (max-width: 768px) 
{
    .breadcrumbs 
    {
        margin: 0 5px 15px;
        padding: 10px 15px;
        font-size: 13px;
    }
    .breadcrumb-separator { margin: 0 8px; font-size: 14px; }
    .breadcrumb-icon { font-size: 11px; }
}

@media (max-width: 480px) 
{
    .logo 
    {
        display: flex;
        flex-direction: column;  
        align-items: center;
        margin-bottom: 16px;
    }
    .logo-image { height: 55px; }
    .company-name { font-size: 1.5rem !important; }
    .company-tagline { font-size: 0.7rem; }
    .greeting-text 
    {
        width: 100%;
        font-size: 1rem;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
        margin: 8px 0 14px 0;
    }

    .ar-btn { padding: 12px 15px; font-size: 0.9rem; }
    .header-container { padding: 8px 12px; }
    .button-group { margin: 5px; padding: 15px; }
}

.breadcrumbs + * { margin-top: 0; }

[itemscope] [itemprop][content],
[itemscope] meta[itemprop],
[itemscope] link[itemprop] 
{
    display: none;
}

@media (prefers-reduced-motion: reduce) 
{
    * { animation: none !important; transition: none !important; }
}
