Long Description: The cinematic studio your imagination deserves.
From storytelling to brand visuals, we’re filmmakers using AI workflows to help you create premium cinematic content, faster and with greater creative freedom.
// Phone number used for WhatsApp deep-link. From settings.phone (digits only).
$ctaPhone = '';
if (isset($APP_SETTINGS) && !empty($APP_SETTINGS['phone'])) {
$ctaPhone = preg_replace('/[^0-9]/', '', (string) $APP_SETTINGS['phone']);
} elseif (function_exists('mysqli_query') && isset($con)) {
$r = @$con->query("SELECT phone FROM settings WHERE id = 1");
if ($r && ($s = $r->fetch_assoc())) $ctaPhone = preg_replace('/[^0-9]/', '', (string) $s['phone']);
}
if ($ctaPhone === '') $ctaPhone = '919499699693'; // fallback from VDS deck
$waUrl = 'https://wa.me/' . $ctaPhone . '?text=' . urlencode("Hi Voldebug, I'd like to know more about your services.");
?>