business@atlasconcilio.com ++91 81218 5 4449

inaugural function of Atlas Concilio

Office at World Trade Center AMTZ, Visakhapatnam

Why Choose Atlas?

End-to-End Services Powered by Experts for Complete Solutions. ATLAS offers expert tailor-made comprehensive solutions in Asset, Tax, Legal, and Allied financial & accounting Services.

Your Trusted Council in Financial & Legal Mastery

End-to-End Services Powered by Experts for Complete Solutions

Empowering Your Journey with Expert Guidance.

Services

End-to-End Services Powered by Experts for Complete Solutions

Virtual Strategic Council

Our Virtual Strategic Council offers strategic insights, financial management, and legal compliance services for businesses to thrive and grow.

Asset Transaction Managemnt

Our team specializes in Asset Transaction Management and offers end to end buy/sale of property solutions to NRIs & HNIs and business organisations in collaboration with builders, lease managers and banks on distressed assets.

Tax Litigation Outsourcing

Our experts offer tax filing and litigation services, ensuring the best outcomes in all your Direct and Indirect Tax matters.

Empowering Startups & MSMEs

We empower Startups & MSMEs with comprehensive solutions from idea to establishment that drive growth, enhance efficiency and ensure sustainability in India's dynamic business landscape, which provides various incentivised schemes.

Corporate Commercial Solutions

Our corporate advisory practice aids strategic decisions, risk management and legal frameworks, offering Contract Solutions, Cross-border Support and Equity Arrangements.

Virtual CFO

Our VCFO services optimize financial management with expert guidance. We offer accounting and compliance services besides implementation of control and technology systems.

Funding Solutions

We assist in securing funds from government grants to IPOs, tailored to your business needs, including seed, VC, and term & working capital loans from financial institutions.

Tax and Regulatory

We offer tax advisory, structuring support, cross-border solutions, and financial modeling to optimize strategies and ensure compliance for sustainable growth.

Secretarial Compliance

We provide complete corporate secretarial services for annual filings, share restructuring, meeting management and regulatory compliance to meet all your needs.

Disputes & IPR

We specialize in dispute resolution and arbitration services including IP issues and co-founder conflicts. We offer IPR services for registration, prosecution, and litigation management.

Team

Srikanth Ghanta

Strategy, Project Management

CA C. Eswar Mohan Rao FCA

Tax, Real Estate - ATM

CA Srinivas Rao Vayetla FCA

F&A, Audit & Taxation

CA Shyam Goteti FCA

Corporate Governance, VCFO, ERP Implementation

CA Mohan Tamvada FCA

Forensic Audit, Taxation, VCFO

Ravi Shankar Narayan S, IRS

Tax, Strategy

Arundev S

Law - Civil

Jagannadha Rao

Tax

Dr Deepak Madala, Ph D

Info Sec, Start-up Support & Project Management

Venkat K

Risk Management

G. Loknath

Credit Risk Professional

Kiran Korivi

Startup support, Strategy & Operations

Neeraj Gupta

Senior Consultant

C.V.S Santhosh

Law - Civil

Vinay Vayetla

B2B Brand Strategy & Development

Make an Appointment











Contact

Location:

World Trade Center AMTZ.

Call:

+91 81218 5 4449

prepare($sql); $query->execute(); $results=$query->fetchAll(PDO::FETCH_OBJ); if($query->rowCount() > 0): foreach($results as $result): $adminemail=$result->emailId; endforeach; endif; if(isset($_POST['submit'])) { // getting Post values $name=$_POST['name']; $phoneno=$_POST['phonenumber']; $email=$_POST['emailaddres']; $subject=$_POST['subject']; $message=$_POST['message']; $uip = $_SERVER ['REMOTE_ADDR']; $isread=0; // Insert quaery $sql="INSERT INTO tblcontactdata(FullName,PhoneNumber,EmailId,Subject,Message,UserIp,Is_Read) VALUES(:fname,:phone,:email,:subject,:message,:uip,:isread)"; $query = $dbh->prepare($sql); // Bind parameters $query->bindParam(':fname',$name,PDO::PARAM_STR); $query->bindParam(':phone',$phoneno,PDO::PARAM_STR); $query->bindParam(':email',$email,PDO::PARAM_STR); $query->bindParam(':subject',$subject,PDO::PARAM_STR); $query->bindParam(':message',$message,PDO::PARAM_STR); $query->bindParam(':uip',$uip,PDO::PARAM_STR); $query->bindParam(':isread',$isread,PDO::PARAM_STR); $query->execute(); $lastInsertId = $dbh->lastInsertId(); if($lastInsertId) { //mail function for sending mail $to=$email.",".$adminemail; $headers .= "MIME-Version: 1.0"."\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1'."\r\n"; $headers .= 'From:PHPGurukul Contact Form Demo'."\r\n"; $ms.="
Name: $name,
Phone Number: $phoneno,
Email Id: $email,
"; $ms.="
Message : $message
"; mail($to,$subject,$ms,$headers); echo ""; echo ""; } else { echo ""; echo ""; } } ?>