<html lang='en'>

  <head>
    <meta charset='UTF-8' />
    <meta name='viewport' content='width=device-width, initial-scale=1.0' />
    <title>Your Go Cabbie Referral Code Applied</title>
    <style>
      body { font-family: Arial, sans-serif; line-height: 1.6; color: #333;
      background-color: #f7f7f7; margin: 0; padding: 0; } .container {
      max-width: 600px; background: #ffffff; margin: 40px auto; padding: 20px;
      border-radius: 8px; box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); } .logo {
      text-align: center; margin-bottom: 20px; } .logo img { width: 140px;
      height: 140px; } h1 { text-align: center; color: #1E90FF; font-size: 24px;
      margin-bottom: 20px; } .content { font-size: 16px; line-height: 1.8; }
      .otp-box { display: inline-block; padding: 10px 20px; background-color:
      #f0f8ff; color: #1E90FF; font-size: 20px; font-weight: bold;
      border-radius: 6px; margin: 10px 0; } .highlight { font-weight: bold;
      color: #1E90FF; } .btn { display: inline-block; padding: 12px 20px;
      background-color: #1E90FF; color: #fff !important; text-decoration: none;
      border-radius: 5px; margin-top: 20px; font-weight: bold; } .btn:hover {
      background-color: #187bcd; } .footer { text-align: center; font-size:
      12px; color: #888; margin-top: 30px; } @media (max-width: 600px) {
      .container { margin: 20px; padding: 15px; } }
    </style>
  </head>

  <body>
    <div class='container'>
      <div class='logo'>
        <img
          src='https://demoprojectsbucket.sgp1.digitaloceanspaces.com/uploads/icon-192.png'
          alt='Go Cabbie Logo'
        />
      </div>

      <h1>Referral Code Applied 🎉</h1>

      <div class='content'>
        <p>Hi <span class='highlight'>{{name}}</span>,</p>

        <p>Your referral code has been successfully applied to your
          <strong>Go Cabbie</strong>
          account.</p>

        {{#if numberCondition}}
          <p><strong>Offer:</strong> {{numberCondition}}</p>
        {{/if}}

        {{! <p>Use the OTP below to verify your account:</p> }}

        {{!-- <div class='otp-box'>{{otp}}</div> --}}

        <p>We’re excited to have you with us. Start enjoying faster, easier, and
          more affordable deliveries today!</p>

        <p>Best regards,<br />The Go Cabbie Team</p>
      </div>

      <div class='footer'>
        Copyright ©
        {{year}}
        Go Cabbie, All Rights Reserved.
      </div>
    </div>
  </body>

</html>