<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Chandra Sales Coach - Empowering Business Growth</title>
    
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap" rel="stylesheet">

    <style>
        /* --- BRAND IDENTITY VARIABLES --- */
        :root {
            /* Primary Colors */
            --primary-blue: #0956A2;
            --primary-yellow: #FECB17;
            
            /* Secondary Colors */
            --light-blue: #C0DEF6;
            --light-yellow: #FBF4AB;
            
            /* Neutrals */
            --white: #ffffff;
            --dark-text: #333333;
            --light-text: #555555;
        }

        /* --- GLOBAL RESET & TYPOGRAPHY --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            background-color: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        a {
            text-decoration: none;
            transition: 0.3s;
        }

        ul {
            list-style: none;
        }

        /* --- UTILITIES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

        .btn-primary {
            background-color: var(--primary-yellow);
            color: var(--primary-blue);
        }
        .btn-primary:hover {
            background-color: #e5b614;
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }
        .btn-secondary:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }

        .btn-outline-blue {
            border: 2px solid var(--primary-blue);
            color: var(--primary-blue);
            background: transparent;
        }
        .btn-outline-blue:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }

        .section-padding {
            padding: 80px 0;
        }

        .text-center { text-align: center; }

        /* --- NAVIGATION --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: var(--dark-text);
            font-weight: 500;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
        }

        /* --- HERO SECTION --- */
        .hero {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            color: var(--white); /* Override default blue */
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 40px auto;
            color: var(--light-blue);
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* --- SERVICES SECTION (Expect From Us) --- */
        .services {
            background-color: var(--white);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid #eee;
            transition: 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-bottom: 4px solid var(--primary-yellow);
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--light-text);
        }
        
        .service-cta {
            margin-top: 20px;
            display: inline-block;
            font-weight: 600;
            color: var(--primary-blue);
        }

        /* --- WHY CHOOSE US --- */
        .why-choose {
            background-color: var(--light-yellow); /* Using brand secondary color */
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .why-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 16px;
            color: var(--dark-text);
        }

        .why-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: var(--primary-blue);
            font-weight: bold;
        }

        /* --- FEATURED PRODUCTS --- */
        .products {
            background-color: var(--white);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .product-card {
            background: var(--white);
            border: 1px solid #ddd;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            transition: 0.3s;
        }
        
        .product-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-img-placeholder {
            height: 200px;
            background-color: var(--light-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-blue);
            font-weight: bold;
        }

        .product-info {
            padding: 25px;
        }

        .product-info h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .product-info p {
            margin-bottom: 20px;
            font-size: 14px;
        }

        /* --- TESTIMONIALS --- */
        .testimonials {
            background-color: var(--primary-blue);
            color: var(--white);
            text-align: center;
        }
        
        .testimonials h2 { color: var(--white); }

        .testimonial-card {
            background: rgba(255,255,255,0.1);
            padding: 40px;
            max-width: 800px;
            margin: 0 auto;
            border-radius: 10px;
        }

        .stars {
            color: var(--primary-yellow);
            font-size: 24px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            font-size: 18px;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .client-name {
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: var(--primary-yellow);
        }

        /* --- OUR PROMISE --- */
        .promise {
            background-color: var(--white);
            text-align: center;
        }

        .promise p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        /* --- NETWORK (Business Champions) --- */
        .network {
            background-color: var(--light-blue);
            text-align: center;
        }
        
        .network p {
             max-width: 700px;
            margin: 0 auto 30px;
        }

        /* --- FOOTER --- */
        footer {
            background-color: #052c54; /* Darker shade of primary blue */
            color: var(--white);
            padding: 60px 0 20px;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer h4 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: #ddd;
        }

        .footer ul li a:hover {
            color: var(--primary-yellow);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            color: var(--white);
            font-weight: bold;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: #aaa;
        }

        /* Responsive Tweaks */
        @media (max-width: 768px) {
            .nav-links { display: none; } /* Add Mobile Menu logic in Zoho Sites */
            .hero h1 { font-size: 32px; }
            .why-grid { grid-template-columns: 1fr; }
        }
    </style>
</head>
<body>

    <header>
        <div class="container">
            <nav>
                <div class="logo">ChandraSalesCoach</div>
                <ul class="nav-links">
                    <li><a href="#training">Training</a></li>
                    <li><a href="#coaching">Coaching</a></li>
                    <li><a href="#services">Services</a></li>
                    <li><a href="#products">Products</a></li>
                    <li><a href="#resources">Resources</a></li>
                    <li><a href="#network">Network</a></li>
                    <li><a href="#about">About</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <section class="hero">
        <div class="container">
            <h1>Empowering Business Growth | Sales, Marketing, Leadership & Automation Solutions</h1>
            <p>We help Businesses & Domain Experts to systemize marketing & sales, build high-performance teams, grow revenue and long-term success. The Results Excellence!</p>
            <div class="hero-buttons">
                <a href="https://rzp.io/rzp/GeWeEv19" class="btn btn-primary" target="_blank">Book Your Consultation Call</a>
                <a href="#training" class="btn btn-secondary">Explore Training Solutions</a>
            </div>
            </div>
    </section>

    <section id="services" class="section-padding services">
        <div class="container">
            <div class="section-title">
                <h2>What You Can Expect From Us</h2>
            </div>
            <div class="services-grid">
                
                <div class="service-card">
                    <h3>▶ Sales, Marketing & Business Growth</h3>
                    <p>Strategic training, coaching & hands-on implementation support to build your marketing infrastructure, sales process to attract qualified leads and close high-value deals.</p>
                </div>

                <div class="service-card">
                    <h3>▶ Leadership Development & Team Management</h3>
                    <p>Upskill leadership, management team, build aligned and productive mid-level and front end teams, nurture high-performing culture through practically helpful frameworks and systems.</p>
                </div>

                <div class="service-card">
                    <h3>▶ AI-Driven Automation</h3>
                    <p>From branding and lead generation to CRM setups and AI-powered automation — we enable smarter business workflows to save time and get better results.</p>
                </div>

                <div class="service-card">
                    <h3>▶ Employee Staffing Solutions</h3>
                    <p>Reliable staffing for your Sales & Marketing teams to help you focus on growing your business, without the hiring hassles.</p>
                    <a href="#hire" class="service-cta">Hire Sales & Marketing Talent →</a>
                </div>

            </div>
            
            <div class="text-center" style="margin-top: 40px; font-weight: bold; color: var(--primary-blue);">
                ✅ If It Doesn’t Improve Your KPIs, We Don’t Associate. Period.
            </div>
        </div>
    </section>

    <section class="section-padding why-choose">
        <div class="container">
            <div class="why-grid">
                <div>
                    <h2>Why Choose Us?</h2>
                    <ul class="why-list">
                        <li>Programs built to address the challenges you face — not a one-size slide deck.</li>
                        <li>Focused on Real Behavioural Change, Skill Development, Perspective Shift & Habit Installation</li>
                        <li>Sales & Marketing Systems That Optimizes Visibility, Credibility and Profitability</li>
                        <li>Trusted by 300+ Businesses across the globe</li>
                        <li>Online, Offline or Hybrid Programs based on time and resources</li>
                        <li>Real promises. Real measurement. Real ROI. No Drama.</li>
                    </ul>
                </div>
                <div class="text-center">
                    <div style="background: var(--white); height: 300px; display:flex; align-items:center; justify-content:center; border-radius:10px;">
                        <span style="color:var(--primary-blue); font-weight:bold;">Trusted by 300+ Businesses</span>
                    </div>
                </div>
            </div>
        </div>
    </section>

    <section id="products" class="section-padding products">
        <div class="container">
            <div class="section-title">
                <h2>Featured Products and Programs</h2>
            </div>
            <div class="products-grid">

                <div class="product-card">
                    <div class="product-img-placeholder">PDF ICON</div>
                    <div class="product-info">
                        <h3>Sales Growth Rapid Assessment</h3>
                        <p>The simplest, fastest and most powerful way to measure your Sales Health (PDF).</p>
                        <a href="#products-page" class="btn btn-outline-blue">View Details</a>
                    </div>
                </div>

                <div class="product-card">
                    <div class="product-img-placeholder">PROGRAM ICON</div>
                    <div class="product-info">
                        <h3>Sales Success Challenge</h3>
                        <p>Step-by-Step Sales Growth Program for Entrepreneurs (Telugu).</p>
                        <a href="https://learn.chandrasalescoach.com/ssc" class="btn btn-primary" target="_blank">Join Program</a>
                    </div>
                </div>

                <div class="product-card">
                    <div class="product-img-placeholder">BOOK COVER</div>
                    <div class="product-info">
                        <h3>The Ultimate Sales Differentiator</h3>
                        <p>Learn How to Stand Out & Win More Sales. (PDF Book)</p>
                        <a href="https://rzp.io/rzp/G4MQtKH" class="btn btn-primary" target="_blank">Buy for Rs 199</a>
                    </div>
                </div>

            </div>
        </div>
    </section>

    <section class="section-padding testimonials">
        <div class="container">
            <h2>What Our Clients Say</h2>
            <div class="testimonial-card">
                <div class="stars">⭐⭐⭐⭐⭐</div>
                <p class="testimonial-text">"ELA India’s Sales Champions Club helped me structure my team and grow sales by 30% in just 3 months. Highly recommended for any business owner who is serious about growth!"</p>
                <div class="client-name">– Ravi Kumar, Business Owner, Hyderabad</div>
            </div>
            </div>
    </section>

    <section class="section-padding promise">
        <div class="container">
            <h2>Our Promise</h2>
            <p>At ELA India, we don’t just deliver training or coaching – we deliver transformation. Real Business Results. Our goal is to help you build a system that works for your business and ensures consistent growth.</p>
            <div style="display: flex; justify-content: center; gap: 20px;">
                <a href="https://rzp.io/rzp/GeWeEv19" class="btn btn-primary" target="_blank">Book Your Consultation Call</a>
                <a href="#training" class="btn btn-outline-blue">Explore Training Solutions</a>
            </div>
        </div>
    </section>

    <section id="network" class="section-padding network">
        <div class="container">
            <h2>Join Our Business Champions Network</h2>
            <p>Apply for joining in your local Business Champions Network with like minded business persons like you from 50+ business categories. Connect, Grow Together, Exchange Referrals, Build Strong Local Business Ecosystem.</p>
            <a href="#apply-network" class="btn btn-primary">Apply Now</a>
        </div>
    </section>

    <footer>
        <div class="container">
            <div class="footer-grid">
                
                <div class="footer">
                    <h4>Quick Links</h4>
                    <ul>
                        <li><a href="#training">Training</a></li>
                        <li><a href="#coaching">Coaching</a></li>
                        <li><a href="#products">Products</a></li>
                        <li><a href="#resources">Resources</a></li>
                    </ul>
                </div>

                <div class="footer">
                    <h4>Policies</h4>
                    <ul>
                        <li><a href="https://chandrasalescoach.com/terms-and-conditions/">Terms & Conditions</a></li>
                        <li><a href="https://chandrasalescoach.com/privacy-policy/">Privacy Policy</a></li>
                        <li><a href="https://chandrasalescoach.com/refund-policy/">Refund Policy</a></li>
                    </ul>
                </div>

                <div class="footer">
                    <h4>Connect With Us</h4>
                    <div class="social-links">
                        <a href="https://www.linkedin.com/in/chandrareddykonda/" target="_blank">LI</a>
                        <a href="https://www.youtube.com/@ChandraSalesTrainer" target="_blank">YT</a>
                        <a href="https://www.facebook.com/ChandraSalesCoach/" target="_blank">FB</a>
                        <a href="https://www.instagram.com/chandrasalescoach/" target="_blank">IG</a>
                        <a href="https://x.com/CoachChandra" target="_blank">X</a>
                    </div>
                </div>
            </div>
            
            <div class="copyright">
                &copy; 2023 Excellence Leadership Academy / Chandra Sales Coach. All rights reserved.
            </div>
        </div>
    </footer>

</body>
</html>