<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
    <title>BusyBox Cloud - busybox.ca</title>
    <!-- Bootstrap CSS -->
    <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
    <!-- Font Awesome -->
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #333;
        }
        .navbar-brand {
            font-weight: bold;
        }
        .hero {
            background: url('https://busybox.ca/bg.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        .hero h1 {
            font-size: 3em;
        }
        .features {
            padding: 50px 0;
        }
        .features .feature {
            text-align: center;
            padding: 20px;
        }
        .features .feature i {
            font-size: 3em;
            margin-bottom: 20px;
            color: #007bff;
        }
    </style>
</head>
<body>

<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
    <a class="navbar-brand" href="#">BusyBox Cloud</a>
    <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
        <span class="navbar-toggler-icon"></span>
    </button>
    <div class="collapse navbar-collapse" id="navbarNav">
        <ul class="navbar-nav ml-auto">
            <li class="nav-item active">
                <a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
            </li>
        </ul>
    </div>
</nav>

<!-- Hero Section -->
<div class="hero">
    <div class="container">
        <h1>BusyBox Cloud</h1>
        <p>Your reliable and efficient cloud service provider.</p>
        <a href="#" class="btn btn-primary btn-lg">By Invitation Only</a>
    </div>
</div>

<!-- Features Section -->
<div class="features">
    <div class="container">
        <div class="row">
            <div class="col-md-4 feature">
                <i class="fas fa-cloud"></i>
                <h3>Cloud Storage</h3>
                <p>Secure and scalable storage solutions to meet all your data needs.</p>
            </div>
            <div class="col-md-4 feature">
                <i class="fas fa-shield-alt"></i>
                <h3>Security</h3>
                <p>Top-notch security measures to protect your data and applications.</p>
            </div>
            <div class="col-md-4 feature">
                <i class="fas fa-sync-alt"></i>
                <h3>Reliability</h3>
                <p>Highly available and reliable services you can count on.</p>
            </div>
        </div>
    </div>
</div>

<!-- Footer -->
<footer class="text-center py-4">
    <div class="container">
        <p>&copy; BusyBox Cloud - busybox.ca</p>
    </div>
</footer>

<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.10.2/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>
