<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Marketeam UI</title>
<style>
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
/* Main Container */
.main-wrapper {
    width: 1200px;
    background: linear-gradient(135deg, #fdf2f8 0%, #f5f3ff 50%, #fdf2f8 100%);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}
/* Avatar Cards */
.avatar-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.avatar-card:hover {
    transform: translateY(-10px);
}
/* Glow Effects */
.glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}
</style>
</head>
<body>
    <!-- Background Glow -->
    <!-- Navbar -->
    <nav>
            Marketeam
        <ul>
            <li>Solutions â–¼</li>
            <li>Blog</li>
            <li>How it works</li>
            <li>Pricing</li>
            <li>AI Agent</li>
        </ul>
            <button>Sign In</button>
            <button>Book a Demo</button>
    </nav>
    <!-- Hero -->
        <h1>
            Access Top Marketing<br>
            Talent Instantly!
        </h1>
        <p>
            Unlock Top-Tier Marketing Expertise Without Overspending — Your 
            Success is Just a Step Away!
        </p>
            <button>
                Get Started
            </button>
            <button>
                Watch Video 
                â–¶
            </button>
    <!-- Avatars -->
        <!-- Left -->
            <img decoding="async" src="https://api.dicebear.com/7.x/adventurer/svg?seed=Ali">
        <!-- Circle -->
            <img decoding="async" src="https://api.dicebear.com/7.x/adventurer/svg?seed=Sara">
        <!-- Center -->
            <img decoding="async" src="https://api.dicebear.com/7.x/adventurer/svg?seed=Ahmed">
        <!-- Circle -->
            <img decoding="async" src="https://api.dicebear.com/7.x/adventurer/svg?seed=Zain">
        <!-- Right -->
            <img decoding="async" src="https://api.dicebear.com/7.x/adventurer/svg?seed=Usman">
</body>
</html>