@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bulma@1.0.4/css/bulma.min.css");
/* ============================================
   1. VARIABLES & RESET
   ============================================ */
:root {
    /* Colors */
    --text: #fff;
    --qnips-green: #39f2ff;
    --qnips-accent: #39f2ff9a;
    --dark-blue: #fff;
    --booth-blue: #84f0f7;
    --qnips-transparent: rgba(108, 217, 153, 0.25);
    --qnips-transparent2: rgba(108, 217, 153, 0.15);

    /* Spacing */
    --page-padding: 1.5rem;
    --section-gap: 3rem;
}

/* ============================================
     Font sizes
   ============================================ */

h1 {
    color: var(--text) !important;
    font-weight: 600 !important;
    font-size: 1.7rem !important;
    padding-bottom: 1rem;
}

p {
    font-size: 1.2rem !important;
    color: var(--text);
}

html {
    overscroll-behavior: smooth;

}

body {
   
    font-size: 1rem;
    color: var(--text);
    background: radial-gradient(80.6% 61.3% at 100% 15.74%, rgba(14, 62, 73, 0.62) 0%, rgba(14, 62, 73, 0.00) 100%), radial-gradient(111.08% 86.19% at 100% 100%, rgba(52, 38, 130, 0.20) 0%, rgba(52, 38, 130, 0.00) 100%), radial-gradient(22.66% 56.73% at 0% 60.03%, rgba(41, 129, 152, 0.20) 0%, rgba(41, 129, 152, 0.00) 100%), linear-gradient(0deg, #082C30 0.31%, #094349 37.1%, #0B818E 99.7%);    font-family: Saira, sans-serif;


}

/* ============================================
   2. HEADER (Mobile-First)
   ============================================ */
.section {
    padding-left: 0px;
    padding-right: 0px;
} 
  
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-top: var(--page-padding);
}

.lang-switch {
    display: flex;
    flex-direction: row;
    gap: 1rem;

    
    
}
.lang-btn {
    all: unset;
    height: 2rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-right: 1px solid #6161a759;
    color: var(--text);
    padding: 0.4rem 1.2rem;
    border-radius: 0.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: background 300ms ease, color 300ms ease, border-color 100ms ease;
    font-size: 0.8rem;
}

.lang-btn.active {
    background: var(--qnips-transparent2);
    color: var(--qnips-green);
    border-color: var(--qnips-green);
}

.lang-btn:active {
    background: var(--qnips-transparent);
    color: var(--qnips-green);
    border-color: var(--qnips-accent);
}

.lang-btn:hover {
    background: var(--qnips-transparent2);
    color: var(--qnips-green);
    cursor: pointer;
}

/* ============================================
   3. LAYOUT (Mobile-First)
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

.block {
    padding: var(--section-gap) 0;
}

/* ============================================
   5. CTA BUTTON
   ============================================ */
.cta-column {
    background: linear-gradient(50deg, #39f2ff, var(--booth-blue));
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    isolation: isolate;

    /* KEY FIX: top-left layout everywhere */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;

    border-radius: 0.5rem;
    transform: translateY(0);
    transition: transform 400ms ease-in-out;
    min-height: 140px;
}

/* Arrow */
.cta-column::after {
    content: "▼";
    position: absolute;
    bottom: 0.75rem;
    right: 0.5em;
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
    pointer-events: none;
    filter: blur(1px);
    opacity: 0.8;
    padding: 0.1em;
    transition: transform 600ms ease-in-out;
}

.cta-column:hover {
    cursor: pointer;
    background: linear-gradient(150deg, #39f2ff, var(--booth-blue));
    transform: translateY(3px);
}

.cta-column:active {
    background: linear-gradient(150deg, #8cf3f9, #8cf3f9);
}

.cta-column:hover::after {
    transform: translateY(-5px);
}

/* CTA text */
.cta-column h1 {
    margin: 0;
    padding: 0.8em;
    font-size: 1.75rem;
    font-weight: 100;
    line-height: 120%;
    color: var(--text);
    text-align: left;
    transition: transform 900ms ease-in-out;
}

.cta-column:hover h1 {
    color: #2b2070;
    transform: translateY(3px);
}

/* ============================================
   6. TEXT CONTENT (Mobile-First)
   ============================================ */
.divider {
    display: block;
    margin: 1.5rem 0;
    height: 1px;
    background: #ccc;
}

.divider.final {
    padding: 0;
    margin-top: 0.6em;
    margin-bottom: 2.0em;
}

.info-text {
    line-height: 160%;
    text-align: left;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    animation-delay: calc(var(--index) * 0.2s);
}

h1 {
    color: var(--text);
    font-weight: 600;
    font-size: 1.5rem;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ============================================
   7. MODEL VIEWER (Mobile-First)
   ============================================ */
.mv-divider {
    margin: 1.0rem 0 2rem 0;
}
model-viewer {
    width: 100%;
    height: 1000px;
    background: transparent;
}

@media (max-width: 768px) {
    model-viewer {
        height: 600px;
    }
}

/* ============================================
   8. HOTSPOTS (Mobile-First)
   ============================================ */
.Hotspot {
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    border: 0.1rem solid #39f2ff;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
    background-color: transparent;
    box-sizing: border-box;
    pointer-events: auto;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease;
    position: relative;
    z-index: 10;
}

.Hotspot:hover {
    background-color: #ffffffa8;
}

.Hotspot.active {
    background-color: var(--qnips-transparent);
    border-color: var(--qnips-green);
    z-index: 20;
}

.HotspotAnnotation {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 8px;
    transform: translate(50px, -35px);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2.5px);
    color: rgb(0, 0, 0);
    position: absolute;
    z-index: 100;
    pointer-events: auto;
    max-width: 15rem;
    width: 15rem;
    font-size: 1rem;
    text-align: left;
    line-height: 1.4;
}


.HotspotAnnotation.left {
    align-items: flex-start;
    transform: translate(calc(-15rem - 50px), -35px);
}
.HotspotAnnotation.right-top {
    align-items: flex-start;
    transform: translate(50px, -10rem);
}

@media (max-width: 768px) {
    .HotspotAnnotation, .HotspotAnnotation.left, .HotspotAnnotation.right-top {
        transform: translate(-7.5rem, -12rem);
        font-size: 0.9rem;
    }
}

.annotation-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}
.annotation-close {
    cursor: pointer;
    background: #e0e0e0;
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: background 150ms ease, transform 150ms ease;
    flex-shrink: 0;
}

.annotation-close:hover {
    background: #d0d0d0;
    transform: scale(1.1);
}

.annotation-close:active {
    background: #b0b0b0;
    transform: scale(0.95);
}

.annotation-title {
    font-weight: 600;
    font-size: 1.2rem;
}

/* ============================================
   9. LOGO CAROUSEL (Mobile-First)
   ============================================ */
.logo-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.logo-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0.5;
    background: linear-gradient(to right,
            var(--page-bg) 0%,
            rgba(232, 231, 235, 0) 15%,
            rgba(232, 231, 235, 0) 85%,
            var(--page-bg) 100%);
}

.logo-track {
    display: flex;
    width: max-content;
    animation: loop 40s linear infinite;
    position: relative;
    z-index: 1;
}

.logo-row {
    display: flex;
    flex-shrink: 0;
    gap: 15px;
}

.logo-container {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo-container img {
    width: auto;
    height: auto;
    object-fit: contain;
    max-height: 8.0em;
    max-width: 8.0em;
}

.social-icon-container a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: auto;
     height: auto;
     color: var(--text);
     background: none;
     transition: color 0.2s, background 0.2s, transform 0.15s;
     font-size: 5rem;
     text-decoration: none;
}

.social-icon-container a:hover {
     color: var(--qnips-green);
     background: rgba(57, 242, 255, 0.08);
     transform: scale(1.12);
}

.social-icon-container i {
     font-size: 3rem;
     pointer-events: none;
}
.social-icon-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-left{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: end;
    gap: 2rem;
}
a {
    color: var(--qnips-green);
    text-decoration: none;
}
.copyright {
    text-align: left;
}

.footer-right-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 1rem;
    color: var(--text);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-right-cell {
        flex-direction: row;
        justify-content: space-between;
    }
}

h3 {
    font-size: 1rem !important;
    color: var(--text)!important;
    font-weight: 400!important;
    margin: 0 !important;
}
@keyframes loop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

