/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 23 2026 | 18:00:53 */
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Elite Digital Marketing Agency Dubai</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #fff;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #667eea;
        }

        .cta-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            padding: 150px 2rem 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="3" fill="%23667eea" opacity="0.3"/><circle cx="300" cy="200" r="2" fill="%23764ba2" opacity="0.3"/><circle cx="500" cy="150" r="3" fill="%23667eea" opacity="0.3"/><circle cx="700" cy="300" r="2" fill="%23764ba2" opacity="0.3"/><circle cx="900" cy="100" r="3" fill="%23667eea" opacity="0.3"/><circle cx="1100" cy="250" r="2" fill="%23764ba2" opacity="0.3"/></svg>');
            animation: float 20s infinite linear;
        }

        @keyframes float {
            0% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-20px) translateX(10px); }
            100% { transform: translateY(0) translateX(0); }
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
        }

        .hero .gradient-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .secondary-btn {
            background: transparent;
            color: #fff;
            padding: 0.8rem 2rem;
            border: 2px solid #667eea;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .secondary-btn:hover {
            background: #667eea;
            transform: translateY(-2px);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Stats Section */
        .stats {
            background: #f8f9fa;
            padding: 4rem 2rem;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            padding: 2rem;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }

        /* Services Section */
        .services {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        .section-header p {
            color: #666;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: scaleX(0);
            transition: transform 0.3s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Why Choose Us */
        .why-us {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            padding: 5rem 2rem;
        }

        .why-us-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-us h2 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-item {
            text-align: center;
            padding: 2rem;
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .feature-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .feature-item p {
            opacity: 0.9;
            line-height: 1.8;
        }

        /* Contact Section */
        .contact {
            padding: 5rem 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-form {
            background: #fff;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #1a1a2e;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        /* Footer */
        footer {
            background: #1a1a2e;
            color: #fff;
            padding: 3rem 2rem 1rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-links a {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .social-links a:hover {
            color: #667eea;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .contact-form {
                padding: 2rem;
            }
        }
    </style>
</head>
<body>
    <!-- Header -->
    <header>
        <nav>
            <div class="logo">DigitalElite</div>
            <ul class="nav-links">
                <li><a href="#services">Services</a></li>
                <li><a href="#why-us">Why Us</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
            <a href="#contact" class="cta-btn">Get Started</a>
            <button class="mobile-menu-btn">☰</button>
        </nav>
    </header>

    <!-- Hero Section -->
    <section class="hero">
        <div class="hero-content">
            <h1>Transform Your Brand with <span class="gradient-text">Dubai's Leading Digital Marketing Agency</span></h1>
            <p>We deliver data-driven strategies that elevate your brand, engage your audience, and drive measurable ROI in the competitive Dubai market.</p>
            <div class="hero-buttons">
                <a href="#contact" class="cta-btn">Book Free Consultation</a>
                <a href="#services" class="secondary-btn">Explore Services</a>
            </div>
        </div>
    </section>

    <!-- Stats Section -->
    <section class="stats">
        <div class="stats-container">
            <div class="stat-item">
                <div class="stat-number">500+</div>
                <div class="stat-label">Successful Campaigns</div>
            </div>
            <div class="stat-item">
                <div class="stat-number">250+</div>
                <div class="stat-label">Happy Clients</div>
            </div>
            <div class="stat-item">
                <div class="stat-number">3.5M+</div>
                <div class="stat-label">AED Revenue Generated</div>
            </div>
            <div class="stat-item">
                <div class="stat-number">98%</div>
                <div class="stat-label">Client Retention Rate</div>
            </div>
        </div>
    </section>

    <!-- Services Section -->
    <section class="services" id="services">
        <div class="section-header">
            <h2>Our Services</h2>
            <p>Comprehensive digital marketing solutions tailored for Dubai's dynamic business landscape</p>
        </div>
        <div class="services-grid">
            <div class="service-card">
                <div class="service-icon">🎯</div>
                <h3>Social Media Marketing</h3>
                <p>Dominate Instagram, TikTok, LinkedIn, and Snapchat with content that resonates with Dubai's diverse audience. Influencer partnerships and viral campaigns that deliver results.</p>
            </div>
            <div class="service-card">
                <div class="service-icon">🚀</div>
                <h3>SEO & Google Ads</h3>
                <p>Rank #1 on Google for high-intent keywords. Maximize ROI with expertly managed Google Ads campaigns targeting Dubai and UAE customers.</p>
            </div>
            <div class="service-card">
                <div class="service-icon">📱</div>
                <h3>Content Creation</h3>
                <p>Premium video production, photography, and copywriting that captures attention. From product shoots to brand stories that sell.</p>
            </div>
            <div class="service-card">
                <div class="service-icon">💻</div>
                <h3>Web Development</h3>
                <p>Lightning-fast, conversion-optimized websites and e-commerce stores. Mobile-first design that turns visitors into customers.</p>
            </div>
            <div class="service-card">
                <div class="service-icon">📊</div>
                <h3>Performance Marketing</h3>
                <p>Meta Ads, Google Ads, TikTok Ads - we manage it all. Data-driven campaigns with transparent reporting and guaranteed ROI.</p>
            </div>
            <div class="service-card">
                <div class="service-icon">🎨</div>
                <h3>Brand Strategy</h3>
                <p>Complete brand identity development, positioning, and strategy. Stand out in Dubai's competitive market with a powerful brand.</p>
            </div>
        </div>
    </section>

    <!-- Why Choose Us -->
    <section class="why-us" id="why-us">
        <div class="why-us-content">
            <h2>Why Dubai's Top Brands Choose Us</h2>
            <div class="features-grid">
                <div class="feature-item">
                    <div class="feature-icon">🏆</div>
                    <h3>Proven Track Record</h3>
                    <p>Award-winning campaigns with measurable results for Dubai's leading businesses</p>
                </div>
                <div class="feature-item">
                    <div class="feature-icon">🌍</div>
                    <h3>Dubai Market Expertise</h3>
                    <p>Deep understanding of UAE regulations, culture, and consumer behavior</p>
                </div>
                <div class="feature-item">
                    <div class="feature-icon">💡</div>
                    <h3>Innovative Strategies</h3>
                    <p>Cutting-edge tactics that keep you ahead of the competition</p>
                </div>
                <div class="feature-item">
                    <div class="feature-icon">📈</div>
                    <h3>Data-Driven Results</h3>
                    <p>Every decision backed by analytics and performance metrics</p>
                </div>
            </div>
        </div>
    </section>

    <!-- Contact Section -->
    <section class="contact" id="contact">
        <div class="section-header">
            <h2>Let's Grow Your Business Together</h2>
            <p>Get a free digital marketing consultation and custom strategy for your business</p>
        </div>
        <form class="contact-form" id="contactForm">
            <div class="form-group">
                <label for="name">Full Name *</label>
                <input type="text" id="name" name="name" required>
            </div>
            <div class="form-group">
                <label for="email">Email Address *</label>
                <input type="email" id="email" name="email" required>
            </div>
            <div class="form-group">
                <label for="phone">Phone Number *</label>
                <input type="tel" id="phone" name="phone" required>
            </div>
            <div class="form-group">
                <label for="service">Service Interested In *</label>
                <select id="service" name="service" required>
                    <option value="">Select a service</option>
                    <option value="social-media">Social Media Marketing</option>
                    <option value="seo">SEO & Google Ads</option>
                    <option value="content">Content Creation</option>
                    <option value="web">Web Development</option>
                    <option value="performance">Performance Marketing</option>
                    <option value="branding">Brand Strategy</option>
                    <option value="all">Complete Package</option>
                </select>
            </div>
            <div class="form-group">
                <label for="budget">Monthly Budget (AED)</label>
                <select id="budget" name="budget">
                    <option value="">Select budget range</option>
                    <option value="5k-10k">5,000 - 10,000</option>
                    <option value="10k-25k">10,000 - 25,000</option>
                    <option value="25k-50k">25,000 - 50,000</option>
                    <option value="50k+">50,000+</option>
                </select>
            </div>
            <div class="form-group">
                <label for="message">Tell Us About Your Project *</label>
                <textarea id="message" name="message" required></textarea>
            </div>
            <button type="submit" class="submit-btn">Request Free Consultation</button>
        </form>
    </section>

    <!-- Footer -->
    <footer>
        <div class="footer-content">
            <div class="social-links">
                <a href="#" aria-label="Instagram">📷</a>
                <a href="#" aria-label="LinkedIn">💼</a>
                <a href="#" aria-label="Facebook">👥</a>
                <a href="#" aria-label="TikTok">🎵</a>
            </div>
            <div class="footer-bottom">
                <p>&copy; 2024 DigitalElite. All Rights Reserved. | Dubai, UAE</p>
                <p>📍 DIFC, Dubai | 📞 +971 XX XXX XXXX | ✉️ info@digitalelite.ae</p>
            </div>
        </div>
    </footer>

    <script>
        // Form submission handler
        document.getElementById('contactForm').addEventListener('submit', function(e) {
            e.preventDefault();
            
            // Get form data
            const formData = new FormData(e.target);
            const data = Object.fromEntries(formData);
            
            // Here you would typically send the data to your server
            console.log('Form submitted:', data);
            
            // Show success message
            alert('Thank you for your interest! We will contact you within 24 hours.');
            
            // Reset form
            e.target.reset();
        });

        // Smooth scrolling
        document.querySelectorAll('a[href^="#"]').forEach(anchor => {
            anchor.addEventListener('click', function (e) {
                e.preventDefault();
                const target = document.querySelector(this.getAttribute('href'));
                if (target) {
                    target.scrollIntoView({
                        behavior: 'smooth',
                        block: 'start'
                    });
                }
            });
        });

        // Animate stats on scroll
        const observerOptions = {
            threshold: 0.5
        };

        const observer = new IntersectionObserver((entries) => {
            entries.forEach(entry => {
                if (entry.isIntersecting) {
                    const statNumbers = entry.target.querySelectorAll('.stat-number');
                    statNumbers.forEach(stat => {
                        const finalValue = stat.textContent;
                        animateValue(stat, finalValue);
                    });
                    observer.unobserve(entry.target);
                }
            });
        }, observerOptions);

        const statsSection = document.querySelector('.stats');
        if (statsSection) {
            observer.observe(statsSection);
        }

        function animateValue(element, finalValue) {
            const isPercentage = finalValue.includes('%');
            const hasPlus = finalValue.includes('+');
            const numValue = parseFloat(finalValue.replace(/[^0-9.]/g, ''));
            
            let current = 0;
            const increment = numValue / 50;
            const timer = setInterval(() => {
                current += increment;
                if (current >= numValue) {
                    current = numValue;
                    clearInterval(timer);
                }
                
                let displayValue = Math.floor(current);
                if (finalValue.includes('M')) {
                    displayValue = (current / 1000000).toFixed(1) + 'M';
                } else if (finalValue.includes('k')) {
                    displayValue = Math.floor(current) + 'k';
                }
                
                element.textContent = displayValue + (hasPlus ? '+' : '') + (isPercentage ? '%' : '');
            }, 20);
        }
    </script>
</body>
</html>