Redirecting... Click here if not redirected

:root { --primary: #2563EB; --primary-dark: #1D4ED8; --secondary: #10B981; --accent: #F59E0B; --dark: #1F2937; --gray: #6B7280; --light: #F3F4F6; --white: #FFFFFF; } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; line-height: 1.6; color: var(--dark); background: var(--white); } .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; } /* Navigation */ nav { background: var(--white); padding: 16px 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 1px 3px rgba(0,0,0,0.1); } nav .container { display: flex; justify-content: space-between; align-items: center; } .nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 8px; } .nav-links { display: flex; align-items: center; gap: 32px; } .nav-links a { color: var(--dark); text-decoration: none; font-weight: 500; transition: color 0.2s; } .nav-links a:hover { color: var(--primary); } .lang-switch { display: flex; gap: 8px; padding: 4px; background: var(--light); border-radius: 8px; } .lang-switch a { padding: 6px 12px; border-radius: 6px; font-size: 0.875rem; text-decoration: none; color: var(--gray); } .lang-switch a.active { background: var(--white); color: var(--primary); box-shadow: 0 1px 2px rgba(0,0,0,0.1); } /* Hero Section */ .hero { padding: 160px 0 100px; background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%); text-align: center; } .hero h1 { font-size: 3.5rem; font-weight: 700; color: var(--dark); margin-bottom: 24px; line-height: 1.2; } .hero h1 span { color: var(--primary); } .hero p { font-size: 1.25rem; color: var(--gray); max-width: 600px; margin: 0 auto 40px; } .hero-stats { display: flex; justify-content: center; gap: 60px; margin-top: 60px; } .stat { text-align: center; } .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary); } .stat-label { color: var(--gray); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 1px; } /* Apps Section */ .apps { padding: 100px 0; } .section-title { text-align: center; margin-bottom: 60px; } .section-title h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 16px; } .section-title p { color: var(--gray); font-size: 1.125rem; } .apps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; } .app-card { background: var(--white); border-radius: 16px; padding: 32px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); border: 1px solid var(--light); transition: transform 0.2s, box-shadow 0.2s; } .app-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.1); } .app-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px; } .app-card h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--dark); } .app-card p { color: var(--gray); margin-bottom: 20px; } .app-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; } .app-tag { background: var(--light); color: var(--gray); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 500; } .app-links { display: flex; gap: 12px; } .app-link { padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 0.875rem; transition: all 0.2s; } .app-link.primary { background: var(--primary); color: white; } .app-link.primary:hover { background: var(--primary-dark); } .app-link.secondary { background: var(--light); color: var(--dark); } .app-link.secondary:hover { background: #E5E7EB; } /* App-specific colors */ .myhome .app-icon { background: #DBEAFE; } .mednear .app-icon { background: #D1FAE5; } .carenear .app-icon { background: #FEE2E2; } .servicepulse .app-icon { background: #FEF3C7; } /* About Section */ .about { padding: 100px 0; background: var(--light); } .about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .about-text h2 { font-size: 2.5rem; margin-bottom: 24px; color: var(--dark); } .about-text p { color: var(--gray); margin-bottom: 16px; font-size: 1.125rem; } .about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; } .value-item { display: flex; align-items: flex-start; gap: 12px; } .value-icon { width: 40px; height: 40px; background: var(--primary); color: white; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; } .value-item h4 { color: var(--dark); margin-bottom: 4px; } .value-item p { color: var(--gray); font-size: 0.875rem; margin: 0; } /* Contact Section */ .contact { padding: 100px 0; text-align: center; } .contact h2 { font-size: 2.5rem; margin-bottom: 24px; } .contact p { color: var(--gray); margin-bottom: 40px; font-size: 1.125rem; } .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 800px; margin: 0 auto; } .contact-card { padding: 32px; background: var(--light); border-radius: 16px; } .contact-card .icon { font-size: 2rem; margin-bottom: 16px; } .contact-card h3 { margin-bottom: 8px; color: var(--dark); } .contact-card a { color: var(--primary); text-decoration: none; } .contact-card a:hover { text-decoration: underline; } /* Footer */ footer { background: var(--dark); color: white; padding: 60px 0 30px; } .footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; } .footer-brand p { color: #9CA3AF; margin-top: 16px; } .footer-section h4 { margin-bottom: 20px; font-size: 1rem; } .footer-section a { display: block; color: #9CA3AF; text-decoration: none; margin-bottom: 12px; font-size: 0.875rem; } .footer-section a:hover { color: white; } .footer-bottom { border-top: 1px solid #374151; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; color: #9CA3AF; font-size: 0.875rem; } .social-links { display: flex; gap: 16px; } .social-links a { color: #9CA3AF; text-decoration: none; font-size: 1.25rem; } .social-links a:hover { color: white; } /* Responsive */ @media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.5rem; } .hero-stats { flex-direction: column; gap: 30px; } .about-content { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .footer-content { grid-template-columns: 1fr 1fr; } }

Building Technology
for Ethiopia

We create innovative mobile apps that solve real problems for millions of Ethiopians. From finding homes to healthcare access.

4
Apps Launched
100K+
Users
15+
Cities
2024
Founded

Our Apps

Each app is designed specifically for the Ethiopian market

🏠

MyHome Ethiopia

Ethiopia's premier real estate platform. Buy, sell, or rent properties across 15+ cities with verified listings.

Real Estate Map View Verified Agents
💊

MedNear

Find medications at nearby pharmacies instantly. Check availability, compare prices, and get directions.

Healthcare Pharmacy Finder Price Compare
👨‍⚕️

CareNear

Book home healthcare services. Nurses, physiotherapists, and caregivers come to you with verified professionals.

Home Healthcare Nursing Elderly Care
🔧

ServicePulse

On-demand home services. Plumbers, electricians, cleaners, and more - rated and reviewed by the community.

Home Services On-Demand Verified Workers

Made in Ethiopia,
For Ethiopia

CareNavigatorTech was founded in 2024 with a simple mission: build world-class technology solutions designed specifically for Ethiopian users.

We understand the unique challenges of our market - from payment solutions to language support - and build apps that truly work for Ethiopians.

🇪🇹

Local First

Amharic support, local payments, Ethiopian context

✓

Trust & Safety

Verified users, secure transactions

📱

Mobile First

Optimized for all devices

💡

Innovation

Solving real problems with technology

âš¡

Get In Touch

Interested in partnering, investing, or just saying hello?

📧

Email

hello@carenavigatortech.com
📱

Phone

+251 911 000 000
📍

Location

Addis Ababa, Ethiopia