Boost Your App Revenue with Apdue Inc.

Android app monetization experts. Google ADX & AdMob specialists. Maximize your eCPM and earnings.

Get Started

Our Services

Google ADX Access

We offer high-quality Google ADX integration to maximize your earnings.

AdMob Management

Expert-level AdMob optimization to boost fill rates and eCPM.

eCPM Optimization

We ensure your app monetization reaches its full potential.

About Us

USA Office

Apdue Inc.
361, 1007 N Orange St. 4th Floor
Wilmington, DE, New Castle, US, 19801

India Office

Ward No 3, Somolai Balaji, Dhod, Nagwa,
Sikar, Rajasthan, 332002

Our Team

AB
Abdul Basit
MK
Mukesh Kumar

Contact Us

/* Import Inter font if available, fallback to Helvetica */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap'); :root { --primary: #111; --secondary: #555; --accent: #0070f3; --bg: #fff; --border: #eee; --radius: 10px; --shadow: 0 2px 8px rgba(0,0,0,0.03); } html { box-sizing: border-box; font-size: 16px; } *, *:before, *:after { box-sizing: inherit; } body { margin: 0; font-family: 'Inter', Helvetica, Arial, sans-serif; background: var(--bg); color: var(--primary); line-height: 1.6; } .container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; } .header { background: var(--bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; } .header-content { display: flex; align-items: center; justify-content: space-between; height: 70px; } .logo { font-weight: 600; font-size: 1.5rem; letter-spacing: 1px; } .nav a { color: var(--primary); text-decoration: none; margin-left: 2rem; font-weight: 500; transition: color 0.2s; } .nav a:hover { color: var(--accent); } .hero { padding: 5rem 0 4rem 0; text-align: center; background: var(--bg); } .hero-content h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; } .hero-content p { color: var(--secondary); font-size: 1.2rem; margin-bottom: 2rem; } .btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 0.85rem 2.2rem; border: none; border-radius: var(--radius); font-size: 1rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: background 0.2s, box-shadow 0.2s; box-shadow: var(--shadow); } .btn-primary:hover { background: #0059c1; } .services { padding: 4rem 0 3rem 0; background: #fafbfc; } .services h2 { text-align: center; font-size: 2rem; margin-bottom: 2.5rem; } .services-cards { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; } .service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem 1.5rem; flex: 1 1 260px; max-width: 320px; min-width: 220px; text-align: left; transition: box-shadow 0.2s, border 0.2s; } .service-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); border-color: #dbeafe; } .service-card h3 { margin-top: 0; font-size: 1.2rem; font-weight: 600; } .service-card p { color: var(--secondary); margin-bottom: 0; } .about { padding: 4rem 0 3rem 0; } .about h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; } .addresses { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; } .address { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 2rem; min-width: 220px; max-width: 350px; } .address h4 { margin-top: 0; font-size: 1.1rem; font-weight: 600; } .team { padding: 4rem 0 3rem 0; background: #fafbfc; } .team h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; } .team-members { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; } .team-member { display: flex; flex-direction: column; align-items: center; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.5rem 2rem; min-width: 180px; max-width: 220px; } .team-avatar { width: 56px; height: 56px; background: #e5e7eb; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.3rem; margin-bottom: 0.7rem; } .team-name { font-size: 1.1rem; font-weight: 500; } .contact { padding: 4rem 0 3rem 0; } .contact h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; } .contact-form { max-width: 420px; margin: 0 auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; } .form-group { display: flex; flex-direction: column; gap: 0.5rem; } label { font-size: 1rem; font-weight: 500; } input, textarea { font-family: inherit; font-size: 1rem; padding: 0.7rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); background: #fafbfc; color: var(--primary); transition: border 0.2s; resize: none; } input:focus, textarea:focus { border-color: var(--accent); outline: none; } .footer { background: var(--bg); border-top: 1px solid var(--border); text-align: center; padding: 1.5rem 0 1rem 0; color: var(--secondary); font-size: 1rem; } /* Responsive Styles */ @media (max-width: 900px) { .services-cards, .addresses, .team-members { flex-direction: column; align-items: center; gap: 1.5rem; } } @media (max-width: 600px) { .header-content { flex-direction: column; height: auto; gap: 0.7rem; padding: 1rem 0; } .nav a { margin-left: 1.2rem; font-size: 1rem; } .hero { padding: 3rem 0 2rem 0; } .services, .about, .team, .contact { padding: 2.5rem 0 1.5rem 0; } .service-card, .address, .team-member, .contact-form { padding: 1.2rem 1rem; } .container { padding: 0 0.7rem; } .hero-content h1 { font-size: 1.5rem; } }