Monday, 30 June 2025

 <!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>A TO Z DELIVERY AND CONSULTANCY SERVICES</title>

  <style>

    body {

      font-family: Arial, sans-serif;

      line-height: 1.6;

      margin: 0;

      padding: 0;

      color: #111;

      background-color: #f1f1f1;

    }

    header, footer {

      background-color: #000;

      color: #fff;

      padding: 1rem 2rem;

      text-align: center;

    }

    nav {

      background-color: #111;

      padding: 0.5rem 2rem;

      text-align: center;

    }

    nav a {

      color: #ff0000;

      text-decoration: none;

      margin: 0 15px;

      font-weight: bold;

    }

    nav a:hover {

      text-decoration: underline;

    }

    .container {

      padding: 2rem;

      max-width: 1200px;

      margin: auto;

    }

    h2 {

      color: #c40000;

    }

    .section {

      margin-bottom: 2rem;

      background: white;

      padding: 1.5rem;

      border-radius: 8px;

      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

    }

    .services {

      display: flex;

      flex-wrap: wrap;

      gap: 2rem;

    }

    .service-box {

      flex: 1 1 45%;

      background-color: #fff3f3;

      border: 1px solid #d40000;

      padding: 1rem;

      border-radius: 6px;

    }

    a {

      color: #d00000;

    }

    footer {

      margin-top: 2rem;

    }

  </style>

</head>

<body>


  <header>

    <h1>A TO Z DELIVERY AND CONSULTANCY SERVICES</h1>

    <p>Fast, Reliable, and Expert Solutions for Your Business, Events & Home Needs</p>

  </header>


  <nav>

    <a href="#delivery">Delivery</a>

    <a href="#events">Marriage & Events</a>

    <a href="#repairs">Repair Services</a>

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

  </nav>


  <div class="container">

    <!-- Delivery Services -->

    <section class="section" id="delivery">

      <h2>Delivery Services</h2>

      <p>We offer efficient, secure, and cost-effective delivery solutions tailored to your business or personal needs. From same-day shipping to international logistics, our delivery network ensures timely arrival and customer satisfaction.</p>

      <div class="services">

        <div class="service-box">

          <h3>Local & Same-Day Delivery</h3>

          <p>Urgent deliveries within the city with guaranteed same-day service and real-time tracking.</p>

        </div>

        <div class="service-box">

          <h3>Courier & Parcel Services</h3>

          <p>We handle documents, packages, and bulk orders for both individuals and businesses.</p>

        </div>

        <div class="service-box">

          <h3>Logistics & Freight</h3>

          <p>Cost-effective freight solutions for businesses across regions and states.</p>

        </div>

        <div class="service-box">

          <h3>International Shipping</h3>

          <p>We provide end-to-end shipping services for international deliveries with customs handling.</p>

        </div>

      </div>

    </section>


    <!-- Event Services -->

    <section class="section" id="events">

      <h2>Marriage Arrangements & Event Services</h2>

      <p>We provide everything you need for weddings, receptions, and special occasions   from venues to food to decoration   all under one roof.</p>

      <div class="services">

        <div class="service-box">

          <h3>Tent House</h3>

          <p>Custom tents and stage setups for all types of functions, festivals, and cultural events.</p>

        </div>

        <div class="service-box">

          <h3>Function Hall Booking</h3>

          <p>Spacious and affordable halls available for weddings, engagements, meetings, and more.</p>

        </div>

        <div class="service-box">

          <h3>Marriage Arrangements</h3>

          <p>Complete wedding solutions including decoration, lighting, DJ, catering, and seating.</p>

        </div>

        <div class="service-box">

          <h3>Catering Services</h3>

          <p>Wide variety of vegetarian & non-vegetarian dishes prepared for all functions and sizes.</p>

        </div>

      </div>

    </section>


    <!-- Repair Services -->

    <section class="section" id="repairs">

      <h2>Home Appliance Repair Services</h2>

      <p>We provide fast and affordable repair services for home appliances   all with doorstep service.</p>

      <div class="services">

        <div class="service-box">

          <h3>Fan & Cooler Repair</h3>

          <p>Quick repair and part replacement for all types of fans and coolers at your location.</p>

        </div>

        <div class="service-box">

          <h3>AC Repair & Servicing</h3>

          <p>AC gas filling, servicing, installation, and repair by skilled technicians.</p>

        </div>

        <div class="service-box">

          <h3>Washing Machine Repair</h3>

          <p>Fix issues like drum noise, drainage, or wiring faults   fully tested before handover.</p>

        </div>

        <div class="service-box">

          <h3>Other Appliance Repairs</h3>

          <p>We also repair TVs, mixers, water purifiers, and kitchen appliances with guaranteed support.</p>

        </div>

      </div>

    </section>


    <!-- Contact Section -->

    <section class="section" id="contact">

      <h2>Contact Us</h2>

      <p>Need a quote, booking, or repair? Reach out to us anytime. We're happy to help!</p>

      <ul>

        <li><strong>Email:</strong> <a href="mailto:nanirider136@gmail.com">nanirider136@gmail.com</a></li>

        <li><strong>Phone:</strong> <a href="tel:+917386460041">7386460041</a></li>

        <li><strong>Address:</strong> 4-161/1, Suraram</li>

      </ul>

    </section>

  </div>


  <footer>

    <p>&copy; 2025 A TO Z DELIVERY AND CONSULTANCY SERVICES. All rights reserved.</p>

  </footer>


</body>

</html>

 <!DOCTYPE html> <html lang="en"> <head>   <meta charset="UTF-8" />   <meta name="viewpo...