File size: 1,193 Bytes
2b0f02f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
```php
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Beverly Hills Business Machines</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <style>
        .brand-gradient {
            background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
        }
        .jelly-bean {
            background-color: #4CAF50;
        }
        .jelly-bean-light {
            background-color: #8BC34A;
        }
        .jelly-bean-dark {
            background-color: #2E7D32;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
    </style>
</head>
<body class="bg-gray-50 font-sans">
    <!-- Navigation -->
    <?php include 'navigation.php'; ?>

    <!-- Rest of the index.php content remains the same -->
    
    <script>
        feather.replace();
    </script>
</body>
</html>
```