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

        body {
            font-family: 'Poppins', sans-serif;
            padding-top: 80px; /* Space for fixed navbar */
        }

        /* Brand Colors */
        :root {
            --brand-color: #C200C2;
        }

        .bg-brand {
            background-color: var(--brand-color);
        }

        .text-brand {
            color: var(--brand-color);
        }

        .border-brand {
            border-color: var(--brand-color);
        }

        .hover-bg-brand:hover {
            background-color: var(--brand-color);
            color: white;
        }

        .hover-text-brand:hover {
            color: var(--brand-color);
        }

        /* Navigation Bar */
        #navbar {
            background-color: #000000;
            color: white;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        #navbar.hide-navbar {
            transform: translateY(-100%);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .nav-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        /* Logo Section */
        .logo-section {
            flex-shrink: 0;
            display: flex;
            align-items: center;
        }

        .logo-link {
            display: block;
            background-color: #050505;
            padding: 0.5rem;
            border-radius: 0.375rem;
            text-decoration: none;
        }

        .logo-img {
            height: 64px;
            display: block;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: none;
            align-items: center;
            gap: 2rem;
        }

        @media (min-width: 768px) {
            .desktop-nav {
                display: flex;
            }
        }

        .nav-link {
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--brand-color);
        }

        /* Services Dropdown */
        .dropdown-wrapper {
            position: relative;
        }

        .dropdown-btn {
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.25rem;
            transition: color 0.3s;
        }

        .dropdown-btn:hover {
            color: var(--brand-color);
        }

        .dropdown-icon {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s;
        }

        .dropdown-wrapper:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown-menu {
            display: none;
            opacity: 0;
            transform: translateY(-10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            position: absolute;
            left: 0;
            margin-top: 0.5rem;
            width: 256px;
            background-color: white;
            border-radius: 0.375rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            padding: 0.5rem 0;
            z-index: 50;
            border: 1px solid #e5e7eb;
        }

        .dropdown-menu.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-item {
            display: block;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            color: #374151;
            text-decoration: none;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-item:hover {
            background-color: #f3f4f6;
            color: var(--brand-color);
        }

        /* CTA Button */
        .cta-wrapper {
            display: none;
            align-items: center;
        }

        @media (min-width: 768px) {
            .cta-wrapper {
                display: flex;
            }
        }

        .cta-btn {
            background-color: var(--brand-color);
            color: white;
            padding: 0.625rem 1.5rem;
            border-radius: 1rem;
            font-weight: 600;
            font-size: 0.875rem;
            text-decoration: none;
            transition: opacity 0.3s;
            box-shadow: 0 10px 15px -3px rgba(194, 0, 194, 0.2);
        }

        .cta-btn:hover {
            opacity: 0.9;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: flex;
            align-items: center;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            transition: color 0.3s;
        }

        .mobile-menu-btn:hover {
            color: #d1d5db;
        }

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

        .mobile-menu-btn svg {
            width: 1.5rem;
            height: 1.5rem;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            background-color: #000000;
            border-top: 1px solid #1f2937;
            position: absolute;
            width: 100%;
            left: 0;
        }

        @media (min-width: 768px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu.show {
            display: block;
        }

        .mobile-menu-content {
            padding: 0.5rem 1rem 1rem;
        }

        .mobile-nav-link {
            display: block;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            font-size: 1rem;
            font-weight: 500;
            color: white;
            text-decoration: none;
            transition: color 0.3s, background-color 0.3s;
        }

        .mobile-nav-link:hover {
            color: var(--brand-color);
        }

        /* Mobile Services Accordion */
        .mobile-services-btn {
            width: 100%;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            font-size: 1rem;
            font-weight: 500;
            color: white;
            background: none;
            border: none;
            cursor: pointer;
            transition: color 0.3s, background-color 0.3s;
        }

        .mobile-services-btn:hover {
            color: var(--brand-color);
            background-color: #111827;
        }

        .mobile-services-icon {
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s;
        }

        .mobile-services-icon.rotate {
            transform: rotate(180deg);
        }

        .mobile-services-dropdown {
            display: none;
            padding-left: 1.5rem;
            background-color: rgba(17, 24, 39, 0.5);
        }

        .mobile-services-dropdown.show {
            display: block;
        }

        .mobile-dropdown-item {
            display: block;
            padding: 0.5rem 0.75rem;
            font-size: 0.875rem;
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-dropdown-item:hover {
            color: white;
        }

        .mobile-cta {
            padding-top: 1rem;
            padding-bottom: 0.5rem;
        }

        .mobile-cta-btn {
            display: block;
            width: 100%;
            text-align: center;
            background-color: var(--brand-color);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 700;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .mobile-cta-btn:hover {
            opacity: 0.9;
        }

        /* Demo Content */
        .demo-content {
            padding: 2rem 1rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .demo-content h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #111;
        }

        .demo-content p {
            line-height: 1.6;
            color: #374151;
            margin-bottom: 1rem;
        }
        .mobile-nav-links{
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }