od5965 commited on
Commit
fa9432e
·
verified ·
1 Parent(s): 76a2370

redesign a website for a plumbing/hvac company using the current website https://evergreenplumbingri.com/ keep the content the same as the original website however change the styling and menu options and workflows like this website https://stonelinkplumbing.com/

Browse files
Files changed (2) hide show
  1. README.md +9 -5
  2. index.html +427 -18
README.md CHANGED
@@ -1,10 +1,14 @@
1
  ---
2
- title: Pipedream Flowmasters
3
- emoji: 💻
4
- colorFrom: pink
5
- colorTo: pink
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
1
  ---
2
+ title: PipeDream FlowMasters 💧
3
+ colorFrom: yellow
4
+ colorTo: blue
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
14
+
index.html CHANGED
@@ -1,19 +1,428 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
 
1
+
2
+ <!DOCTYPE html>
3
+ <html lang="en">
4
+ <head>
5
+ <meta charset="UTF-8">
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
7
+ <title>Evergreen Plumbing & HVAC - Rhode Island's Trusted Service Experts</title>
8
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
9
+ <script src="https://cdn.tailwindcss.com"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script>
13
+ tailwind.config = {
14
+ theme: {
15
+ extend: {
16
+ colors: {
17
+ primary: '#1e40af',
18
+ secondary: '#dc2626',
19
+ accent: '#059669'
20
+ }
21
+ }
22
+ }
23
+ }
24
+ </script>
25
+ <style>
26
+ .hero-gradient {
27
+ background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
28
+ }
29
+ .nav-gradient {
30
+ background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
31
+ }
32
+ .service-icon {
33
+ transition: all 0.3s ease;
34
+ }
35
+ .service-card:hover .service-icon {
36
+ transform: scale(1.1);
37
+ color: #dc2626;
38
+ }
39
+ .emergency-badge {
40
+ animation: pulse 2s infinite;
41
+ }
42
+ @keyframes pulse {
43
+ 0% { transform: scale(1); }
44
+ 50% { transform: scale(1.05); }
45
+ 100% { transform: scale(1); }
46
+ }
47
+ </style>
48
+ </head>
49
+ <body class="bg-white">
50
+ <!-- Top Bar -->
51
+ <div class="bg-gray-900 text-white py-2 text-sm">
52
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
53
+ <div class="flex justify-between items-center">
54
+ <div class="flex items-center space-x-4">
55
+ <div class="flex items-center">
56
+ <i data-feather="phone" class="w-4 h-4 mr-1 text-secondary"></i>
57
+ <span>24/7 Emergency Service: <strong>(401) 437-0055</strong></span>
58
+ </div>
59
+ <div class="hidden md:flex items-center">
60
+ <i data-feather="clock" class="w-4 h-4 mr-1 text-secondary"></i>
61
+ <span>Mon-Fri: 7:00 AM - 7:00 PM</span>
62
+ </div>
63
+ </div>
64
+ <div class="flex items-center space-x-4">
65
+ <a href="#" class="hover:text-secondary transition-colors">Free Estimates</a>
66
+ <a href="#" class="hover:text-secondary transition-colors">Financing Available</span>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ </div>
71
+
72
+ <!-- Navigation -->
73
+ <nav class="bg-white shadow-md sticky top-0 z-50">
74
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
75
+ <div class="flex justify-between items-center h-20">
76
+ <div class="flex items-center">
77
+ <div class="flex-shrink-0 flex items-center">
78
+ <div class="w-12 h-12 bg-primary rounded-full flex items-center justify-center mr-3">
79
+ <i data-feather="droplet" class="text-white h-6 w-6"></i>
80
+ </div>
81
+ <span class="text-2xl font-bold text-gray-900">EVERGREEN</span>
82
+ </div>
83
+ </div>
84
+ <div class="hidden lg:flex items-center space-x-8">
85
+ <a href="#services" class="text-gray-700 hover:text-primary font-semibold transition-colors">SERVICES</a>
86
+ <a href="#about" class="text-gray-700 hover:text-primary font-semibold transition-colors">ABOUT</a>
87
+ <a href="#testimonials" class="text-gray-700 hover:text-primary font-semibold transition-colors">REVIEWS</a>
88
+ <a href="#contact" class="text-gray-700 hover:text-primary font-semibold transition-colors">CONTACT</a>
89
+ <a href="#" class="bg-secondary text-white px-6 py-3 rounded-lg hover:bg-red-700 font-semibold transition-colors emergency-badge">
90
+ EMERGENCY SERVICE
91
+ </a>
92
+ </div>
93
+ <div class="lg:hidden flex items-center">
94
+ <button id="menu-btn" class="text-gray-700">
95
+ <i data-feather="menu"></i>
96
+ </button>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </nav>
101
+ <!-- Hero Section -->
102
+ <section id="hero" class="relative min-h-[80vh] flex items-center justify-start hero-gradient text-white">
103
+ <div class="absolute inset-0 bg-black opacity-10"></div>
104
+ <div class="relative z-10 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 w-full">
105
+ <div class="grid lg:grid-cols-2 gap-12 items-center">
106
+ <div class="py-12">
107
+ <h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">RHODE ISLAND'S TRUSTED PLUMBING & HVAC EXPERTS</h1>
108
+ <p class="text-xl md:text-2xl mb-8 opacity-95">24/7 Emergency Service • Licensed & Insured • Family Owned & Operated</p>
109
+ <div class="flex flex-col sm:flex-row gap-4">
110
+ <button class="bg-secondary text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-red-700 transition-colors shadow-lg">
111
+ <i data-feather="phone" class="w-5 h-5 mr-2 inline"></i>
112
+ CALL NOW: (401) 437-0055
113
+ </button>
114
+ <button class="bg-white text-primary px-8 py-4 rounded-lg font-bold text-lg hover:bg-gray-100 transition-colors shadow-lg">
115
+ SCHEDULE SERVICE
116
+ </button>
117
+ </div>
118
+ </div>
119
+ <div class="hidden lg:block">
120
+ <img src="http://static.photos/industry/600x400/1" alt="Professional plumber at work" class="rounded-lg shadow-2xl">
121
+ </div>
122
+ </div>
123
+ </div>
124
+ </section>
125
+ <!-- Services Section -->
126
+ <section id="services" class="py-20 bg-gray-50">
127
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
128
+ <div class="text-center mb-16">
129
+ <h2 class="text-4xl font-bold text-gray-900 mb-4">OUR PROFESSIONAL SERVICES</h2>
130
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Comprehensive solutions for all your plumbing and HVAC needs throughout Rhode Island</p>
131
+ </div>
132
+ <div class="grid md:grid-cols-2 lg:grid-cols-4 gap-6">
133
+ <!-- Plumbing Card -->
134
+ <div class="service-card bg-white rounded-lg p-6 shadow-md border border-gray-200 text-center">
135
+ <div class="w-20 h-20 bg-primary rounded-full flex items-center justify-center mb-4 mx-auto">
136
+ <i data-feather="tool" class="text-white h-10 w-10 service-icon"></i>
137
+ </div>
138
+ <h3 class="text-xl font-bold text-gray-900 mb-3">PLUMBING SERVICES</h3>
139
+ <ul class="text-gray-600 space-y-2 text-sm mb-4">
140
+ <li>• Emergency Repairs</li>
141
+ <li>• Pipe Installation</li>
142
+ <li>• Water Heater Services</li>
143
+ <li>• Drain Cleaning</li>
144
+ <li>• Leak Detection</li>
145
+ </ul>
146
+ <button class="text-primary font-bold hover:text-blue-800 transition-colors">LEARN MORE →</button>
147
+ </div>
148
+
149
+ <!-- HVAC Card -->
150
+ <div class="service-card bg-white rounded-lg p-6 shadow-md border border-gray-200 text-center">
151
+ <div class="w-20 h-20 bg-accent rounded-full flex items-center justify-center mb-4 mx-auto">
152
+ <i data-feather="thermometer" class="text-white h-10 w-10 service-icon"></i>
153
+ </div>
154
+ <h3 class="text-xl font-bold text-gray-900 mb-3">HVAC SOLUTIONS</h3>
155
+ <ul class="text-gray-600 space-y-2 text-sm mb-4">
156
+ <li>• AC Installation</li>
157
+ <li>• Heating Systems</li>
158
+ <li>• Maintenance Plans</li>
159
+ <li>• Air Quality</li>
160
+ <li>• System Upgrades</li>
161
+ </ul>
162
+ <button class="text-accent font-bold hover:text-green-800 transition-colors">LEARN MORE →</button>
163
+ </div>
164
+
165
+ <!-- Emergency Card -->
166
+ <div class="service-card bg-white rounded-lg p-6 shadow-md border border-gray-200 text-center">
167
+ <div class="w-20 h-20 bg-secondary rounded-full flex items-center justify-center mb-4 mx-auto">
168
+ <i data-feather="alert-triangle" class="text-white h-10 w-10 service-icon"></i>
169
+ </div>
170
+ <h3 class="text-xl font-bold text-gray-900 mb-3">24/7 EMERGENCY</h3>
171
+ <ul class="text-gray-600 space-y-2 text-sm mb-4">
172
+ <li>• Rapid Response</li>
173
+ <li>• Licensed Technicians</li>
174
+ <li>• Same Day Service</li>
175
+ <li>• Free Estimates</li>
176
+ <li>• Insurance Help</li>
177
+ </ul>
178
+ <button class="text-secondary font-bold hover:text-red-800 transition-colors">CALL NOW →</button>
179
+ </div>
180
+
181
+ <!-- Maintenance Card -->
182
+ <div class="service-card bg-white rounded-lg p-6 shadow-md border border-gray-200 text-center">
183
+ <div class="w-20 h-20 bg-primary rounded-full flex items-center justify-center mb-4 mx-auto">
184
+ <i data-feather="shield" class="text-white h-10 w-10 service-icon"></i>
185
+ </div>
186
+ <h3 class="text-xl font-bold text-gray-900 mb-3">MAINTENANCE PLANS</h3>
187
+ <ul class="text-gray-600 space-y-2 text-sm mb-4">
188
+ <li>• Preventive Maintenance</li>
189
+ <li>• Annual Inspections</li>
190
+ <li>• Priority Service</li>
191
+ <li>• Discounted Rates</li>
192
+ <li>• Peace of Mind</li>
193
+ </ul>
194
+ <button class="text-primary font-bold hover:text-blue-800 transition-colors">LEARN MORE →</button>
195
+ </div>
196
+ </div>
197
+ </div>
198
+ </section>
199
+ <!-- About Section -->
200
+ <section id="about" class="py-20 bg-white">
201
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
202
+ <div class="grid lg:grid-cols-2 gap-12 items-center">
203
+ <div class="relative">
204
+ <div class="bg-primary text-white p-8 rounded-lg shadow-xl">
205
+ <h2 class="text-3xl font-bold mb-6">WHY CHOOSE EVERGREEN?</h2>
206
+ <div class="space-y-4">
207
+ <div class="flex items-center">
208
+ <i data-feather="award" class="text-secondary mr-3"></i>
209
+ <span class="text-gray-800 font-semibold">Family Owned & Operated Since 2008</span>
210
+ </div>
211
+ <div class="flex items-center">
212
+ <i data-feather="shield" class="text-secondary mr-3"></i>
213
+ <span class="text-gray-800 font-semibold">Licensed, Bonded & Insured</span>
214
+ </div>
215
+ <div class="flex items-center">
216
+ <i data-feather="clock" class="text-secondary mr-3"></i>
217
+ <span class="text-gray-800 font-semibold">24/7 Emergency Services</span>
218
+ </div>
219
+ <div class="flex items-center">
220
+ <i data-feather="dollar-sign" class="text-secondary mr-3"></i>
221
+ <span class="text-gray-800 font-semibold">Upfront Pricing - No Hidden Fees</span>
222
+ </div>
223
+ <div class="flex items-center">
224
+ <i data-feather="thumbs-up" class="text-secondary mr-3"></i>
225
+ <span class="text-gray-800 font-semibold">Satisfaction Guaranteed</span>
226
+ </div>
227
+ <div class="flex items-center">
228
+ <i data-feather="star" class="text-secondary mr-3"></i>
229
+ <span class="text-gray-800 font-semibold">5-Star Rated Service</span>
230
+ </div>
231
+ </div>
232
+ <div class="mt-8">
233
+ <button class="bg-secondary text-white px-8 py-3 rounded-lg font-bold hover:bg-red-700 transition-colors">
234
+ OUR STORY
235
+ </button>
236
+ </div>
237
+ </div>
238
+ <div class="grid grid-cols-2 gap-4">
239
+ <img src="http://static.photos/construction/400x300/1" alt="Plumbing work" class="rounded-lg shadow-lg">
240
+ <img src="http://static.photos/technology/400x300/2" alt="HVAC installation" class="rounded-lg shadow-lg mt-8">
241
+ <img src="http://static.photos/people/400x300/3" alt="Professional team" class="rounded-lg shadow-lg">
242
+ <img src="http://static.photos/industry/400x300/4" alt="Quality service" class="rounded-lg shadow-lg mt-8">
243
+ </div>
244
+ </div>
245
+ </section>
246
+ <!-- Testimonials -->
247
+ <section id="testimonials" class="py-20 bg-white">
248
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
249
+ <div class="text-center mb-16">
250
+ <h2 class="text-4xl font-bold text-gray-800 mb-4">What Our Customers Say</h2>
251
+ </div>
252
+ <div class="grid md:grid-cols-3 gap-8">
253
+ <div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
254
+ <div class="flex items-center mb-4">
255
+ <div class="w-12 h-12 bg-primary rounded-full flex items-center justify-center">
256
+ <i data-feather="user" class="text-white"></i>
257
+ </div>
258
+ <div class="ml-4">
259
+ <h4 class="font-semibold text-gray-800">Sarah Johnson</h4>
260
+ <div class="flex text-yellow-400">
261
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
262
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
263
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
264
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
265
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
266
+ </div>
267
+ </div>
268
+ </div>
269
+ <p class="text-gray-600">"Emergency water heater repair on a Sunday! They were at my door in 30 minutes and had it fixed in no time. Professional and affordable."</p>
270
+ </div>
271
+ <div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
272
+ <div class="flex items-center mb-4">
273
+ <div class="w-12 h-12 bg-secondary rounded-full flex items-center justify-center">
274
+ <i data-feather="user" class="text-white"></i>
275
+ </div>
276
+ <div class="ml-4">
277
+ <h4 class="font-semibold text-gray-800">Mike Rodriguez</h4>
278
+ <div class="flex text-yellow-400">
279
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
280
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
281
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
282
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
283
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
284
+ </div>
285
+ </div>
286
+ </div>
287
+ <p class="text-gray-600">"Complete HVAC system installation. The team was knowledgeable, clean, and efficient. My home has never been more comfortable!"</p>
288
+ </div>
289
+ <div class="bg-gray-50 p-6 rounded-xl border border-gray-200">
290
+ <div class="flex items-center mb-4">
291
+ <div class="w-12 h-12 bg-primary rounded-full flex items-center justify-center">
292
+ <i data-feather="user" class="text-white"></i>
293
+ </div>
294
+ <div class="ml-4">
295
+ <h4 class="font-semibold text-gray-800">Emily Chen</h4>
296
+ <div class="flex text-yellow-400">
297
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
298
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
299
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
300
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
301
+ <i data-feather="star" class="w-4 h-4 fill-current"></i>
302
+ </div>
303
+ </div>
304
+ </div>
305
+ <p class="text-gray-600">"Fixed a complex plumbing issue that two other companies couldn't solve. Their expertise and dedication are unmatched!"</p>
306
+ </div>
307
+ </div>
308
+ </div>
309
+ </section>
310
+ <!-- CTA Section -->
311
+ <section class="py-20 bg-secondary text-white">
312
+ <div class="max-w-4xl mx-auto text-center px-4">
313
+ <h2 class="text-4xl font-bold mb-6">READY FOR PROFESSIONAL SERVICE?</h2>
314
+ <p class="text-xl mb-8 opacity-95">Contact us today for a free estimate or 24/7 emergency service</p>
315
+ <div class="flex flex-col sm:flex-row gap-4 justify-center">
316
+ <button class="bg-white text-secondary px-8 py-4 rounded-lg font-bold text-lg hover:bg-gray-100 transition-colors shadow-lg">
317
+ <i data-feather="phone" class="w-5 h-5 mr-2 inline"></i>
318
+ CALL NOW: (401) 437-0055
319
+ </button>
320
+ <button class="border-2 border-white text-white px-8 py-4 rounded-lg font-bold text-lg hover:bg-white hover:text-secondary transition-colors shadow-lg">
321
+ SCHEDULE ONLINE
322
+ </button>
323
+ </div>
324
+ </div>
325
+ </section>
326
+ <!-- Footer -->
327
+ <footer class="bg-gray-800 text-white py-12">
328
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
329
+ <div class="grid md:grid-cols-4 gap-8">
330
+ <div>
331
+ <div class="flex items-center mb-4">
332
+ <div class="w-10 h-10 bg-primary rounded-full flex items-center justify-center mr-3">
333
+ <i data-feather="droplet" class="text-white h-5 w-5"></i>
334
+ </div>
335
+ <span class="text-xl font-bold">EVERGREEN</span>
336
+ </div>
337
+ <p class="text-gray-400">Rhode Island's trusted plumbing and HVAC experts since 2008.</p>
338
+ </div>
339
+ <div>
340
+ <h4 class="font-bold mb-4 text-white">QUICK LINKS</h4>
341
+ <ul class="space-y-2 text-gray-400">
342
+ <li><a href="#services" class="hover:text-white transition-colors">SERVICES</a></li>
343
+ <li><a href="#about" class="hover:text-white transition-colors">ABOUT US</a></li>
344
+ <li><a href="#testimonials" class="hover:text-white transition-colors">REVIEWS</a></li>
345
+ <li><a href="#contact" class="hover:text-white transition-colors">CONTACT</a></li>
346
+ </ul>
347
+ </div>
348
+ <div>
349
+ <h4 class="font-bold mb-4 text-white">CONTACT INFO</h4>
350
+ <ul class="space-y-2 text-gray-400">
351
+ <li class="flex items-center">
352
+ <i data-feather="phone" class="w-4 h-4 mr-2"></i>
353
+ (401) 437-0055
354
+ </li>
355
+ <li class="flex items-center">
356
+ <i data-feather="mail" class="w-4 h-4 mr-2"></i>
357
+ info@evergreenplumbingri.com
358
+ </li>
359
+ <li class="flex items-center">
360
+ <i data-feather="map-pin" class="w-4 h-4 mr-2"></i>
361
+ Serving All of Rhode Island
362
+ </li>
363
+ </ul>
364
+ </div>
365
+ <div>
366
+ <h4 class="font-bold mb-4 text-white">SERVICE AREAS</h4>
367
+ <ul class="space-y-1 text-gray-400">
368
+ <li>• Providence County</li>
369
+ <li>• Kent County</li>
370
+ <li>• Washington County</li>
371
+ <li>• Newport County</li>
372
+ <li>• Bristol County</li>
373
+ </ul>
374
+ </div>
375
+ </div>
376
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
377
+ <p>&copy; 2024 Evergreen Plumbing & HVAC. All rights reserved. License #12345</p>
378
+ </div>
379
+ </div>
380
+ </footer>
381
+ <script>
382
+ feather.replace();
383
+
384
+ // Mobile menu functionality
385
+ document.getElementById('menu-btn').addEventListener('click', function() {
386
+ alert('Mobile menu would open here. For demo purposes only.');
387
+ });
388
+
389
+ // Smooth scroll for navigation links
390
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
391
+ anchor.addEventListener('click', function (e) {
392
+ e.preventDefault();
393
+ const target = document.querySelector(this.getAttribute('href'));
394
+ if (target) {
395
+ target.scrollIntoView({
396
+ behavior: 'smooth',
397
+ block: 'start'
398
+ });
399
+ }
400
+ });
401
+ });
402
+
403
+ // Add scroll animation for service cards
404
+ const observerOptions = {
405
+ threshold: 0.1,
406
+ rootMargin: '0px 0px -50px 0px'
407
+ };
408
+
409
+ const observer = new IntersectionObserver((entries) => {
410
+ entries.forEach(entry => {
411
+ if (entry.isIntersecting) {
412
+ entry.target.style.opacity = '1';
413
+ entry.target.style.transform = 'translateY(0)';
414
+ }
415
+ });
416
+ }, observerOptions);
417
+
418
+ // Observe service cards
419
+ document.querySelectorAll('.service-card').forEach(card => {
420
+ card.style.opacity = '0';
421
+ card.style.transform = 'translateY(20px)';
422
+ card.style.transition = 'all 0.6s ease';
423
+ observer.observe(card);
424
+ });
425
+ </script>
426
+ </body>
427
  </html>
428
+