<?php
/**
 * Template Name: 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
 */

$filespath = get_template_directory_uri();

session_start();



  ?>
<?php


if(!isset($_REQUEST['sendmessage'])){

$digit1 = mt_rand(1,10);
$digit2 = mt_rand(10,20);
//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['sendmessage']))
{
  if (isset($_POST['uname']) && $_POST['uname'] != "" && isset($_POST['uemail']) && $_POST['uemail'] != "" && isset($_POST['uphone']) && $_POST['uphone'] != "" && isset($_POST['budget']) && $_POST['budget'] != ""  && isset($_POST['message']) && $_POST['message'] != ""  && isset($_POST['securitycode']) && $_POST['securitycode'] != "" ) {
  
if($_SESSION['answer'] == $_POST['securitycode'])  
{

 	$ipaddress = get_client_ip();


 	$to = 'danish.172@gmail.com';
$subject = 'Indigo Icon (Landing Page)';
$body = '<h1>'.$_POST['uname'].' sent a quotation,</h1><br>Email : '.$_POST['uemail'].' <br> Phone : '.$_POST['uphone'].' <br> IP Address : '.$ipaddress.' <br> Budget : '.$_POST['budget'].' <br> Message : '.$_POST['message'];
$headers[] = 'Content-Type: text/html; charset=UTF-8';
 
 $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;
	
	
	$wpdb->insert('leads', array(
    'uname' => $_POST['uname'],
    'uemail' => $_POST['uemail'],
    'uphone' => $_POST['uphone'],  
    'umessage' => $_POST['message'],  
    'userIP' => $ipaddress,  
    'add_date' => date('m-d-Y, h:i:s') ,
	'ubudget' => $_POST['budget'],  
));
 
wp_redirect( "http://indigoicon.com/thank-you" );
exit;

$answer_error = "Form Submit Successfully.";
}
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,10);
$digit2 = mt_rand(10,20);
//if( mt_rand(0,1) === 1 ) {
    $math = "$digit1 + $digit2";
    $_SESSION['answer'] = $digit1 + $digit2;
//} else {
//    $math = "$digit1 - $digit2";
//    $_SESSION['answer'] = $digit1 - $digit2;
//}



}


}

?>
    

      
 <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="description" content="Businnes, Portfolio, Landing Page, etc">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

    <!-- Title -->
    <title>Indigo Icon</title>

    <!-- Favicon Ico -->
    <?php /*?><link rel="shortcut icon" href="<?=$filespath?>/landingpagestuff/images/favicon.ico"><?php */?>
<link rel="icon" type="image/x-icon" href="<?php bloginfo('template_url'); ?>/images/favicon.ico" />
    <!-- =============================
                stylesheets
    ================================== -->

    <!-- Normalize And Bootstrap -->
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/normalize.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/bootstrap.min.css">

    <!-- Google Font  -->
    <link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Raleway:600,700,400,300' rel='stylesheet' type='text/css'>

    <!-- Font Icons -->
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/font-awesome.min.css" />

    <!-- Plugin Default Stylesheets -->
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/magnific-popup.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/slider-pro.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/owl.carousel.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/owl.theme.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/owl.transitions.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/animate.css">

    <!-- Main Stylesheet -->
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/style.css">
    <link rel="stylesheet" href="<?=$filespath?>/landingpagestuff/css/color.css" id="colors" />
    <!--[if lt IE 9]>
        <script src="<?=$filespath?>/landingpagestuff/js/html5shiv.min.js"></script>
        <script src="<?=$filespath?>/landingpagestuff/js/respond.min.js"></script>
        <script type="text/javascript" src="<?=$filespath?>/landingpagestuff/js/selectivizr.js"></script>
    <![endif]-->
	<!--<script src='https://www.google.com/recaptcha/api.js'></script>-->
	<?php wp_head(); ?>
	 
</head>

<body>
   

    <!-- =============================
                    Header
    ================================== -->
    <header>
        <!-- Navigation Menu start-->
        <nav class="navbar goll-main-menu" role="navigation">
            <div class="container" style="width: 990px;">

                <!-- Navbar Toggle -->
                <div class="navbar-header">
                    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                        <span class="icon-bar"></span>
                    </button>

                    <!-- Logo -->
                    <a class="navbar-brand" href="<?=site_url()?>"><img class="logo" id="logo" src="<?=$filespath?>/landingpagestuff/images/logo.png" alt="logo"></a>

                </div>
                <!-- Navbar Toggle End -->

                <!-- navbar-collapse start-->
                <div id="nav-menu" class="navbar-collapse collapse" role="navigation">
                    <ul class="nav navbar-nav goll-menu-wrapper">
                        <li class="active">
                            <a href="#goll-slider">Home</a>
                        </li>
                        <li>
                            <a href="#services">Apps</a>
                        </li> <li>
                            <a href="#webservices">Web</a>
                        </li>
                        <li>
                            <a href="#portfolio">Portfolio</a>
                        </li>
                         <li>
                            <a href="#testimonials">Testimonial</a>
                        </li>
                        <li>
                            <a href="#contact">Contact Us</a>
                        </li>
							<li>
                            <a href="#contact" class="quote">Get A Free quote</a>
                        </li>
                    </ul>
                </div>
                <!-- navbar-collapse end-->

            </div>
        </nav>
        <!-- Navigation Menu end-->
    </header>
    <!-- Header End -->
	
	<a class="request_quote_sidetab" href="#contact" style="right: -200px;"></a>
	<a class="contact_us_sidetab" href="#contact"></a>
	

    <!-- =============================
                Main Slider
    ================================== -->
    <section class="banner" id="goll-slider">
        <div class="container">
			<div class="col-md-6 left_content">
				<h2>Website And Mobile Application Development</h2>
				<p>Handling all the tasks from conceptualizing idea to deployment and launch, the redoubtable team of seasoned developers at Indigo Icon ensure that your product  makes its way to successfull launch. Your partnership with us will yield exceptional solutions to your business needs.</p>
				
				<div class="icons_area"><img src="<?=$filespath?>/landingpagestuff/images/banner_android.png"> <img src="<?=$filespath?>/landingpagestuff/images/banner_iphone.png"></div>
				
			</div>
			<div class="col-md-6 image_box"><img src="<?=$filespath?>/landingpagestuff/images/banner_phone.png"></div>
		</div>
    </section>
    <!-- Main Slider End -->

    <!-- =============================
                Custom Section
    ================================== -->
    <section id="services" class="bgc-one services_bg goll-custom-sec goll-section-wrapper goll-description">
        <div class="container">
            <div class="row">
			
			<div class="top_quote_button"><a href="#contact"><img src="<?=$filespath?>/landingpagestuff/images/top_call_button.png"></a></div>
			
                <!-- Section Header -->
                <div class="col-md-12 col-sm-12 col-xs-12 goll-section-header wow fadeInDown">
                    <h2>App Services<span class="goll-highlight-text"> We Provide</span></h2>
                    <div class="goll-section-divider"></div>
                    
                </div>
                <!-- Section Header End -->

                <div class="col-md-4 col-sm-4 col-xs-12 goll-custom-sec-img wow bounceInLeft">
                    
					<div class="services_boxes right_side">
						<a href="#">
						<div class="ser_img"><img src="<?=$filespath?>/landingpagestuff/images/android.png"></div>
						<h2>Android mobile app</h2>
						<p>The expertise and experience in Android Software Development Kit (SDK), the Android app developers at Indigo Icon will offer you with endless opportunities. Full stack expertise in Media APIs and location-based mapping integration technology, Indigo Icon developers will ensue that you will have an incredible Android apps for your business. Indigo Icon is your platform for enterprise and sociable Android apps having rich consumer base. </p>
						</a>
					</div>
					
				 
					
                </div>
				
				
				<div class="col-md-3 col-sm-3 col-xs-12 large_img">
                    <img src="<?=$filespath?>/landingpagestuff/images/services_mob_bg.png" class="bounceOutDown" alt="Custom Image">
                </div>
				

                <div class="col-md-4 col-sm-4 pull-right col-xs-12 goll-custom-sec-text wow bounceInRight">
                    
					

					<div class="services_boxes">
						<a href="#">
						<div class="ser_img"><img src="<?=$filespath?>/landingpagestuff/images/iphone.png"></div>
						<h2>iPhone mobile app</h2>
						<p>iOS developers at Indigo Icon will make rich iOS apps for you which are highly interactive while keeping the uncompromising guidelines for development by Apple. Timely delivery, endless ideas to expand your business empire, and also a pathway to make a big leap to success, if you have a startup, is what you will get by working with Indigo Icon if you want to develop an iPhone app with our developers. We will take your idea and mold it in to a success.</p>
						</a>
					</div>
					
					 
					
                </div>
				
				
				
            </div>
        </div>
    </section>
    
	
	
	
	<section id="webservices" class="bgc-one services_bgweb goll-custom-sec goll-section-wrapper goll-description">
        <div class="container">
            <div class="row">
			
			 
                <!-- Section Header -->
                <div class="col-md-12 col-sm-12 col-xs-12 goll-section-header wow fadeInDown">
                    <h2>Web Services<span class="goll-highlight-text"> We Provide</span></h2>
                    <div class="goll-section-divider"></div>
                    
                </div>
                <!-- Section Header End -->
<div class="col-md-6 col-sm-4 col-xs-12 large_imgweb">
                    <img src="<?=$filespath?>/landingpagestuff/images/web_development.png" class="bounceOutDown" alt="Custom Image">
                </div>
				
				
                <div class="col-md-6 col-sm-8 col-xs-12 goll-custom-sec-img wow bounceInLeft">
                    
					<div class="services_boxes left_side">
					 
						 
						<h2>Website Development</h2>
						<p>We love designing and developing websites because this is how Indigo Icon started. Web development is a beautiful blend of smart coding, and exceptional designs. Our web design and development team at Indigo Icon ensures that you will have a website which will draw the users in and will give them a comfortable sense of navigating through it. If you want to have a website for your E-commerce solutions, custom blog web designs, or just a responsive website for your start-up or any business and personal need, get in touch with us. </p>
						 
					</div>
					
				 
					
                </div>
				
				
				
				

                <div class="col-md-4 col-sm-4 pull-right col-xs-12 goll-custom-sec-text wow bounceInRight">
                    
					
					<?php /*?><div class="services_boxes">
						<a href="#">
						<div class="ser_img"><img src="<?=$filespath?>/landingpagestuff/images/iphone.png"></div>
						<h2>iPhone mobile app</h2>
						<p>iOS developers at Indigo Icon will make rich iOS apps for you which are highly interactive while keeping the uncompromising guidelines for development by Apple. Timely delivery, endless ideas to expand your business empire, and also a pathway to make a big leap to success, if you have a startup, is what you will get by working with Indigo Icon if you want to develop an iPhone app with our developers. We will take your idea and mold it in to a success.</p>
						</a>
					</div><?php */?>
					
					 
					
                </div>
				
				
				
            </div>
        </div>
    </section>
	
	
	
	
	
	<section id="about" class="bgc-one goll-section-wrapper process">
        <div class="container">
            <div class="row">

                <!-- Section Header -->
                <div class="col-md-12 col-sm-12 col-xs-12 goll-section-header wow fadeInDown">
                    <h2>Our Process</h2>
                    <div class="goll-section-divider"></div>
                    
                </div>
                <!-- Section Header End -->

                <!-- What We Do -->
                <div class="goll-what-we-do">

                    <div class="col-md-4 col-sm-4 col-xs-12 goll-blurb-round-icon wow bounceInLeft boxes">
                        
						<a href="#">
						<div class="col-md-3 icon_box">
						
						<div class="goll-icon">
                            <img src="<?=$filespath?>/landingpagestuff/images/requirment.png">
                        </div>
                        
						</div>
						<div class="col-md-9">
						<h3>Discovery</h3>
                        <p>The team at Indigo Icon will sit with you to define and discuss the requirements, prioritize the tasks, and pave the pathway for development.</p>
						</div>
						</a>
						
                    </div>

                    <div class="col-md-4 col-sm-4 col-xs-12 goll-blurb-round-icon wow bounceInLeft boxes">
                        
						<a href="#">
						<div class="col-md-3 icon_box">
						
						<div class="goll-icon">
                            <img src="<?=$filespath?>/landingpagestuff/images/brain.png">
                        </div>
                        
						</div>
						<div class="col-md-9">
						<h3>Ideation & Strategy</h3>
                        <p>Scope is defined, roadmaps are laid. It is necessary whether it is a new idea or pre-existing one, because all of it needs a starting point and a foundation.</p>
						</div>
						</a>
						
                    </div>

                    <div class="col-md-4 col-sm-4 col-xs-12 goll-blurb-round-icon wow bounceInLeft boxes">
                        
						<a href="#">
						<div class="col-md-3 icon_box">
						
						<div class="goll-icon">
                            <img src="<?=$filespath?>/landingpagestuff/images/design.png">
                        </div>
                        
						</div>
						<div class="col-md-9">
						<h3>UI/UX Designs</h3>
                        <p>When the plan has been planted, the team draws up wireframes, and maps user experience (UX). User interface (UI) gets involved and graphics come in to play.</p>
						</div>
						</a>
						
                    </div>

                    <div class="col-md-4 col-sm-4 col-xs-12 goll-blurb-round-icon wow bounceInLeft boxes">
                        
						<a href="#">
						<div class="col-md-3 icon_box">
						
						<div class="goll-icon">
                            <img src="<?=$filespath?>/landingpagestuff/images/development.png">
                        </div>
                        
						</div>
						<div class="col-md-9">
						<h3>Builds</h3>
                        <p>Designs are transformed and trimmed down to feasible goals using custom project management so that the project does not falter off the designated road.</p>
						</div>
						</a>
						
                    </div>
					
					
					
					
					<div class="col-md-4 col-sm-4 col-xs-12 goll-blurb-round-icon wow bounceInLeft boxes">
                        
						<a href="#">
						<div class="col-md-3 icon_box">
						
						<div class="goll-icon">
                            <img src="<?=$filespath?>/landingpagestuff/images/testing_qa.png">
                        </div>
                        
						</div>
						<div class="col-md-9">
						<h3>Quality Assurance</h3>
                        <p>Meticulous tests are run so that bugs and issues are addressed and final product has seamless, friendly, and immersive experience for the users.</p>
						</div>
						</a>
						
                    </div>
					
					
					
					
					<div class="col-md-4 col-sm-4 col-xs-12 goll-blurb-round-icon wow bounceInLeft boxes">
                        
						<a href="#">
						<div class="col-md-3 icon_box">
						
						<div class="goll-icon">
                            <img src="<?=$filespath?>/landingpagestuff/images/deploye.png">
                        </div>
                        
						</div>
						<div class="col-md-9">
						<h3>Launch</h3>
                        <p>All the careful planning and clinical execution, your product is introduced in to market whether it is an app store or the website launch. Congratulations are exchanged mutually.</p>
						</div>
						</a>
						
                    </div>

                </div>
                <!-- What We Do End -->

            </div>
        </div>
    </section>
	
	
	
	<!-- Custom Section End -->



    


    <!-- =============================
                Portfolio Section
    ================================== -->
    <?php /*?><section id="portfolio" class="bgc-two goll-portfolio-section portfolio_sec">
        <?php //do_shortcode('[rev_slider alias="Landing Page Slider"]')?>
		<!--<div class="container">
		
			<div class="col-md-7 image_section"><img src="<?php //$filespath?>/landingpagestuff/images/portfolio_mobile.png"></div>
		<div class="col-md-5 content_box">
			
			
			
			
			<h2>Dailys Routine app</h2>
			<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley when an unknown printer took a galley</p>
		
		</div>
		
		</div>-->

    </section><?php */?>

    <!-- Portfolio Section End -->



    <!-- =============================
                Portfolio Section
    ================================== -->
    <section id="portfolio" class="bgc-two goll-portfolio-section portfolio_sec">
	
	
	
	
 
<style>
/* Carousel */

#quote-carousel {
    padding: 0 10px 30px 10px;
    margin-top: 30px;
    /* Control buttons  */
    /* Previous button  */
    /* Next button  */
    /* Changes the position of the indicators */
    /* Changes the color of the indicators */
}
#quote-carousel .carousel-control {
    background: none;
    color: #CACACA;
    font-size: 2.3em;
    text-shadow: none;
    margin-top: 30px;
}
#quote-carousel .carousel-control.left {
    left: -60px;
}
#quote-carousel .carousel-control.right {
    right: -60px;
}
#quote-carousel .carousel-indicators {
    right: 50%;
    top: auto;
    bottom: 0px;
    margin-right: -19px;
}
#quote-carousel .carousel-indicators li {
    width: 50px;
    height: 50px;
    margin: 5px;
    cursor: pointer;
    border: 4px solid #CCC;
    border-radius: 50px;
    opacity: 0.4;
    overflow: hidden;
    transition: all 0.4s;
}
#quote-carousel .carousel-indicators .active {
    background: #333333;
    width: 128px;
    height: 128px;
    border-radius: 100px;
    border-color: #f33;
    opacity: 1;
    overflow: hidden;
}
.carousel-inner {
    min-height: 300px;
}
.item blockquote {
    border-left: none;
    margin: 0;
}
.item   p {
    color:#FFFFFF;
     float: left;
    margin-right: 10px;
	
	    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.item img {width: 301px;
    margin-left: 40px;}
</style>
       <div class="container">
<div class="row">
                    <div class="col-md-12" data-wow-delay="0.2s">
                        <div class="carousel slide" data-ride="carousel" id="quote-carousel">
                            <!-- Bottom Carousel Indicators -->
                           <!-- <ol class="carousel-indicators">
                                <li data-target="#quote-carousel" data-slide-to="0" class="active"><img class="img-responsive " src="https://s3.amazonaws.com/uifaces/faces/twitter/brad_frost/128.jpg" alt="">
                                </li>
                                <li data-target="#quote-carousel" data-slide-to="1"><img class="img-responsive" src="https://s3.amazonaws.com/uifaces/faces/twitter/rssems/128.jpg" alt="">
                                </li>
                                <li data-target="#quote-carousel" data-slide-to="2"><img class="img-responsive" src="https://s3.amazonaws.com/uifaces/faces/twitter/adellecharles/128.jpg" alt="">
                                </li>
                            </ol>
-->
                            <!-- Carousel Slides / Quotes -->
                            <div class="carousel-inner text-center">

                                <!-- Quote 1 -->
                                <div class="item active">
                                     
									 <div class="col-md-7 image_section"><img src="<?php echo $filespath?>/landingpagestuff/images/portfolio_mobile.png"></div>
                                    
									<div class="col-md-5 content_box">
 			
			<h2>Player Evaluation App</h2>
			<p>Indigo Icon developed this sports app for coaching and learning purpose. It was an in-house production where the users can evaluate the players. We made an extensive database for the famous superstars in soccer and users can look in to their profiles and see their skills, signature moves, positions, and basic bio.</p>
		
									</div>
                                </div>
                                <!-- Quote 2 -->
                                 
								 <div class="item">
                                     
									 <div class="col-md-7 image_section"><img src="<?php echo $filespath?>/landingpagestuff/images/portfolio_mobile2.png"></div>
                                    
									<div class="col-md-5 content_box">
 			
			<h2>Budget Express</h2>
			<p>The client at Budget Express needed an e-commerce solution for their web portal. They wanted to inculcate an online cart for their products on display. Indigo Icon developed the website and are currently making mobile app for them. You can shop for online grocery, home and house-keeping items, beauty and cosmetic products, and more with reliable and fastest delivery.</p>
		
									</div>
                                </div>
								 
								 
								  <!-- Quote 3 -->
                                 
								 <div class="item">
                                     
									 <div class="col-md-7 image_section"><img src="<?php echo $filespath?>/landingpagestuff/images/portfolio_mobile3.png"></div>
                                    
									<div class="col-md-5 content_box">
 			
			<h2>Indigo Rent A Car</h2>
			<p>Rent A Car business in Dubai, UAE has gained momentum and has been on rise for a while. We were approached by one of the salient rent a car company in Dubai, Indigo Rent A Car. We designed and developed their website, and installed an online booking management system on their web portals. People can now book the rental service online even before reaching Dubai.</p>
		
									</div>
                                </div>
								 
                                 
                               
                            </div>

                            <!-- Carousel Buttons Next/Prev -->
                            <a data-slide="prev" href="#quote-carousel" class="left carousel-control"><i class="fa fa-chevron-left"></i></a>
                            <a data-slide="next" href="#quote-carousel" class="right carousel-control"><i class="fa fa-chevron-right"></i></a>
                        </div>
                    </div>
                </div>
</div>
  
         
     
	
        <?php /*?><div class="container">
		
			<div class="col-md-7 image_section"><img src="<?php echo $filespath?>/landingpagestuff/images/portfolio_mobile.png"></div>
		<div class="col-md-5 content_box">
			
			
			
			
			<h2>Player Evaluation App</h2>
			<p>Indigo Icon developed this sports app for coaching and learning purpose. It was an in-house production where the users can evaluate the players. We made an extensive database for the famous superstars in soccer and users can look in to their profiles and see their skills, signature moves, positions, and basic bio.</p>
		
		</div>
		
		</div>
		<div class="container">
		
			<div class="col-md-7 image_section"><img src="<?=$filespath?>/landingpagestuff/images/portfolio_mobile.png"></div>
		<div class="col-md-5 content_box">
			
			<h2>Dailys Routine app</h2>
			<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley when an unknown printer took a galley</p>
		
		</div>
		
		</div><?php */?>
 <?php //do_shortcode('[rev_slider alias="Landing Page Slider"]')?>
    </section>
    <!-- Portfolio Section End -->


    
    <!-- =============================
            Testimonial Section
    ================================== -->
    <section id="testimonials" class="bgc-two goll-testimonial-section testimonials_area">


        <div class="goll-parallax-overlay"></div>

        <div class="goll-testimonial-wrapper wow bounceIn">
            <div class="container">
                <div class="row">

                    <!-- Testimonial Slider -->
                    <div id="goll-testimonial" class="owl-carousel goll-testimonial">

                        <!-- Slides -->
                        <div class="goll-testimonial-slides col-md-10 col-sm-10 col-xs-12 col-md-offset-2 col-sm-offset-1">
                            <p>I became acquainted with Indigo Icon while they were developing our application. Indigo Icon quickly proved our team that we had made the right decision in hiring them to develop our application. Indigo Icon immediately proved their abilities, knowledge and their integrity,notwithstanding their dependability and ability to deliver in time, while interacting with our team.</p>
                            <p class="goll-client-info">Mariano Balcarce</p>
                        </div>
                        <!-- Slides End -->

                        <!-- Slides -->
                        <div class="goll-testimonial-slides col-md-10 col-sm-10 col-xs-12 col-md-offset-2 col-sm-offset-1">
                            <p> Indigo Icon made my entire experience a very enjoyable one. From onset to completion, they worked with me to make sure all of my requests were being handled. They always got back to me right away, most of the time within minutes, to let me know they received my email and then they promptly took care of my requests, leaving me with a fantastic end product.</p>
                            <p class="goll-client-info">Scott Bridgman</p>
                        </div>
                        <!-- Slides End -->

                        <!-- Slides -->
                        <div class="goll-testimonial-slides col-md-10 col-sm-10 col-xs-12 col-md-offset-2 col-sm-offset-1">
                            <p>Indigo Icon was instrumental in the design and development of a few key web projects when our company was getting started. Their attention to detail,and willingness to go above and beyond what is necessary in this space is excellent. I would recommend Indigo Icon for your future project.</p>
                            <p class="goll-client-info">Megan James</p>
                        </div>
                        <!-- Slides End -->

                    </div>
                    <!-- Testimonial Slider End -->

                </div>
            </div>
        </div>
    </section>
    <!-- Testimonial End -->



    
    <!-- =============================
            Testimonial Section
    ================================== -->
     
    <!-- Testimonial End -->


    <!-- =============================
                Contact Section
    ================================== -->
    <section id="contact" class="bgc-one goll-section-wrapper goll-contact-section contact_new_sec" data-stellar-background-ratio="0.5">
    <div class="goll-parallax-overlay"></div>
        <div class="container">
            <div class="row">

                <!-- Section Header -->
                <div class="col-md-12 col-sm-12 col-xs-12 goll-section-header wow fadeInDown goll-section-header-parallax">
                    <p class="col-sm-offset-1">You can find us in the center of Houston, TX<br>
or reach out to us here. </p>
					
					<div class="col-md-1"></div>
					<div class="col-md-5 location"><img src="<?=$filespath?>/landingpagestuff/images/footer_phone_icon.png"><p>(832)-426-3656 </p> </div>
					<div class="col-md-6 location"><img src="<?=$filespath?>/landingpagestuff/images/footer_location.png"><p>6875 Suite A,
Harwin Dr, Houston TEXAS
, 77036 - US</p></div>
					
                </div>
                <!-- Section Header End -->

                <div class="goll-contact-details">
				
                    <!-- Address Area End -->
					
					<div class="col-md-7 col-sm-7 col-xs-7 listing wow bounceInLeft">
						
						<ul>
							<li><span>Money Back</span> Guarantee</li>
							<li>Skype & E-mail <span>Support</span></li>
							<li>Marketing and <span>ROI</span> Consultations</li>
							<li><span>Social Media</span> Presence Projection</li>
							<li><span>SEO</span> Services</li>
							<li>Cross Platform <span>Support </span></li>
						</ul>
						
					</div>
					 <!--[text* yourname id:name placeholder "Name"] 
 
    [email* youremail id:email placeholder "Email"]  
 [tel phonenum id:phone placeholder "Phone"]

 [select* budget "Test 1" "Test 2"]
[textarea* messagex id:message placeholder "Message"]
[submit "Send"]-->
                    <!-- Contact Form -->
                    <!--<div class="col-md-5 col-sm-5 col-xs-5 form_area pull-right goll-contact-form wow bounceInRight">
                        <div id="contact-result"></div>
                        <div id="contact-form">
                            <div class="goll-input-name goll-input-fields">
								<span class="icons_area">as</span>
                                [text* yourname id:name placeholder "Name"] 
                            </div>

                            <div class="goll-input-email goll-input-fields">
								<span class="icons_area">as</span>
                               [email* youremail id:email placeholder "Email"]
                            </div>
							
							<div class="goll-input-email goll-input-fields">
								<span class="icons_area">as</span>
                                [tel phonenum id:phone placeholder "Phone"]
                            </div>
							
							<div class="goll-input-email goll-input-fields">
								[select* budget "Test 1" "Test 2"]
                            </div>

                            <div class="goll-input-message goll-input-fields">
                               [textarea* messagex id:message placeholder "Message"]
                            </div>
							
							<div class="col-md-7 left_side">
							<div class="goll-input-fields">
								<span class="icons_area">as</span>
                                <input type="email" name="email" id="email" placeholder="Security">
								</div>
								</div>
								
							<div class="col-md-5 button_side"><input type="submit" value="SEND MESSAGE" id="submit-btn"></div>-->
                              <!-- Contact Form -->
                    <div class="col-md-5 col-sm-5 col-xs-5 form_area pull-right goll-contact-form wow bounceInRight">
                        <div id="contact-result"></div>
                        <div id="contact-form">
						<span><?=$answer_error?></span>
						<form method="post" action="#contact">
						   <div class="goll-input-name goll-input-fields">
						    
								<span class="icons_area"><img src="<?=$filespath?>/landingpagestuff/images/name.png"></span>
                                <input type="text" name="uname" value="<?php if(isset($_REQUEST['uname'])){echo $_REQUEST['uname'];}?>" id="name" placeholder="Name" required>
                            </div>

                            <div class="goll-input-email goll-input-fields">
							 	<span class="icons_area"><img src="<?=$filespath?>/landingpagestuff/images/email.png"></span>
                                <input type="email" name="uemail" value="<?php if(isset($_REQUEST['uemail'])){echo $_REQUEST['uemail'];}?>" id="email" placeholder="Email" required>
                            </div>
							
							<div class="goll-input-email goll-input-fields">
							 	<span class="icons_area"><img src="<?=$filespath?>/landingpagestuff/images/phone.png"></span>
                                <input type="text" name="uphone" value="<?php if(isset($_REQUEST['uphone'])){echo $_REQUEST['uphone'];}?>" id="phone" placeholder="Phone" required>
                            </div>
							
							<div class="goll-input-email goll-input-fields">
							 	<select name="budget" id="budget" required>
									<option>Please Select a budget</option>
									<option <?php if(isset($_REQUEST['budget']) && $_REQUEST['budget'] == 'Less than $5,000'){echo 'selected';}?> value="Less than $5,000">Less than $5,000</option>
									<option <?php if(isset($_REQUEST['budget']) && $_REQUEST['budget'] == '$6,000 – $10,000'){echo 'selected';}?> value="$6,000 – $10,000">$6,000 – $10,000</option>
									<option <?php if(isset($_REQUEST['budget']) && $_REQUEST['budget'] == '$11,000 – $20,000'){echo 'selected';}?> value="$11,000 – $20,000">$11,000 – $20,000</option>
									<option <?php if(isset($_REQUEST['budget']) && $_REQUEST['budget'] == 'More Than $20,000'){echo 'selected';}?> value="More Than $20,000">More Than $20,000</option>
								 
								</select>
								
						 		<script>
								<?php
								//if(isset($_POST['budget']))
								//{
								?>
								//jQuery("#budget").val(<?php //$_POST['budget']?>);
								<?php
								//}
								?>
								</script>
                            </div>
                             <div class="goll-input-message goll-input-fields">
                                <textarea name="message" required id="message" cols="30" rows="6" placeholder="Message"><?php if(isset($_REQUEST['message'])){echo $_REQUEST['message'];}?></textarea>
                            </div>
							
							<div class="col-md-7 left_side">
							<div class="goll-input-fields">
							
								<span class="icons_area"><?=$math?></span>
                                <input type="text" name="securitycode" required id="email" placeholder="Answer">
								</div>
								</div>
								
							<div class="col-md-5 button_side"><input type="submit" name="sendmessage" value="SEND MESSAGE" id="submit-btn"></div>
                            </form>
							
							
							
							
                        </div>
						
						
                    </div>
                    <!-- Contact Form End -->

							
							
						
							
							
							
							
						<!--	
                        </div>
                    </div>
                     Contact Form End -->

                </div>
            </div>
        </div>
    </section>

    <!-- Contact Section End -->


   <!-- =============================
                Footer Section
    ================================= -->
    <footer>
        <div class="container">
            <div class="row">
                <div class="goll-footer-content">
                
&copy; 2016 Indigo Icon. Designs, content and logos are trademarks of Indigo Icon, Inc.

                </div>
            </div>
        </div>
    </footer>
    <!-- Footer End -->


    <!-- =============================
                SCRIPTS
    ================================== -->
    <script src="<?=$filespath?>/landingpagestuff/js/jquery-1.11.3.min.js"></script> 

    <script src="<?=$filespath?>/landingpagestuff/js/bootstrap.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/modernizr.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.easing.1.3.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.scrollUp.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.easypiechart.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/isotope.pkgd.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.fitvids.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.stellar.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.waypoints.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/wow.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.nav.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/imagesloaded.pkgd.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/smooth-scroll.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.magnific-popup.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/jquery.sliderPro.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/owl.carousel.min.js"></script>
    <script src="<?=$filespath?>/landingpagestuff/js/custom.js"></script>
	
	<script>
	$(".wpcf7-select option:first").text('Please Select a Budget');
	</script>

<?php


?>	
	
<?php wp_footer(); ?>
	 
</body>
</html>
