/* Header CSS Variables */
:root {
    --primary-white: #ffffff;
    --primary-black: #000000;
    --primary-purple: #6C63FF;
    --text-dark: #1a1a1a;
    --border-light: rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition-standard: all 0.3s ease;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-standard);
    border-bottom: 1px solid var(--border-light);
}

.header-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 32px;
    width: auto;
    transition: var(--transition-standard);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition-standard);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    transition: var(--transition-standard);
    position: relative;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #6C63FF;
}

.nav-link.active {
    color: #6C63FF;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-standard);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-dark);
}

.nav-link.active::after {
    width: 100%;
}

/* CTA Button */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-contact {
    padding: 0.75rem 1.5rem;
    background: var(--primary-black);
    color: var(--primary-white);
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-standard);
    border: 1px solid var(--primary-black);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.mobile-menu-icon {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    position: relative;
    transition: var(--transition-standard);
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-standard);
}

.mobile-menu-icon::before {
    top: -6px;
}

.mobile-menu-icon::after {
    bottom: -6px;
}

/* Mobile Menu Active States */
.mobile-menu-toggle.active .mobile-menu-icon {
    background: transparent;
}

.mobile-menu-toggle.active .mobile-menu-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .mobile-menu-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 2rem;
    }

    .header-container {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .logo-text {
        font-size: 1rem;
    }

    .header-cta {
        display: none;
    }
}


 :root {
            --primary-white: #ffffff;
            --primary-black: #000000;
            --primary-purple: #6C63FF;
            --primary-blue: #4A90E2;
            --accent-gray: #f8f9fa;
            --accent-light: #f0f2f5;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --text-light: #888888;
            --border-light: rgba(0, 0, 0, 0.1);
            --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
            --transition-standard: all 0.3s ease;
            --header-height: 70px;
            --gradient-primary: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
            --gradient-light: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--primary-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Page Navigation Section */
        .page-navigation {
            padding: 120px 0 80px;
            background: var(--accent-gray);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--text-dark);
        }

        .page-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            padding: 0 2rem;
        }

        .page-card {
            background: var(--primary-white);
            border-radius: 12px;
            padding: 2rem;
            text-decoration: none;
            color: var(--text-dark);
            transition: var(--transition-standard);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .page-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: transparent;
        }

        .page-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .page-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .page-card p {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin: 0;
        }

        @media (max-width: 768px) {
            .page-navigation {
                padding: 100px 0 60px;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }

            .page-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: var(--primary-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: var(--transition-standard);
                padding: 2rem;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-link {
                font-size: 1.25rem;
            }

            .header-cta {
                display: none;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Header & Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .header-container {
            max-width: 1700px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-image {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-dark);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            align-items: center;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.5rem 0;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--text-dark);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary-black);
        }

        .nav-link.active::after {
            width: 100%;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn-contact {
            padding: 0.75rem 1.5rem;
            background: var(--primary-black);
            color: var(--primary-white);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .btn-contact:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .nav-link:hover {
            color: var(--text-gray);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--primary-white);
            position: relative;
            padding-top: var(--header-height);
            display: flex;
            flex-direction: column;
            justify-content: center;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: var(--gradient-light);
            opacity: 0.8;
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/images/grid-pattern.svg');
            opacity: 0.05;
            z-index: 1;
            pointer-events: none;
        }

        .legendary-badge {
            position: absolute;
            top: calc(var(--header-height) + 2rem);
            left: 4rem;
            background: linear-gradient(135deg, #0c0c0c 0%, #cdcdcd 100%);
            color: #fff;
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            z-index: 2;
            border-radius: 50px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(68, 68, 68, 0.2);
            animation: badgePulse 2s infinite;
        }

        @keyframes badgePulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            padding: 6rem 4rem;
            max-width: 1600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            padding-right: 2rem;
            position: relative;
        }

        .hero-text::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #000000;
            border-radius: 2px;
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
            color: var(--text-dark);
        }

        .hero-image {
            position: relative;
            height: 600px;
            overflow: hidden;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }

        .hero-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            filter: brightness(1.05) contrast(1.1);
        }

        .hero-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 1;
        }

        .hero-image:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .hero-image:hover .hero-img {
            transform: scale(1.05);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-purple) 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -1px;
        }

        .btn-primary {
            display: inline-block;
            background: #000;
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 500;
            border-radius: 4px;
            margin-right: 1rem;
            transition: all 0.3s ease;
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: #000;
            padding: 1rem 2rem;
            text-decoration: none;
            font-weight: 500;
            border: 1px solid #000;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover,
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .performance-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem;
            background: var(--primary-white);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--border-light);
            margin-top: 2rem;
            position: relative;
            z-index: 2;
        }

        .specs-section {
            padding: 4rem 2rem;
            background: var(--accent-light);
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .specs-category {
            background: var(--primary-white);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .specs-category-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .specs-category-title i {
            font-size: 1.25rem;
            color: var(--primary-purple);
        }

        .specs-list {
            display: grid;
            gap: 1.25rem;
        }

        .specs-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border-light);
        }

        .specs-item:last-child {
            border-bottom: none;
        }

        .specs-label {
            font-size: 0.95rem;
            color: var(--text-gray);
        }

        .specs-value {
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-dark);
        }

        @keyframes statsFloat {
            from {
                transform: translateY(20px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .stat-item {
            text-align: center;
            position: relative;
            padding: 1.5rem;
            border-radius: 16px;
            transition: all 0.3s ease;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        }

        .stat-value {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--text-dark) 0%, #cfcfcf 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 1rem;
            font-family: 'Rajdhani', sans-serif;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 1280px) {
            .hero-content {
                padding: 4rem 2rem;
                gap: 3rem;
            }

            .hero-title {
                font-size: 3.5rem;
            }

            .hero-image {
                height: 500px;
            }

            .performance-stats {
                max-width: 90%;
                padding: 2rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-image {
                height: 400px;
                transform: perspective(1000px) rotateY(-3deg);
            }

            .stat-value {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 3rem 1.5rem;
            }

            .hero-text {
                padding-right: 0;
                order: 1;
            }

            .hero-text::before {
                display: none;
            }

            .hero-image {
                order: 0;
                transform: none;
                height: 350px;
                margin: 0 -1.5rem;
                border-radius: 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .legendary-badge {
                left: 50%;
                transform: translateX(-50%);
                white-space: nowrap;
            }

            .performance-stats {
                margin: 2rem auto;
                padding: 1.5rem;
                gap: 1rem;
            }

            .stat-value {
                font-size: 2.5rem;
            }

            .stat-item {
                padding: 1rem;
            }

            .stat-label {
                font-size: 0.875rem;
            }

            .hero-buttons {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                margin: 0;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-image {
                height: 300px;
            }

            .performance-stats {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-item {
                padding: 1.5rem;
            }

            .stat-value {
                font-size: 3rem;
            }
        }

        /* .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--primary-black), transparent);
        } */

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text {
            padding-right: 2rem;
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-black);
            color: var(--primary-white);
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .hero-image {
            position: relative;
        }

        .hero-img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .btn-primary,
        .btn-secondary {
            display: inline-block;
            padding: 1rem 2rem;
            font-weight: 500;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--primary-black);
            color: var(--primary-white);
            margin-right: 1rem;
        }

        .btn-secondary {
            background: var(--accent-gray);
            color: var(--text-dark);
        }

        .btn-primary:hover,
        .btn-secondary:hover {
            transform: translateY(-2px);
        }

        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-transform: uppercase;
            background: var(--gradient-main);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: #2c2c2cb0;
            animation: titleFade 1s ease-in;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            animation: subtitleSlide 1s ease-in-out;
        }

        /* Quick Stats */
        .quick-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
            background: var(--primary-white);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 4px;
            background: var(--accent-gray);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-black);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: var(--text-gray);
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* About Section */
        .about-section {
            padding: 8rem 0;
            background: var(--gradient-light);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/images/grid-pattern.svg');
            opacity: 0.05;
            pointer-events: none;
        }

        .about-container {
            position: relative;
            z-index: 2;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-header {
            margin-bottom: 3rem;
        }

        .about-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-purple) 0%, #2e2e2e 100%);
            color: #fff;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .about-subtitle {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            line-height: 1.2;
            background: linear-gradient(135deg, #141414 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-intro {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #424242;
            margin-bottom: 3rem;
            font-weight: 500;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-item {
            background: var(--primary-white);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgb(173, 173, 173);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .feature-item:hover {
            transform: translateY(-5px);
            background: var(--primary-white);
            border-color: black;
            box-shadow: var(--shadow-md);
        }

        .feature-item h4 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            color: grey;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: rgb(68, 68, 68);
        }

        .feature-item p {
            color: var(--text-gray);
            line-height: 1.6;
        }

        .highlights-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .highlights-list li {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
            background: rgba(189, 189, 189, 0.212);
            padding: 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .highlights-list li:hover {
            background: rgba(172, 172, 172, 0.062);
        }

        .highlight-badge {
            background: linear-gradient(135deg, var(--primary-purple) 0%, #000000 100%);
            color: #fff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            flex-shrink: 0;
        }

        .highlight-content strong {

            display: block;
            color: #050505;
            margin-bottom: 0.5rem;
        }

        .highlight-content p {
            color: #616161;
            font-size: 0.95rem;
        }

        .about-images {
            position: relative;
        }

        .image-grid {
            display: grid;
            grid-template-rows: repeat(3, 200px);
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .about-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .about-img:hover {
            transform: scale(1.05);
        }

        .about-img.engine {
            grid-row: span 2;
        }

        .achievement-counter {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            background: rgba(255, 255, 255, 0.05);
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
        }

        .counter-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .counter-value {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #000000 0%, #a5a5a5 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .counter-label {
            color: #bbb;
            font-size: 0.875rem;
            font-weight: 500;
        }

        @media (max-width: 1200px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .image-grid {
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: 250px;
            }

            .about-img.engine {
                grid-row: auto;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 6rem 0;
            }

            .about-subtitle {
                font-size: 2rem;
            }

            .about-intro {
                font-size: 1.1rem;
            }

            .image-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(3, 200px);
            }

            .achievement-counter {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 3rem;
            text-transform: uppercase;
        }

        .section-title span {
            background: var(--gradient-main);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: #00000070;
        }

        /* Specifications Section */
        .specs-section {
            padding: 8rem 0;
            background: var(--accent-light);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }

        .specs-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .specs-subtitle {
            font-size: 1.25rem;
            color: #999;
            max-width: 600px;
            margin: 1rem auto 0;
        }

        .specs-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .specs-card {
            background: var(--primary-white);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .specs-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: black;
            background: var(--primary-white);
        }

        .specs-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .specs-icon {
            font-size: 1.5rem;
        }

        .specs-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            background: linear-gradient(135deg, #000000 0%, #999 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .specs-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .specs-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            border-radius: 8px;
            background: rgb(231 231 231);
            transition: background 0.3s ease;
        }

        .specs-row:hover {
            background: rgba(255, 255, 255, 0.06);
        }

        .specs-label {
            color: #999;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .specs-value {
            color: #000000;
            font-weight: 600;
            font-family: 'Rajdhani', sans-serif;
        }

        .specs-highlight {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .highlight-box {
            background: rgb(0 0 0 / 5%);
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid rgb(0 0 0 / 10%);
        }

        .highlight-box h4 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            color: #000000a1;
            text-align: center;
        }

        .highlight-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .highlight-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            color: #747474;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .highlight-list li::before {
            content: '•';
            color: black;
            font-size: 1.5em;
        }

        .highlight-list li:last-child {
            border-bottom: none;
        }

        @media (max-width: 1200px) {
            .specs-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .specs-section {
                padding: 6rem 0;
            }

            .specs-subtitle {
                font-size: 1.1rem;
                padding: 0 1rem;
            }

            .specs-highlight {
                grid-template-columns: 1fr;
            }

            .specs-card-header {
                margin-bottom: 1.5rem;
            }

            .specs-card h3 {
                font-size: 1.25rem;
            }

            .specs-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }

            .specs-value {
                font-size: 1.1rem;
            }
        }

        /* Gallery Section */
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            padding: 2rem;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Sound Section */
        .sound-section {
            padding: 6rem 2rem;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('/images/supra-mk4-engine.jpg') no-repeat center center/cover;
            text-align: center;
        }

        .sound-player {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
        }

        /* Animations */
        @keyframes badgePulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes titleFade {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes subtitleSlide {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Footer Styles */
        .footer {
            background: var(--accent-light);
            color: var(--text-dark);
            padding: 6rem 0 2rem;
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border-light);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 2fr 1.2fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .footer-logo-img {
            height: 40px;
            width: auto;
        }

        .footer-brand-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
            background: linear-gradient(135deg, #000000 0%, #666 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-tagline {
            color: #999;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            color: #666;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .social-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .footer-section h4 {
            color: #000000;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.75rem;
        }

        .footer-section ul a {
            color: #999;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .footer-section ul a:hover {
            color: #fff;
            padding-left: 0.5rem;
        }

        .footer-newsletter {
            background: rgba(255, 255, 255, 0.03);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-newsletter h4 {
            color: #000000;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .footer-newsletter p {
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
        }

        .newsletter-form input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            font-size: 0.95rem;
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form button {
            padding: 0.75rem 1.5rem;
            background: #fff;
            color: #000;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: var(--primary-purple);
            color: #fff;
            transform: translateY(-2px);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .copyright {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #fff;
        }

        .footer-credits {
            color: #666;
            font-size: 0.9rem;
            text-align: center;
            margin: 2rem 0 0;
        }

        @media (max-width: 1200px) {
            .footer-grid {
                grid-template-columns: 1fr 2fr;
            }

            .footer-newsletter {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer {
                padding: 4rem 0 2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }

            .footer-info {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form button {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.4rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .specs-table {
                font-size: 0.9rem;
            }

            .gallery {
                grid-template-columns: 1fr;
            }
        }