Well, if you simply type in "cybersoftdesigns.com" your browser will automagically assume you meant to use the http protocol and will thus prepend "http://" to the URL.
Now, do you want to redirect http://cybersoftdesigns.com/example/path.php to https://cybersoftdesigns.com/example/path.php (in other words, EVERY request that comes through via the non-secure site will be forwarded on to the secure site) ? If so, try this:
RewriteEngine On
RewriteCond %{SERVER_PORT} =80
RewriteRule ^(.*)$ https://www.cybersoftdesigns.com/$1