        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Tajawal', sans-serif;
            line-height: 1.6;
            background: #ffffff;
            color: #2c3e50;
            overflow-x: hidden;
        }

        /* Navigation - Same as main page */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            position: relative;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #00bcd4;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
            transition: all 0.3s ease;
        }

        .nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00bcd4;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00bcd4;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-btn {
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.89rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #00bcd4;
            margin: 3px 0;
            transition: 0.3s;
        }

        .mobile-menu.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            z-index: 999;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            padding-top: 100px;
        }

        .mobile-nav-overlay.active {
            transform: translateX(0);
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            padding: 2rem;
        }

        .mobile-nav-links a {
            text-decoration: none;
            color: #2c3e50;
            font-size: 1.2rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-nav-links a:hover {
            color: #00bcd4;
        }

        .mobile-cta-btn {
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            transition: all 0.3s ease;
        }

        /* Hero Section for Project */
        .project-hero {
            padding: 120px 0 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .project-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2300bcd4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.5;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .project-hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .project-info h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .project-info p {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .project-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 900;
            color: #00bcd4;
            display: block;
        }

        .stat-label {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .project-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .project-logo-container {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
            position: relative;
        }

        .project-logo-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(0, 188, 212, 0.1), transparent);
            animation: rotate 10s linear infinite;
            z-index: -1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(1deg); }
            50% { transform: translateY(-10px) rotate(0deg); }
            75% { transform: translateY(-30px) rotate(-1deg); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: #ffffff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Screenshots Section */
.screenshots-section {
    padding: 80px 0;
    background: #f8fafc;
}

.mobile-showcase {
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}

.mobile-frame {
    background: linear-gradient(135deg, #2d3748, #1a202c);
    border-radius: 35px;
    padding: 20px 15px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mobile-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #4a5568;
    border-radius: 2px;
}

.mobile-frame::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #4a5568;
    border-radius: 2px;
}

.mobile-screen {
    background: #000;
    border-radius: 25px;
    aspect-ratio: 9/19;
    overflow: hidden;
    position: relative;
}

.screen-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.screen-content.active {
    opacity: 1;
    transform: translateX(0);
}

.screen-header {
    padding: 40px 20px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.screen-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.screen-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    text-align: center;
}

.screen-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-image {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    backdrop-filter: blur(10px);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot.active {
    background: #00bcd4;
    transform: scale(1.2);
}

.carousel-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.nav-btn {
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}
        /* Pricing Section */
       .pricing-section {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 8px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 12px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.toggle-option.active {
    color: white;
    background: linear-gradient(135deg, #00bcd4, #26c6da);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
    border: 2px solid transparent;
    opacity: 0.7;
    transform: scale(0.95);
}

.pricing-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: #00bcd4;
    box-shadow: 0 20px 50px rgba(0, 188, 212, 0.2);
}

        .pricing-card.featured {
            border-color: #00bcd4;
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px) scale(1.05);
        }

        .pricing-badge {
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 900;
            color: #00bcd4;
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: #64748b;
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-features li i {
            color: #00bcd4;
            width: 20px;
        }

        .pricing-btn {
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            width: 100%;
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
        }

        /* Download Section */
        .download-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #00bcd4, #26c6da);
            color: white;
            text-align: center;
        }

        .download-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .download-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .download-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .download-btn {
            background: white;
            color: #00bcd4;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .download-btn.downloaded {
            background: #4caf50;
            color: white;
        }

        .download-info {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 2rem;
            max-width: 600px;
            margin: 0 auto;
            backdrop-filter: blur(10px);
        }

        .download-info h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .download-info ul {
            list-style: none;
            text-align: right;
        }

        .download-info li {
            padding: 0.3rem 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .download-info i {
            color: #ffffff;
            width: 20px;
        }

        /* Enhanced Footer - Same as main page */
        .footer {
            background: linear-gradient(135deg, #1a252f, #2c3e50);
            color: white;
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2300bcd4" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
            opacity: 0.5;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 1;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #00bcd4;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: #00bcd4;
        }

        .footer-section p {
            color: #b0bec5;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #b0bec5;
            text-decoration: none;
            transition: color 0.3s ease, padding-right 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: #00bcd4;
            padding-right: 0.5rem;
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: #b0bec5;
        }

        .contact-item i {
            width: 20px;
            color: #00bcd4;
            font-size: 1.1rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(0, 188, 212, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00bcd4;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 188, 212, 0.2);
        }

        .footer-social a:hover {
            background: #00bcd4;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(176, 190, 197, 0.2);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: #90a4ae;
            margin: 0;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .footer-logo img {
            width: 40px;
            height: 40px;
        }

        .footer-logo span {
            font-size: 1.5rem;
            font-weight: 700;
            color: #00bcd4;
        }

        /* Mobile Responsiveness */
/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .cta-btn {
        display: none;
    }

    /* Project Hero - Fixed Layout */
    .project-hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: center;
    }
    
    .project-info {
        order: 1;
    }
    
    .project-visual {
        order: 2;
    }

    .project-info h1 {
        font-size: 2.5rem;
    }

    .project-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto 2rem auto;
    }

    .project-logo-container {
        padding: 2rem;
        margin: 0 auto;
        max-width: 250px;
    }

    .project-logo-container img {
        width: 150px !important;
        height: auto !important;
    }

    /* Features and Screenshots */
    .features-grid,
    .screenshots-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing */
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        transform: scale(1) !important;
        opacity: 1 !important;
        margin-bottom: 1rem;
    }
    
    .pricing-card.featured {
        transform: none !important;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) !important;
    }
    
    .pricing-toggle {
        max-width: 250px;
    }
    
    .toggle-option {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    /* Mobile Frame */
    .mobile-frame {
        margin: 0 1rem;
    }
    
    .carousel-navigation {
        margin: 0 1rem;
        margin-top: 1.5rem;
    }

    /* Download Buttons */
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .nav-container,
    .container {
        padding: 0 1rem;
    }

    .project-hero {
        padding: 100px 0 60px;
    }

    .project-info h1 {
        font-size: 2rem;
    }

    .project-stats {
        grid-template-columns: 1fr;
    }

    .project-logo-container img {
        width: 120px !important;
    }

    .footer-container {
        padding: 0 1rem;
    }

    .mobile-showcase {
        max-width: 280px;
    }

    .carousel-controls {
        gap: 0.3rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}