/* ========================================
   MERGED CSS FILE FOR HOME PAGE
   Contains: Global + Header + Footer + Sidebar + Home
   ======================================== */

/* ========================================
   CUSTOM FONT FACES
   ======================================== */

@font-face {
    font-family: 'Zalando Sans';
    src: url('../fonts/ZalandoSansExpanded-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Zalando Sans';
    src: url('../fonts/ZalandoSansExpanded-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 300 900;
    font-style: italic;
    font-display: swap;
}

/* ========================================
   GLOBAL DESIGN SYSTEM & CSS VARIABLES
   ======================================== */

:root {
    /* Colors - Dark Theme */
    --color-bg-primary: #0a0e27;
    --color-bg-secondary: #141834;
    --color-bg-tertiary: #1a1f3a;
    --color-bg-card: rgba(26, 31, 58, 0.5);
    --color-bg-hover: rgba(26, 31, 58, 0.7);
    
    /* Accent Colors */
    --color-accent-primary: #00d9ff;
    --color-accent-secondary: #6c5ce7;
    --color-accent-success: #00ff88;
    --color-accent-warning: #ffa500;
    --color-accent-danger: #ff3366;
    
    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0aec0;
    --color-text-muted: #718096;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d9ff 0%, #6c5ce7 100%);
    --gradient-secondary: linear-gradient(135deg, #6c5ce7 0%, #00ff88 100%);
    
    /* Shadows & Glows */
    --shadow-small: 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 3px 10px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 4px 15px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 12px rgba(0, 217, 255, 0.4);
    --glow-secondary: 0 0 12px rgba(108, 92, 231, 0.4);
    
    /* Typography - COMPACT SIZES */
    --font-family-primary: 'Zalando Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --font-size-xs: 0.65rem;      /* 10px */
    --font-size-sm: 0.75rem;      /* 12px */
    --font-size-base: 0.85rem;    /* 13.6px */
    --font-size-lg: 0.95rem;      /* 15px */
    --font-size-xl: 1.05rem;      /* 17px */
    --font-size-2xl: 1.2rem;      /* 19px */
    --font-size-3xl: 1.5rem;      /* 24px */
    --font-size-4xl: 1.9rem;      /* 30px */
    --font-size-5xl: 2.4rem;      /* 38px */
    --font-size-6xl: 2.6rem;      /* 42px */
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing - COMPACT */
    --spacing-xs: 0.25rem;    /* 4px */
    --spacing-sm: 0.4rem;     /* 6px */
    --spacing-md: 0.65rem;    /* 10px */
    --spacing-lg: 0.9rem;     /* 14px */
    --spacing-xl: 1.2rem;     /* 19px */
    --spacing-2xl: 1.6rem;    /* 26px */
    --spacing-3xl: 2.2rem;    /* 35px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.4rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.7rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.35s ease;
    
    /* Layout - COMPACT */
    --header-height: 55px;
    --footer-height: 35px;
    --sidebar-width: clamp(135px, 10vw, 170px);
    --container-max-width: 1300px;
    
    /* Z-index */
    --z-background: -1;
    --z-content: 1;
    --z-sidebar: 90;
    --z-header: 100;
    --z-modal: 1000;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* ========================================
   TYPOGRAPHY CLASSES
   ======================================== */

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--color-accent-primary);
}

/* ========================================
   BUTTON CLASSES - COMPACT
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.btn:hover::before {
    width: 220px;
    height: 220px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-small);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-primary), var(--shadow-medium);
}

.btn-outline {
    background: transparent;
    color: var(--color-accent-primary);
    border: 1.5px solid var(--color-accent-primary);
}

.btn-outline:hover {
    background: var(--color-accent-primary);
    color: var(--color-text-primary);
    box-shadow: var(--glow-primary);
}

.btn-large {
    padding: 0.65rem 1.4rem;
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
    display: flex;
}

/* ========================================
   BACKGROUND VIDEO
   ======================================== */

#backgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: var(--z-background);
    pointer-events: none;`n    opacity: 0.2;
    opacity: 0.05;
}

/* ========================================
   LEFT SIDEBAR NAVIGATION - WITH LABELS
   ======================================== */

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    z-index: var(--z-sidebar);
    padding: var(--spacing-sm);
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.sidebar-btn {
    width: 100px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(26, 31, 58, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.6rem;
}

.sidebar-btn:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--color-accent-primary);
    box-shadow: var(--glow-primary);
    transform: translateX(5px);
}

.sidebar-btn.active {
    background: rgba(0, 217, 255, 0.25);
    border-color: var(--color-accent-primary);
    box-shadow: var(--glow-primary);
    transform: translateX(8px);
}

.sidebar-btn.active::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--glow-primary);
}

.sidebar-icon {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.sidebar-label {
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1;
    transition: all var(--transition-base);
}

.sidebar-btn:hover .sidebar-label,
.sidebar-btn.active .sidebar-label {
    color: var(--color-accent-primary);
}

/* ========================================
   HEADER STYLES - TRANSPARENT WITH LOGO
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(var(--glow-primary));
}



.mobile-menu-toggle {
    display: none;
}

/* ========================================
   HERO CONTAINER - ADJUSTED FOR SIDEBAR
   ======================================== */

.hero-container {
    position: relative;
    width: calc(100% - var(--sidebar-width));
    height: calc(100vh - var(--header-height) - var(--footer-height));
    margin-top: var(--header-height);
    margin-left: var(--sidebar-width);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.hero-section,
.content-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-slow), visibility var(--transition-slow), transform var(--transition-slow);
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-20px);
}

.hero-section.active,
.content-section.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: translateX(0);
}

/* Custom Scrollbar */
.hero-section::-webkit-scrollbar,
.content-section::-webkit-scrollbar {
    width: 5px;
}

.hero-section::-webkit-scrollbar-track,
.content-section::-webkit-scrollbar-track {
    background: rgba(20, 24, 52, 0.2);
}

.hero-section::-webkit-scrollbar-thumb,
.content-section::-webkit-scrollbar-thumb {
    background: var(--color-accent-primary);
    border-radius: var(--radius-full);
}

.hero-section::-webkit-scrollbar-thumb:hover,
.content-section::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-secondary);
}

/* ========================================
   HOME/HERO SECTION - NO SCROLL
   ======================================== */

#home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    overflow-y: hidden !important;
}

.hero-content {
    max-width: 100%;
    width: 100%;
    text-align: left;
    animation: fadeInUp 0.7s ease;
    padding: 0 var(--spacing-2xl);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-extrabold);
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}

.stat-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 115px;
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--color-accent-primary);
    box-shadow: var(--glow-primary);
}

.stat-value {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    margin-top: var(--spacing-xs);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.5s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-text-secondary);
    font-size: var(--font-size-xs);
    transition: all var(--transition-base);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(0, 217, 255, 0.05);
    border-radius: var(--radius-md);
}

.feature-item:hover {
    color: var(--color-accent-primary);
    transform: translateY(-2px);
    background: rgba(0, 217, 255, 0.1);
}

.feature-icon {
    font-size: var(--font-size-lg);
}

/* ========================================
   SECTION CONTENT - FULL WIDTH WITH PADDING
   ======================================== */

.section-content {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 50px 345px var(--spacing-xl) 177px;
}

/* Typing Animation for Hero Title Words */
@keyframes fadeInWord {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Text Container - FIXED */
.typing-text {
    display: inline-block !important;
    color: #ffffff !important;
}

.typing-text span,
.typing-text .word-animated {
    display: inline-block !important;
    opacity: 1 !important;
    color: inherit !important;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    animation: fadeInUp 0.6s ease;
}

.section-subtitle {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.subsection-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xl);
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-15px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   FOOTER - MINIMAL SINGLE LINE
   ======================================== */

.footer {
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    height: var(--footer-height);
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    width: 100%;
    padding: 0 var(--spacing-xl);
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    text-align: center;
}

.footer-container p {
    margin: 0;
}

.footer-container a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    margin: 0 var(--spacing-xs);
}

.footer-container a:hover {
    color: var(--color-accent-primary);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1400px) {
    .section-content {
        padding: var(--spacing-xl) 100px;
    }
}

@media (max-width: 1200px) {
    .section-content {
        padding: var(--spacing-xl) 60px;
    }
}

@media (max-width: 1024px) {
    :root {
        --font-size-6xl: 2.3rem;
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.7rem;
    }
    
    .section-content {
        padding: var(--spacing-xl) var(--spacing-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 50px;
        --footer-height: 40px;
        --sidebar-width: 0px;
    }
    
    .sidebar-nav {
        left: -100%;
        top: var(--header-height);
        transform: translateY(0);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-lg);
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        transition: left var(--transition-base);
        z-index: 999;
        height: auto;
        max-height: calc(100vh - var(--header-height) - var(--footer-height));
        overflow-y: auto;
    }
    
    .sidebar-nav.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 3.5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: var(--spacing-sm);
        position: absolute;
        left: var(--spacing-md);
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
        background: var(--color-accent-primary);
        border-radius: var(--radius-full);
        transition: all var(--transition-base);
    }
    
    .hero-container {
        margin-left: 0;
        width: 100%;
    }
    
    .footer {
        left: 0;
        width: 100%;
    }
    
    .section-content {
        padding: var(--spacing-lg) var(--spacing-md);
    }
    
    .hero-content {
        padding: 0 var(--spacing-md);
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .stat-card {
        min-width: 100px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-6xl: 1.9rem;
        --font-size-5xl: 1.6rem;
        --font-size-4xl: 1.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .stat-card {
        min-width: 85px;
    }
    

    
    .sidebar-icon {
        font-size: 1rem;
    }
    
    .logo-img {
        width: 180px;
    }
}


/* ========================================
   HEADER CSS - FROM header.css
   ======================================== */

/* ========================================
   HEADER STYLES - TRANSPARENT WITH LOGO
   ======================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(var(--glow-primary));
}

.logo-img {
    width: 260px;
    margin-top: 30px;
    position: relative;
    height: auto;
}

.mobile-menu-toggle {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 3.5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: var(--spacing-sm);
        position: absolute;
        left: var(--spacing-md);
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 20px;
        height: 2.5px;
        background: var(--color-accent-primary);
        border-radius: var(--radius-full);
        transition: all var(--transition-base);
    }

    .logo-img {
        width: 180px;
    }
}


/* ========================================
   FOOTER CSS - FROM footer.css
   ======================================== */

/* ========================================
   FOOTER - MINIMAL SINGLE LINE
   ======================================== */

.footer {
    position: fixed;
    bottom: 0;
    left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
    height: var(--footer-height);
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    z-index: var(--z-header);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.footer-container {
    width: 100%;
    padding: 0 var(--spacing-xl);
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    text-align: center;
}

.footer-container p {
    margin: 0;
}

.footer-container a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all var(--transition-base);
    margin: 0 var(--spacing-xs);
}

.footer-container a:hover {
    color: var(--color-accent-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        left: 0;
        width: 100%;
    }
}


/* ========================================
   SIDEBAR CSS - FROM sidebar.css
   ======================================== */

/* ========================================
   LEFT SIDEBAR NAVIGATION - WITH LABELS
   ======================================== */

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    z-index: var(--z-sidebar);
    padding: var(--spacing-sm);
    background: rgba(10, 14, 39, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.sidebar-btn {
    width: 95px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(26, 31, 58, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.6rem;
}

.sidebar-btn:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: var(--color-accent-primary);
    box-shadow: var(--glow-primary);
    transform: translateX(5px);
}

.sidebar-btn.active {
    background: rgba(0, 217, 255, 0.25);
    border-color: var(--color-accent-primary);
    box-shadow: var(--glow-primary);
    transform: translateX(8px);
}

.sidebar-btn.active::after {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    box-shadow: var(--glow-primary);
}

.sidebar-icon {
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.sidebar-label {
    font-size: clamp(0.65rem, 1vw, 0.8rem);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    text-align: center;
    line-height: 1;
    transition: all var(--transition-base);
}

.sidebar-btn:hover .sidebar-label,
.sidebar-btn.active .sidebar-label {
    color: var(--color-accent-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar-nav {
        left: -100%;
        top: var(--header-height);
        transform: translateY(0);
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        padding: var(--spacing-lg);
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        transition: left var(--transition-base);
        z-index: 999;
        height: auto;
        max-height: calc(100vh - var(--header-height) - var(--footer-height));
        overflow-y: auto;
    }
    
    .sidebar-nav.active {
        left: 0;
    }

    .sidebar-btn {
    width: 100px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(26, 31, 58, 0.4);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.6rem;
}
    
    .sidebar-icon {
        font-size: 1rem;
    }
}


/* ========================================
   HOME SPECIFIC CSS
   ======================================== */

/* ========================================
   HOME/HERO SECTION - NO SCROLL
   ======================================== */

#home {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    overflow-y: hidden !important;
	padding-right: clamp(2rem, 5vw, 10rem);





}

.hero-content {
    max-width: 100%;
    width: 100%;
    text-align: center;
    animation: fadeInUp 0.7s ease;
    padding: 0 var(--spacing-2xl);
    position: relative;
    z-index: 10;
}

/* SIMPLE WHITE TITLE - NO GRADIENT */
.simple-white-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 2rem;
    text-align: left;
    position: relative;
    z-index: 1000;
    color: #ffffff;
    display: inline-block;
    min-width: auto;
    max-width: 100%;
    animation: homeRainbowColor 15s linear infinite;
}

@keyframes homeRainbowColor {
    0% { color: #00d9ff; text-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
    7% { color: #00ffaa; text-shadow: 0 0 10px rgba(0, 255, 170, 0.5); }
    14% { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    21% { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    28% { color: #00ffff; text-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    35% { color: #ff69b4; text-shadow: 0 0 10px rgba(255, 105, 180, 0.5); }
    42% { color: #ffa500; text-shadow: 0 0 10px rgba(255, 165, 0, 0.5); }
    49% { color: #7fff00; text-shadow: 0 0 10px rgba(127, 255, 0, 0.5); }
    56% { color: #6c5ce7; text-shadow: 0 0 10px rgba(108, 92, 231, 0.5); }
    63% { color: #ff00ff; text-shadow: 0 0 10px rgba(255, 0, 255, 0.5); }
    70% { color: #ff1493; text-shadow: 0 0 10px rgba(255, 20, 147, 0.5); }
    77% { color: #00d9ff; text-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
    84% { color: #ffd700; text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }
    91% { color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); }
    100% { color: #00d9ff; text-shadow: 0 0 10px rgba(0, 217, 255, 0.5); }
}

.simple-white-title::after {
    content: '|';
    color: #00d9ff;
    font-weight: 400;
    animation: cursorBlink 0.7s infinite;
    margin-left: 2px;
    display: inline-block;
}

.simple-white-title span {
    display: inline;
    white-space: pre;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes charFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes animatedTitleFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 400% center;
    }
}

/* ========================================
   ANIMATED TITLE FOR OTHER PAGES
   Rainbow Gradient Effect - Left to Right Flow
   ======================================== */

.animated-title {
    background: linear-gradient(
        90deg,
        #ff0000 0%, #ff4500 4%, #ff8c00 8%, #ffa500 12%, #ffd700 16%,
        #ffff00 20%, #adff2f 24%, #7fff00 28%, #00ff00 32%, #00ff88 36%,
        #00ffff 40%, #00d9ff 44%, #1e90ff 48%, #0000ff 52%, #4169e1 56%,
        #6c5ce7 60%, #8a2be2 64%, #9370db 68%, #ba55d3 72%, #ff00ff 76%,
        #ff1493 80%, #ff69b4 84%, #ff0080 88%, #ff0040 92%, #ff0020 96%, #ff0000 100%
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: animatedTitleFlow 20s linear infinite;
    display: inline-block;
}

@keyframes animatedTitleFlow {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 400% center;
    }
}

/* Background Image */
body::before { content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-image: url('../images/bg.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.05; z-index: -2; }

/* ========================================
   BACKGROUND LAYERS - Image and Video
   ======================================== */

/* Background Image Layer - Lowest (z-index: -2) */
.bg-image-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: -2;
    pointer-events: none;
}

/* Background Video Layer - Above Image (z-index: -1) */
.bg-video-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-video-layer video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#backgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 0.2;
}

/* ========================================
   MOBILE RESPONSIVE - TITLE FIX
   ======================================== */

@media (max-width: 1024px) {
    .simple-white-title {
        font-size: 2.2rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1.5rem;
        text-align: left;
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .simple-white-title {
        font-size: 1.6rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1.2rem;
        text-align: left;
        min-width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }
    
    .hero-content {
        padding: 0 1rem !important;
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .simple-white-title {
        font-size: 1.4rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: left;
        min-width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }
}

@media (max-width: 360px) {
    .simple-white-title {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        text-align: left;
        min-width: auto;
        max-width: 100%;
        word-wrap: break-word;
    }
}

/* ========================================
   HERO ELEMENTS - VIEWPORT RESPONSIVE
   ======================================== */

.hero-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 1rem) !important;
    max-width: clamp(500px, 60vw, 800px) !important;
    margin-bottom: clamp(1rem, 2vh, 1.5rem) !important;
}

.stat-card {
    padding: clamp(0.8rem, 1.5vw, 1.2rem) clamp(1rem, 2vw, 1.5rem) !important;
    min-width: clamp(110px, 15vw, 140px) !important;
}

.stat-value {
    font-size: clamp(1.3rem, 2.5vw, 2rem) !important;
}

.stat-label {
    font-size: clamp(0.65rem, 1vw, 0.8rem) !important;
}

.btn-large {
    padding: clamp(0.6rem, 1.2vw, 0.85rem) clamp(1.2rem, 2.5vw, 2rem) !important;
    font-size: clamp(0.8rem, 1.3vw, 1rem) !important;
}

.feature-item {
    padding: clamp(0.5rem, 0.8vw, 0.7rem) clamp(0.7rem, 1.2vw, 1rem) !important;
    font-size: clamp(0.7rem, 1vw, 0.85rem) !important;
}

.feature-icon {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem) !important;
}

.hero-stats {
    gap: clamp(0.8rem, 1.5vw, 1.5rem) !important;
    margin-bottom: clamp(1rem, 2vh, 1.8rem) !important;
}

.hero-actions {
    gap: clamp(0.8rem, 1.5vw, 1.2rem) !important;
    margin-bottom: clamp(1rem, 2vh, 1.8rem) !important;
}

.hero-features {
    gap: clamp(1rem, 2vw, 2rem) !important;
}