<header class="header">
  <div class="header-container">
    <div class="logo">
      <img src="https://leadmasteragency.com/wp-content/uploads/2025/10/NEw-logo.png" alt="Logo" />
    </div>

   <nav class="nav-links">
  <a href="#why-us">Why Us</a>
  <a href="#portfolio">Portfolio</a>
  <a href="#plans">Plans</a>
  <a href="#reviews">Client Reviews</a>
  <a href="#faqs">FAQs</a>
</nav>

    <a href="https://wa.me/+923359049221" class="whatsapp-btn">
      <i class="fab fa-whatsapp"></i>
      <span>Connect with us</span>
    </a>

    <div class="menu-icon" onclick="toggleMenu()">☰</div>
  </div>
</header>

<!-- Floating WhatsApp Button -->
<a href="https://wa.me/+923359049221" class="floating-whatsapp" target="_blank" title="Chat with us">
  <i class="fab fa-whatsapp"></i>
</a>

<style>
/* === GLOBAL THEME COLORS === */
:root {
  --bg-10: #0e141b;
  --bg-20: #121922;
  --fg-90: #ffffff;
  --fg-70: #b9c2cc;
  --accent: #10a37f;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

/* === HEADER === */
.header {
  position: fixed;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  background: rgba(18, 25, 34, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

/* === LOGO === */
.logo img {
  width: 50px;
  height: auto;
  transition: all 0.3s ease;
}

/* === NAVIGATION === */
.nav-links {
  display: flex;
  gap: 25px;
  margin-left: 150px;
}

.nav-links a {
  text-decoration: none;
  color: var(--fg-90);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}

.nav-links a:hover {
  color: var(--accent);
  opacity: 1;
}

/* === WHATSAPP BUTTON (HEADER) === */
.whatsapp-btn {
  background: #111418;
  color: var(--accent);
  font-weight: 500;
  border-radius: 40px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.25s ease;
  border: 1px solid var(--border);
}

.whatsapp-btn i {
  font-size: 16px;
}

.whatsapp-btn:hover {
  background: var(--accent);
  color: var(--bg-10);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(16, 163, 127, 0.25);
}

/* === MENU ICON === */
.menu-icon {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--fg-90);
  transition: opacity 0.25s ease;
}

/* === SCROLLED EFFECT === */
.header.scrolled .header-container {
  background: rgba(14, 20, 27, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* === MOBILE VIEW === */
@media (max-width: 768px) {
  .header-container {
    padding: 8px 15px;
    border-radius: 25px;
  }

  .logo img {
    width: 42px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 15px;
    background: rgba(18, 25, 34, 0.95);
    border: 1px solid var(--border);
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 15px 20px;
    gap: 14px;
    animation: fadeIn 0.3s ease;
    min-width: 180px;
  }

  .nav-links a {
    color: var(--fg-90);
    font-size: 14px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease;
  }

  .nav-links a:hover {
    background: var(--accent);
    color: #000;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
    font-size: 20px;
  }

  .header .whatsapp-btn {
    display: none;
  }

  .header {
    top: 5px;
  }
}

/* === FLOATING WHATSAPP BUTTON === */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(16, 163, 127, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(16, 163, 127, 0.55);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
</style>

<!-- Font Awesome for icons -->
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>

<script>
window.addEventListener("scroll", () => {
  const header = document.querySelector(".header");
  header.classList.toggle("scrolled", window.scrollY > 10);
});

function toggleMenu() {
  document.querySelector(".nav-links").classList.toggle("active");
}
</script>
<style>
/* 🌌 Unified Dark Theme (Matches Ad Creative Process Section) */
:root {
  --bg-dark: #060607;
  --bg-card: rgba(20, 20, 22, 0.9);
  --accent-cyan: #00eaff;
  --accent-green: #00ffa6;
  --text-primary: #ffffff;
  --text-secondary: rgba(255,255,255,0.75);
  --border-glow: rgba(0,255,200,0.4);
}

/* 🌟 Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 140px 20px 120px;
  background: radial-gradient(circle at top left, var(--bg-dark) 0%, #0e0f13 100%);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
}

/* 🔷 Geometric Pattern Background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.2;
  z-index: 0;
}

/* 💫 Glow Orb */
.hero-section::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(0,255,200,0.15), transparent 70%);
  filter: blur(100px);
  animation: float-glow 10s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-100px, 50px) scale(1.1); }
}

/* 📦 Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

/* 🏷️ Feature Badge */
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border-glow);
  border-radius: 50px;
  padding: 12px 24px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  backdrop-filter: blur(20px);
}
.badge-icon {
  color: var(--accent-green);
}

/* 🖋 Headline */
.hero-content h1 {
  font-size: 68px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--text-primary);
}
.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 📝 Description */
.hero-content p.description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 56px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 🚀 CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.cta-button-primary {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(0,255,200,0.25);
}
.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(0,255,200,0.35);
}

.cta-button-secondary {
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  text-decoration: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
}
.cta-button-secondary:hover {
  background: var(--accent-cyan);
  color: #000;
  transform: translateY(-3px);
}

/* 📊 Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 35px 25px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: all 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 8px 30px rgba(0,255,200,0.25);
}

.stat-number {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* 📱 Responsive */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 52px; }
  .hero-content p.description { font-size: 18px; }
}
@media (max-width: 768px) {
  .hero-section { padding: 100px 20px 80px; }
  .hero-content h1 { font-size: 38px; line-height: 1.2; }
  .hero-content p.description { font-size: 16px; max-width: 90%; }
  .cta-buttons { flex-direction: column; gap: 15px; margin-bottom: 60px; }
  .cta-button-primary, .cta-button-secondary {
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    font-size: 15px;
  }
  .stats-section { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .stat-number { font-size: 32px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 30px; }
  .stat-card { padding: 25px 18px; }
  .stat-number { font-size: 28px; }
}
</style>

<section id="hero" class="hero-section">
  <div class="hero-content">
    <!-- Feature Badge -->
    <div class="feature-badge">
      <div class="badge-icon">⚡</div>
      <span>Next-Gen Ad Engine</span>
    </div>

    <!-- Main Headline -->
    <h1>
      Create Stunning Ad Creatives That <span class="gradient-text">Convert</span>
    </h1>

    <!-- Description -->
    <p class="description">
      AI-powered ad design that stops the scroll and drives conversions. Trusted by 300+ brands across e-commerce, SaaS, mobile apps, beauty salons, and real estate.
    </p>

    <!-- CTA Buttons -->
    <div class="cta-buttons">
      <a href="#plans" class="cta-button-primary">Start Creating Now</a>
      <a href="#portfolio" class="cta-button-secondary">View Portfolio</a>
    </div>

    <!-- Stats Section -->
    <div class="stats-section">
      <div class="stat-card">
        <div class="stat-number">300+</div>
        <div class="stat-label">Happy Clients</div>
      </div>
      <div class="stat-card">
        <div class="stat-number">5K+</div>
        <div class="stat-label">Ads Created</div>
      </div>
      <div class="stat-card">
        <div class="stat-number">98%</div>
        <div class="stat-label">Client Satisfaction</div>
      </div>
      <div class="stat-card">
        <div class="stat-number">24h</div>
        <div class="stat-label">Avg Delivery</div>
      </div>
    </div>
  </div>
</section>

Our Scroll-Stopping Ad Creatives

Designed to grab attention, earn clicks, and drive conversions. Every ad below is crafted for performance and style.

Ad 1
Ad 2
Ad 3
Ad 4
Ad 5
Ad 6
Ad 7
Ad 8
Ad 9
Ad 10
Ad 11
Ad 12

How We Create High-Converting Ad Creatives

Step 1

Brand Research

We analyze your brand DNA and audience behavior to create emotionally aligned ad strategies.

Step 2

Creative Strategy

We define message direction, tone, and campaign goals before design begins for maximum clarity.

Step 3

Concept Design

Our designers create multiple ad concepts focusing on storytelling, emotion, and conversion flow.

Step 4

Feedback & Refinement

We collaborate closely with you, iterating until every design reflects your brand’s voice perfectly.

Step 5

Final Delivery

Receive polished, platform-ready creatives that perform across Facebook, Instagram, and beyond.

Step 6

Continuous Optimization

We track metrics, study engagement, and evolve visuals to boost ROI and keep your ads performing.

View My Work on Fiverr

Flexible Plans for Every Brand

Choose a plan that scales with your creative needs

Basic Plan

For startups and small brands

$149/Project
  • 5 Ad Designs
  • A/B Testing Variations
  • All Formats Included
  • Delivery in 4 Days
  • 1 Revision Round
Chat on WhatsApp

Monthly Retainer

For brands needing consistent output

$399/Month
  • Deliveries Every 48 Hours
  • A/B Testing Variations
  • All Formats Included
  • Static & Animated Ads
  • Social Media Graphics
Chat on WhatsApp

What Clients Say

Real feedback from brands that trusted our ad creatives — all verified on Fiverr.

Junaid Khalid

Junaid Khalid

Digital Content Creator & Social Media Expert

⭐ 4.8 rating · 581 orders · 7+ years on Fiverr

View My Fiverr Profile
✔ Verified Review

gracebynazzy 🇺🇸 United States

“Second time working with him — far exceeded my expectations! He’s patient, polite, and brought my vision to life. Highly recommend!”

⭐⭐⭐⭐⭐
✔ Verified Review

gracebynazzy 🇺🇸 United States

“He exceeded my expectations on this project. Polite, creative, and perfectly aligned with my brand’s mission. Will work with him again!”

⭐⭐⭐⭐⭐
✔ Verified Review

sheldanp 🇺🇸 United States

“I’ve worked with Junaid many times — his attention to detail and quick turnaround always amaze me. Perfect as always.”

⭐⭐⭐⭐⭐
✔ Verified Review

pkafkopoulos 🇬🇷 Greece

“Very good cooperation. We will work again in future! Instant response, creative work, and professional attitude.”

⭐⭐⭐⭐⭐
✔ Verified Review

rubenf71 🇺🇸 United States

“He goes above and beyond. Listens carefully and keeps improving until it’s perfect. Amazing communication.”

⭐⭐⭐⭐⭐
✔ Verified Review

lee747 🇦🇺 Australia

“Great as always. Ordered with Junaid countless times now. Always reliable and creative.”

⭐⭐⭐⭐⭐
✔ Verified Review

nikitam_03 🇳🇱 Netherlands

“Very good! I’m working with him every day! Always delivers beyond expectations.”

⭐⭐⭐⭐⭐
✔ Verified Review

kerstin_glamour 🇦🇹 Austria

“Die Kommunikation war unkompliziert und auf Änderungswünsche wurde perfekt eingegangen. Danke!”

⭐⭐⭐⭐⭐
✔ Verified Review

leboss500 🇲🇦 Morocco

“Very good job. Fast delivery and great understanding of requirements.”

⭐⭐⭐⭐⭐
✔ Verified Review

princess_kago 🇧🇼 Botswana

“Really loved working with him — definitely coming back. Smooth and creative process.”

⭐⭐⭐⭐⭐

Frequently Asked Questions

Everything you need to know about our creative process, delivery times, and collaboration methods.

Depending on your selected plan, you’ll receive your first batch of ad creatives within 3–5 business days. Revisions are usually delivered within 24–48 hours.

Absolutely. We can create multiple design styles for A/B testing or adapt to your brand’s specific visual identity — from minimalist to bold, performance-driven creatives.

No worries — we include free revisions until you’re fully happy with your ad creative. Our goal is to deliver high-converting designs that truly work for your brand.

Yes, we specialize in both static and animated ad creatives for Meta, TikTok, YouTube, and other platforms. You’ll get optimized files ready to upload instantly.

Definitely. Just share your brand assets and color palette — our designers ensure every ad feels cohesive with your existing branding and voice.

Yes, we provide exclusive rates for monthly retainer clients who require consistent ad production or campaign support. Contact us for a custom quote.

Let’s Create Winning Ads

Collaborate with our creative team to design ad visuals that convert and connect.