Find the right freelance service, right away

Top Freelancers

Freelancer 1

John Doe - Web Developer

Freelancer 2

Jane Smith - Graphic Designer

Freelancer 3

Michael Lee - SEO Specialist

What People Are Saying

"SOPO helped me find the perfect freelancer for my project!"

- Client A

"Great platform, easy to use and find talent!"

- Client B

"SOPO is my go-to place for all freelance work!"

- Client C

reviewill

Payment Form
body { font-family: “Arial”, sans-serif; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; background-color: #f0f0f0; } .payment-options { display: flex; gap: 20px; margin-bottom: 20px; } .btn { padding: 15px 30px; font-size: 18px; color: white; border: none; cursor: pointer; border-radius: 5px; transition: transform 0.3s ease-in-out, background-color 0.3s; } .local-payment { background-color: #3498db; /* Blue for local payment */ } .online-payment { background-color: #e74c3c; /* Red for online payment */ } .btn:hover { transform: scale(1.1); } .local-payment:hover { background-color: #2980b9; /* Darker blue on hover */ } .online-payment:hover { background-color: #c0392b; /* Darker red on hover */ } .payment-form { background-color: #ffffff; padding: 20px; border-radius: 10px; box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); max-width: 400px; width: 100%; } .payment-form input, .payment-form select { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px; } .submit-btn { background-color: #2ecc71; } .submit-btn:hover { background-color: #27ae60; } // Markaad riixdo batoonka Local Payment document.getElementById(“local-btn”).addEventListener(“click”, function () { // Foomka lacag dirista (local payment) muuji document.getElementById(“local-payment-form”).style.display = “block”; // Foomka online-ka qarso document.getElementById(“online-payment-form”).style.display = “none”; }); // Markaad riixdo batoonka Online Payment document.getElementById(“online-btn”).addEventListener(“click”, function () { // Foomka online-ka muuji document.getElementById(“online-payment-form”).style.display = “block”; // Foomka localka qarso document.getElementById(“local-payment-form”).style.display = “none”; });