:root {
    /* Primary colors matching index page */
    --primary-color: #60a5fa;
    --primary-dark: #3b82f6;
    --primary-light: #93c5fd;
    --secondary-color: #a78bfa;
    --accent-color: #f472b6;

    /* Heading colors for dark theme */
    --h1-color: #60a5fa;
    --h2-color: #a78bfa;
    --h3-color: #94a3b8;

    /* Dark theme backgrounds (default) - matching index.html */
    --background-dark: #030712;
    --background-darker: #020617;
    --surface-dark: #1e293b;
    --surface-darker: #0f172a;

    /* Light theme backgrounds (for light mode toggle) */
    --background-light: #ffffff;
    --background-gray: #f8fafc;
    --surface-light: #ffffff;

    /* Text colors for dark theme (default) */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;

    /* Text colors for light theme */
    --text-primary-light: #0f172a;
    --text-secondary-light: #334155;

    /* Border colors */
    --border-dark: rgba(148, 163, 184, 0.2);
    --border-light: #e2e8f0;

    /* Glassmorphism */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(148, 163, 184, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Dark mode is now the DEFAULT - set on html to prevent white flash */
html {
    background-color: var(--background-dark);
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-dark);
    transition: color 0.3s ease, background-color 0.3s ease;
    overflow-x: hidden;
}

/* Light mode is now the TOGGLE */
body.light-mode {
    color: var(--text-primary-light);
    background-color: var(--background-gray);
}

/* Header - Dark theme by default */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* Header on scroll - enhanced sticky effect */
.header.scrolled {
    background: rgba(3, 7, 18, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.2);
    border-bottom-color: rgba(59, 130, 246, 0.3);
    height: 65px;
}

body.light-mode .header {
    background: var(--background-light);
    border-bottom-color: var(--border-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

body.light-mode .logo {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.back-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 165, 250, 0.4);
    color: white;
}

.dark-mode-toggle {
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid var(--border-dark);
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
}

.dark-mode-toggle:hover {
    background: rgba(148, 163, 184, 0.2);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.light-mode .dark-mode-toggle {
    background: none;
    border-color: var(--border-light);
    color: var(--text-secondary-light);
}

body.light-mode .dark-mode-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

.container {
    display: flex;
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    overflow-x: hidden;
}

/* Sidebar Navigation - Dark theme by default */
.sidebar {
    width: 280px;
    min-width: 280px;
    flex-shrink: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-right: 1px solid var(--border-dark);
    position: fixed;
    left: 0;
    top: 142px;
    height: calc(100vh - 142px);
    overflow-y: auto;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 900;
    box-sizing: border-box;
}

body.light-mode .sidebar {
    background: var(--surface-light);
    border-right-color: var(--border-light);
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: none;
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border-dark);
    margin-bottom: 1.5rem;
}

body.light-mode .sidebar-header {
    border-bottom-color: var(--border-light);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

body.light-mode .sidebar-title {
    background: var(--primary-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-subtitle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

body.light-mode .sidebar-subtitle {
    color: var(--text-secondary-light);
}

.nav-menu {
    list-style: none;
    padding: 0 1rem;
}

.nav-item {
    margin-bottom: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
    font-weight: 500;
}

body.light-mode .nav-link {
    color: var(--text-secondary-light);
}

.nav-link:hover {
    background: rgba(96, 165, 250, 0.15);
    color: var(--primary-light);
    transform: translateX(4px);
}

body.light-mode .nav-link:hover {
    background: var(--background-gray);
    color: var(--primary-dark);
}

.nav-link.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
}

.nav-item.has-subitems > .nav-link {
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding-right: 2.5rem;
}

body.light-mode .nav-item.has-subitems > .nav-link {
    color: var(--h2-color);
}

/* Chevron icon for collapsible items */
.nav-item.has-subitems > .nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.nav-item.has-subitems.open > .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
}

.nav-subitems {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.nav-item.has-subitems.open .nav-subitems {
    margin-bottom: 0.5rem;
    max-height: 2000px;
}

.nav-subitems .nav-link {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

/* Nested subitems (Payment Gateways within Payment API) */
.nav-subitems .nav-subitems {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    border-left: 2px solid rgba(96, 165, 250, 0.2);
}

.nav-subitems .nav-subitems .nav-link {
    display: block;
    font-size: 0.8125rem;
    padding: 0.4rem 0.75rem;
    color: var(--text-secondary);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.nav-subitems .nav-subitems .nav-link:hover {
    color: var(--primary-color);
    background: rgba(96, 165, 250, 0.08);
}

.nav-subitems .nav-subitems .nav-link.active {
    color: var(--primary-color);
    background: rgba(96, 165, 250, 0.12);
}

/* Ensure nested has-subitems work properly */
.nav-subitems .nav-item.has-subitems > .nav-link {
    font-weight: 500;
    color: var(--text-primary);
}

.nav-subitems .nav-item.has-subitems.open > .nav-link::after {
    transform: translateY(-50%) rotate(180deg);
}

.nav-subitems .nav-item.has-subitems.open .nav-subitems {
    max-height: 2000px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 85px;
    left: 1rem;
    z-index: 1001;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    width: 48px;
    height: 48px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.mobile-menu-btn i {
    font-size: 1.25rem;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 899;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
}

/* Main Content - Dark theme by default */
.main-content {
    flex: 1;
    margin-left: 280px;
    padding: 2rem;
    max-width: calc(100% - 280px);
}

.content-section {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
    border: 1px solid var(--border-dark);
    display: block;
}

body.light-mode .content-section {
    background: var(--surface-light);
    border-color: var(--border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
}

/* Heading Styles - Subtle & Modern Design */

/* H1 - Main Page Title */
.content-section h1,
.main-content h1,
h1 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 2.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(96, 165, 250, 0.2);
    position: relative;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.content-section h1::after,
.main-content h1::after,
h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

body.light-mode .content-section h1,
body.light-mode .main-content h1,
body.light-mode h1 {
    color: var(--text-primary-light);
    border-bottom-color: rgba(96, 165, 250, 0.15);
}

/* H2 - Major Section Headings */
.content-section h2,
.main-content h2,
h2 {
    color: var(--text-primary);
    font-size: 1.625rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(167, 139, 250, 0.15);
    position: relative;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.content-section h2::before,
.main-content h2::before,
h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

body.light-mode .content-section h2,
body.light-mode .main-content h2,
body.light-mode h2 {
    color: var(--text-primary-light);
    border-bottom-color: rgba(167, 139, 250, 0.12);
}

/* H3 - Subsection Headings */
.content-section h3,
.main-content h3,
h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem 0;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    line-height: 1.4;
    letter-spacing: -0.01em;
    position: relative;
}

.content-section h3::before,
.main-content h3::before,
h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 4px 0 0 4px;
}

body.light-mode .content-section h3,
body.light-mode .main-content h3,
body.light-mode h3 {
    color: var(--text-primary-light);
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.06) 0%, rgba(167, 139, 250, 0.04) 100%);
}

/* H4 - Minor Section Headings */
.content-section h4,
.main-content h4,
h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding: 0.75rem 1rem;
    background: rgba(167, 139, 250, 0.06);
    border-left: 3px solid var(--secondary-color);
    border-radius: 4px;
    line-height: 1.5;
    letter-spacing: -0.005em;
}

body.light-mode .content-section h4,
body.light-mode .main-content h4,
body.light-mode h4 {
    color: var(--text-primary-light);
    background: rgba(167, 139, 250, 0.05);
}

/* H5 - Small Headings */
.content-section h5,
.main-content h5,
h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem 0;
    padding: 0.625rem 0.875rem;
    background: rgba(148, 163, 184, 0.08);
    border-left: 3px solid var(--text-tertiary);
    border-radius: 4px;
    line-height: 1.5;
}

body.light-mode .content-section h5,
body.light-mode .main-content h5,
body.light-mode h5 {
    color: var(--text-primary-light);
    background: rgba(100, 116, 139, 0.06);
}

/* H6 - Smallest Headings */
.content-section h6,
.main-content h6,
h6 {
    color: var(--text-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem 0;
    padding: 0.5rem 0.75rem;
    background: rgba(148, 163, 184, 0.05);
    border-left: 2px solid rgba(148, 163, 184, 0.4);
    border-radius: 3px;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
}

body.light-mode .content-section h6,
body.light-mode .main-content h6,
body.light-mode h6 {
    color: var(--text-primary-light);
    background: rgba(100, 116, 139, 0.04);
}

/* H7 - Extra Small (Non-standard but used in some places) */
.content-section h7,
.main-content h7,
h7 {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    padding: 0.5rem 0.75rem;
    background: rgba(148, 163, 184, 0.04);
    border-left: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 3px;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.light-mode .content-section h7,
body.light-mode .main-content h7,
body.light-mode h7 {
    color: var(--text-secondary-light);
    background: rgba(100, 116, 139, 0.03);
}

/* Remove copy icons from all headings */
.content-section h1 .copy-icon,
.content-section h2 .copy-icon,
.content-section h3 .copy-icon,
.content-section h4 .copy-icon,
.content-section h5 .copy-icon,
.content-section h6 .copy-icon,
.content-section h7 .copy-icon,
.main-content h1 .copy-icon,
.main-content h2 .copy-icon,
.main-content h3 .copy-icon,
.main-content h4 .copy-icon,
.main-content h5 .copy-icon,
.main-content h6 .copy-icon,
.main-content h7 .copy-icon,
h1 .copy-icon,
h2 .copy-icon,
h3 .copy-icon,
h4 .copy-icon,
h5 .copy-icon,
h6 .copy-icon,
h7 .copy-icon {
    display: none !important;
}

/* Heading Spacing - Better Separation */
.content-section h1 + p,
.content-section h1 + div,
.main-content h1 + p,
.main-content h1 + div {
    margin-top: 0;
}

.content-section h2 + p,
.content-section h2 + div,
.main-content h2 + p,
.main-content h2 + div {
    margin-top: 0.5rem;
}

.content-section h3 + p,
.content-section h3 + div,
.main-content h3 + p,
.main-content h3 + div {
    margin-top: 0.5rem;
}

/* No-number class for headings without numbering */
.no-number {
    counter-reset: none;
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

body.light-mode .content-section p {
    color: var(--text-secondary-light);
}

.content-section ul, .content-section ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

body.light-mode .content-section li {
    color: var(--text-secondary-light);
}

.content-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

body.light-mode .content-section strong {
    color: var(--text-primary-light);
}

.content-section code {
    background: rgba(96, 165, 250, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: var(--primary-light);
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

body.light-mode .content-section code {
    background: var(--background-gray);
    color: var(--primary-dark);
    border-color: var(--border-light);
}

.content-section pre {
    background: rgba(15, 23, 42, 0.5);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid var(--border-dark);
}

body.light-mode .content-section pre {
    background: var(--background-gray);
    border-color: var(--border-light);
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.content-section a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

body.light-mode .content-section a:hover {
    color: var(--primary-dark);
}

.content-section q {
    font-style: italic;
    color: var(--text-secondary);
}

body.light-mode .content-section q {
    color: var(--text-secondary-light);
}

.content-section img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 0.5rem;
    border: 1px solid var(--border-dark);
}

body.light-mode .content-section img {
    border-color: var(--border-light);
}

.content-section small {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

body.light-mode .content-section small {
    color: var(--text-secondary-light);
}

.highlight {
    background: rgba(96, 165, 250, 0.15);
    padding: 0.1rem 0.3rem;
    border-radius: 0.25rem;
}

/* ========================================
   FUTURISTIC FOOTER STYLING
   ======================================== */
/* These generic footer styles are commented out to avoid conflicts with .site-footer in common-nav.css */

/*
footer {
    text-align: left;
    padding: 4rem 0 2rem;
    color: var(--text-primary);
    background: var(--section-bg);
    border-top: 2px solid var(--glass-border);
    box-shadow: 0 -4px 20px rgba(0, 212, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--neon-cyan),
        var(--neon-purple),
        transparent
    );
    box-shadow: 0 0 20px var(--neon-cyan);
}

footer h5 {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

footer ul {
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-cyan);
    transition: width 0.3s ease;
}

footer a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

footer a:hover::after {
    width: 100%;
}
*/

.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 0;
    color: var(--text-secondary);
}

.footer .text-footer-light {
    color: var(--text-secondary);
}

.footer a {
    color: var(--text-secondary);
    margin: 0 1rem;
}

.footer a:hover {
    color: var(--neon-cyan);
}

.footer img {
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.footer img:hover {
    filter: brightness(1);
}

.dcslogo {
    max-width: 150px;
    height: auto;
}

.text-footer-light {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-list h5 {
    color: var(--neon-cyan);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-list ul li {
    margin-bottom: 0.5rem;
}

/* Payment Gateway Sections - Simpler Accordion Design */
.payment-gateway-section {
    margin: 1.5rem 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.payment-gateway-section:first-of-type {
    border-top: 2px solid rgba(96, 165, 250, 0.3);
    margin-top: 2rem;
}

.gateway-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: all 0.2s ease;
    user-select: none;
}

.gateway-toggle:hover .gateway-name {
    color: var(--primary-color);
}

.gateway-toggle:hover .toggle-icon {
    color: var(--primary-color);
}

.gateway-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
}

.gateway-icon {
    font-size: 1.125rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.gateway-name {
    color: var(--text-primary);
    transition: color 0.2s ease;
}

.toggle-icon {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    transition: all 0.2s ease;
}

.gateway-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.gateway-toggle.expanded .gateway-name {
    color: var(--primary-color);
}

.gateway-content {
    display: none;
    padding: 0;
    background: transparent;
}

.gateway-content.expanded {
    display: block;
    padding: 1rem 0 2rem 0;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gateway-content > *:first-child {
    margin-top: 0;
}

.gateway-content > *:last-child {
    margin-bottom: 0;
}

/* Light mode for payment gateways */
body.light-mode .payment-gateway-section {
    border-top-color: rgba(100, 116, 139, 0.15);
}

body.light-mode .payment-gateway-section:first-of-type {
    border-top-color: rgba(96, 165, 250, 0.3);
}

body.light-mode .gateway-title,
body.light-mode .gateway-name {
    color: var(--text-primary-light);
}

body.light-mode .gateway-toggle:hover .gateway-name {
    color: var(--primary-color);
}

/* ============================================
   TRAVELER DATA TABS & ACCORDION SYSTEM
   ============================================ */

/* Tab Container */
.traveler-tabs-container {
    margin: 2rem 0;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
}

/* Tab Navigation */
.traveler-tabs-nav {
    display: flex;
    background: rgba(30, 41, 59, 0.6);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding: 0;
    gap: 0;
}

.traveler-tab-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.traveler-tab-btn:hover {
    background: rgba(96, 165, 250, 0.08);
    color: var(--text-primary);
}

.traveler-tab-btn.active {
    background: rgba(96, 165, 250, 0.12);
    color: var(--primary-color);
}

.traveler-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.traveler-tab-btn i {
    font-size: 1rem;
}

/* Tab Content Panels */
.traveler-tab-content {
    display: none;
    padding: 1.5rem;
}

.traveler-tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Accordion Items */
.traveler-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.traveler-accordion-item {
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.4);
    transition: all 0.3s ease;
}

.traveler-accordion-item:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.traveler-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.traveler-accordion-header:hover {
    background: rgba(96, 165, 250, 0.05);
}

.traveler-accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.traveler-accordion-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
}

.traveler-accordion-icon.id-docs {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.traveler-accordion-icon.personal-id {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.traveler-accordion-icon.birthdate {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.traveler-accordion-icon.contact {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.traveler-accordion-icon.loyalty {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.traveler-accordion-text h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.traveler-accordion-text p {
    margin: 0.25rem 0 0 0;
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.traveler-accordion-chevron {
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

.traveler-accordion-item.expanded .traveler-accordion-chevron {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.traveler-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.traveler-accordion-item.expanded .traveler-accordion-content {
    max-height: 2000px;
}

.traveler-accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

/* Service Badges in Accordion */
.service-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    flex-wrap: wrap;
}

.service-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.service-badge.flights {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.service-badge.hotels {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.service-badge.activities {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.service-badge i {
    font-size: 0.7rem;
}

/* Data Cards inside Accordion */
.traveler-data-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.traveler-data-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: 10px;
    padding: 1rem;
}

.traveler-data-card h6 {
    margin: 0 0 0.75rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.traveler-data-card h6 i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Config Check Display */
.config-check {
    background: rgba(30, 41, 59, 0.6);
    border-left: 3px solid var(--primary-color);
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.config-check code {
    color: var(--secondary-color);
    font-size: 0.8125rem;
}

/* Parameter List in Cards */
.param-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.param-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.1);
    font-size: 0.8125rem;
}

.param-list li:last-child {
    border-bottom: none;
}

.param-name {
    color: var(--text-secondary);
}

.param-code {
    color: var(--secondary-color);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
}

/* Quick Reference Box */
.quick-reference {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.quick-reference h6 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Age Table Styling */
.age-table {
    width: 100%;
    margin-top: 1rem;
}

.age-table th {
    background: rgba(96, 165, 250, 0.1);
    padding: 0.75rem;
    font-weight: 600;
    text-align: left;
    font-size: 0.8125rem;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.age-table td {
    padding: 0.75rem;
    font-size: 0.8125rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    color: var(--text-secondary);
}

.age-table tr:last-child td {
    border-bottom: none;
}

.age-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.age-badge.adult {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.age-badge.child {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.age-badge.infant {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* Light Mode Adjustments */
body.light-mode .traveler-tabs-container {
    background: #ffffff;
    border-color: var(--border-light);
}

body.light-mode .traveler-tabs-nav {
    background: #f8fafc;
}

body.light-mode .traveler-tab-btn {
    color: var(--text-secondary-light);
}

body.light-mode .traveler-tab-btn.active {
    color: var(--primary-color);
    background: rgba(96, 165, 250, 0.08);
}

body.light-mode .traveler-accordion-item {
    background: #ffffff;
    border-color: var(--border-light);
}

body.light-mode .traveler-accordion-text h5 {
    color: var(--text-primary-light);
}

body.light-mode .traveler-data-card {
    background: #f8fafc;
    border-color: var(--border-light);
}

body.light-mode .traveler-data-card h6 {
    color: var(--text-primary-light);
}

body.light-mode .config-check {
    background: #f1f5f9;
}

/* Responsive */
@media (max-width: 768px) {
    .traveler-tabs-nav {
        flex-direction: column;
    }

    .traveler-tab-btn {
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }

    .traveler-tab-btn.active::after {
        width: 3px;
        height: 100%;
        right: 0;
        left: auto;
        top: 0;
        bottom: auto;
    }

    .traveler-data-cards {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sidebar {
        width: 250px;
    }

    .main-content {
        margin-left: 250px;
        max-width: calc(100% - 250px);
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .mobile-overlay {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .container {
        padding: 90px 1rem 1rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h1,
    .main-content h1,
    h1 {
        font-size: 1.625rem;
        margin-bottom: 2rem;
    }

    .content-section h2,
    .main-content h2,
    h2 {
        font-size: 1.375rem;
        margin-top: 2.5rem;
    }

    .content-section h3,
    .main-content h3,
    h3 {
        font-size: 1.125rem;
        margin-top: 2rem;
        padding: 0.75rem 1rem;
    }

    .content-section h4,
    .main-content h4,
    h4 {
        font-size: 1rem;
        padding: 0.625rem 0.875rem;
    }

    .content-section h5,
    .main-content h5,
    h5 {
        font-size: 0.9375rem;
        padding: 0.5rem 0.75rem;
    }

    .content-section h6,
    .main-content h6,
    h6 {
        font-size: 0.875rem;
        padding: 0.5rem 0.625rem;
    }

    .header {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .back-btn span {
        display: none;
    }

    .back-btn {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1rem 0.75rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .content-section h1,
    .main-content h1,
    h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .content-section h1::after,
    .main-content h1::after,
    h1::after {
        width: 60px;
    }

    .content-section h2,
    .main-content h2,
    h2 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }

    .content-section h2::before,
    .main-content h2::before,
    h2::before {
        width: 45px;
    }

    .content-section h3,
    .main-content h3,
    h3 {
        font-size: 1.0625rem;
        padding: 0.625rem 0.875rem;
        border-left-width: 3px;
    }

    .content-section h3::before,
    .main-content h3::before,
    h3::before {
        width: 3px;
    }

    .content-section h4,
    .main-content h4,
    h4 {
        padding: 0.5rem 0.75rem;
        border-left-width: 2px;
    }

    .content-section h5,
    .main-content h5,
    h5 {
        padding: 0.5rem 0.625rem;
    }

    .content-section h6,
    .main-content h6,
    h6 {
        padding: 0.375rem 0.5rem;
    }
}

/* Table Styles */
.parameters-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

/* Table Section Headings - Override global styles */
.parameters-table h4,
.parameters-table h5,
.parameters-table h6 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    border: none !important;
    padding: 0 !important;
    background: none !important;
}

body.light-mode .parameters-table h4,
body.light-mode .parameters-table h5,
body.light-mode .parameters-table h6 {
    color: var(--primary-dark);
}

.parameters-table h4::before,
.parameters-table h5::before,
.parameters-table h6::before {
    display: none !important;
}

.parameters-table h4 {
    margin-top: 2rem;
}

.parameters-table h5 {
    margin-top: 1.5rem;
}

.parameters-table h6 {
    margin-top: 1.25rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

thead {
    background: rgba(96, 165, 250, 0.1);
    border-bottom: 2px solid rgba(96, 165, 250, 0.3);
}

thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

tbody tr {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    transition: background-color 0.2s ease;
}

tbody tr:hover {
    background: rgba(96, 165, 250, 0.05);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody td {
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    vertical-align: top;
}

tbody td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

tbody td code {
    background: rgba(96, 165, 250, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

/* Light mode table styles */
.light-mode table {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.light-mode thead {
    background: rgba(96, 165, 250, 0.1);
}

.light-mode thead th {
    color: #2563eb;
}

.light-mode tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.light-mode tbody tr:hover {
    background: rgba(96, 165, 250, 0.05);
}

.light-mode tbody td code {
    background: rgba(96, 165, 250, 0.1);
    color: #2563eb;
}

/* Responsive table */
@media (max-width: 768px) {
    .parameters-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    table {
        min-width: 600px;
    }
}

/* Search Container */
.search-container {
    position: relative;
    margin-right: 1rem;
}

.search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 0.875rem;
    width: 250px;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.search-input::placeholder {
    color: var(--text-tertiary);
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Copy URL Button - Hidden by default, shown on heading hover */
.copy-url-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.2s ease, color 0.2s ease;
    z-index: 10;
}

h1:hover .copy-url-btn,
h2:hover .copy-url-btn,
h3:hover .copy-url-btn,
h4:hover .copy-url-btn,
h5:hover .copy-url-btn {
    opacity: 1;
}

.copy-url-btn:hover {
    color: var(--primary-color);
}

.copy-url-btn.copied {
    color: #10b981;
}

.copy-url-btn i {
    pointer-events: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.search-result-item:hover {
    background: rgba(96, 165, 250, 0.1);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.search-result-context {
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

.search-no-results {
    padding: 1rem;
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

/* Light mode search styles */
.light-mode .search-input {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

.light-mode .search-results {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-mode .search-result-item {
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

.light-mode .search-result-item:hover {
    background: rgba(96, 165, 250, 0.1);
}

/* Code Example Expand/Collapse */
.code-example {
    position: relative;
    margin: 1.5rem 0;
}

/* Code Header Styling */
.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(96, 165, 250, 0.1);
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
}

.code-header span {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.light-mode .code-header {
    background: rgba(96, 165, 250, 0.08);
    border-bottom-color: rgba(96, 165, 250, 0.15);
}

body.light-mode .code-header span {
    color: var(--primary-dark);
}

.code-header + pre {
    margin-top: 0;
    border-radius: 0 0 8px 8px;
}

/* Copy Button Styling */
.copy-btn {
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: rgba(96, 165, 250, 0.25);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn i {
    color: var(--primary-color);
    font-size: 1rem;
}

body.light-mode .copy-btn {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
    color: var(--primary-dark);
}

body.light-mode .copy-btn:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: var(--primary-dark);
}

body.light-mode .copy-btn i {
    color: var(--primary-dark);
}

/* Collapsed state for code examples with .code-content wrapper */
.code-example.collapsed .code-content {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.code-example.collapsed .code-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.95));
    pointer-events: none;
}

/* Collapsed state for code examples with direct pre element */
.code-example.collapsed pre {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.code-example.collapsed pre::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.95));
    pointer-events: none;
}

.code-toggle-btn {
    padding: 0.4rem 0.75rem;
    background: transparent;
    border: none;
    border-top: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 0;
    color: rgba(96, 165, 250, 0.7);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 400;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Top button - always show */
.code-toggle-btn-top {
    display: block;
    margin: 0;
    border-top: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.15);
}

/* Bottom button - only show when expanded */
.code-toggle-btn-bottom {
    display: none;
    margin: 0;
}

.code-example:not(.collapsed) .code-toggle-btn-bottom {
    display: block;
}

.code-toggle-btn:hover {
    background: rgba(96, 165, 250, 0.08);
    color: var(--primary-color);
    border-color: rgba(96, 165, 250, 0.3);
}

.code-toggle-btn i {
    margin-right: 0.4rem;
    font-size: 0.75rem;
    transition: transform 0.2s ease;
}

/* Light mode code toggle */
.light-mode .code-example.collapsed .code-content::after {
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
}

.light-mode .code-example.collapsed pre::after {
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.95));
}

.light-mode .code-toggle-btn {
    background: transparent;
    border-color: rgba(96, 165, 250, 0.2);
    color: rgba(37, 99, 235, 0.7);
}

.light-mode .code-toggle-btn:hover {
    background: rgba(96, 165, 250, 0.1);
    color: #2563eb;
    border-color: rgba(96, 165, 250, 0.4);
}

@media (max-width: 768px) {
    .search-input {
        width: 200px;
    }
}

/* Info Box Styles - Type-Based Design */
.info-box {
    position: relative;
    margin: 1.5rem 0;
    padding: 1.5rem;
    padding-left: 4rem;
    border-radius: 12px;
    border-left: 4px solid;
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Info Box Icon Container */
.info-box::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 1.5rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
}

/* Default Info Box (Blue) */
.info-box {
    border-left-color: #60a5fa;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.info-box::before {
    content: '\f05a';
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.4);
}

/* Warning Info Box (Orange/Amber) */
.info-box.warning {
    border-left-color: #fb923c;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.info-box.warning::before {
    content: '\f071';
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.4);
}

/* Success Info Box (Green) */
.info-box.success {
    border-left-color: #4ade80;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.info-box.success::before {
    content: '\f058';
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.4);
}

/* Info Type Info Box (Cyan) */
.info-box.info {
    border-left-color: #22d3ee;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.info-box.info::before {
    content: '\f129';
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

/* Error/Danger Info Box (Red) */
.info-box.error,
.info-box.danger {
    border-left-color: #f87171;
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.1) 0%, rgba(30, 41, 59, 0.5) 100%);
}

.info-box.error::before,
.info-box.danger::before {
    content: '\f06a';
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(248, 113, 113, 0.4);
}

/* Info Box Content */
.info-box-content {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Info Box Headings - Override global styles for better integration */
.info-box-content h4,
.info-box-content h5,
.info-box-content h6,
.info-box-content h7 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 600;
    border: none !important;
    padding: 0 !important;
    letter-spacing: normal;
    background: none !important;
}

.info-box-content h4::before,
.info-box-content h5::before,
.info-box-content h6::before,
.info-box-content h7::before {
    display: none !important;
}

.info-box-content h4 {
    font-size: 1.0625rem;
}

.info-box-content h5 {
    font-size: 1rem;
}

.info-box-content h6,
.info-box-content h7 {
    font-size: 0.9375rem;
    text-transform: none;
}

.info-box-content p {
    margin: 0.5rem 0;
}

.info-box-content p:last-child {
    margin-bottom: 0;
}

.info-box-content ul,
.info-box-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.info-box-content li {
    margin: 0.25rem 0;
}

.info-box-content code {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: var(--primary-color);
}

.info-box-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Light Mode Info Boxes */
.light-mode .info-box {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.light-mode .info-box:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.light-mode .info-box {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.light-mode .info-box.warning {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.08) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.light-mode .info-box.success {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.08) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.light-mode .info-box.info {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.light-mode .info-box.error,
.light-mode .info-box.danger {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.08) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.light-mode .info-box-content code {
    background: rgba(0, 0, 0, 0.05);
}

/* Responsive Info Boxes */
@media (max-width: 768px) {
    .info-box {
        padding: 1.25rem;
        padding-left: 3.5rem;
    }

    .info-box::before {
        left: 1rem;
        top: 1.25rem;
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.9rem;
        line-height: 1.75rem;
    }

    /* Responsive Payment Gateways */
    .gateway-toggle {
        padding: 0.875rem 0;
    }

    .gateway-title {
        font-size: 1rem;
        gap: 0.625rem;
    }

    .gateway-icon {
        font-size: 1rem;
    }

    .gateway-content.expanded {
        padding: 0.75rem 0 1.5rem 0;
    }
}

/* ============================================
   LANDING PAGE STYLES (index.html)
   ============================================ */

/* Landing page base reset */
.landing-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.landing-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f172a;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.landing-page .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.landing-page .text-center {
    text-align: center;
}

/* Animated background */
.landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(168, 85, 247, 0.2) 0%, transparent 50%);
    animation: backgroundShift 15s ease infinite;
    z-index: 0;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.page-wrapper {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

/* Modern Header */
.header-section {
    text-align: center;
    padding: 2rem 2rem 1.5rem 2rem;
    color: white;
}

.header-section .logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInDown 0.8s ease;
}

.header-section .logo i {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
}

.header-section .tagline {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Section */
.cards-section {
    padding: 1rem 2rem 3rem 2rem;
    text-align: center;
}

.cards-section .title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cards-section .intro {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.cards-section .intro p {
    margin: 0;
}

.cards-section .intro strong {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.item {
    position: relative;
    animation: fadeInUp 0.6s ease both;
}

.item:nth-child(1) { animation-delay: 0.1s; }
.item:nth-child(2) { animation-delay: 0.2s; }
.item:nth-child(3) { animation-delay: 0.3s; }
.item:nth-child(4) { animation-delay: 0.4s; }
.item:nth-child(5) { animation-delay: 0.5s; }
.item:nth-child(6) { animation-delay: 0.6s; }
.item:nth-child(7) { animation-delay: 0.7s; }
.item:nth-child(8) { animation-delay: 0.8s; }
.item:nth-child(9) { animation-delay: 0.9s; }
.item:nth-child(10) { animation-delay: 1s; }

.item-inner {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.item-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.item-inner:hover::before {
    opacity: 1;
}

.item-inner:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(148, 163, 184, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(96, 165, 250, 0.2);
}

/* Callout blocks */
.callout-block {
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid;
    border-radius: 0.5rem;
    display: flex;
    gap: 1.5rem;
    background: rgba(30, 41, 59, 0.4);
}

.callout-block .icon-holder {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0;
}

.callout-block .content {
    flex: 1;
}

.callout-block .callout-title {
    margin: 0 0 0.75rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #f1f5f9;
}

.callout-block p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.callout-block p:not(:last-child) {
    margin-bottom: 0.75rem;
}

/* Callout variants */
.callout-danger {
    border-left-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.callout-danger .icon-holder {
    background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
    color: white;
}

.callout-success {
    border-left-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.callout-success .icon-holder {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    color: white;
}

.callout-info {
    border-left-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.callout-info .icon-holder {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
}

.callout-warning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.callout-warning .icon-holder {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

/* Feature cards icon holder */
.item .icon-holder {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem auto;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-inner:hover .icon-holder {
    transform: scale(1.1) rotate(-5deg);
}

.icon-holder i {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Modern gradient icons */
.item-green .icon-holder {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}
.item-pink .icon-holder {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}
.item-blue .icon-holder {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
.item-darkGreen .icon-holder {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.4);
}
.item-orange .icon-holder {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.item-purple .icon-holder {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}
.item-primary .icon-holder {
    background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.icon-holder i {
    color: white;
}

.item .title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.item-inner:hover .title {
    color: #ffffff;
}

.item .intro {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.item-inner:hover .intro {
    color: #cbd5e1;
}

.item .link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Landing Page Footer */
.landing-page .footer {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    padding: 1.5rem 2rem;
    color: white;
    position: relative;
    z-index: 1;
    text-align: center;
}

.landing-page .footer .copyright {
    color: #cbd5e1;
    font-size: 0.875rem;
    margin: 0;
}

.landing-page .footer .copyright a {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.landing-page .footer .copyright a:hover {
    color: #93c5fd;
}

/* Landing Page Responsive Design */
@media (max-width: 1024px) {
    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   RESPONSIVE DESIGN - DEVELOPER PRESENTATION
   ============================================ */

@media (max-width: 1024px) {
    .index-page .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .index-page .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .index-page .cards-section {
        padding: 6rem 2rem;
    }
}

@media (max-width: 768px) {
    .index-page .page-content {
        padding: 0;
    }

    .index-page .header-section {
        min-height: 100vh;
        padding: 100px 1.5rem 4rem;
    }

    .index-page .header-section .logo {
        font-size: 1rem;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .index-page .header-section .logo i {
        font-size: 1.25rem;
    }

    .index-page .header-section .main-heading {
        font-size: 2.5rem;
    }

    .index-page .header-section .tagline {
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
    }

    .index-page .header-section .intro-text {
        font-size: 1.125rem;
    }

    .index-page .hero-actions,
    .index-page .cta-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .index-page .hero-actions .btn-signup,
    .index-page .hero-actions .nav-link-item,
    .index-page .cta-actions .btn-signup,
    .index-page .cta-actions .nav-link-item {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .index-page .cards-section {
        padding: 5rem 1.5rem;
    }

    .index-page .section-title {
        font-size: 2rem;
    }

    .index-page .section-intro {
        font-size: 1.125rem;
    }

    .index-page .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .index-page .card-item {
        padding: 2rem 1.5rem;
    }

    .index-page .card-item .icon-holder {
        width: 48px;
        height: 48px;
    }

    .index-page .card-item .icon-holder i {
        font-size: 1.25rem;
    }

    .index-page .card-item .year-badge {
        font-size: 0.8125rem;
        padding: 0.3rem 0.75rem;
    }

    .index-page .card-item .card-title {
        font-size: 1.25rem;
    }

    .index-page .card-item .card-desc {
        font-size: 0.9375rem;
    }

    .index-page .info-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .index-page .info-card .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin: 0 auto;
    }

    .index-page .info-card .info-content {
        text-align: center;
    }

    .index-page .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .index-page .stat-card {
        padding: 2rem 1.5rem;
    }

    .index-page .stat-card .stat-value {
        font-size: 2.5rem;
    }

    .index-page .stat-card .stat-label {
        font-size: 0.9rem;
    }

    /* Disable 3D effects on mobile for better performance */
    .index-page .card-item:hover {
        transform: translateY(-5px) !important;
    }
}

@media (max-width: 480px) {
    .index-page .header-section {
        min-height: 65vh;
        padding: 3rem 1rem;
    }

    .index-page .header-section .logo {
        font-size: 2.5rem;
        gap: 0.75rem;
    }

    .index-page .header-section .logo i {
        font-size: 2.5rem;
    }

    .index-page .header-section .logo span {
        font-size: 2.5rem;
    }

    .index-page .header-section .main-heading {
        font-size: 2rem;
    }

    .index-page .header-section .tagline {
        font-size: 1rem;
        padding: 0.5rem 1.25rem;
    }

    .index-page .header-section .intro-text {
        font-size: 1rem;
    }

    .index-page .section-title {
        font-size: 2rem;
    }

    .index-page .section-intro {
        font-size: 1.125rem;
    }

    .index-page .card-item {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }

    .index-page .card-item .icon-holder {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .index-page .card-item .card-title {
        font-size: 1.375rem;
    }

    .index-page .stat-card .stat-value {
        font-size: 2.25rem;
    }
}

/* Legacy responsive styles */
@media (max-width: 768px) {
    .cards-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .header-section .logo {
        font-size: 2.5rem;
        gap: 1rem;
    }

    .header-section .tagline {
        font-size: 1rem;
    }

    .cards-section .title {
        font-size: 2rem;
    }

    .cards-section .intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .item-inner {
        padding: 2rem 1.5rem;
    }

    .item .icon-holder {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .callout-block {
        flex-direction: column;
        gap: 1rem;
        padding: 1.25rem;
    }

    .callout-block .icon-holder {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.25rem;
    }
}

/* Changelog Styles */
.changelog-container {
    margin-top: 2rem;
}

.changelog-entry {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.4) 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.changelog-entry:hover {
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.1);
    transform: translateY(-2px);
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.changelog-version {
    font-size: 1.1rem;
    font-weight: 600;
    color: #60a5fa;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.changelog-date {
    font-size: 0.9rem;
    color: #94a3b8;
    font-family: 'Courier New', monospace;
}

.changelog-content h3 {
    color: inherit;
    font-size: inherit;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
    font-weight: 700;
}

.changelog-content h3:first-child {
    margin-top: 0;
}

.changelog-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.changelog-content ul li {
    padding: 0.4rem 0;
    color: #cbd5e1;
    line-height: 1.6;
}

.changelog-content ul li .badge {
    margin-right: 0.5rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-updated {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.badge-fixed {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge-deprecated {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.badge-removed {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

/* Step Subsection Styles */
.step-subsection {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(15, 23, 42, 0.3) 100%);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.section-breadcrumb {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #60a5fa;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.15) 0%, rgba(167, 139, 250, 0.15) 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 6px;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

/* Responsive changelog */
@media (max-width: 768px) {
    .changelog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .changelog-entry {
        padding: 1rem;
    }

    .changelog-content ul li {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* API Endpoint Styles */
.endpoint {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.endpoint .method {
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    flex-shrink: 0;
    border: 1px solid;
}

.endpoint .method.get {
    background: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}

.endpoint .method.post {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.endpoint .method.put {
    background: #fef3c7;
    color: #d97706;
    border-color: #fde68a;
}

.endpoint .method.patch {
    background: #f3e8ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}

.endpoint .method.delete {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

.endpoint .url {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

/* Inline Endpoint Styles (for endpoints within text) */
.endpoint-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0.25rem;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    vertical-align: middle;
}

.endpoint-inline .method {
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    flex-shrink: 0;
    border: 1px solid;
}

.endpoint-inline .method.get {
    background: #ecfdf5;
    color: #059669;
    border-color: #a7f3d0;
}

.endpoint-inline .method.post {
    background: #eff6ff;
    color: #2563eb;
    border-color: #bfdbfe;
}

.endpoint-inline .method.put {
    background: #fef3c7;
    color: #d97706;
    border-color: #fde68a;
}

.endpoint-inline .method.patch {
    background: #f3e8ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}

.endpoint-inline .method.delete {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
}

.endpoint-inline .url {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
}

.endpoint-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-left: 0.5rem;
    font-style: italic;
}

/* Dark mode adjustments for endpoints */
body.dark-mode .endpoint .method.get,
body.dark-mode .endpoint-inline .method.get {
    background: #064e3b;
    color: #6ee7b7;
    border-color: #065f46;
}

body.dark-mode .endpoint .method.post,
body.dark-mode .endpoint-inline .method.post {
    background: #1e3a8a;
    color: #93c5fd;
    border-color: #1e40af;
}

body.dark-mode .endpoint .method.put,
body.dark-mode .endpoint-inline .method.put {
    background: #78350f;
    color: #fcd34d;
    border-color: #92400e;
}

body.dark-mode .endpoint .method.patch,
body.dark-mode .endpoint-inline .method.patch {
    background: #4c1d95;
    color: #c4b5fd;
    border-color: #5b21b6;
}

body.dark-mode .endpoint .method.delete,
body.dark-mode .endpoint-inline .method.delete {
    background: #7f1d1d;
    color: #fca5a5;
    border-color: #991b1b;
}

/* Responsive endpoint styles */
@media (max-width: 768px) {
    .endpoint,
    .endpoint-inline {
        flex-wrap: wrap;
    }

    .endpoint .url,
    .endpoint-inline .url {
        font-size: 0.85rem;
        word-break: break-all;
    }
}

/* ========================================
   FILE AND FOLDER ICONS
   ======================================== */

/* Folder icon styling */
li.folder::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f07b";
    margin-right: 0.5rem;
    color: #60a5fa;
}

/* File icon styling */
li.file::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    content: "\f15b";
    margin-right: 0.5rem;
    color: #94a3b8;
}

/* ========================================
   INDEX PAGE STYLES (from extra folder)
   ======================================== */

/* ========================================
   FUTURISTIC INDEX PAGE DESIGN SYSTEM
   ======================================== */

/* Index page specific variables - Light Mode (Default) */
:root {
    /* Brand Colors - Futuristic Palette */
    --text-brand: #00d4ff;
    --text-brand-secondary: #7b2ff7;
    --text-brand-accent: #ff006e;
    --neon-cyan: #00f0ff;
    --neon-purple: #a855f7;
    --neon-pink: #ff0080;
    --neon-green: #00ff88;
    --neon-blue: #0066ff;

    /* Backgrounds */
    --primary-bg: #0a0e27;
    --secondary-bg: #151932;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.08);
    --section-bg: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1429 100%);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 100%);
    --gradient-secondary: linear-gradient(135deg, #ff006e 0%, #ff0080 100%);
    --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00d4ff 100%);
    --gradient-glow: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);

    /* Glass morphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Navigation */
    --section-heading-bg: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --section-heading-bg-hover: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(123, 47, 247, 0.2) 100%);
    --navShadow-bg: rgba(10, 14, 39, 0.95);
    --bg-menu-mobile: rgba(10, 14, 39, 0.98);

    /* Section Elements */
    --section-head: #00d4ff;
    --section-footer-bg: #0a0e27;
    --bg-offwhite: #f8f9fa;

    /* Effects */
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);
    --glow-purple: 0 0 20px rgba(123, 47, 247, 0.5), 0 0 40px rgba(123, 47, 247, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);

    /* Aura Effects */
    --bs-home: rgba(0, 212, 255, 0.15);
    --aura-glow: radial-gradient(circle, rgba(0, 212, 255, 0.3), rgba(123, 47, 247, 0.2), transparent);

    /* Borders */
    --border-glow: 1px solid rgba(0, 212, 255, 0.3);
    --border-glow-hover: 1px solid rgba(0, 212, 255, 0.6);
}

/* Dark theme overrides for index page */
body.light-mode {
    /* Inverted for dark mode */
    --primary-bg: #ffffff;
    --secondary-bg: #f8f9fa;
    --card-bg: rgba(0, 0, 0, 0.03);
    --card-bg-hover: rgba(0, 0, 0, 0.08);
    --section-bg: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #fafafa 100%);

    --text-brand: #0066ff;
    --text-brand-secondary: #6b21a8;
    --neon-cyan: #0099ff;
    --neon-purple: #8b5cf6;

    --glass-bg: rgba(0, 0, 0, 0.05);
    --glass-border: rgba(0, 0, 0, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);

    --navShadow-bg: rgba(255, 255, 255, 0.95);
    --bg-menu-mobile: rgba(255, 255, 255, 0.98);
    --section-head: #0066ff;
    --section-footer-bg: #f8f9fa;

    --bs-home: rgba(0, 102, 255, 0.1);
    --aura-glow: radial-gradient(circle, rgba(0, 102, 255, 0.2), rgba(107, 33, 168, 0.1), transparent);

    --glow-cyan: 0 0 20px rgba(0, 102, 255, 0.3), 0 0 40px rgba(0, 102, 255, 0.2);
    --glow-purple: 0 0 20px rgba(107, 33, 168, 0.3), 0 0 40px rgba(107, 33, 168, 0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fix body text visibility */
body {
    color: var(--text-primary);
}

/* Add padding to body to account for fixed header */
#smoothscrl {
    padding-top: 0;
}

/* Ensure all text is visible */
p, span, div, h1, h2, h3, h4, h5, h6, a, li {
    color: inherit;
}

/* Fix text visibility in sections */
.sections p,
.sections span,
.sections div,
.containers p,
.containers span,
.containers div {
    color: var(--text-primary);
}

body.light-mode .sections p,
body.light-mode .sections span,
body.light-mode .sections div,
body.light-mode .containers p,
body.light-mode .containers span,
body.light-mode .containers div {
    color: var(--text-primary);
}

/* ========================================
   FUTURISTIC NAVIGATION
   ======================================== */

.top-header {
    position: fixed;
    top: 0px;
    height: 90px;
    width: 100%;
    display: flex;
    z-index: 1000;
    align-content: center;
    justify-content: center;
    min-height: 20px;
    flex-direction: column;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 212, 255, 0.5),
        transparent
    );
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.top-header nav {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    background: var(--glass-bg);
    height: 90px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0px;
    width: 100%;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.top-header.navShadow {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1);
}

.top-header.navShadow nav {
    background: var(--glass-bg);
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
}

.top-header.navShadow::before {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s ease-out;
    box-shadow:
        0 0 20px rgba(0, 212, 255, 0.8),
        0 0 40px rgba(0, 212, 255, 0.5);
    animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(0, 212, 255, 0.8),
            0 0 40px rgba(0, 212, 255, 0.5);
    }
    50% {
        box-shadow:
            0 0 30px rgba(0, 212, 255, 1),
            0 0 60px rgba(0, 212, 255, 0.7);
    }
}

.logo-trip {
    text-decoration: none;
    height: auto;
    width: auto;
    line-height: 0px;
    max-width: 200px;
    position: absolute;
    left: 20px;
    z-index: 1;
    transition: all 0.3s ease;
}

.logo-trip:hover {
    transform: scale(1.05);
}

/* Navigation menu */
.menus {
    top: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
}

.menus li {
    list-style-type: none;
}

.menus li a {
    padding: 0 14px;
    display: block;
    margin-right: 5px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menus li a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.menus li.nav-item {
    font-size: 14px;
    font-weight: 500;
    margin-left: 0px;
    padding: 0 14px;
    padding-left: 0px;
}

.sign-up-item {
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 25px;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.sign-up-item:hover {
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
    color: white !important;
}

/* ========================================
   FUTURISTIC HERO SECTION
   ======================================== */

.cont_principal {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    user-select: none;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(123, 47, 247, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #0a0e27 0%, #151932 50%, #0a0e27 100%);
    animation: heroGradientShift 15s ease-in-out infinite;
}

body.light-mode .cont_principal {
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(107, 33, 168, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

@keyframes heroGradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.cont_error {
    position: absolute;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    max-width: 90%;
    text-align: center;
    animation: heroContentFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cont_error .rol-text {
    margin-top: 3rem;
    font-size: 1.3rem;
    color: var(--text-primary);
    line-height: 2;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: textReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.cont_error .rol-text b {
    color: var(--neon-cyan);
    font-weight: 600;
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   FUTURISTIC ROTATING HEADER
   ======================================== */

.rotating-header {
    margin-bottom: 3rem;
    perspective: 2000px;
    position: relative;
}

.rotating-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: var(--gradient-glow);
    filter: blur(60px);
    opacity: 0.5;
    animation: pulseGlow 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.home-banner-heading {
    font-size: 5rem;
    margin: 0;
    padding: 15px 25px;
    line-height: 1.1;
    background-clip: text;
    -webkit-background-clip: text;
    color: var(--text-primary);
    animation: rotateColors 9s ease-in-out infinite;
    font-weight: 800;
    letter-spacing: -2px;
    text-shadow:
        0 0 30px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3),
        0 0 90px rgba(0, 212, 255, 0.1);
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 4px 20px rgba(0, 212, 255, 0.3));
}

body.light-mode .home-banner-heading {
    text-shadow:
        0 0 20px rgba(0, 102, 255, 0.3),
        0 0 40px rgba(0, 102, 255, 0.2);
}

@keyframes rotateColors {
    0%, 30% {
        color: var(--text-primary);
        transform: scale(1) rotateX(0deg);
        filter: brightness(1);
    }
    35%, 65% {
        color: transparent;
        transform: scale(1.05) rotateX(5deg);
        filter: brightness(1.2);
    }
    70%, 100% {
        color: var(--text-primary);
        transform: scale(1) rotateX(0deg);
        filter: brightness(1);
    }
}

.heading1 {
    animation-name: rotateColors1;
    animation-delay: 0s;
}

.heading2 {
    animation-name: rotateColors2;
    animation-delay: 3s;
}

.heading3 {
    animation-name: rotateColors3;
    animation-delay: 6s;
}

@keyframes rotateColors1 {
    0%, 66% {
        background-image: none;
        color: var(--text-primary);
        transform: scale(1) translateY(0);
        text-shadow:
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 60px rgba(0, 212, 255, 0.3);
    }
    67%, 100% {
        background-image: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #00d4ff 100%);
        color: transparent;
        transform: scale(1.1) translateY(-5px);
        text-shadow:
            0 0 40px rgba(0, 255, 136, 0.8),
            0 0 80px rgba(0, 255, 136, 0.5);
    }
}

@keyframes rotateColors2 {
    0%, 66% {
        background-image: none;
        color: var(--text-primary);
        transform: scale(1) translateY(0);
        text-shadow:
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 60px rgba(0, 212, 255, 0.3);
    }
    67%, 100% {
        background-image: linear-gradient(135deg, #7b2ff7 0%, #a855f7 50%, #7b2ff7 100%);
        color: transparent;
        transform: scale(1.1) translateY(-5px);
        text-shadow:
            0 0 40px rgba(168, 85, 247, 0.8),
            0 0 80px rgba(168, 85, 247, 0.5);
    }
}

@keyframes rotateColors3 {
    0%, 66% {
        background-image: none;
        color: var(--text-primary);
        transform: scale(1) translateY(0);
        text-shadow:
            0 0 30px rgba(0, 212, 255, 0.5),
            0 0 60px rgba(0, 212, 255, 0.3);
    }
    67%, 100% {
        background-image: linear-gradient(135deg, #ff006e 0%, #ff0080 50%, #ff006e 100%);
        color: transparent;
        transform: scale(1.1) translateY(-5px);
        text-shadow:
            0 0 40px rgba(255, 0, 128, 0.8),
            0 0 80px rgba(255, 0, 128, 0.5);
    }
}

/* ========================================
   FUTURISTIC AURA EFFECTS
   ======================================== */

.cont_aura_1, .cont_aura_11, .cont_aura_2, .cont_aura_22 {
    position: absolute;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: auraFloat 8s ease-in-out infinite;
}

.cont_aura_1 {
    width: 600px;
    height: 600px;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0, 212, 255, 0.4) 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    animation: auraFloat 8s ease-in-out infinite, auraPulse 4s ease-in-out infinite;
}

.cont_aura_11 {
    width: 800px;
    height: 400px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(123, 47, 247, 0.3) 0%, rgba(123, 47, 247, 0.1) 50%, transparent 100%);
    animation: auraFloat 10s ease-in-out infinite reverse;
}

.cont_aura_2 {
    width: 700px;
    height: 700px;
    right: -200px;
    bottom: -300px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.3) 0%, rgba(255, 0, 110, 0.1) 50%, transparent 100%);
    animation: auraFloat 12s ease-in-out infinite, auraRotate 20s linear infinite;
    z-index: 0;
}

.cont_aura_22 {
    width: 600px;
    height: 600px;
    left: -200px;
    bottom: -200px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.1) 50%, transparent 100%);
    animation: auraFloat 9s ease-in-out infinite reverse, auraRotate 25s linear infinite reverse;
    z-index: 0;
}

@keyframes auraFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes auraPulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes auraRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mouse scroll indicator */
.mouse {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 4;
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-tertiary);
    border-radius: 60px;
}

.mouse::before {
    content: "";
    width: 6px;
    height: 12px;
    position: absolute;
    top: 6px;
    background-color: var(--text-tertiary);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 40%;
    opacity: 1;
    animation: mouse 1s infinite;
}

@keyframes mouse {
    from {
        opacity: 1;
        top: 6px;
    }
    to {
        opacity: 0;
        top: 26px;
    }
}

/* Section styles */
.sections {
    box-shadow: inset 0px 190px 80px -130px var(--bs-home);
    overflow: hidden;
    padding: 60px 0;
}

.section-heading-background {
    width: 100%;
    margin-top: 100px !important;
    margin-bottom: 100px !important;
    position: relative;
}

.section-heading-background .heading {
    letter-spacing: 4px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 25px 50px;
    font-size: 1.8rem;
    border-radius: 50px;
    border: 2px solid var(--glass-border);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.2),
        inset 0 0 60px rgba(0, 212, 255, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.section-heading-background .heading::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: headingShine 3s linear infinite;
}

@keyframes headingShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.section-heading-background .heading:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(0, 212, 255, 0.6),
        0 0 80px rgba(0, 212, 255, 0.4),
        inset 0 0 80px rgba(0, 212, 255, 0.1);
    text-shadow:
        0 0 40px rgba(0, 212, 255, 0.8),
        0 0 80px rgba(0, 212, 255, 0.5);
}

/* ========================================
   FUTURISTIC GLOW-IN TEXT ANIMATION
   ======================================== */

.glowIn {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.glowIn.in-view {
    opacity: 1;
}

.glowIn span {
    display: inline-block;
    opacity: 0;
}

.glowIn.in-view span {
    animation: glow-in 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes glow-in {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-90deg) scale(0.8);
        filter: blur(10px) brightness(0.5);
        text-shadow: none;
    }
    30% {
        opacity: 0.3;
        transform: translateY(15px) rotateX(-45deg) scale(0.9);
        filter: blur(5px) brightness(0.7);
    }
    60% {
        opacity: 0.7;
        transform: translateY(5px) rotateX(-10deg) scale(0.95);
        filter: blur(2px) brightness(0.9);
        text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0) brightness(1);
        text-shadow:
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(0, 212, 255, 0.3);
    }
}

/* ========================================
   FUTURISTIC TIMELINE
   ======================================== */

.timeline {
    overflow: hidden;
    height: auto;
    padding: 120px 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(123, 47, 247, 0.1) 0%, transparent 50%),
        var(--section-bg);
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 255, 0.03) 100px,
            rgba(0, 212, 255, 0.03) 101px
        );
    pointer-events: none;
}

.timeline h2 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.timeline ul {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline ul::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        var(--neon-cyan) 10%,
        var(--neon-purple) 50%,
        var(--neon-pink) 90%,
        transparent 100%
    );
    transform: translateX(-50%);
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan);
    animation: timelinePulse 3s ease-in-out infinite;
}

@keyframes timelinePulse {
    0%, 100% {
        opacity: 0.6;
        box-shadow:
            0 0 20px var(--neon-cyan),
            0 0 40px var(--neon-cyan);
    }
    50% {
        opacity: 1;
        box-shadow:
            0 0 30px var(--neon-cyan),
            0 0 60px var(--neon-cyan),
            0 0 90px var(--neon-purple);
    }
}

.timeline ul li {
    list-style-type: none;
    position: relative;
    width: 1px;
    margin: 0 auto;
    padding: 120px 0px;
    background: transparent;
    min-height: 300px;
}

.timeline ul li::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow:
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 2;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline ul li.in-view::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.timeline ul li h2 {
    opacity: 0;
    text-align: right;
    position: absolute;
    left: 30px;
    top: 50%;
    font-weight: 400;
    min-width: 700px;
    transform: translate(-150%, -50%);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.timeline ul li h2 span {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.timeline ul li.in-view h2 {
    opacity: 1;
    transform: translate(-100%, -50%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.1);
}

.timeline img {
    position: absolute;
    opacity: 0;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    max-width: 70px;
    filter:
        drop-shadow(0 0 20px rgba(0, 212, 255, 0.6))
        drop-shadow(0 0 40px rgba(0, 212, 255, 0.4));
}

.timeline ul li.in-view img {
    opacity: 1;
    left: -40px;
    transform: translateY(-50%) scale(1) rotate(360deg);
}

/* ========================================
   FUTURISTIC CONTAINERS & SECTIONS
   ======================================== */

.containers {
    background: var(--section-bg);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.containers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        var(--neon-cyan),
        var(--neon-purple),
        var(--neon-pink),
        transparent
    );
    box-shadow: 0 0 20px var(--neon-cyan);
}

.containers::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: sectionGlow 10s ease-in-out infinite;
}

@keyframes sectionGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.sections {
    box-shadow: none;
    overflow: hidden;
    padding: 100px 0;
    background: var(--section-bg);
    position: relative;
}

.sections::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(0, 212, 255, 0.02) 100px,
            rgba(0, 212, 255, 0.02) 101px
        );
    pointer-events: none;
}

/* ========================================
   TEXT VISIBILITY FIXES
   ======================================== */

/* Force text visibility in all containers */
.container p,
.container h1,
.container h2,
.container h3,
.container h4,
.container h5,
.container h6,
.container span:not(.home-banner-heading),
.container div,
.container a,
.container li {
    color: var(--text-primary) !important;
}

.containers p,
.containers h1,
.containers h2,
.containers h3,
.containers h4,
.containers h5,
.containers h6,
.containers span,
.containers div,
.containers a,
.containers li {
    color: var(--text-primary) !important;
}

/* Ensure all text elements are visible */
p, span, div, a, li {
    color: inherit;
}

/* Specific text color overrides */
.text-muted {
    color: var(--text-secondary) !important;
}

.text-light {
    color: var(--text-secondary) !important;
}

/* ========================================
   FUTURISTIC BUTTONS & INTERACTIONS
   ======================================== */

.btn-brand {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 4px 15px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2);
}

.btn-brand::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-brand:hover::before {
    width: 300px;
    height: 300px;
}

.btn-brand:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 30px rgba(0, 212, 255, 0.6),
        0 0 0 2px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.3);
}

.btn-dark-outline {
    background: transparent;
    color: var(--text-brand);
    border: 2px solid var(--text-brand);
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-dark-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-dark-outline:hover::before {
    left: 0;
}

.btn-dark-outline:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 30px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3);
}

.btn-light {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--text-brand);
    border: 2px solid var(--glass-border);
    padding: 14px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 30px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.3);
}

.btn-shadow, .btn-shadows {
    box-shadow:
        0 0 40px rgba(0, 212, 255, 0.6),
        0 0 80px rgba(0, 212, 255, 0.4);
    animation: btnGlowPulse 2s ease-in-out infinite;
}

@keyframes btnGlowPulse {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(0, 212, 255, 0.6),
            0 0 80px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow:
            0 0 60px rgba(0, 212, 255, 0.8),
            0 0 120px rgba(0, 212, 255, 0.6);
    }
}

.btn-primary {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 30px rgba(0, 123, 255, 0.5),
        0 0 60px rgba(0, 123, 255, 0.3);
}

.borders {
    border: 1px solid var(--text-primary);
}

.border-round {
    border-radius: 8px;
}

/* Text utilities */
.text-branding {
    color: var(--text-brand);
}

.text-light-gray {
    color: #939eb4;
}

.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

.fz-1-5 {
    font-size: 1.5rem;
}

.fz-2 {
    font-size: 2rem;
}

/* ========================================
   FUTURISTIC SCROLL ANIMATIONS - FIXED
   ======================================== */

.animated {
    opacity: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.animated.viewed {
    opacity: 0;
}

.animated.in-view {
    opacity: 1 !important;
}

/* Ensure text content is always visible even without animation */
.animated p,
.animated span,
.animated h1,
.animated h2,
.animated h3,
.animated h4,
.animated h5,
.animated h6 {
    color: var(--text-primary);
}

/* Image animations - slide from left with glow - OPTIMIZED (reduced blur) */
.imga.animated {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(-150px) scale(0.8) rotateY(-15deg);
    filter: blur(3px) brightness(0.5);
    will-change: transform, opacity;
}

.imga.animated.viewed {
    opacity: 0;
    transform: translateX(-150px) scale(0.8) rotateY(-15deg);
    filter: blur(3px) brightness(0.5);
}

.imga.animated.in-view {
    opacity: 1 !important;
    transform: translateX(0) scale(1) rotateY(0deg);
    filter: none;
    will-change: auto;
}

/* Text animations - slide from right with fade - OPTIMIZED (reduced blur) */
.txts.animated {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(150px) scale(0.9);
    filter: blur(2px);
    will-change: transform, opacity;
}

.txts.animated.viewed {
    opacity: 0;
    transform: translateX(150px) scale(0.9);
    filter: blur(2px);
}

.txts.animated.in-view {
    opacity: 1 !important;
    transform: translateX(0) scale(1);
    filter: none;
    will-change: auto;
}

/* Ensure text inside animated containers is always readable */
.txts.animated *,
.txts.animated.in-view * {
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

/* For reversed layouts (image on right) - flip the animations - OPTIMIZED */
.flex-lg-row-reverse .imga.animated {
    transform: translateX(150px) scale(0.8) rotateY(15deg);
    filter: blur(3px) brightness(0.5);
    will-change: transform, opacity;
}

.flex-lg-row-reverse .imga.animated.viewed {
    transform: translateX(150px) scale(0.8) rotateY(15deg);
    filter: blur(3px) brightness(0.5);
}

.flex-lg-row-reverse .imga.animated.in-view {
    transform: translateX(0) scale(1) rotateY(0deg);
    filter: none;
    will-change: auto;
}

.flex-lg-row-reverse .txts.animated {
    transform: translateX(-150px) scale(0.9);
    filter: blur(2px);
    will-change: transform, opacity;
}

.flex-lg-row-reverse .txts.animated.viewed {
    transform: translateX(-150px) scale(0.9);
    filter: blur(2px);
}

.flex-lg-row-reverse .txts.animated.in-view {
    transform: translateX(0) scale(1);
    filter: none;
    will-change: auto;
}

/* Hero background */
.hero-background {
    background-repeat: no-repeat;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG animations */
.svg-anima {
    position: absolute;
    overflow: hidden;
    z-index: -2;
}

.path, .paths {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.path {
    animation: dash 4s alternate ease-in-out infinite;
}

.paths {
    animation: dashtwo 5s alternate ease-in-out infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dashtwo {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* ========================================
   FUTURISTIC CARDS & IMAGES
   ======================================== */

.imga {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.imga::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 255, 0.2) 0%,
        transparent 50%,
        rgba(123, 47, 247, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.imga:hover::before {
    opacity: 1;
}

.imga:hover {
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(0, 212, 255, 0.4),
        0 0 60px rgba(0, 212, 255, 0.3);
    transform: scale(1.05) translateY(-10px);
}

/* Blog section improvements */
.imga-blg {
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 212, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.imga-blg:hover {
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(123, 47, 247, 0.4),
        0 0 60px rgba(123, 47, 247, 0.3);
    transform: scale(1.02);
}

.blog-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow:
        0 4px 15px rgba(0, 212, 255, 0.4),
        0 0 30px rgba(0, 212, 255, 0.2);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow:
            0 4px 15px rgba(0, 212, 255, 0.4),
            0 0 30px rgba(0, 212, 255, 0.2);
    }
    50% {
        box-shadow:
            0 4px 20px rgba(0, 212, 255, 0.6),
            0 0 50px rgba(0, 212, 255, 0.4);
    }
}

/* Card hover effects */
.d-flex.flex-column.flex-lg-row,
.d-flex.flex-column.flex-lg-row-reverse {
    padding: 60px 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.d-flex.flex-column.flex-lg-row::before,
.d-flex.flex-column.flex-lg-row-reverse::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(0, 212, 255, 0.3),
        transparent
    );
    opacity: 0;
    transition: opacity 0.6s ease;
}

.d-flex.flex-column.flex-lg-row:hover::before,
.d-flex.flex-column.flex-lg-row-reverse:hover::before {
    opacity: 1;
}

.d-flex.flex-column.flex-lg-row:hover,
.d-flex.flex-column.flex-lg-row-reverse:hover {
    transform: translateY(-10px);
}

/* ========================================
   FUTURISTIC RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    /* Hero section mobile */
    .home-banner-heading {
        font-size: 2.8rem;
        padding: 12px 20px;
        letter-spacing: -1px;
    }

    .rotating-header::before {
        width: 150%;
        height: 150%;
        filter: blur(40px);
    }

    .cont_error .rol-text {
        font-size: 1rem;
        margin-top: 2rem;
    }

    /* Hide complex SVG animations on mobile for performance */
    .svg-anima {
        display: none !important;
    }

    /* Timeline mobile adjustments */
    .timeline {
        padding: 60px 0;
    }

    .timeline ul li {
        padding: 80px 0;
    }

    .timeline ul li h2 {
        min-width: auto;
        text-align: left;
        top: 0px;
        left: 0px;
        transform: translate(0%, -120%);
        font-size: 1.4rem;
        width: calc(100% - 40px);
        padding: 15px 20px;
        border-radius: 15px;
    }

    .timeline ul li.in-view h2 {
        display: block;
        opacity: 1;
        text-align: left;
        min-width: auto;
        font-size: 1.4rem;
        left: 0px;
        top: -60px;
        transform: none;
        position: relative;
        width: calc(100% - 40px);
    }

    .timeline img {
        max-width: 50px;
        left: -25px;
    }

    .timeline ul li.in-view img {
        left: -25px;
    }

    /* Mobile animations - simplified for performance - FURTHER OPTIMIZED */
    .imga.animated,
    .txts.animated,
    .flex-lg-row-reverse .imga.animated,
    .flex-lg-row-reverse .txts.animated {
        transform: translateY(30px) scale(0.95);
        filter: none;
        will-change: transform, opacity;
    }

    .imga.animated.in-view,
    .txts.animated.in-view,
    .flex-lg-row-reverse .imga.animated.in-view,
    .flex-lg-row-reverse .txts.animated.in-view {
        transform: translateY(0) scale(1);
        filter: none;
        will-change: auto;
    }

    /* Section headings mobile */
    .section-heading-background {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .section-heading-background .heading {
        font-size: 1.3rem;
        padding: 18px 30px;
        letter-spacing: 2px;
        border-radius: 30px;
    }

    /* Containers mobile */
    .containers {
        padding: 60px 0;
    }

    .sections {
        padding: 60px 0;
    }

    /* Navigation mobile */
    .top-header {
        height: 70px;
    }

    .top-header nav {
        height: 70px;
    }

    /* Buttons mobile */
    .btn-brand,
    .btn-dark-outline,
    .btn-light,
    .btn-primary {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    /* Aura effects - reduce on mobile */
    .cont_aura_1,
    .cont_aura_2,
    .cont_aura_11,
    .cont_aura_22 {
        filter: blur(60px);
        opacity: 0.4;
    }

    /* Disable cursor trail on mobile */
    .cursor-trail {
        display: none !important;
    }
}

/* ============================================
   INDEX PAGE STYLES (Main Landing Page)
   ============================================ */

/* Index page specific variables */
.index-page {
    --dark-bg: #0f172a;
    --light-bg: #ffffff;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --text-gray: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Index page body styles */
.index-page {
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    background: #030712;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Index Navigation - Futuristic Style */
.index-page .navbar {
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.index-page .navbar .container {
    margin-top: 0 !important;
    min-height: auto !important;
}

.index-page .navbar.scrolled {
    background: rgba(3, 7, 18, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.2);
    border-bottom-color: rgba(59, 130, 246, 0.3);
    padding: 0.75rem 0;
}

.index-page .navbar-brand img {
    height: 40px;
    filter: brightness(1.1);
}

.index-page .nav-link {
    color: #94a3b8 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.index-page .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.index-page .nav-link:hover {
    color: #fff !important;
}

.index-page .nav-link:hover::after {
    width: 80%;
}

.index-page .btn-signup {
    background: #3b82f6;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.index-page .btn-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.index-page .btn-signup:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    color: white !important;
}

.index-page .btn-signup:hover::before {
    left: 100%;
}

/* Index Hero Section */
.index-page .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #030712;
    color: white;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.index-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.index-page .hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: 1;
}

/* Hero SVG Animation */
.index-page .hero-svg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 2;
    pointer-events: none;
}

.index-page .hero-svg-animation svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    min-width: 1200px;
}

.index-page .circuit-line {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: circuitDraw 3s ease-in-out infinite alternate;
}

.index-page .circuit-line.delay-1 { animation-delay: 0.3s; }
.index-page .circuit-line.delay-2 { animation-delay: 0.6s; }
.index-page .circuit-line.delay-3 { animation-delay: 0.9s; }
.index-page .circuit-line.delay-4 { animation-delay: 1.2s; }
.index-page .circuit-line.delay-5 { animation-delay: 1.5s; }
.index-page .circuit-line.delay-6 { animation-delay: 1.8s; }
.index-page .circuit-line.delay-7 { animation-delay: 2.1s; }

@keyframes circuitDraw {
    0% {
        stroke-dashoffset: 1;
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 0.6;
    }
}

/* Hero Particles */
.index-page .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.index-page .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 20s infinite linear;
}

.index-page .particle:nth-child(1) { left: 5%; animation-delay: 0s; }
.index-page .particle:nth-child(2) { left: 15%; animation-delay: 3s; }
.index-page .particle:nth-child(3) { left: 25%; animation-delay: 6s; }
.index-page .particle:nth-child(4) { left: 45%; animation-delay: 2s; }
.index-page .particle:nth-child(5) { left: 55%; animation-delay: 8s; }
.index-page .particle:nth-child(6) { left: 75%; animation-delay: 4s; }
.index-page .particle:nth-child(7) { left: 85%; animation-delay: 10s; }
.index-page .particle:nth-child(8) { left: 92%; animation-delay: 1s; }
.index-page .particle:nth-child(9) { left: 35%; animation-delay: 5s; }

@keyframes floatUp {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.index-page .glow-orb {
    display: none;
}

/* Hero Content */
.index-page .hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
}

.index-page .hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.index-page .hero h1 span {
    display: inline-block;
    margin: 0 0.3rem;
    color: #fff;
}

.index-page .hero h1 span:first-child {
    color: #3b82f6;
}

.index-page .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #94a3b8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.index-page .hero p strong {
    color: #fff;
}

.index-page .hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.index-page .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    color: #3b82f6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Index Sections */
.index-page section {
    padding: 80px 20px;
}

/* ============================================
   HIGH-END DEVELOPER PRESENTATION DESIGN
   ============================================ */

/* Reset and Base Styles for Index Page */
.index-page .page-content {
    position: relative;
    padding-top: 0;
    min-height: 100vh;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Subtle Grid Pattern Background */
.index-page .page-content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Hero Section - Full Screen Presentation Slide */
.index-page .header-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 2rem 4rem;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    z-index: 1;
}

/* Accent Gradient Glow */
.index-page .header-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Logo - Minimal Developer Style */
.index-page .header-section .logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    z-index: 10;
}

.index-page .header-section .logo i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.index-page .header-section .logo span {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}

/* Main Heading - Large, Bold, Developer-Focused */
.index-page .header-section .main-heading {
    position: relative;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.03em;
    z-index: 10;
}

/* Tagline - Monospace Developer Badge */
.index-page .header-section .tagline {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.25rem;
    margin-bottom: 2rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', 'Droid Sans Mono', 'Source Code Pro', monospace;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Intro Text - Clean, Readable */
.index-page .header-section .intro-text {
    position: relative;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
    z-index: 10;
}

.index-page .header-section .intro-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Actions - Clean Developer Buttons */
.index-page .header-section .hero-actions {
    position: relative;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    z-index: 10;
}

.index-page .hero-actions .btn-signup {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.index-page .hero-actions .btn-signup:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.index-page .hero-actions .nav-link-item {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.index-page .hero-actions .nav-link-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   SECTIONS - CONTEXT-APPROPRIATE DESIGNS
   ============================================ */

/* Base Section Styles */
.index-page .cards-section {
    position: relative;
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
}

/* Section Titles - Large, Clean Typography */
.index-page .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.index-page .section-intro {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

/* ============================================
   TIMELINE SECTION - Technical Grid Style
   ============================================ */

/* Timeline gets a technical, grid-based layout */
.index-page .cards-section:nth-of-type(1) {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.index-page .cards-section:nth-of-type(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    pointer-events: none;
}

/* Cards Wrapper - Horizontal Timeline */
.index-page .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Items - Minimal, Clean Boxes */
.index-page .card-item {
    position: relative;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.index-page .card-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
}

/* Icon Holder - Minimal Circle */
.index-page .card-item .icon-holder {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.index-page .card-item .icon-holder i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.index-page .card-item:hover .icon-holder {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

/* Year Badge - Monospace Technical */
.index-page .card-item .year-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    margin-bottom: 1rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Card Title - Bold, Clean */
.index-page .card-item .card-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

/* Card Description - Readable Gray */
.index-page .card-item .card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.index-page .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #fff;
    background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 1rem;
}

.index-page .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.index-page .section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Index Timeline */
.index-page #timeline {
    background: #030712;
    position: relative;
    overflow: hidden;
}

.index-page #timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.index-page #timeline .section-title {
    color: #fff;
}

.index-page .timeline {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.index-page .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, #3b82f6 10%, #8b5cf6 50%, #3b82f6 90%, transparent 100%);
    transform: translateX(-50%);
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.5), 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 40px rgba(59, 130, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
    }
}

.index-page .timeline-item {
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-page .timeline-item:nth-child(1) { transition-delay: 0.1s; }
.index-page .timeline-item:nth-child(2) { transition-delay: 0.2s; }
.index-page .timeline-item:nth-child(3) { transition-delay: 0.3s; }
.index-page .timeline-item:nth-child(4) { transition-delay: 0.4s; }

.index-page .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Timeline Icon - Centered on the line */
.index-page .timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 4px solid #030712;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 0 30px rgba(59, 130, 246, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: iconPulse 3s ease-in-out infinite;
}

.index-page .timeline-icon i {
    color: #fff;
    font-size: 1.5rem;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2), 0 0 30px rgba(59, 130, 246, 0.5);
        transform: translateX(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0.3), 0 0 50px rgba(59, 130, 246, 0.8), 0 0 80px rgba(139, 92, 246, 0.4);
        transform: translateX(-50%) scale(1.05);
    }
}

.index-page .timeline-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    padding: 2rem;
    border-radius: 16px;
    margin-left: calc(50% + 60px);
    width: calc(50% - 80px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.index-page .timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.index-page .timeline-content:hover::before {
    opacity: 1;
}

.index-page .timeline-content:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.index-page .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 60px);
}

.index-page .timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(-10px) scale(1.02);
}

/* Timeline Year Badge */
.index-page .timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    letter-spacing: 0.5px;
}

.index-page .timeline-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    position: relative;
}

.index-page .timeline-content p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1rem;
}

/* Index Buttons */
.index-page .btn-primary-custom {
    background: #3b82f6;
    color: white;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.index-page .btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.index-page .btn-primary-custom:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.2);
    color: white;
}

.index-page .btn-primary-custom:hover::before {
    left: 100%;
}

.index-page .btn-outline-custom {
    background: transparent;
    color: #94a3b8;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.index-page .btn-outline-custom:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #fff;
    border-color: #3b82f6;
}

/* What is TRIP Section */
.index-page .what-is-trip {
    background: linear-gradient(135deg, #030712 0%, #0f172a 50%, #030712 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.index-page .trip-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
}

.index-page .trip-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.index-page .trip-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.12);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.index-page .trip-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(236, 72, 153, 0.1);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.index-page .trip-intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* IDE Window */
.index-page .trip-ide-window {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(59, 130, 246, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.index-page .trip-ide-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 100px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.index-page .ide-header {
    background: #161b22;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #30363d;
}

.index-page .ide-dots {
    display: flex;
    gap: 8px;
}

.index-page .ide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.index-page .ide-dots .dot.red { background: #ff5f56; }
.index-page .ide-dots .dot.yellow { background: #ffbd2e; }
.index-page .ide-dots .dot.green { background: #27ca40; }

.index-page .ide-title {
    color: #8b949e;
    font-size: 0.85rem;
    font-family: 'Fira Code', monospace;
}

.index-page .ide-actions {
    display: flex;
    gap: 12px;
    color: #8b949e;
}

.index-page .ide-body {
    display: flex;
    padding: 20px 0;
    min-height: 300px;
}

.index-page .ide-line-numbers {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    border-right: 1px solid #30363d;
    color: #484f58;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
    user-select: none;
}

.index-page .ide-code {
    padding: 0 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    line-height: 1.8;
}

.index-page .code-line {
    opacity: 0;
    animation: typeIn 0.5s ease forwards;
}

.index-page .code-line:nth-child(1) { animation-delay: 0.1s; }
.index-page .code-line:nth-child(2) { animation-delay: 0.2s; }
.index-page .code-line:nth-child(3) { animation-delay: 0.3s; }
.index-page .code-line:nth-child(4) { animation-delay: 0.4s; }
.index-page .code-line:nth-child(5) { animation-delay: 0.5s; }
.index-page .code-line:nth-child(6) { animation-delay: 0.6s; }
.index-page .code-line:nth-child(7) { animation-delay: 0.7s; }
.index-page .code-line:nth-child(8) { animation-delay: 0.8s; }
.index-page .code-line:nth-child(9) { animation-delay: 0.9s; }
.index-page .code-line:nth-child(10) { animation-delay: 1.0s; }
.index-page .code-line:nth-child(11) { animation-delay: 1.1s; }
.index-page .code-line:nth-child(12) { animation-delay: 1.2s; }

@keyframes typeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.index-page .code-line .keyword { color: #ff7b72; }
.index-page .code-line .variable { color: #79c0ff; }
.index-page .code-line .property { color: #d2a8ff; }
.index-page .code-line .string { color: #a5d6ff; }
.index-page .code-line .boolean { color: #79c0ff; }
.index-page .code-line .function { color: #d2a8ff; }

.index-page .ide-status {
    background: #161b22;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #30363d;
    color: #8b949e;
    font-size: 0.75rem;
}

.index-page .ide-status span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.index-page .ide-status .fa-check-circle {
    color: #27ca40;
}

/* Console Style */
.index-page .console-style .ide-header {
    background: #1e1e1e;
    border-bottom: 1px solid #3c3c3c;
}

.index-page .console-style .ide-title {
    color: #cccccc;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8rem;
}

.index-page .console-style .ide-title i {
    margin-right: 6px;
    color: #3b82f6;
}

.index-page .console-tab {
    font-size: 0.75rem;
    color: #8b8b8b;
    padding: 4px 12px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.index-page .console-tab.active {
    color: #fff;
    border-bottom-color: #3b82f6;
}

.index-page .console-body {
    background: #1e1e1e;
    padding: 30px 25px;
    min-height: 280px;
    display: flex;
    align-items: center;
}

.index-page .console-output {
    font-family: 'Fira Code', 'Consolas', monospace;
    font-size: 1.1rem;
    line-height: 2;
    width: 100%;
}

.index-page .console-line {
    padding: 8px 0;
    opacity: 0;
    animation: consoleFadeIn 0.4s ease forwards;
}

.index-page .console-line:nth-child(1) { animation-delay: 0.1s; }
.index-page .console-line:nth-child(2) { animation-delay: 0.3s; }
.index-page .console-line:nth-child(3) { animation-delay: 0.5s; }
.index-page .console-line:nth-child(4) { animation-delay: 0.7s; }
.index-page .console-line:nth-child(5) { animation-delay: 0.9s; }
.index-page .console-line:nth-child(6) { animation-delay: 1.1s; }

@keyframes consoleFadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.index-page .console-line .comment {
    color: #6a9955;
    font-style: italic;
}

.index-page .console-line.prop {
    padding-left: 10px;
    color: #fff;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.index-page .console-line.prop:hover {
    background: rgba(59, 130, 246, 0.15);
    border-left-color: #3b82f6;
    padding-left: 15px;
}

.index-page .prop-name {
    color: #60a5fa;
    font-weight: 600;
}

.index-page .console-line .string {
    color: #fbbf24;
    font-weight: 500;
}

.index-page .console-line .boolean {
    color: #34d399;
    font-weight: 600;
}

.index-page .console-style .ide-status {
    background: #1e1e1e;
    border-top: 1px solid #3c3c3c;
}

/* Trip Content Side */
.index-page .trip-content-side {
    position: relative;
}

.index-page .trip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}

.index-page .badge-icon {
    font-size: 1rem;
}

.index-page .trip-badge span:last-child {
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 500;
}

.index-page .trip-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.index-page .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-page .trip-description p {
    color: #94a3b8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.index-page .benefits-section {
    background: #030712;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.index-page .benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.index-page .benefits-section .section-title {
    color: #fff;
    position: relative;
    z-index: 1;
}

.index-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.index-page .benefit-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.index-page .benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.index-page .benefit-card:nth-child(1) { transition-delay: 0.1s; }
.index-page .benefit-card:nth-child(2) { transition-delay: 0.2s; }
.index-page .benefit-card:nth-child(3) { transition-delay: 0.3s; }
.index-page .benefit-card:nth-child(4) { transition-delay: 0.4s; }

.index-page .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.index-page .benefit-card:hover::before {
    opacity: 1;
}

.index-page .benefit-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
}

.index-page .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.index-page .benefit-icon i {
    font-size: 2rem;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.index-page .benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    transform: scale(1.1) rotate(5deg);
}

.index-page .benefit-card:hover .benefit-icon i {
    color: #60a5fa;
    transform: scale(1.1);
}

.index-page .benefit-card h3 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.index-page .benefit-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Features Section */
.index-page .features-section {
    background: linear-gradient(180deg, #030712 0%, #0f172a 100%);
    padding: 100px 20px;
}

.index-page .features-section .section-title {
    color: #fff;
}

.index-page .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.index-page .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.index-page .feature-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-5px);
}

.index-page .feature-card h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.index-page .feature-card h3 i {
    color: #3b82f6;
}

.index-page .feature-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sandbox Section */
.index-page .sandbox-section {
    background: #030712;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.index-page .sandbox-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.index-page .sandbox-section .section-title {
    color: #fff;
    position: relative;
    z-index: 1;
}

.index-page .sandbox-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.index-page .sandbox-terminal {
    background: #0d1117;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.index-page .terminal-header {
    background: #161b22;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #30363d;
}

.index-page .terminal-dots {
    display: flex;
    gap: 8px;
}

.index-page .terminal-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.index-page .terminal-dots span:nth-child(1) { background: #ff5f56; }
.index-page .terminal-dots span:nth-child(2) { background: #ffbd2e; }
.index-page .terminal-dots span:nth-child(3) { background: #27ca40; }

.index-page .terminal-title {
    color: #8b949e;
    font-size: 0.85rem;
    font-family: 'Fira Code', monospace;
}

.index-page .terminal-body {
    padding: 30px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 2;
}

.index-page .terminal-line {
    margin-bottom: 10px;
}

.index-page .terminal-line .prompt {
    color: #27ca40;
}

.index-page .terminal-line .command {
    color: #fff;
}

.index-page .terminal-line .output {
    color: #8b949e;
    padding-left: 20px;
}

.index-page .terminal-line .success {
    color: #27ca40;
}

.index-page .terminal-line .info {
    color: #3b82f6;
}

/* Products Section */
.index-page .products-section {
    background: linear-gradient(180deg, #0f172a 0%, #030712 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.index-page .products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.index-page .products-section .section-title {
    color: #fff;
    position: relative;
    z-index: 1;
}

.index-page .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.index-page .product-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.index-page .product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.index-page .product-card:nth-child(1) { transition-delay: 0.1s; }
.index-page .product-card:nth-child(2) { transition-delay: 0.2s; }
.index-page .product-card:nth-child(3) { transition-delay: 0.3s; }
.index-page .product-card:nth-child(4) { transition-delay: 0.4s; }
.index-page .product-card:nth-child(5) { transition-delay: 0.5s; }

.index-page .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.index-page .product-card:hover::before {
    opacity: 1;
}

.index-page .product-card:hover {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25);
}

.index-page .product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: translateX(-50%);
    transition: width 0.5s ease;
    border-radius: 3px;
}

.index-page .product-card:hover::after {
    width: 80%;
}

.index-page .product-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.index-page .product-icon i {
    font-size: 2.5rem;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.index-page .product-card:hover .product-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    transform: scale(1.1) rotate(-5deg);
}

.index-page .product-card:hover .product-icon i {
    color: #60a5fa;
    transform: scale(1.15);
}

.index-page .product-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.index-page .product-card p {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Index Page Responsive Styles */
@media (max-width: 992px) {
    .index-page .trip-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .index-page .trip-ide-window {
        transform: none;
        order: 2;
    }

    .index-page .trip-content-side {
        order: 1;
        text-align: center;
    }

    .index-page .trip-main-title {
        font-size: 2.5rem;
    }

    .index-page .timeline-content {
        margin-left: 55% !important;
        width: 45% !important;
    }

    .index-page .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0 !important;
        margin-right: 55% !important;
    }
}

@media (max-width: 768px) {
    .index-page .hero h1 {
        font-size: 2.5rem;
    }

    .index-page .hero-content {
        padding: 40px 20px;
    }

    .index-page .hero-buttons {
        flex-direction: column;
    }

    .index-page .timeline::before {
        left: 40px;
    }

    .index-page .timeline-icon {
        left: 40px;
        width: 50px;
        height: 50px;
    }

    .index-page .timeline-icon i {
        font-size: 1.25rem;
    }

    .index-page .timeline-content,
    .index-page .timeline-item:nth-child(even) .timeline-content {
        margin-left: 90px !important;
        margin-right: 0 !important;
        width: calc(100% - 100px) !important;
    }

    .index-page .trip-main-title {
        font-size: 2rem;
    }

    .index-page .console-output {
        font-size: 0.9rem;
    }
}

/* Trip Highlight Card */
.index-page .trip-highlight-card {
    display: flex;
    gap: 20px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.index-page .trip-highlight-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateX(5px);
}

.index-page .trip-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
}

.index-page .highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-page .highlight-icon i {
    color: #fff;
    font-size: 1.25rem;
}

.index-page .highlight-content {
    color: #e2e8f0;
    font-size: 1.05rem;
    line-height: 1.7;
}

.index-page .highlight-content strong {
    color: #3b82f6;
    font-weight: 700;
}

/* Trip Stats */
.index-page .trip-stats {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.index-page .stat-item {
    text-align: center;
}

.index-page .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.index-page .stat-label {
    color: #64748b;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* Code Block */
.index-page .code-block {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 12px;
    padding: 20px;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
    font-family: 'Fira Code', 'Monaco', monospace;
    position: relative;
    overflow: hidden;
}

.index-page .code-block::before {
    content: '● ● ●';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 8px;
    letter-spacing: 4px;
    color: #6e7681;
}

.index-page .code-block code {
    color: #58a6ff;
    font-size: 0.9rem;
    display: block;
    margin-top: 15px;
}

.index-page .code-block .comment { color: #8b949e; }
.index-page .code-block .keyword { color: #ff7b72; }
.index-page .code-block .string { color: #a5d6ff; }
.index-page .code-block .function { color: #d2a8ff; }

/* Feature Item */
.index-page .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateX(-30px);
}

.index-page .feature-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.index-page .feature-item:nth-child(1) { transition-delay: 0.05s; }
.index-page .feature-item:nth-child(2) { transition-delay: 0.1s; }
.index-page .feature-item:nth-child(3) { transition-delay: 0.15s; }
.index-page .feature-item:nth-child(4) { transition-delay: 0.2s; }
.index-page .feature-item:nth-child(5) { transition-delay: 0.25s; }
.index-page .feature-item:nth-child(6) { transition-delay: 0.3s; }
.index-page .feature-item:nth-child(7) { transition-delay: 0.35s; }
.index-page .feature-item:nth-child(8) { transition-delay: 0.4s; }

.index-page .feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.index-page .feature-item:hover::before {
    opacity: 1;
}

.index-page .feature-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: width 0.4s ease;
}

.index-page .feature-item:hover::after {
    width: 100%;
}

.index-page .feature-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.index-page .feature-item i {
    color: #3b82f6;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    min-width: 24px;
}

.index-page .feature-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #60a5fa;
}

.index-page .feature-item span {
    color: #e2e8f0;
    font-size: 1rem;
    font-weight: 500;
}

/* Terminal Window */
.index-page .terminal-window {
    background: #0d1117;
    border: 1px solid #30363d;
    border-radius: 12px;
    max-width: 500px;
    margin: 2rem auto;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.index-page .terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.index-page .terminal-dot.red { background: #ff5f56; }
.index-page .terminal-dot.yellow { background: #ffbd2e; }
.index-page .terminal-dot.green { background: #27ca40; }

.index-page .terminal-prompt {
    color: #7ee787;
    margin-right: 10px;
}

.index-page .terminal-command {
    color: #e6edf3;
}

.index-page .terminal-output {
    color: #8b949e;
    padding-left: 20px;
}

.index-page .typing-cursor {
    display: inline-block;
    width: 8px;
    height: 16px;
    background: #58a6ff;
    margin-left: 4px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Product Card */
.index-page .product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.index-page .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.index-page .product-card:hover::before {
    opacity: 1;
}

.index-page .product-card:hover {
    border-color: #3b82f6;
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2), 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.index-page .product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: translateX(-50%);
    transition: width 0.4s ease;
    border-radius: 3px;
}

.index-page .product-card:hover::after {
    width: 80%;
}

/* Additional Index Page Responsive */
@media (max-width: 992px) {
    .index-page .benefits-grid {
        grid-template-columns: 1fr;
    }
    .index-page .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .index-page .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .index-page .trip-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .index-page .features-grid {
        grid-template-columns: 1fr;
    }
    .index-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .index-page .products-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INDEX PAGE - NEW DESIGN (MATCHING DOC-HOME)
   ============================================ */

/* ============================================
   "WHAT IS TRIP?" SECTION - Conceptual, Clean
   ============================================ */

/* Different background for conceptual section */
.index-page .cards-section:nth-of-type(2) {
    background: #0a0a0a;
    padding: 10rem 2rem;
}

/* Info Card - Large, Centered Content Block */
.index-page .info-card {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3b82f6;
    border-radius: 12px;
}

.index-page .info-card .info-icon {
    display: none; /* Hide icon for cleaner look */
}

.index-page .info-card .info-content {
    text-align: left;
}

.index-page .info-card .info-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.index-page .info-card .info-content p:last-child {
    margin-bottom: 0;
}

.index-page .info-card .info-content strong {
    color: #ffffff;
    font-weight: 600;
}

/* Stats Grid - Horizontal Metrics Bar */
.index-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.index-page .stat-card {
    padding: 2rem;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.index-page .stat-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(59, 130, 246, 0.3);
}

.index-page .stat-card .stat-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    display: block;
}

.index-page .stat-card .stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   BENEFITS SECTION - Feature Highlights
   ============================================ */

/* Alternating background */
.index-page .cards-section:nth-of-type(3) {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Benefits cards in 2-column grid */
.index-page .cards-section:nth-of-type(3) .cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* ============================================
   PLATFORM FEATURES SECTION - Dense Grid
   ============================================ */

.index-page .cards-section:nth-of-type(4) {
    background: #0a0a0a;
}

/* Features in 3-4 column grid */
.index-page .cards-section:nth-of-type(4) .cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.index-page .cards-section:nth-of-type(4) .card-item {
    padding: 2rem 1.5rem;
}

.index-page .cards-section:nth-of-type(4) .card-title {
    font-size: 1.125rem;
}

.index-page .cards-section:nth-of-type(4) .card-desc {
    font-size: 0.9375rem;
}

/* ============================================
   SANDBOX CTA SECTION - Bold Call-to-Action
   ============================================ */

.index-page .cards-section:nth-of-type(5) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: 10rem 2rem;
}

.index-page .cards-section:nth-of-type(5) .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* CTA Actions - Prominent Buttons */
.index-page .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.index-page .cta-actions .btn-signup {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.index-page .cta-actions .btn-signup:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.index-page .cta-actions .nav-link-item {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.index-page .cta-actions .nav-link-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   TRAVEL PRODUCTS SECTION - Final Grid
   ============================================ */

.index-page .cards-section:nth-of-type(6) {
    background: #0a0a0a;
    padding-bottom: 10rem;
}

.index-page .cards-section:nth-of-type(6) .cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Enhanced Card Items with 3D Effect - PRESENTATION STYLE */
.index-page .card-item {
    position: relative;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.9) 0%,
        rgba(15, 23, 42, 0.95) 100%
    );
    backdrop-filter: blur(15px);
    border: 2px solid rgba(96, 165, 250, 0.2);
    border-radius: 2rem;
    padding: 3rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.index-page .card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(96, 165, 250, 0.05) 0%,
        rgba(167, 139, 250, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.index-page .card-item:hover::before {
    opacity: 1;
}

.index-page .card-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.index-page .card-item:hover::after {
    opacity: 1;
    animation: cardGlow 2s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25%, -25%); }
}

.index-page .card-item:hover {
    transform: translateY(-10px) rotateX(2deg);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(96, 165, 250, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Enhanced Icon Holder with Pulse Animation - PRESENTATION STYLE */
.index-page .card-item .icon-holder {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg,
        rgba(96, 165, 250, 0.3) 0%,
        rgba(167, 139, 250, 0.3) 100%
    );
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    box-shadow:
        0 15px 40px rgba(96, 165, 250, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.index-page .card-item .icon-holder i {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.6));
}

.index-page .card-item .icon-holder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    opacity: 0.5;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

.index-page .card-item:hover .icon-holder {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg,
        rgba(96, 165, 250, 0.5) 0%,
        rgba(167, 139, 250, 0.5) 100%
    );
    box-shadow:
        0 20px 50px rgba(96, 165, 250, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced Year Badge with Shimmer - PRESENTATION STYLE */
.index-page .card-item .year-badge {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(167, 139, 250, 0.2));
    border: 2px solid rgba(96, 165, 250, 0.4);
    border-radius: 50px;
    color: #60a5fa;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4);
    letter-spacing: 1px;
}

.index-page .card-item .year-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Enhanced Card Title and Description - PRESENTATION STYLE */
.index-page .card-item .card-title {
    position: relative;
    z-index: 1;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #fff;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.index-page .card-item:hover .card-title {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.index-page .card-item .card-desc {
    position: relative;
    z-index: 1;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.index-page .card-item:hover .card-desc {
    color: #cbd5e1;
}

.index-page .header-section .logo {
    font-size: 3rem;
    font-weight: 800;
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.index-page .header-section .logo i {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.index-page .header-section .main-heading {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.index-page .header-section .tagline {
    color: #60a5fa;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.index-page .header-section .intro-text {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.index-page .header-section .hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.index-page .cards-section {
    padding: 3rem 1rem;
    text-align: center;
}

.index-page .cards-section .section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.index-page .cards-section .section-intro {
    color: #94a3b8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.index-page .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.index-page .card-item {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.index-page .card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.index-page .card-item .icon-holder {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(167, 139, 250, 0.2));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.index-page .card-item:hover .icon-holder {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(167, 139, 250, 0.3));
    transform: scale(1.1);
}

.index-page .card-item .year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.index-page .card-item .card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.index-page .card-item .card-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.index-page .card-item .card-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Enhanced Info Card with Glassmorphism */
.index-page .info-card {
    position: relative;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.8) 0%,
        rgba(15, 23, 42, 0.9) 100%
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    overflow: hidden;
}

.index-page .info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
    animation: infoCardGlow 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes infoCardGlow {
    0%, 100% { transform: translate(0, 0); opacity: 0.5; }
    50% { transform: translate(10%, 10%); opacity: 0.8; }
}

.index-page .info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(96, 165, 250, 0.3);
}

.index-page .info-card .info-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg,
        rgba(96, 165, 250, 0.3) 0%,
        rgba(167, 139, 250, 0.3) 100%
    );
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #60a5fa;
    flex-shrink: 0;
    box-shadow:
        0 10px 30px rgba(96, 165, 250, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.index-page .info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 40px rgba(96, 165, 250, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.index-page .info-card .info-content {
    position: relative;
    text-align: left;
    color: #cbd5e1;
    line-height: 1.8;
    z-index: 1;
}

.index-page .info-card .info-content p {
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.index-page .info-card:hover .info-content p {
    color: #e2e8f0;
}

.index-page .info-card .info-content strong {
    color: #fff;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Stats Grid with Counter Animation */
.index-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 3rem auto;
}

.index-page .stat-card {
    position: relative;
    background: linear-gradient(135deg,
        rgba(30, 41, 59, 0.8) 0%,
        rgba(15, 23, 42, 0.9) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.index-page .stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(96, 165, 250, 0.05) 0%,
        rgba(167, 139, 250, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.index-page .stat-card:hover::before {
    opacity: 1;
}

.index-page .stat-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.index-page .stat-card:hover::after {
    opacity: 0.3;
    animation: statBorderGlow 2s ease-in-out infinite;
}

@keyframes statBorderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.index-page .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(96, 165, 250, 0.4);
}

.index-page .stat-card .stat-value {
    position: relative;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.5));
    animation: statValuePulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes statValuePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.index-page .stat-card .stat-label {
    position: relative;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    transition: all 0.3s ease;
}

.index-page .stat-card:hover .stat-label {
    color: #e2e8f0;
    transform: translateY(-2px);
}

/* Enhanced CTA Actions */
.index-page .cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .index-page .header-section .logo {
        font-size: 2rem;
    }

    .index-page .header-section .main-heading {
        font-size: 1.75rem;
    }

    .index-page .header-section .tagline {
        font-size: 1.25rem;
    }

    .index-page .info-card {
        flex-direction: column;
        text-align: center;
    }

    .index-page .info-card .info-content {
        text-align: center;
    }

    .index-page .info-card .info-icon {
        margin: 0 auto;
    }
}

/* ============================================
   LOGIN PAGE STYLES
   ============================================ */

.login-page,
.login-page html {
    min-height: 100vh;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.login-page {
    padding-top: 72px;
}

.login-content-area {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
    position: relative;
}

.login-form-box {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Login/Register Form Styles */
.login-page .form-label,
.register-page .form-label {
    color: #94a3b8;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.login-page .form-control,
.register-page .form-control {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.login-page .form-control:focus,
.register-page .form-control:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    color: #fff;
    outline: none;
}

.login-page .form-control::placeholder,
.register-page .form-control::placeholder {
    color: #64748b;
}

/* Brand Button */
.btn-brand {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    height: auto;
}

.btn-brand:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-1px);
}

.btn-brand:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Text Brand Link */
.text-brand {
    color: #3b82f6;
}

.text-brand:hover {
    color: #60a5fa;
}

/* OR Divider */
.or {
    text-align: center;
    margin: 20px 0;
    color: #64748b;
    position: relative;
}

.or::before,
.or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: rgba(148, 163, 184, 0.2);
}

.or::before { left: 0; }
.or::after { right: 0; }
.or span { background: transparent; padding: 0 15px; }

/* Password Toggle */
.showpass {
    position: absolute;
    right: 12px;
    top: 38px;
    cursor: pointer;
    color: #64748b;
    z-index: 10;
    font-size: 18px;
}

.showpass:hover { color: #94a3b8; }

.showpass.show::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    content: "\f06e";
}

.showpass.hide::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    content: "\f070";
}

/* Login/Register Animation Styles */
.trip-text {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: tripDraw 6s ease-in-out infinite;
}

@keyframes tripDraw {
    0% { stroke-dashoffset: 1; stroke: rgba(96, 165, 250, 0.25); }
    50% { stroke-dashoffset: 0; stroke: rgba(167, 139, 250, 0.4); }
    100% { stroke-dashoffset: 1; stroke: rgba(96, 165, 250, 0.25); }
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dash 4s alternate ease-in-out infinite;
}

.paths {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dashtwo 6s alternate ease-in-out infinite;
}

@keyframes dash {
    from { stroke-dashoffset: 1; }
    to { stroke-dashoffset: 0; }
}

@keyframes dashtwo {
    from { stroke-dashoffset: 1; }
    to { stroke-dashoffset: 0; }
}

/* ============================================
   REGISTER PAGE STYLES
   ============================================ */

.register-page,
.register-page html {
    min-height: 100vh;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

.register-page {
    padding-top: 72px;
}

.register-content-area {
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 20px;
    position: relative;
}

.register-form-box {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Register Form Specific */
.register-page .form-check-input {
    background-color: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.3);
}

.register-page .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.register-page .form-check-label {
    color: #94a3b8;
    font-size: 0.85rem;
}

.register-page .form-check-label a {
    color: #3b82f6;
}

.register-page .form-check-label a:hover {
    color: #60a5fa;
}

/* Site Footer (for login/register pages) */
.site-footer {
    background: #030712;
    padding: 60px 0 30px;
    margin-top: 0;
}

.site-footer .footer-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer .footer-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.site-footer .footer-col h3 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.site-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-col ul li {
    margin-bottom: 0.75rem;
}

.site-footer .footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.site-footer .footer-col ul li a:hover {
    color: #3b82f6;
}

.site-footer .footer-col ul li a i {
    margin-right: 8px;
    width: 16px;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.site-footer .footer-bottom small {
    color: #64748b;
    display: block;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .site-footer .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================
   DOCUMENTATION HOME PAGE STYLES
   ============================================ */

.doc-home-page {
    min-height: 100vh;
    padding-top: 72px;
}

.doc-home-page .page-content {
    padding: 2rem;
}

.doc-home-page .header-section {
    text-align: center;
    padding: 3rem 1rem;
}

.doc-home-page .header-section .logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.doc-home-page .header-section .logo i {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.doc-home-page .header-section .tagline {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-top: 0.75rem;
}

.doc-home-page .cards-section {
    padding: 2rem 1rem 4rem;
    text-align: center;
}

.doc-home-page .cards-section > .section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.doc-home-page .cards-section > .section-intro {
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.doc-home-page .cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.doc-home-page .card-item {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.doc-home-page .card-item:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.doc-home-page .card-item .icon-holder {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-home-page .card-item .icon-holder i {
    color: white;
    font-size: 1.75rem;
}

.doc-home-page .card-item .card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.doc-home-page .card-item .card-desc {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

.doc-home-page .card-item .card-link {
    position: absolute;
    inset: 0;
}



/* ========================================
   INDEX PAGE STYLES - ENHANCED
   ======================================== */

/* Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6); }
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(59, 130, 246, 0.6); }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideRight 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
    opacity: 0;
}

.animate-float-in {
    animation: floatIn 1s ease forwards;
    opacity: 0;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Hover Effects */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hover-rotate {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-rotate:hover {
    transform: rotate(10deg) scale(1.1);
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

.parallax-image {
    transition: transform 0.3s ease;
}

.tilt-image {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tilt-image:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
}


/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.section-badge i {
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    padding: 140px 2rem 100px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(3, 7, 18, 0.95) 50%);
    position: relative;
    overflow: hidden;
}

/* SVG Animated Lines */
.svg-anima {
    overflow: hidden;
}

.svg-anima svg {
    position: relative;
    width: 100%;
    height: 100%;
}

.svg-anima path {
    stroke-width: 0.51;
}

.path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dash 4s alternate ease-in-out infinite;
}

.paths {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dashtwo 5s alternate ease-in-out infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dashtwo {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Hide SVG animation on mobile for performance */
@media (max-width: 768px) {
    .svg-anima {
        display: none !important;
    }
}

/* Hero Container Center */
.hero-container-center {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: 70vh;
    padding: 2rem;
}

/* Rotating Header */
.rotating-header-wrapper {
    margin-bottom: 2rem;
}

.rotating-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.home-banner-heading {
    font-size: 4rem;
    margin: 0;
    padding: 10px;
    line-height: 1;
    background-clip: text;
    -webkit-background-clip: text;
    color: #fff;
    font-weight: 800;
    animation: rotateColors 9s linear infinite;
}

.heading1 {
    animation-name: rotateColors1;
    animation-delay: 0s;
}

.heading2 {
    animation-name: rotateColors2;
    animation-delay: 3s;
}

.heading3 {
    animation-name: rotateColors3;
    animation-delay: 6s;
}

@keyframes rotateColors {
    0%, 33.33%, 66.67% {
        color: #fff;
    }
    33.34%, 66.66%, 100% {
        color: transparent;
    }
}

@keyframes rotateColors1 {
    0%, 66.66% {
        background-image: none;
        color: #fff;
    }
    66.67%, 100% {
        background-image: linear-gradient(to right, #FF5733, #FFB347);
        color: transparent;
    }
}

@keyframes rotateColors2 {
    0%, 66.66% {
        background-image: none;
        color: #fff;
    }
    66.67%, 100% {
        background-image: linear-gradient(to right, #3366FF, #66A3FF);
        color: transparent;
    }
}

@keyframes rotateColors3 {
    0%, 66.66% {
        background-image: none;
        color: #fff;
    }
    66.67%, 100% {
        background-image: linear-gradient(to right, #04832e, #4ebd4e);
        color: transparent;
    }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 3rem;
    max-width: 800px;
}

.hero-subtitle b {
    color: #fff;
    font-weight: 600;
}

/* Hero Actions Center */
.hero-actions-center {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-light {
    background-color: #00b2ff;
    color: #fff;
    border: 2px solid #00b2ff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #0096d9;
    color: #fff;
    transform: translateY(-2px);
}

.btn-dark-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-dark-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.border-round {
    border-radius: 8px;
}

.btn-shadows {
    box-shadow: 0 0 75px 0 rgba(0, 178, 255, 0.5);
}

/* Platform Description Section */
.platform-description-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, rgba(3, 7, 18, 0.95) 0%, rgba(59, 130, 246, 0.05) 100%);
    position: relative;
}

.platform-description-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.platform-description-content {
    max-width: 600px;
}

.platform-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.platform-title .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-text {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 0;
}

.platform-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    animation: float 20s linear infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}


/* Overview Section */
.overview-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.95) 0%, rgba(30, 41, 59, 0.3) 100%);
    position: relative;
}

.overview-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.overview-content {
    max-width: 550px;
}

.overview-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.overview-text {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Booking Engine Section */
.booking-engine-section {
    padding: 100px 2rem;
    background: rgba(3, 7, 18, 0.8);
    position: relative;
}

.booking-engine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.booking-content {
    max-width: 550px;
}

.booking-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.booking-text {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.booking-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-weight: 500;
}

.feature-icon-ring {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon-ring i {
    color: #60a5fa;
    font-size: 1.125rem;
}

.booking-feature:hover .feature-icon-ring {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
}

.booking-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.7;
}


/* Benefits Section */
.benefits-section {
    padding: 100px 2rem;
    background: rgba(3, 7, 18, 0.8);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.25);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(-5deg);
}

.benefit-icon i {
    font-size: 2rem;
    color: #60a5fa;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.benefit-card p {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Features Tabs Section */
.features-section {
    padding: 100px 2rem;
    background: linear-gradient(180deg, rgba(3, 7, 18, 0.9) 0%, rgba(30, 41, 59, 0.3) 100%);
}

.features-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.15);
    color: #94a3b8;
    padding: 1rem 1.75rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.tab-btn:hover {
    background: rgba(59, 130, 246, 0.15);
    color: #fff;
    border-color: rgba(59, 130, 246, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.tab-btn i {
    font-size: 1.1rem;
}

.tabs-content {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.tab-panel {
    display: none !important;
}

.tab-panel.active {
    display: block !important;
    animation: fadeIn 0.5s ease;
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.tab-text h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.tab-text p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 0.875rem;
    font-size: 1rem;
}

.feature-list li i {
    color: #22c55e;
    font-size: 1rem;
}

.tab-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.35);
}


/* Products Section */
.products-section {
    padding: 100px 2rem;
    background: rgba(3, 7, 18, 0.9);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #3b82f6);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
    animation: gradientShift 2s linear infinite;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.product-icon i {
    font-size: 1.75rem;
    color: #60a5fa;
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(3, 7, 18, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content .section-badge {
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-image {
    display: flex;
    justify-content: center;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}


/* Index Page Responsive Styles */
@media (max-width: 1024px) {
    .hero-container,
    .overview-container,
    .booking-container,
    .cta-container,
    .platform-description-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content,
    .overview-content,
    .booking-content,
    .platform-description-content {
        max-width: 100%;
    }

    .hero-actions,
    .cta-actions,
    .booking-features {
        justify-content: center;
    }

    .home-banner-heading {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tab-content-grid {
        grid-template-columns: 1fr;
    }

    .overview-image,
    .booking-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 1.5rem 80px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .home-banner-heading {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-actions-center {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions-center .btn {
        width: 100%;
    }

    .platform-title {
        font-size: 1.875rem;
    }

    .platform-text {
        font-size: 1rem;
    }

    .overview-section,
    .booking-engine-section,
    .benefits-section,
    .features-section,
    .products-section,
    .cta-section,
    .platform-description-section {
        padding: 80px 1.5rem;
    }

    .section-header .section-title,
    .overview-content .section-title,
    .booking-content .section-title,
    .cta-content h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

    .booking-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 1rem 60px;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .overview-section,
    .booking-engine-section,
    .benefits-section,
    .features-section,
    .products-section,
    .cta-section {
        padding: 60px 1rem;
    }

    .section-header .section-title,
    .overview-content .section-title,
    .booking-content .section-title,
    .cta-content h2 {
        font-size: 1.75rem;
    }

    .tabs-content {
        padding: 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* ========================================
   SCROLL PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Optimize sections for better scroll performance */
.doc-section {
    contain: layout style;
}

/* Optimize code blocks */
.code-block,
pre {
    contain: layout style paint;
}

/* Reduce repaints on scroll */
.section-block {
    contain: layout style;
}

/* Optimize images */
img {
    content-visibility: auto;
}

/* Optimize heavy animations on mobile */
@media (max-width: 768px) {
    * {
        animation-duration: 0.5s !important;
        transition-duration: 0.3s !important;
    }

    /* Disable parallax on mobile */
    .parallax-image {
        transform: none !important;
    }
}

/* ========================================
   LOGIN/REGISTER PAGE STYLES
   ======================================== */

/* Login/Register Page Layout */
.login-page,
.register-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.login-page #app,
.register-page .h-100.container-fluid {
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    position: relative;
}

.login-page #app > .d-flex,
.register-page .h-100.container-fluid > .d-flex {
    min-height: calc(100vh - 80px);
    position: relative;
}

/* Form Container - Left Side */
.logg {
    position: absolute;
    z-index: 1;
    left: calc(50% + 300px);
    transform: translate(-50%, -50%);
    top: 50%;
    background-color: #fff;
    width: 350px;
}

.logg::after {
    content: "";
    box-shadow: 0px 0px 30px -22px #000;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -12;
}

.logg:hover {
    background-color: #fff;
}

.logg::before {
    content: "";
    position: absolute;
    box-shadow: 0px -34px 75px 0px rgba(0, 0, 0, 0.2);
    background-image: linear-gradient(to left top, #09015c, #091565, #0f246c, #1a3372, #274076, #285387, #2c6697, #3579a5, #2999c1, #22b9d7, #37dae7, #5ffbf1);
    top: 0px;
    left: 0px;
    height: 190px;
    width: 100%;
    z-index: -1;
    background-size: auto 1000px;
}

/* Decorative Right Panel */
.dd {
    height: 100%;
    min-height: calc(100vh - 80px);
    background-image: linear-gradient(190deg, #09015c, #091565, #0f246c, #1a3372, #274076, #285387, #2c6697, #3579a5, #2999c1, #22b9d7, #37dae7, #5ffbf1);
    background-size: auto 100vh;
    background-repeat: no-repeat;
    background-color: #09015c;
    position: relative;
}

/* Decorative Circles */
.c-one,
.c-two,
.c-tre {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.c-one {
    width: 300px;
    height: 300px;
    background: #fff;
    top: 10%;
    right: 10%;
}

.c-two {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: 20%;
    right: 30%;
}

.c-tre {
    width: 150px;
    height: 150px;
    background: #fff;
    top: 40%;
    right: 5%;
}

/* Form Signin Styles */
.form-signin {
    overflow-x: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

.form-signin .form-control {
    border-radius: 0px;
    background: transparent;
    border: 0px solid;
    padding: 0px 0px 0px 0px;
    font-size: 18px;
}

/* Form Label Styles */
.form-signin .form-label {
    position: absolute;
    margin: 2px 0px 0px 2px;
    transition: all 0.1s ease-in-out;
    white-space: nowrap;
    z-index: -1;
    color: #838383;
}

/* Input Focus States */
.unclicked {
    box-shadow: 0px 2px 0px rgba(216, 216, 216, 0.81);
}

.unclicked .form-label {
    font-size: 14px;
}

.clicked {
    box-shadow: 0px 2px 0px #22b9d7;
    margin-bottom: 40px;
}

.clicked input.form-control {
    box-shadow: 0px 2px 0px #22b9d7;
    transition: box-shadow 0.3s ease-in-out !important;
    color: #22b9d7;
}

.clicked .form-label {
    position: absolute;
    margin: -20px 0px 0px 0px;
    transition: all 0.1s ease-in-out;
    z-index: 2;
    color: #22b9d7;
    font-size: 14px;
}

/* Password Eye Icon */
.eye {
    background-color: #22b9d7;
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.015 7c4.751 0 8.063 3.012 9.504 4.636-1.401 1.837-4.713 5.364-9.504 5.364-4.42 0-7.93-3.536-9.478-5.407 1.493-1.647 4.817-4.593 9.478-4.593zm0-2c-7.569 0-12.015 6.551-12.015 6.551s4.835 7.449 12.015 7.449c7.733 0 11.985-7.449 11.985-7.449s-4.291-6.551-11.985-6.551zm-.015 5c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2zm0-2c-2.209 0-4 1.792-4 4 0 2.209 1.791 4 4 4s4-1.791 4-4c0-2.208-1.791-4-4-4z"/></svg>');
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M12.015 7c4.751 0 8.063 3.012 9.504 4.636-1.401 1.837-4.713 5.364-9.504 5.364-4.42 0-7.93-3.536-9.478-5.407 1.493-1.647 4.817-4.593 9.478-4.593zm0-2c-7.569 0-12.015 6.551-12.015 6.551s4.835 7.449 12.015 7.449c7.733 0 11.985-7.449 11.985-7.449s-4.291-6.551-11.985-6.551zm-.015 5c1.103 0 2 .897 2 2s-.897 2-2 2-2-.897-2-2 .897-2 2-2zm0-2c-2.209 0-4 1.792-4 4 0 2.209 1.791 4 4 4s4-1.791 4-4c0-2.208-1.791-4-4-4z"/></svg>');
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
}

.icon-eye {
    width: 24px;
    height: 20px;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    right: 8px;
    cursor: pointer;
    top: -2px;
}

.icon-eye.show {
    opacity: 0.8;
    background-color: #ccc;
}

.icon-eye.hide {
    opacity: 1;
}

/* Brand Button */
.btn-brand {
    --bs-btn-bg: #285387;
    --bs-btn-hover-bg: #22b9d7;
    --bs-btn-active-border-color: #22b9d7;
    --bs-btn-active-bg: #22b9d7;
    --bs-btn-focus-box-shadow: #22b9d7;
    --bs-btn-border-color: #285387;
    --bs-btn-hover-border-color: #22b9d7;
    --bs-btn-border-radius: 10px;
    background-color: #285387;
    border: 0px solid;
    border-radius: 10px;
    margin-bottom: 20px;
}

.btn-brand:hover {
    background-color: #22b9d7;
}

form .btn-brand:disabled,
form .login-button:disabled {
    background-color: #7b7b7b;
    opacity: 0.6;
}

/* Text Brand Color */
.text-brand {
    color: #22b9d7;
}

/* OR Divider */
.or {
    border-top: 1px solid #ccc;
    position: relative;
    margin-top: 20px;
    margin-bottom: 10px;
}

.or span {
    color: #8e8e8e;
    margin: 0 auto;
    margin-top: -12px;
    display: block;
    width: 36px;
    height: 20px;
    position: relative;
    background: #fff;
    padding: 0px 8px;
    font-size: 14px;
    text-align: center;
}

/* Login Loader */
.login-loader {
    text-align: center;
    color: #333;
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    bottom: 0;
    height: 70px;
    box-shadow: 0px -22px 20px -10px rgba(255, 255, 255, 0.9);
    font-style: italic;
}

/* Animation Container */
.anim {
    overflow: hidden;
}

.anim svg:nth-child(1) {
    min-height: 1000px;
}

.anim,
.anim svg {
    position: relative;
    width: 100%;
    height: 100%;
    top: 80px;
}

.anim path {
    stroke-width: 0.51;
}

.anim circle {
    stroke-width: 0.51;
}

/* SVG Path Animations */
.path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dash 4s alternate ease-in-out infinite;
}

.paths {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    animation: dashtwo 5s alternate ease-in-out infinite;
}

@keyframes dash {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dashtwo {
    from {
        stroke-dashoffset: 1;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Font Size Utility */
.fz-2 {
    font-size: 2rem;
}

.fw-semibold.text-white.fz-2 {
    font-size: 30px;
}

/* Form Control Focus Override */
.form-signin .form-control:focus {
    color: var(--bs-body-color);
    background-color: transparent;
    border-color: transparent;
    outline: 0;
    box-shadow: none;
}

.form-signin input::placeholder {
    visibility: hidden !important;
}

/* Footer on Login/Register Pages */
.login-page .site-footer,
.register-page .site-footer {
    position: relative;
    z-index: 10;
    margin-top: 0;
}

/* Mobile Responsive */
@media screen and (max-width: 900px) {
    .logg {
        width: 330px;
        left: 50%;
    }

    .fw-semibold.text-white.fz-2 {
        font-size: 26px;
    }

    .paths,
    .path {
        display: none;
    }

    .c-one,
    .c-two,
    .c-tre {
        display: none;
    }
}