 <?php

/**

 * Template Name:  Logo Design Landing Page

 *

 * A custom page template without sidebar.

 *

 * The "Template Name:" bit above allows this to be selectable

 * from a dropdown menu on the edit page screen.

 *

 * @package WordPress

 * @subpackage Twenty_Ten

 * @since Twenty Ten 1.0

 */


function get_client_ip2() {

    $ipaddress = '';

    if (getenv('HTTP_CLIENT_IP'))

        $ipaddress = getenv('HTTP_CLIENT_IP');

    else if(getenv('HTTP_X_FORWARDED_FOR'))

        $ipaddress = getenv('HTTP_X_FORWARDED_FOR');

    else if(getenv('HTTP_X_FORWARDED'))

        $ipaddress = getenv('HTTP_X_FORWARDED');

    else if(getenv('HTTP_FORWARDED_FOR'))

        $ipaddress = getenv('HTTP_FORWARDED_FOR');

    else if(getenv('HTTP_FORWARDED'))

       $ipaddress = getenv('HTTP_FORWARDED');

    else if(getenv('REMOTE_ADDR'))

        $ipaddress = getenv('REMOTE_ADDR');

    else

        $ipaddress = 'UNKNOWN';

    return $ipaddress;

}

$filespath = get_template_directory_uri();



session_start();
 
 //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )
 //print_r($_REQUEST);

if(!isset($_REQUEST['cn']) && !isset($_REQUEST['em']) && !isset($_REQUEST['pn']) && !isset($_REQUEST['msg']) && !isset($_REQUEST['securitycode']) && !isset($_REQUEST['submitmenow']) && $_REQUEST['submitmenow'] == ''){



$digit1 = mt_rand(1,5);

$digit2 = mt_rand(5,10);

//if( mt_rand(0,1) === 1 ) {

    $math = "$digit1 + $digit2";

    $_SESSION['answer'] = $digit1 + $digit2;

//} else {

//    $math = "$digit1 - $digit2";

//    $_SESSION['answer'] = $digit1 - $digit2;

//}



}

else

{

      

if(isset($_REQUEST['cn']) && isset($_REQUEST['em']) && isset($_REQUEST['pn']) && isset($_REQUEST['msg']) && isset($_REQUEST['securitycode']) && !isset($_REQUEST['submitmenow']))

{

  if (isset($_POST['cn']) && $_POST['em'] != "" && isset($_POST['pn']) && $_POST['msg'] != ""  ) {

  

if($_SESSION['answer'] == $_POST['securitycode'])  

{



 	$ipaddress = get_client_ip2();





 	//$to = 'danish.172@gmail.com';
 	 	$to = 'danish.172@gmail.com';


$subject = 'Indigo Icon (Logo Design Page)';

$body = '<h1>'.$_POST['cn'].' sent a quotation,</h1><br>Email : '.$_POST['em'].' <br> Phone : '.$_POST['pn'].' <br> IP Address : '.$ipaddress.' <br>  <br> Message : '.$_POST['msg'];

$headers[] = 'Content-Type: text/html; charset=UTF-8';

  //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )


 $headers[] = 'From: Indigo Icon <no-reply@indigoicon.com>';



 //$headers[] = 'Cc: John Q Codex <jqc@wordpress.org>';

//$headers[] = 'Cc: iluvwp@wordpress.org'; 

 

 

  wp_mail( $to, $subject, $body, $headers );



 

global $wpdb;

	
 //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )

	

	$wpdb->insert('leads', array(

    'uname' => $_POST['cn'],

    'uemail' => $_POST['em'],

    'uphone' => $_POST['pn'],  

    'umessage' => "(Message From LOGO DESIGN Landing Page) ".$_POST['msg'],  

    'userIP' => $ipaddress,  

    'add_date' => date('m-d-Y, h:i:s') ,

	'ubudget' => '-'   

));

 

 wp_redirect( "http://indigoicon.com/thank-you-logo-design" );

 exit;

?>

<?php



$answer_error = 1;

}

else

{

$answer_error = "Answer is not matched";

}  



}

else

{

$answer_error = "Please Fill All Required Fields.";

}

//$name_error email_error phone_error budget_error

	//print_r($_REQUEST);







$digit1 = mt_rand(1,5);

$digit2 = mt_rand(5,10);

//if( mt_rand(0,1) === 1 ) {

    $math = "$digit1 + $digit2";

    $_SESSION['answer'] = $digit1 + $digit2;

//} else {

//    $math = "$digit1 - $digit2";

//    $_SESSION['answer'] = $digit1 - $digit2;

//}







}
//name="submitmenow" value="submitpopupform"
if(isset($_REQUEST['submitmenow']) && $_REQUEST['submitmenow'] == 'submitpopupform' && isset($_REQUEST['cn']) && isset($_REQUEST['em']) && isset($_REQUEST['pn']) && isset($_REQUEST['msgxx']) && isset($_REQUEST['securitycode']))
{

  if (isset($_POST['cn']) && $_POST['em'] != "" && isset($_POST['pn']) && $_POST['msgxx'] != ""  ) {

  

if($_SESSION['answer'] == $_POST['securitycode'])  

{



 	$ipaddress = get_client_ip2();





 	//$to = 'danish.172@gmail.com';
 	$to = 'danish.172@gmail.com';

$subject = 'Indigo Icon (Logo Design Page)xxxxx';

$body = '<h1>'.$_POST['cn'].' sent a quotation,</h1><br>Email : '.$_POST['em'].' <br> Phone : '.$_POST['pn'].' <br> IP Address : '.$ipaddress.' <br>  <br> Message : '.$_POST['msgxx'];

$headers[] = 'Content-Type: text/html; charset=UTF-8';

  //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )


 $headers[] = 'From: Indigo Icon <no-reply@indigoicon.com>';



 //$headers[] = 'Cc: John Q Codex <jqc@wordpress.org>';

//$headers[] = 'Cc: iluvwp@wordpress.org'; 

 

 

  wp_mail( $to, $subject, $body, $headers );



 

global $wpdb;

	
 //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )

	

	$wpdb->insert('leads', array(

    'uname' => $_POST['cn'],

    'uemail' => $_POST['em'],

    'uphone' => $_POST['pn'],  

    'umessage' => "(Message From LOGO DESIGN Landing Page) ---  ".$_POST['msgxx'],  

    'userIP' => $ipaddress,  

    'add_date' => date('m-d-Y, h:i:s') ,

	'ubudget' => '-'   

));

 

 wp_redirect( "http://indigoicon.com/thank-you-logo-design" );

 exit;

?>

<?php



$answer_error = 1;

}

else

{

$answer_error = "Answer is not matched";

}  



}

else

{

$answer_error = "Please Fill All Required Fields.";

}

//$name_error email_error phone_error budget_error

	//print_r($_REQUEST);







$digit1 = mt_rand(1,5);

$digit2 = mt_rand(5,10);

//if( mt_rand(0,1) === 1 ) {

    $math = "$digit1 + $digit2";

    $_SESSION['answer'] = $digit1 + $digit2;

//} else {

//    $math = "$digit1 - $digit2";

//    $_SESSION['answer'] = $digit1 - $digit2;

//}







}




if(isset($_REQUEST['formfromsidebar']) && $_REQUEST['formfromsidebar'] == 'formsidebarsubmit' && isset($_REQUEST['cn']) && isset($_REQUEST['em']) && isset($_REQUEST['pn']) && isset($_REQUEST['msg']) && isset($_REQUEST['securitycode']))
{

  if (isset($_POST['cn']) && $_POST['em'] != "" && isset($_POST['pn']) && $_POST['msg'] != ""  ) {

  

if($_SESSION['answer'] == $_POST['securitycode'])  

{



 	$ipaddress = get_client_ip2();





 	//$to = 'danish.172@gmail.com';
 	 	$to = 'danish.172@gmail.com';


$subject = 'Indigo Icon (Logo Design Page)';

$body = '<h1>'.$_POST['cn'].' sent a quotation,</h1><br>Email : '.$_POST['em'].' <br> Phone : '.$_POST['pn'].' <br> IP Address : '.$ipaddress.' <br>  <br> Message : '.$_POST['msgxx'];

$headers[] = 'Content-Type: text/html; charset=UTF-8';

  //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )


 $headers[] = 'From: Indigo Icon <no-reply@indigoicon.com>';



 //$headers[] = 'Cc: John Q Codex <jqc@wordpress.org>';

//$headers[] = 'Cc: iluvwp@wordpress.org'; 

 

 

  wp_mail( $to, $subject, $body, $headers );



 

global $wpdb;

	
 //Array ( [cn] => asd [em] => asd@asd.com [pn] => 1231232321 [msg] => asdsad )

	

	$wpdb->insert('leads', array(

    'uname' => $_POST['cn'],

    'uemail' => $_POST['em'],

    'uphone' => $_POST['pn'],  

    'umessage' => "(Message From LOGO DESIGN Landing Page) ---  ".$_POST['msgxx'],  

    'userIP' => $ipaddress,  

    'add_date' => date('m-d-Y, h:i:s') ,

	'ubudget' => '-'   

));

 

 wp_redirect( "http://indigoicon.com/thank-you-logo-design" );

 exit;

?>

<?php



$answer_error = 1;

}

else

{

$answer_error = "Answer is not matched";

}  



}

else

{

$answer_error = "Please Fill All Required Fields.";

}

//$name_error email_error phone_error budget_error

	//print_r($_REQUEST);







$digit1 = mt_rand(1,5);

$digit2 = mt_rand(5,10);

//if( mt_rand(0,1) === 1 ) {

    $math = "$digit1 + $digit2";

    $_SESSION['answer'] = $digit1 + $digit2;

//} else {

//    $math = "$digit1 - $digit2";

//    $_SESSION['answer'] = $digit1 - $digit2;

//}







}


 
 
 
 
 
 
 
 
 
 
}
 
 
 $filespath = get_template_directory_uri();

?>











<!DOCTYPE html>
<html>


<head>

<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>Indigo Icon</title>
<meta name="keywords" content="Website Design, Website Development,Custom Logo Design,custom app development,animated video service" />
<meta name="description" content="IndigoIcon web design, web development, app development, animation, logo designing & branding services" />


<link rel="stylesheet" type="text/css" href="<?=$filespath?>/landingpagelogodesign/assets3/css/style.css"  />

<!--[if lt IE 9]>
<script src="/<?=$filespath?>/landingpagelogodesign/assets3/js/html5.js"></script>
<![endif]-->
</head>

<body class="homepage">

    



<div class="header-wrap">
    <header>
    	<div class="inner">
            <div class="container clearfix">
            	<div class="row">
                	<div class="col-md-2 col-sm-2 col-xs-3 logomain">
                        <div class="logo">
                            <a href="index.html">
                            <img src="<?=$filespath?>/landingpagelogodesign/assets3/images/logo.png" alt="Logo" width="" height="40">
                            </a>
                        </div>
                    </div>
                    <div class="col-md-10 col-sm-10 col-xs-12">
                        
                        <div class="pull-right redbtn hidden-xs">
                        	<a class="hire-btn" href="javascript:;">Hire Us!</a>
                        </div>
                        
                        <div class="cta-header pull-right hidden-xs">
                            <div class="phone pull-left">
                                <span class="phone-ico inline-block vmiddle"></span>
                                <p class="inline-block vmiddle"> Toll Free <strong>(832)-426-3656</strong></p>
                            </div>
                            
							
                            
                        </div>
                        
                        <div class="navbar-header pull-right">
                          <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                            <span class="sr-only">Toggle navigation</span>
                            <span class="icon-bar"></span>
                            <span class="icon-bar"></span>
                            <span class="icon-bar"></span>
                          </button>
                        </div>      
                      <!--<div class="navbar-collapse collapse">
                          <ul class="nav navbar-nav">
                            <li class="first active"><a href="index.html" class="ico">Home</a></li>
                            <li><a class="" href="#">Services</a></li>
							<li><a class="asdasd" href="#" id="logolink"  >Logo Design</a></li>
							<li><a class="asdasd" href="#" id="weblink"  >Web Design & Development</a></li>
                            <li><a class="asdasd" href="#" id="appslink" >Apps Development</a></li>
                            <li><a class="asdasd" href="#" id="brandinglink" >Branding</a></li>
                            <li><a class="" href="#">Illustration</a></li>
                            <li><a class="" href="#">Contact Us</a> </li> 
                          </ul>
                        </div>--><!--/.nav-collapse -->
                        
                    </div>
                </div>
                
            </div>
        </div>
    </header>

    <section class="masthead-slider">
        <div class="cyclebanner">
            <div class="slide1 home-slider">
                <div class="container text-center">
    				<h1>IndigoIcon &ndash; AWARD WINNING<br>
                    <span>Design & Development Company</span>
                    </h1>
                    
                    <h3><span class="typed"></span></h3>
                    
                    <button>Connect With Us to Start Your Project</button>
					
					<h3 class="bannernumbers">(832)-426-3656</h3>
					
                </div>
            </div>
        </div>
    </section>
</div>




<section class="logodesign-package">
    <div class="container itemmain">
       <div class="row itemmain">
           <div class="col-lg-12 itemmain">
               <h1 class="head-main">Most Affordable Custom <br>
<strong>Logo Design Packages </strong>Online!</h1>
           </div>
           <div class="col-lg-4 col-md-4 itemmain">
                <div class="pack-box-main pink-box wow fadeInRight itemmain" data-wow-delay="0s" style="visibility: visible; animation-delay: 0s; animation-name: fadeInRight;">
                   <div class="pack-box-title itemmain">
                       <h4>SPECIAL LOGO OFFER<br><span>Limited Time Offer</span></h4>
                   </div>
                   <div class="pack-price itemmain">
                             <pre>$</pre>19.99
                   </div>
                   <div class="pack-details mCustomScrollbar _mCS_1 mCS_no_scrollbar itemmain"><div id="mCSB_1" class="mCustomScrollBox mCS-light mCSB_vertical mCSB_inside itemmain" style="max-height: 175px;" tabindex="0"><div id="mCSB_1_container" class="mCSB_container mCS_y_hidden mCS_no_scrollbar_y itemmain" style="position:relative; top:0; left:0;" dir="ltr">
                      <ul>
                        <li class="first">1 Logo Design Concept</li>
                        <li>Unlimited Revisions</li>
                        <li class="last">24 to 48 Hours Delivery</li>
                     </ul>
                     
                   </div><div id="mCSB_1_scrollbar_vertical" class="mCSB_scrollTools mCSB_1_scrollbar mCS-light mCSB_scrollTools_vertical itemmain" style="display: none;"><div class="mCSB_draggerContainer itemmain"><div id="mCSB_1_dragger_vertical" class="mCSB_dragger itemmain" style="position: absolute; min-height: 30px; height: 0px; top: 0px;"><div class="mCSB_dragger_bar itemmain" style="line-height: 30px;"></div></div><div class="mCSB_draggerRail itemmain"></div></div></div></div></div>
                   
                     <div class="call-discuss itemmain">
                      <span><i class="fa fa-phone" aria-hidden="true"></i>(832)-426-3656</span>
                      
                      </div>

                      <div class="tw4 itemmain">
                        <b>Add on:</b>  <span>$50</span> for 12 Hours Rush Delivery

                      </div>
                   <a href="javascript:;" class="hire-btn pack-order pack3-order">Order Now</a>
                   
                </div>
           </div>
           <div class="col-lg-4 col-md-4 itemmain">
                <div class="best-seller wow fadeInRight itemmain" style="visibility: visible; animation-name: fadeInRight;"></div>
                <div class="pack-box-main orange-box wow fadeInLeft itemmain" style="visibility: visible; animation-name: fadeInLeft;">
                   <!-- <div class="top-seller"></div>-->
                   <div class="pack-box-title itemmain">
                       <h4>LOGO SPecial<br><span>small medium enterprises</span></h4>
                   </div>
                   <div class="pack-price itemmain">
                            <pre>$</pre>175.00
                            <p><span>$ 575.00</span> ONLY</p>
                   </div>
                   <div class="pack-details mCustomScrollbar _mCS_2 itemmain"><div id="mCSB_2" class="mCustomScrollBox mCS-light mCSB_vertical mCSB_inside itemmain" style="max-height: 176px;" tabindex="0"><div id="mCSB_2_container" class="mCSB_container itemmain" style="position:relative; top:0; left:0;" dir="ltr">
                      <ul>
                        <li class="first">12 Logo Design Concepts</li>
                        <li>Unlimited Revisions</li>
                        <li>Free Stationery Design</li>
                        <li>Social Media Designs</li>
                        <li>$50 off on Website Order</li>
                        <li>Free Color Options</li>
                       
                     </ul> 
                     
                   </div><div id="mCSB_2_scrollbar_vertical" class="mCSB_scrollTools mCSB_2_scrollbar mCS-light mCSB_scrollTools_vertical itemmain" style="display: block;"><div class="mCSB_draggerContainer itemmain"><div id="mCSB_2_dragger_vertical" class="mCSB_dragger itemmain" style="position: absolute; min-height: 30px; display: block; height: 104px; max-height: 166px; top: 0px;"><div class="mCSB_dragger_bar itemmain" style="line-height: 30px;"></div></div><div class="mCSB_draggerRail itemmain"></div></div></div></div></div>
                   
                     <div class="call-discuss itemmain">
                      <span><i class="fa fa-phone" aria-hidden="true"></i>(832)-426-3656</span>
                      
                      </div>

                      <div class="tw4 itemmain">
                        <b>Add on:</b>  <span>$50</span> for 24 Hours Rush Delivery

                      </div>
                   <a href="javascript:;" class="hire-btn pack-order pack3-order">Order Now</a>
                   
                </div>
           </div>
           <div class="col-lg-4 col-md-4 itemmain">
                <div class="pack-box-main green1-box wow fadeInRight itemmain" data-wow-delay="0s" style="visibility: visible; animation-delay: 0s; animation-name: fadeInRight;">
                   <div class="pack-box-title itemmain">
                       <h4>LOGO Innovator<br><span>Self startups</span></h4>
                   </div>
                   <div class="pack-price itemmain">
                            <pre>$</pre>43.00
                            <p><span>$ 126.00</span> ONLY</p>
                   </div>
                   <div class="pack-details mCustomScrollbar _mCS_3 itemmain"><div id="mCSB_3" class="mCustomScrollBox mCS-light mCSB_vertical mCSB_inside itemmain" style="max-height: 176px;" tabindex="0"><div id="mCSB_3_container" class="mCSB_container itemmain" style="position:relative; top:0; left:0;" dir="ltr">
                      <ul>
                        <li class="first">3 Logo Design Concept</li>
                        <li>Unlimited Revisions</li>
                        <li>Free Color Options</li>
                        <li>Free Grayscale Format</li>
                        <li>Free icon</li>
                        <li class="last">Free Font</li>
                     </ul> 
                     
                   </div><div id="mCSB_3_scrollbar_vertical" class="mCSB_scrollTools mCSB_3_scrollbar mCS-light mCSB_scrollTools_vertical itemmain" style="display: block;"><div class="mCSB_draggerContainer itemmain"><div id="mCSB_3_dragger_vertical" class="mCSB_dragger itemmain" style="position: absolute; min-height: 30px; display: block; height: 156px; max-height: 166px; top: 0px;"><div class="mCSB_dragger_bar itemmain" style="line-height: 30px;"></div></div><div class="mCSB_draggerRail itemmain"></div></div></div></div></div>
                   
                     <div class="call-discuss itemmain">
                      <span><i class="fa fa-phone" aria-hidden="true"></i>(832)-426-3656</span>
                      
                      </div>

                      <div class="tw4 itemmain">
                        <b>Add on:</b>  <span>$50</span> for 24 Hours Rush Delivery

                      </div>
                   <a href="javascript:;" class="hire-btn pack-order pack3-order">Order Now</a>
                   
                </div>
           </div>
           
       </div>
    </div>
</section>


<section class="services">
	<div class="container">
    	<h2>Globally Acclaimed Services for Entrepreneurs & Enterprise</h2>
    	<div class="row text-center">
            <div class="col-md-12">
    
                <ul class="nav nav-tabs">
                  <li class="active"><a href="#logo" id="logo_tabx" data-toggle="tab">Custom Logo Design</a></li>
                  <li><a href="#web" data-toggle="tab" id="web_tabx">Web design & development</a></li>
                  <li><a href="#apps" data-toggle="tab" id="apps_tabx">Apps Development</a></li>
                  <li><a href="#branding" data-toggle="tab" id="branding_tabx">Branding</a></li>
                  <!--<li><a href="#anime" data-toggle="tab">Illustration</a></li>-->
                </ul>
        
                <!-- Tab panes -->
    
                <div class="tab-content col-md-12 text-left">
                    <div class="tab-pane fade in active" id="logo">
                        <div class="row">
                        
                            <div class="image col-md-5">
                            <img class="lazy img-responsive" src="<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/custom_logo.jpg" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/custom_logo.jpg" alt="IndigoIcon" width="380" height="331">	
                            </div>
                            <div class="text col-md-7">
                                <h3>Custom Logo Design </h3>
                                <h4>70% Customers Judge Your Business through Your Logo Design!</h4>
                                <p>Here at Indigo Icon, Our expert Design team always make sure that our client get their Logo Design at very reasonable cost. The Success of any business mostly depend on their marketing strategy with their unique and attractive business Logo Design.</p>
                            <br>                        
                            <ul>
                                <li>Iconic Logo Design</li>
                                <li>Silhouette Logo Design</li>
                                <li>Typographic Logo Design</li>
								<li>Symbolic Logo Design </li>
                                <li>Illustrative Logo Design</li>
								<li>Logo Re-design</li>
                            </ul>
                            
                            </div>
                            
                            
                            <div class="col-md-12">
                                <a href="#" class="svc-pg-link"><span><strong>Our Logo Design Service Details</strong></span></a>
                            </div>
                            
                        </div>
                    </div>
                    
                    <div class="tab-pane fade" id="web">
                        <div class="row">
                            <div class="image col-md-5">
                            <img class="lazy img-responsive" src="<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/design_development.jpg" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/design_development.jpg" alt="IndigoIcon" width="445" height="334">	
                            </div>
                            <div class="text col-md-7">
                                <h3>Website Design & Development </h3>
								<p>Our team comprise of executive web professionals that can develop and design custom made websites for our valuable clients. We can design search engine friendly websites so that their web can be access by a large number of people. Our team helps to develop the brand of their client’s company and offer innovative and attractive web design so that their website stands unique among the other websites.</p>
								
								<p>Whether its Content Management System CMS, developing a E-commerce shopping cart, or blogging Indigo Icon is the erect platform for all these problems. Take a good look at our Portfolio to see our sample work to get an idea of what we are capable of.</p>
								
                                <h4>Website Redesign Services</h4>
                                <p>If you are looking to renew your website or make it more creative and attractive then you are at right place. We can develop eye catching artwork with effective and clear web networking and layout. With the help of latest technology we can help you to underpin the performance of your website and allows user friendly interface to the clients and their customers</p>
                            
                            
                            </div>
                            
                            <div class="col-md-12">
                                <a href="#" class="svc-pg-link"><span><strong>Our Website Design & Development Service Details</strong></span></a>
                            </div>
                            
                        </div>
                    </div>
                    
                    <div class="tab-pane fade" id="apps">
                        <div class="row">
                            <div class="image col-md-5">
                            <img class="lazy img-responsive" src="<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/app_development.jpg" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/app_development.jpg" alt="IndigoIcon" width="445" height="393">	
                            </div>
                            <div class="text col-md-7">
                                <h3>mobile apps for Android, iOS, and iPad</h3>
                                <h4>We marvel at genius and innovative ideas the people, who come in contact with us, offer for the mobile application concepts. With the amalgamation of our passion, and experience with various industries we have covered, we transform those concepts in to beautiful mobile apps for Android and iPhone which solve the everyday life problems, or simply serve as the source of relaxation in this fast-paces workaholic world.</h4>
                                <p>Indigo Icon converts ideas in to live mobile apps. Having a formidable experience of successfully inculcating online carts with payment gateways to mobile app stores, integrating online booking system for car rental services, offering solutions of web-based surveys for medical diagnostic centers, and many more, you never go wrong by choosing Indigo Icon for your mobile app solutions. </p>
                                <ul>
                                    <li>Experienced Mobile Developers for iPhone and Android platform</li>
                                    <li>Consultations on Apps design and development</li>
                                    <li>Versatile coverage of wide array of industries</li>
                                    <li>User Friendly interface and intuitive user experience</li>
                                </ul>
                            
                                
                            </div>
                            
                            <div class="col-md-12">
                                <a href="custom-apps-development/index.html" target="_blank" class="svc-pg-link less-mar"><span><strong>Our Apps Development Service Details</strong></span></a>
                            </div>
                        </div>
                    </div>
                    
                    <div class="tab-pane fade" id="branding">
                        <div class="row">
                            <div class="image col-md-5">
                            <img class="lazy img-responsive" src="<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/branding_sol.jpg" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/branding_sol.jpg" alt="IndigoIcon" width="445" height="330">	
                            </div>
                            <div class="text col-md-7">
                                <h3>Online Branding & Marketing </h3>
                                <h4>75% Customers Trust Businesses If They Have a Notable Brand Identity!</h4>
                                <p>In World Wide Web Our online brand development plays a very important role for the success of our businesses. Many companies are not sure about branding techniques and soon they loose their brand identity. At Indigo Icon we provide complete solutions to our client and we help them to understand what is best for their effective branding</p>
                                <br>
                                <ul>
                                    <li>Custom Logo Design</li>
                                    <li>Animated Video Creation</li>
                                    <li>Stationery Designs  </li>
                                    <li>Brochure Designs</li>
                                    <li>Social Media Designs</li>
									<li>Copywriting </li>
                                </ul>
                                
                            </div>
                            
                            <div class="col-md-12">
                                <a href="#" class="svc-pg-link"><span><strong>Our Online Branding & Marketing Service Details</strong></span></a>
                            </div>
                            
                        </div>
                    </div>
                    
                    <!--<div class="tab-pane fade" id="anime">
                        <div class="row">
                            <div class="image col-md-5">
                            <img class="lazy img-responsive" src="<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/illustration.jpg" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/home-tabs/illustration.jpg" alt="IndigoIcon" width="435" height="355">	
                            </div>
                            <div class="text col-md-7">
                                <h3>Illustration</h3>
                                <h4>90% Users Believe in a Product When They See a Video. Let Us Help You! </h4>
                                <p>You're doing everything you're suppose to make your website rich and engaging. </p>
                                <p>You have perfect SEO. You bought the right clicks, user-friendly design, and some appealing content. But you're still not getting the conversions you hoped for. Why not? Because you do not have an awesome video to go along! Did you know video is more fun? More Engaging? Get a great animated video from us and enhance your business!
                                </p>
                                <ul>
                                    <li>Whiteboard Videos</li>
                                    <li>2D Animated Videos</li>
                                    <li>Promotional Videos  </li>
                                    <li>Advertising Videos </li>
                                    <li>3D Animated Videos   </li>
                                    <li>Kinetic Typography </li>
                                </ul>
                                
                            </div>
                            
                            <div class="col-md-12">
                                <a href="#" class="svc-pg-link"><span><strong>View Our Animation Service Details</strong></span></a>
                            </div>
                            
                        </div>
                    </div>-->
                </div>
    
    
            </div>
        </div>
    </div>
</section>



<section class="cta-red">
	<div class="container">
    	<div class="inner clearfix no-border">
            
			<div class="touch">
            	<h6>You Can Now Create Your Own Custom Package for Any of Our Service. Need Help? Drop Us a Call! </h6>
            </div>
            
            <div class="row">
    <div class="col-lg-10 col-lg-offset-2 col-md-12 col-md-offset-0 col-sm-12 col-sm-offset-0">
        <div class="row">
        
            <div class="col-md-3 col-sm-6 pointer">
                <div class="rounded-red">
                	<a href="pricing/index.html" target="_blank">
                    	<img class="lazy" src="<?=$filespath?>/landingpagelogodesign/assets3/images/redcta/custom-package.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/redcta/custom-package.png" alt="IndigoIcon" width="71" height="70">
                    </a>
                    
                    <p> <a href="javascript:;" class="hire-btn " >CREATE A<br>
CUSTOM PACKAGE</a></p>
                </div>
            </div>
        
            <div class="col-md-3 col-sm-6">
                <div class="rounded-red">
                    <img class="lazy" src="<?=$filespath?>/landingpagelogodesign/assets3/images/redcta/phone.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/redcta/phone.png" alt="IndigoIcon" width="71" height="70">
                    
                    <p>Toll Free<br>
<span>(832)-426-3656</span></p>
                </div>
            </div>
        
            <div class="col-md-3 col-sm-6 req-callbackx">
                <div class="rounded-red">
                    <img class="lazy" src="<?=$filespath?>/landingpagelogodesign/assets3/images/redcta/custom-quote.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/redcta/custom-quote.png" alt="IndigoIcon" width="71" height="70">
            <p> <a href="javascript:;" class="hire-btn " >Request<br>
Call Back</a></p>         
                   <!-- <p>Request<br>
<span>Call Back </span></p>-->
                </div>
            </div>
        
            
            
        </div>
    </div>
</div>
            
            
        </div>
	</div>
</section>





<section class="lslider">
	
    	
<div class="ls-wp-fullwidth-container">
    <div class="ls-wp-fullwidth-helper">
    
        <div id="layerslider_23" class="ls-wp-container" style="width:100%;height:500px;margin:0 auto;margin-bottom: 0px;">
        
               
                
	           <div class="ls-slide" data-ls="transition2d:1;timeshift:-1000;">
                <img src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/31.jpg" class="ls-bg" alt="Slide background" />
                
                
                <h2 class="ls-l" style="top:30px;left:0px;white-space: nowrap; color: #fff; text-transform:uppercase;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">Social<strong>uma</strong></h2>
                
                <h3 class="ls-l" style="top:82px;left:0px;white-space: nowrap; color: #fff;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">Healthy Happy Life Made Possible! </h3>
                
                <ul class="ls-l" style="top:128px;left:0px;white-space: nowrap; color: #fff;background-color: #422000;background-color: rgb(66, 32, 0);background-color: rgba(66, 32, 0, 0.70);padding:15px 15px 5px; border-radius: 5px;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	<li>Responsive web design for all devices</li>
                	<li>App with video sliders</li>
                	<li>Brochure & social media for branding</li>
                	<li>Reviews and ratings</li>
                </ul>
                
                <div class="ls-l rect" style="top:370px;left:0px;white-space: nowrap; color: #fff; padding: 0 10px 15px;border: 1px solid #fff !important;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	5000+ <span style="padding-top:18px; text-align:left;">Subscribers in<br>
2 months </span>
                </div>
                
                
                
                <img class="ls-l" style="top:40px;left:440px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:30;delayin:1720;scalexin:0.9;scaleyin:0.9;offsetxout:0;offsetyout:300;durationout:1000;scalexout:0.5;scaleyout:0.5;transformoriginout:50% bottom 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/33.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/33.png" alt="">
                
                <img class="ls-l" style="top:40px;left:700px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:300;delayin:500;offsetxout:0;offsetyout:-50;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;transformoriginout:50% top 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/32.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/32.png" alt="">
                
                <img class="ls-l" style="top:226px;left:470px;white-space: nowrap;" data-ls="offsetxin:0;delayin:1720;easingin:easeInOutQuart;scalexin:0.7;scaleyin:0.7;offsetxout:-800;durationout:1000;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/36.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/36.png" alt="">
                
                
                
                </div>
				<!--Slide3-->
	           
			   
               <div class="ls-slide" data-ls="transition2d:1;timeshift:-1000;">
                <img src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/51.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/51.png" class="ls-bg" alt="Slide background" />
                
                
                <h2 class="ls-l newtitle" style="top:30px; text-align:left; line-height:43px; font-size:44px; left:0px;white-space: nowrap; color: #fff; text-transform:uppercase;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">Medical Training<br><strong>Center</strong></h2>
                
               <ul class="ls-l less-mar" style="top:128px;left:0px;white-space: nowrap; color: #fff;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	<li>Complete content management system</li>
                	<li>Unlimited product categories</li>
                	<li>Easy Search for products and reviews</li>
                	<li>Discount coupons system</li>
                	<li>Customers' sgn up </li>
                	<li>Payment integration gateways</li>
					<li>Complete reporting for inventory, sales and leads</li>
					<li>Multiple Sales, Inventory & Product Reports</li>
                </ul>
                
                <div class="ls-l rect" style="top:380px;left:0px;white-space: nowrap; color: #FFF; padding: 0 10px 15px;border: 1px solid #fff !important;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	70% <span style="padding-top:18px; color: #fff; text-align:left;">Increase in Yearly<br>
Revenues </span>
                </div>                
                
                <img class="ls-l" style="top:50px;left:270px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:300;delayin:500;offsetxout:0;offsetyout:-50;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;transformoriginout:50% top 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/57.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/57.png" alt="">
                
                
                <img class="ls-l" style="top:28px;left:450px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:250;durationin:950;delayin:500;offsetxout:0;offsetyout:-8;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/52.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/52.png" alt="">           
                
               
                
                
                
                </div>
				<!--Slide4-->
				
				
				<!--Slide1-->
	       	<div class="ls-slide" data-ls="transition2d:1;timeshift:-1000;">
                <img src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/1.jpg" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/1.jpg" class="ls-bg" alt="Slide background" />
                
                
                <h2 class="ls-l" style="top:30px;left:0px;white-space: nowrap; color: #fdff6f; text-transform:uppercase;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">Good<strong>Deals</strong></h2>
                
                <h3 class="ls-l" style="top:82px;left:0px;white-space: nowrap; color: #fdff6f;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">Getting Your Taste Buds on Fire</h3>
                
                <ul class="ls-l" style="top:128px;left:0px;white-space: nowrap; color: #fff;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	<li>User-friendly interface with Interactive design</li>
                	<li>Parallax web design with perfect user experience</li>
                	<li>Mobile application development</li>
                	<li>CMS Website with administrative panel</li>
                	<li>Blog Creation with SEO widgets</li>
                	<li>Landing pages for PPC advertisements</li>
                </ul>
                
                <div class="ls-l rect" style="top:370px;left:0px;white-space: nowrap; color: #fdff6f; padding: 0 10px;border: 1px solid #73b061;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	1000+ <span style="padding-top:18px;">Unique Visits Per Day!</span>
                </div>
                
                <img class="ls-l" style="top:40px;left:1100px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:30;delayin:1720;scalexin:0.9;scaleyin:0.9;offsetxout:0;offsetyout:300;durationout:1000;scalexout:0.5;scaleyout:0.5;transformoriginout:50% bottom 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/13.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/13.png" alt="">
                
                <img class="ls-l ls-linkto-2" style="top:360px;left:450px;white-space: nowrap;" data-ls="offsetxin:50;delayin:1000;offsetxout:50;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/17.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/17.png" alt="">
                
                <img class="ls-l" style="top:0px;left:520px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:300;delayin:500;offsetxout:0;offsetyout:-50;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;transformoriginout:50% top 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/12.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/12.png" alt="">
                
                <img class="ls-l" style="top:358px;left:1150px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:250;durationin:950;delayin:500;offsetxout:0;offsetyout:-8;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/14.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/14.png" alt="">
                
                <img class="ls-l" style="top:100px;left:45%;white-space: nowrap;" data-ls="offsetxin:0;delayin:1720;easingin:easeInOutQuart;scalexin:0.7;scaleyin:0.7;offsetxout:-800;durationout:1000;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/15.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/15.png" alt="">

                
                <img class="ls-l ls-linkto-3" style="top:270px;left:520px;white-space: nowrap;" data-ls="offsetxin:-50;delayin:1000;rotatein:-40;offsetxout:-50;rotateout:-40;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/16.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/16.png" alt="">
                
                </div>
				
				
				
				
				<!--Slide2-->
            <div class="ls-slide" data-ls="transition2d:1;timeshift:-1000;">
                <img src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/2.jpg" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/2.jpg" class="ls-bg" alt="Slide background" />
                
                
                <h2 class="ls-l" style="top:30px;left:0px;white-space: nowrap; color: #fff; text-transform:uppercase;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">Indigo Rent a <strong>Car</strong></h2>
                
                <h3 class="ls-l" style="top:82px;left:0px;white-space: nowrap; color: #fff;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">Making Your Journey Memorable! </h3>
                
                <ul class="ls-l" style="top:128px;left:0px;white-space: nowrap; color: #fff; background-color: #472769;background-color: rgb(71, 39, 105);background-color: rgba(71, 39, 105, 0.80);padding:15px 15px 5px; border-radius: 5px;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	<li>Online booking management system</li>
                	<li>Mobile application (Book your ride in 2 easy steps)</li>
                	<li>Best pricing on best fleets in town</li>
                	<li>Get discounted coupons on fleets</li>
                </ul>
                
                <div class="ls-l rect" style="top:340px;left:0px;white-space: nowrap; color: #fff; padding: 0 10px; background-color: #472769;background-color: rgb(71, 39, 105);background-color: rgba(71, 39, 105, 0.69); line-height: 36px;
padding-top: 10px;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	5 Million <br><span>Downloads in 3 Months! </span>
                </div>
                
                <img class="ls-l" style="top:0px;left:520px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:300;delayin:500;offsetxout:0;offsetyout:-50;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;transformoriginout:50% top 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/22.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/22.png" alt="">
                
                <img class="ls-l" style="top:300px;left:500px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:30;delayin:1720;scalexin:0.9;scaleyin:0.9;offsetxout:0;offsetyout:300;durationout:1000;scalexout:0.5;scaleyout:0.5;transformoriginout:50% bottom 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/23.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/23.png" alt="">
                
                <img class="ls-l" style="top:50px;left:800px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:250;durationin:950;delayin:500;offsetxout:0;offsetyout:-8;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/24.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/24.png" alt="">
                
                <img class="ls-l" style="top:400px;left:1000px;white-space: nowrap;" data-ls="offsetxin:0;delayin:1720;easingin:easeInOutQuart;scalexin:0.7;scaleyin:0.7;offsetxout:-800;durationout:1000;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/25.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/25.png" alt="">

                </div>
				
				
				
				
				
				<!--Slide5-->
            <div class="ls-slide" data-ls="transition2d:1;timeshift:-1000;">
                <img src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/61.jpg" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/61.jpg" class="ls-bg" alt="Slide background" />
                
                
                <h2 class="ls-l" style="top:40px;left:770px;white-space: nowrap; color: #fff; text-transform:uppercase;" data-ls="offsetxin:0;durationin:2000;delayin:1500;easingin:easeOutElastic;rotatexin:-90;transformoriginin:50% top 0;offsetxout:-200;durationout:1000;">Desktop<strong>Medical</strong></h2>
                
                <h3 class="ls-l" style="top:95px;left:770px;white-space: nowrap; color: #fff;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">A Creative Design Agency Parallax Website </h3>
                
                <ul class="ls-l" style="top:125px;left:770px;white-space: nowrap; color: #fff; background-color: none;padding:15px 0px 5px; border-radius: 5px;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	<li>Content management system </li>
                	<li>Unlimited Product Categories</li>
                	<li>Products Easy Search </li>
                	<li>Products Reviews </li>
					<li>Discount Coupons </li>
                    <li>Customers' Registration Wish List</li>
                </ul>
              
                
                <div class="ls-l rect" style="top:372px;left:770px;white-space: nowrap; color: #fff; padding: 0 10px 15px;border: 1px solid #fff !important;" data-ls="offsetxin:0;durationin:2000;delayin:2000;easingin:easeOutElastic;rotatexin:90;transformoriginin:50% top 0;offsetxout:-400;">
                	70% <span style="padding-top:18px; color: #fff; text-align:left;">Increase in Yearly<br>
Revenues </span>
                </div>  
                
                <img class="ls-l" style="top:36px;left:30px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:300;delayin:500;offsetxout:0;offsetyout:-50;durationout:1000;easingout:easeInOutQuart;scalexout:1.2;scaleyout:1.2;transformoriginout:50% top 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/62.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/62.png" alt="">
                
                <img class="ls-l" style="top:91px;left:0px;white-space: nowrap;" data-ls="offsetxin:0;offsetyin:30;delayin:1720;scalexin:0.9;scaleyin:0.9;offsetxout:0;offsetyout:300;durationout:1000;scalexout:0.5;scaleyout:0.5;transformoriginout:50% bottom 0;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/63.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/63.png" alt="">
                
                
                
                <img class="ls-l" style="top:267px;left:600px;white-space: nowrap;" data-ls="offsetxin:0;delayin:1720;easingin:easeInOutQuart;scalexin:0.7;scaleyin:0.7;offsetxout:-800;durationout:1000;" src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/65.png" data-src="<?=$filespath?>/landingpagelogodesign/assets3/images/ls/65.png" alt="">
                
                

                </div>
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
				
        </div>

    </div>

</div>

    
</section>

<!--<section class="cta-lg">
	<div class="container">
        <div class="row">
            <div class="inner col-md-offset-1 col-md-10 col-sm-offset-0 col-sm-12">
            	<div class="row clearfix">
                	
                    <div class="cta-sec col-md-3 col-sm-6">
                        <div class="inline-block">
                            <div class="image pull-left">
                                <img class="lazy" src="<?=$filespath?>/landingpagelogodesign/assets3/images/custom-pkg.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/custom-pkg.png" alt="Call Back" width="28" height="28">
                            </div>
                            <div class="text pull-left">
                                <a href="#">Create  a<br>
                    <strong>Custom Package</strong></a>
                            </div>
                        </div>
                    </div>                
                
                    <div class="cta-sec col-md-3 col-sm-6 req-callback">
                        <div class="inline-block">
                            <div class="image pull-left">
                                <img class="lazy" src="<?=$filespath?>/landingpagelogodesign/assets3/images/callback.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/callback.png" alt="Call Back" width="23" height="28">
                            </div>
                            <div class="text pull-left">
                                <a href="javascript:;">Request<br>
                    <strong>Call Back</strong></a>
                            </div>
                        </div>
                    </div>
                    <div class="cta-sec col-md-3 col-sm-6">
                        <div class="inline-block">
                            <div class="image pull-left">
                                <img class="lazy" src="<?=$filespath?>/landingpagelogodesign/assets3/images/toll-free.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/toll-free.png" alt="Call Back" width="25" height="28">
                            </div>
                            <div class="text pull-left">
                                <a href="javascript:;">Toll Free<br>
                    <strong>
            (832)-426-3656</strong></a>
                            </div>
                        </div>
                    </div>
                    
                    
                </div>
            </div>
        </div>
	</div>
</section>-->



<section class="process">
	<div class="container text-center">
        <h2>A Detailed Process that Defines Professional Excellence! </h2>
        <div class="row">
        <div class="bgbox container"></div>
            <div class="col-md-2 col-md-offset-2 col-sm-3 col-sm-offset-0 col-xs-6">
            	<div class="proc-box">
                	<img class="lazy img-circle" src="<?=$filespath?>/landingpagelogodesign/assets3/images/process/define.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/process/define.png" alt="Define" width="165" height="165">
                </div>
                <h4>Scope</h4>
                <p>We involve you from start till finish. We discuss your concepts and ideas, and offer our consultation on how to maximize its reach with our integrated marketing strategy.</p>
            </div>
            <div class="col-md-2 col-sm-3 col-xs-6">
            	<div class="proc-box">
                	<img class="lazy img-circle" src="<?=$filespath?>/landingpagelogodesign/assets3/images/process/design.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/process/design.png" alt="Define" width="165" height="165">
                </div>
                <h4>Design</h4>
                <p>Designers indulge themselves with creativity and innovation, and let their imagination flow with the flows of how your website or app would work and interact with its users.</p>
            </div>
            <div class="col-md-2 col-sm-3 col-xs-6">
            	<div class="proc-box">
                	<img class="lazy img-circle" src="<?=$filespath?>/landingpagelogodesign/assets3/images/process/build.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/process/build.png" alt="Define" width="165" height="165">
                </div>
                <h4>Develop</h4>
				<p>Developers start doing what they love doing. They create responsive builds, user-experiences, and implementing development tools to give life to your ideas and concepts.</p>
            </div>
            <div class="col-md-2 col-sm-3 col-xs-6">
            	<div class="proc-box">
                	<img class="lazy img-circle" src="<?=$filespath?>/landingpagelogodesign/assets3/images/process/launch.png" data-original="/<?=$filespath?>/landingpagelogodesign/assets3/images/process/launch.png" alt="Define" width="165" height="165">
                </div>
                <h4>Deployment</h4>
                <p>After rigorous testing, and hard-work from the initial point, the website is deployed on live servers, and apps make their way to Play Store and iTunes store.</p>
            </div>
        </div>

        
    </div>
</section>








<section class="footer-form">
	<div class="dotted-bdr"></div>
	<div class="container">
			
                <div class="tophead row">
                    <div class="col-md-12">
                	
                        <h2 class="text-center">Ready to Give Your Business the Perfect Direction?</h2>
                        <h3>Our Design Consultants will Share with you a Holistic Approach to Ensure Your Business Success</h3>
                    
					                    <?php
					if(isset($answer_error) && $answer_error != '')
					{
					?>
					<div>
                  <h3> <?=$answer_error?></h3>
				    </div>
                	<? }
					?>

					
					
					
                    </div>
                </div>
			
            <div id="footerform" class="inform">
            
            <form class="jform validate clearfix" action="" data-role="us" method="post">
            	<div class="clearfix fieldwrap pull-left">
                    <div class="field"><input type="text" name="cn" maxlength="60" value="" placeholder="Name" class="required alphanumeric iecn"></div>
                    <div class="field"><input type="text" name="em" maxlength="60" value="" placeholder="Email" class="required email "></div>
                <div class="field pc">
                     <span class="icons_area"><?=$math?></span>
                   <!-- <select class="countrylist" name="pc"></select>-->
					 <input type="text" name="securitycode" required id="emailxxx"  class="required alphanumericxx form-control" placeholder="Answer">
                </div>
                
                </div>
                

                	<div class="clearfix">
                        <div class="field code pull-left"><input type="text" value="+1" name="code" disabled></div>
                        <div class="field phone pull-left"><input type="text" maxlength="10" name="pn" value="" placeholder="Phone Number" class="required number"></div>
                    </div>
                    <div class="field"><textarea name="msg" class="iemsg required" rows="4" placeholder="Share your project requirements"></textarea></div>
                <div class="clearfix fieldwrap text-center">
                    <button>Submit Your Request</button>
                </div>
              <!--  <input type="hidden" name="pth" value="/index.aspx">
                <input type="hidden" name="tpth" value="/index.aspx">  
                <input type="hidden" name="ft" value="footerform">  
                <input type="hidden" name="url" value="/index.aspx">
                <input type="hidden" name="ctry" value="">  -->  
            </form>
			
            </div>

    </div>
</section>

<section class="footer-links clearfix">
	<div class="container">
    
    	<div class="row">
        	<div class="col-md-4">
            	<h6>Money Back Guarantee</h6>
                <h6>Skype & E-mail Support</h6>
				<h6>Marketing and ROI Consultations</h6>
            </div>
        	
        	<div class="col-md-4">
            	<h6>Social Media Presence Projection</h6>
                <h6>SEO Services</h6>
				<h6>Cross Platform Support</h6>
            </div>
        	<div class="col-md-3">
            	<!--<h6>Get Socialized</h6>
                <div class="social clearfix">
                    <a class="tw" href="#" target="_blank"></a>
                    <a class="fb" href="#" target="_blank"></a>
                    <a class="gplus" href="#" target="_blank"></a>
                    <a class="linkedinn" href="#" target="_blank"></a>
                </div>-->
                
                <div class="cust-svc">
                    Online Customer Service: <br /><span>(832)-426-3656</span>
                </div>
                
                
            </div>
        </div>    	
        

    </div>
	
	
	<div class="footercopyarea">
		<p class="copy">&copy; Copyright <span id="cyear"></span>  IndigoIcon. Designs, content and logos are trademarks of Indigo Icon, Inc.</p>
	</div>
	
</section>

<a href="javascript:;" class="mobilebutton hire-btn"></a>

<div class="floating-form-wrap">
	<div class="floating-form">
    	
<div class="form-container">
	<div class="formdv">
    	<div id="flform" class="inform">
	
    <h4 class="text-center">Tell us about your project</h4>
    <h5>Our Expert will call in a Few Hours to Discuss Your Project</h5>
 <?php
					if(isset($answer_error) && $answer_error != '')
					{
					?>
					<div>
                  <h5> <?=$answer_error?></h5>
				    </div>
                	<? }
					?>
    
    <form class="jform validate" action="" method="post" data-role="us">
    	<div class="field"><input type="text" name="cn" maxlength="60" value="" placeholder="Name" class="required alphanumeric iecn"></div>
    	<div class="field"><input type="text" name="em" maxlength="60" value="" placeholder="Email" class="required email  "></div>
    	<!--<div class="field pc">
        	<span></span>
        	<select class="countrylist" name="pc"></select>
        </div>-->
		
		<div class="field pc">
				  <span class="icons_area"><?=$math?></span>
                    
					 <input type="text" name="securitycode" required id="emailxxx"  class="required alphanumericxx form-control" placeholder="Answer">
                   
                </div>
		
		
        <div class="clearfix fieldwrap">
            <div class="field code"><input type="text" value="+1" name="code" disabled></div>
            <div class="field phone"><input type="text" name="pn" maxlength="10" value="" placeholder="Phone Number" class="required number"></div>
        </div>
    	<div class="field textarea"><textarea name="msg" class="required iemsg" rows="4" placeholder="Share your project requirements"></textarea></div>
        
        <p class="pull-left">Fastest Turnaround Time & 24/7 Customer Support </p><button class="pull-right" name="formfromsidebar" value="formsidebarsubmit">Submit Now</button>
      <!--  <input type="hidden" name="pth" value="/index.aspx">
		<input type="hidden" name="tpth" value="/index.aspx">
        <input type="hidden" name="url" value="/index.aspx">
        <input type="hidden" name="ctry" value="">
        
        <input type="hidden" name="ft" value="floatingform"> -->

    </form>
	
		</div>
	</div>
</div>
        
        
    </div>
	<div class="form-handle">
    </div>
</div>

<div class="side-bars">
	<div class="s-bar clearfix">
 <a href="javascript:;" title="Skype Call">
<div class="call-spr"></div>
<p>Toll Free:</p>
 <span class="pnumlive">(832)-426-3656</span></a>
</div>

</div>

<section class="popup-form">
	<a class="close" href="javascript:;"></a>
	<div class="formcontainer">
    	
            <div class="tophead">
                <h2>Sign Up to Connect</h2>
                <h3>Enter your phone number and our consultant
will call you right away</h3>
 <?php
					if(isset($answer_error) && $answer_error != '')
					{
					?>
					<div>
                  <h3> <?=$answer_error?></h3>
				    </div>
                	<? }
					?>
            </div>
        
            <div id="popupform" class="inform">
            
            <form class="jform validate clearfix" action="" method="post" data-role="us">
            
                    <div class="field"><input type="text" name="cn" maxlength="60" value="" placeholder="Name" class="required alphanumeric iecn"></div>
                    <div class="field"><input type="text" name="em" maxlength="60" value="" placeholder="Email" class="required email "></div>
                <div class="field pc">
				  <span class="icons_area"><?=$math?></span>
                   <!-- <select class="countrylist" name="pc"></select>-->
					 <input type="text" name="securitycode" required id="emailxxx"  class="required alphanumericxx form-control" placeholder="Answer">
                   <!-- <span></span>
                    <select class="countrylist" name="pc"></select>-->
                </div>
                

                	<div class="clearfix">
                        <div class="field code pull-left"><input type="text" value="+1" name="code" disabled></div>
                        <div class="field phone pull-left"><input type="text" maxlength="10" name="pn" value="" placeholder="Phone Number" class="required number"></div>
                    </div>
                    <div class="field"><textarea name="msgxx" class="required iemsg" rows="4" placeholder="Share your project requirements"></textarea></div>
                <div class="clearfix fieldwrap text-center">
                    <button name="submitmenow" value="submitpopupform">Submit now</button>
                </div>
               <!-- <input type="hidden" name="pth" value="/index.aspx">
                <input type="hidden" name="tpth" value="/index.aspx">  
                <input type="hidden" name="ft" value="popupquoteform">  
                <input type="hidden" name="url" value="/index.aspx">
                <input type="hidden" name="ctry" value="">  -->  
            </form>
            
			
            </div>
            <p class="formpop-cta">Connect with Our Design Expert &nbsp;<span class="ico phone"></span> (832)-426-3656&nbsp;|&nbsp;<span  onclick="setButtonURL();">&nbsp;<span class="ico chat"></span>&nbsp;Live Chat</span></p>

    </div>
</section>

<section class="callback-form">
	<a class="close" href="javascript:;"></a>
	<div class="formcontainer">
    	
            <div class="tophead">
                <h2>Request a Call Back</h2>
                <h3>Enter your phone number and our consultant
will call you right away</h3>
            </div>
        
            <div id="callback-form" class="inform">
            
            <form class="jform validate clearfix" action="" method="get" data-role="us">
            
                    <div class="field"><input type="text" name="cn" maxlength="60" value="" placeholder="Name" class="required alphanumeric iecn"></div>
                    <div class="field"><input type="text" name="em" maxlength="60" value="" placeholder="Email" class="required email "></div>
                <div class="field pc">
                    <span></span>
                    <select class="countrylist" name="pc"></select>
                </div>
                

                	<div class="clearfix fieldwrap">
                        <div class="field code pull-left"><input type="text" value="+1" name="code" disabled></div>
                        <div class="field phone pull-left"><input type="text" maxlength="10" name="pn" value="" placeholder="Phone Number" class="required number"></div>
                    </div>
                    <hr />
                    <p class="text-center">Preferred Time To Call</p>
                    
            <!--<div class="time">
            <p>From</p>
            <div class="field"> 

                <select name="ddlFrom" id="ddlFrom" class="required">
                    <option value="">HH:MM</option>
                    <option value="1">00:00</option>
                    <option value="2">01:00</option>
                    <option value="3">02:00</option>
                    <option value="4">03:00</option>
                    <option value="5">04:00</option>
                    <option value="6">05:00</option>
                    <option value="7">06:00</option>
                    <option value="8">07:00</option>
                    <option value="9">08:00</option>
                    <option value="10">09:00</option>
                    <option value="11">10:00</option>
                    <option value="12">11:00</option>
                    <option value="13">12:00</option>
                    <option value="14">13:00</option>
                    <option value="15">14:00</option>
                    <option value="16">15:00</option>
                    <option value="17">16:00</option>
                    <option value="18">17:00</option>
                    <option value="19">18:00</option>
                    <option value="20">19:00</option>
                    <option value="21">20:00</option>
                    <option value="22">21:00</option>
                    <option value="23">22:00</option>
                    <option value="24">23:00</option>
                </select>
            
            </div>
            </div>-->
            
            <div class="time"> 
            	<p>To</p>
                <div class="field">        
                    <select name="ddlTo" id="ddlTo" class="required">
                        <option value="">HH:MM</option>
                        <option value="2">01:00</option>
                        <option value="3">02:00</option>
                        <option value="4">03:00</option>
                        <option value="5">04:00</option>
                        <option value="6">05:00</option>
                        <option value="7">06:00</option>
                        <option value="8">07:00</option>
                        <option value="9">08:00</option>
                        <option value="10">09:00</option>
                        <option value="11">10:00</option>
                        <option value="12">11:00</option>
                        <option value="13">12:00</option>
                        <option value="14">13:00</option>
                        <option value="15">14:00</option>
                        <option value="16">15:00</option>
                        <option value="17">16:00</option>
                        <option value="18">17:00</option>
                        <option value="19">18:00</option>
                        <option value="20">19:00</option>
                        <option value="21">20:00</option>
                        <option value="22">21:00</option>
                        <option value="23">22:00</option>
                        <option value="24">23:00</option>
                        <option value="25">23:59</option>
            
                    </select>
                </div>
            </div>

                    
                <div class="clearfix fieldwrap text-center">
                    <button>Submit now</button>
                </div>
               <!-- <input type="hidden" name="pth" value="/index.aspx">
                <input type="hidden" name="tpth" value="/index.aspx">  
                <input type="hidden" name="ft" value="callbackform">  
                <input type="hidden" name="url" value="/index.aspx">
                <input type="hidden" name="ctry" value="">    -->
            </form>
            
			
            </div>

    </div>
</section>


<script type="text/javascript" src="<?=$filespath?>/landingpagelogodesign/assets3/js/xlib.js"></script>
<script type="text/javascript" src="<?=$filespath?>/landingpagelogodesign/assets3/js/custom.js"></script>
<script type="text/javascript" src="<?=$filespath?>/landingpagelogodesign/myjs.js"></script>

 
<script>
/* function goToByScroll(id){
          // Reove "link" from the ID
        id = id.replace("link", "");
          // Scroll
        $('html,body').animate({
            scrollTop: $("#"+id).offset().top},
            'slow');
    }

    $(".header-wrap .asdasd").click(function(e) { 
          // Prevent a page reload when a link is pressed
        e.preventDefault(); 
          // Call the scroll function
        goToByScroll($(this).attr("id"));           
    });
*/</script>


<div class="cus-overlay"></div>
<!--Start of Tawk.to Script-->
<script type="text/javascript">
var Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();
(function(){
var s1=document.createElement("script"),s0=document.getElementsByTagName("script")[0];
s1.async=true;
s1.src='https://embed.tawk.to/57f585758598f153810a3c19/default';
s1.charset='UTF-8';
s1.setAttribute('crossorigin','*');
s0.parentNode.insertBefore(s1,s0);
})();
</script>
<!--End of Tawk.to Script-->
</body>

</html>













