| ```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> | |
| ``` |