
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f7f9fc;
      color: #222;
      line-height: 1.6;
    }

    header {
      background: linear-gradient(135deg, #0057ff, #00a2ff);
      color: white;
      padding: 80px 10%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    .hero-content {
      flex: 1;
      min-width: 300px;
    }

    .hero-content h1 {
      font-size: 48px;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-content p {
      font-size: 18px;
      margin-bottom: 30px;
    }

    .hero-buttons a {
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 8px;
      margin-right: 15px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-primary {
      background: white;
      color: #0057ff;
    }

    .btn-secondary {
      border: 2px solid white;
      color: white;
    }

    .hero-image {
      flex: 1;
      text-align: center;
      min-width: 300px;
    }

    .hero-image img {
      width: 100%;
      max-width: 500px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    section {
      padding: 80px 10%;
    }

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

    .section-title h2 {
      font-size: 38px;
      color: #0057ff;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #666;
    }

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

    .about img {
      width: 100%;
      border-radius: 20px;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }

    .card {
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 70px;
      margin-bottom: 20px;
    }

    .card h3 {
      margin-bottom: 15px;
      color: #0057ff;
    }

    .products {
      background: #eef5ff;
    }

    .product-boxes {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center;
    }

    .product-box {
      background: white;
      width: 300px;
      padding: 30px;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    }

    .product-box img {
      width: 90px;
      margin-bottom: 20px;
    }

    .why-us {
      background: #ffffff;
    }

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

    .why-item {
      background: #f5f8ff;
      padding: 20px;
      border-radius: 12px;
      font-weight: 500;
    }

    .cta {
      background: linear-gradient(135deg, #0057ff, #00a2ff);
      color: white;
      text-align: center;
      border-radius: 20px;
      margin: 50px 10%;
      padding: 70px 20px;
    }

    .cta h2 {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .cta a {
      display: inline-block;
      margin-top: 20px;
      text-decoration: none;
      background: white;
      color: #0057ff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
    }

    footer {
      background: #111827;
      color: white;
      padding: 40px 10%;
      text-align: center;
    }

    footer p {
      margin: 10px 0;
      color: #ccc;
    }

    html {
      scroll-behavior: smooth;
    }

    .nav-link {
      text-decoration: none;
      color: #222;
      font-weight: 500;
      padding: 10px 18px;
      border-radius: 8px;
      transition: 0.3s;
    }

    .nav-link:hover {
      background: #0057ff;
      color: white;
    }

    .nav-link.active {
      background: #0057ff;
      color: white;
    }

    @media(max-width: 768px) {
      .hero-content h1 {
        font-size: 36px;
      }

      header {
        padding: 60px 7%;
      }

      section {
        padding: 60px 7%;
      }
    }
  </style>
</head>
<body>

  <!-- NAVBAR -->
  <nav style="background:white; padding:20px 10%; display:flex; justify-content:space-between; align-items:center; box-shadow:0 2px 10px rgba(0,0,0,0.08); position:sticky; top:0; z-index:1000;">
    <h2 style="color:#0057ff;">Appexflo Solutions</h2>

    <div style="display:flex; gap:25px; flex-wrap:wrap;">
      <a href="#home" class="nav-link active">Home</a>
      <a href="#about" class="nav-link">About Us</a>
      <a href="#services" class="nav-link">Services</a>
      <a href="#team" class="nav-link">Our Team</a>
      <a href="#contact" class="nav-link">Contact Us</a>
    </div>
  </nav>

  <!-- HERO SECTION -->
  <div id="home"></div>
  <header>
    <div class="hero-content">
      <h1>Simplifying Business Operations with Zoho Solutions</h1>
      <p>
        We help startups and growing businesses automate sales, workflows, and operations using Zoho CRM, Zoho Bigin, and Zoho Creator.
      </p>

      <div class="hero-buttons">
        <a href="#contact" class="btn-primary">Book Free Consultation</a>
        <a href="#services" class="btn-secondary">Our Services</a>
      </div>
    </div>

    <div class="hero-image">
      <img src="https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=1200&auto=format&fit=crop" alt="Business Automation">
    </div>
  </header>


  <!-- ABOUT SECTION -->
  <section id="about">
    <div class="section-title">
      <h2>About Appexflo Solutions</h2>
      <p>Your trusted Zoho implementation and automation partner</p>
    </div>

    <div class="about">
      <div>
        <img src="https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1200&auto=format&fit=crop" alt="About Us">
      </div>

      <div>
        <p>
          Appexflo Solutions is a startup company focused on delivering smart and scalable business automation solutions using the Zoho ecosystem.
        </p>

        <br>

        <p>
          We specialize in Zoho CRM, Zoho Bigin, and Zoho Creator to help businesses streamline operations, improve customer management, and automate repetitive tasks.
        </p>

        <br>

        <p>
          Our mission is to provide affordable, efficient, and customized solutions tailored to every business.
        </p>
      </div>
    </div>
  </section>


  <!-- SERVICES SECTION -->
  <section id="services">
    <div class="section-title">
      <h2>Our Services</h2>
      <p>Smart solutions designed for growing businesses</p>
    </div>

    <div class="cards">

      <div class="card">
        <img src="https://cdn-icons-png.flaticon.com/512/3135/3135715.png" alt="CRM">
        <h3>Zoho CRM Implementation</h3>
        <p>
          Setup and customization of Zoho CRM for lead management, sales automation, reporting, and customer tracking.
        </p>
      </div>

      <div class="card">
        <img src="https://cdn-icons-png.flaticon.com/512/1055/1055687.png" alt="Bigin">
        <h3>Zoho Bigin Setup</h3>
        <p>
          Simple and powerful CRM solutions for startups and small businesses using Zoho Bigin.
        </p>
      </div>

      <div class="card">
        <img src="https://cdn-icons-png.flaticon.com/512/4149/4149676.png" alt="Creator">
        <h3>Zoho Creator Development</h3>
        <p>
          Custom ERP, HRMS, inventory, and workflow applications built using Zoho Creator.
        </p>
      </div>

      <div class="card">
        <img src="https://cdn-icons-png.flaticon.com/512/4140/4140048.png" alt="Automation">
        <h3>Workflow Automation</h3>
        <p>
          Automate repetitive tasks and business operations using Deluge scripting and Zoho workflows.
        </p>
      </div>

      <div class="card">
        <img src="https://cdn-icons-png.flaticon.com/512/2921/2921222.png" alt="Integration">
        <h3>Third-Party Integrations</h3>
        <p>
          Integration services for WhatsApp, payment gateways, APIs, and external systems.
        </p>
      </div>

      <div class="card">
        <img src="https://cdn-icons-png.flaticon.com/512/2784/2784487.png" alt="Support">
        <h3>Support & Maintenance</h3>
        <p>
          Continuous support, improvements, and optimization for your Zoho applications.
        </p>
      </div>

    </div>
  </section>


  <!-- PRODUCTS SECTION -->
  <section class="products">
    <div class="section-title">
      <h2>Zoho Products We Specialize In</h2>
      <p>Helping businesses grow with the right Zoho solutions</p>
    </div>

    <div class="product-boxes">

      <div class="product-box">
        <img src="https://cdn.worldvectorlogo.com/logos/zoho-crm.svg" alt="Zoho CRM">
        <h3>Zoho CRM</h3>
        <p>
          Customer relationship management platform for sales automation and lead tracking.
        </p>
      </div>

      <div class="product-box">
        <img src="https://www.zohowebstatic.com/sites/zweb/images/productlogos/bigin.svg" alt="Zoho Bigin">
        <h3>Zoho Bigin</h3>
        <p>
          Pipeline-centric CRM built specifically for startups and small businesses.
        </p>
      </div>

      <div class="product-box">
        <img src="https://www.zohowebstatic.com/sites/zweb/images/productlogos/creator.svg" alt="Zoho Creator">
        <h3>Zoho Creator</h3>
        <p>
          Low-code application platform for building custom business solutions.
        </p>
      </div>

    </div>
  </section>


  <!-- TEAM SECTION -->
  <section id="team">
    <div class="section-title">
      <h2>Our Team</h2>
      <p>Passionate professionals delivering smart Zoho solutions</p>
    </div>

    <div class="cards">

      <div class="card" style="text-align:center;">
        <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Team Member" style="width:120px; height:120px; border-radius:50%; object-fit:cover; margin:auto; display:block;">
        <h3>Zoho Developer</h3>
        <p>Expert in Zoho Creator application development and workflow automation.</p>
      </div>

      <div class="card" style="text-align:center;">
        <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Team Member" style="width:120px; height:120px; border-radius:50%; object-fit:cover; margin:auto; display:block;">
        <h3>CRM Consultant</h3>
        <p>Specialized in Zoho CRM implementation and sales process automation.</p>
      </div>

      <div class="card" style="text-align:center;">
        <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Team Member" style="width:120px; height:120px; border-radius:50%; object-fit:cover; margin:auto; display:block;">
        <h3>Integration Specialist</h3>
        <p>Focused on API integrations, WhatsApp automation, and third-party services.</p>
      </div>

    </div>
  </section>


  <!-- WHY CHOOSE US -->
  <section class="why-us">
    <div class="section-title">
      <h2>Why Choose Us</h2>
      <p>We focus on practical and scalable automation solutions</p>
    </div>

    <div class="why-list">
      <div class="why-item">✔ Startup-Friendly Solutions</div>
      <div class="why-item">✔ Affordable Pricing</div>
      <div class="why-item">✔ Customized Workflows</div>
      <div class="why-item">✔ Fast Support</div>
      <div class="why-item">✔ Scalable Systems</div>
      <div class="why-item">✔ Clean UI & UX</div>
      <div class="why-item">✔ Business Process Automation</div>
      <div class="why-item">✔ Low-Code Expertise</div>
    </div>
  </section>


  <!-- CTA SECTION -->
  <div class="cta">
    <h2>Ready to Automate Your Business?</h2>
    <p>
      Let’s build smart and scalable solutions for your business using Zoho.
    </p>

    <a href="#contact">Contact Us</a>
  </div>


  <!-- CONTACT SECTION -->
  <section id="contact">
    <div class="section-title">
      <h2>Contact Us</h2>
      <p>Let’s discuss your business requirements</p>
    </div>

    <div class="cards">

      <div class="card">
        <h3>Email</h3>
        <p>contact@appexflo.com</p>
      </div>

      <div class="card">
        <h3>Phone</h3>
        <p>+91 98765 43210</p>
      </div>

      <div class="card">
        <h3>Location</h3>
        <p>Tamil Nadu, India</p>
      </div>

    </div>
  </section>


  <!-- FOOTER -->
  <footer>
    <h3>Appexflo Solutions</h3>
    <p>Smart Zoho Solutions for Growing Businesses</p>
    <p>© 2026 Appexflo Solutions. All Rights Reserved.</p>
  </footer>

  <script>
    const sections = document.querySelectorAll('section, header');
    const navLinks = document.querySelectorAll('.nav-link');

    window.addEventListener('scroll', () => {
      let current = '';

      sections.forEach(section => {
        const sectionTop = section.offsetTop;
        const sectionHeight = section.clientHeight;

        if (pageYOffset >= sectionTop - 200) {
          current = section.getAttribute('id');
        }
      });

      navLinks.forEach(link => {
        link.classList.remove('active');
        if (link.getAttribute('href') === '#' + current) {
          link.classList.add('active');
        }
      });
    });
  
