JBS369ai commited on
Commit
0c32c72
·
verified ·
1 Parent(s): 0e6eba7

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +405 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Sdl
3
- emoji: 🔥
4
- colorFrom: red
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: sdl
3
+ emoji: 🐳
4
+ colorFrom: green
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,405 @@
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
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SDL Construction | South Coast Drylining</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .hero {
11
+ background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://sdlconstruction.co.uk/wp-content/uploads/2025/05/portsmouth-harbor-south-of-england.jpg');
12
+ background-size: cover;
13
+ background-position: center;
14
+ }
15
+ .service-card:hover {
16
+ transform: translateY(-5px);
17
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
18
+ }
19
+ .gallery-item {
20
+ transition: all 0.3s ease;
21
+ }
22
+ .gallery-item:hover {
23
+ transform: scale(1.03);
24
+ }
25
+ .nav-link {
26
+ position: relative;
27
+ }
28
+ .nav-link::after {
29
+ content: '';
30
+ position: absolute;
31
+ width: 0;
32
+ height: 2px;
33
+ bottom: -2px;
34
+ left: 0;
35
+ background-color: #f59e0b;
36
+ transition: width 0.3s ease;
37
+ }
38
+ .nav-link:hover::after {
39
+ width: 100%;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body class="font-sans bg-gray-50">
44
+ <!-- Navigation -->
45
+ <nav class="bg-white shadow-md sticky top-0 z-50">
46
+ <div class="container mx-auto px-4 py-3 flex justify-between items-center">
47
+ <a href="#" class="flex items-center">
48
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Con-Logo-BG.jpeg" alt="SDL Construction Logo" class="h-16">
49
+ </a>
50
+ <div class="hidden md:flex space-x-8">
51
+ <a href="#about" class="nav-link text-gray-800 hover:text-amber-600 font-medium">About</a>
52
+ <a href="#services" class="nav-link text-gray-800 hover:text-amber-600 font-medium">Services</a>
53
+ <a href="#gallery" class="nav-link text-gray-800 hover:text-amber-600 font-medium">Gallery</a>
54
+ <a href="#contact" class="nav-link text-gray-800 hover:text-amber-600 font-medium">Contact</a>
55
+ </div>
56
+ <button id="mobile-menu-button" class="md:hidden text-gray-800">
57
+ <i class="fas fa-bars text-2xl"></i>
58
+ </button>
59
+ </div>
60
+ <!-- Mobile Menu -->
61
+ <div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
62
+ <a href="#about" class="block py-2 text-gray-800 hover:text-amber-600">About</a>
63
+ <a href="#services" class="block py-2 text-gray-800 hover:text-amber-600">Services</a>
64
+ <a href="#gallery" class="block py-2 text-gray-800 hover:text-amber-600">Gallery</a>
65
+ <a href="#contact" class="block py-2 text-gray-800 hover:text-amber-600">Contact</a>
66
+ </div>
67
+ </nav>
68
+
69
+ <!-- Hero Section -->
70
+ <section class="hero h-screen flex items-center justify-center text-white">
71
+ <div class="text-center px-4">
72
+ <h1 class="text-4xl md:text-6xl font-bold mb-6">South Coast Drylining</h1>
73
+ <p class="text-xl md:text-2xl mb-8 max-w-2xl mx-auto">Portsmouth's trusted partner for commercial, residential and domestic building projects</p>
74
+ <a href="#contact" class="bg-amber-600 hover:bg-amber-700 text-white font-bold py-3 px-8 rounded-full text-lg transition duration-300 inline-block">
75
+ Have a Project in Mind?
76
+ </a>
77
+ </div>
78
+ </section>
79
+
80
+ <!-- About Section -->
81
+ <section id="about" class="py-16 bg-white">
82
+ <div class="container mx-auto px-4">
83
+ <div class="flex flex-col md:flex-row items-center">
84
+ <div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
85
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Who We Are</h2>
86
+ <p class="text-gray-600 mb-6 leading-relaxed">
87
+ Welcome to SDL Construction, Portsmouth's trusted partner for commercial, residential and domestic building projects.
88
+ We specialise in delivering high-quality construction services tailored to businesses across the region.
89
+ </p>
90
+ <p class="text-gray-600 leading-relaxed">
91
+ Whether you need new builds, refurbishments, or fit-outs, our skilled team is dedicated to providing excellent workmanship
92
+ and solutions designed to meet your specific commercial needs.
93
+ </p>
94
+ </div>
95
+ <div class="md:w-1/2">
96
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/05/Gunwharf-Quays.jpg" alt="Gunwharf Quays" class="rounded-lg shadow-xl w-full">
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </section>
101
+
102
+ <!-- Services Section -->
103
+ <section id="services" class="py-16 bg-gray-50">
104
+ <div class="container mx-auto px-4">
105
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">What We Offer</h2>
106
+
107
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
108
+ <!-- Service Card 1 -->
109
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
110
+ <div class="text-amber-600 text-4xl mb-4">
111
+ <i class="fas fa-hammer"></i>
112
+ </div>
113
+ <h3 class="text-xl font-semibold mb-2">Refurbs</h3>
114
+ <p class="text-gray-600">Our refurbishment work revitalises existing spaces with high-quality finishes and modern upgrades.</p>
115
+ </div>
116
+
117
+ <!-- Service Card 2 -->
118
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
119
+ <div class="text-amber-600 text-4xl mb-4">
120
+ <i class="fas fa-home"></i>
121
+ </div>
122
+ <h3 class="text-xl font-semibold mb-2">New builds</h3>
123
+ <p class="text-gray-600">We manage new build projects from start to finish, delivering solid, reliable structures tailored to your requirements.</p>
124
+ </div>
125
+
126
+ <!-- Service Card 3 -->
127
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
128
+ <div class="text-amber-600 text-4xl mb-4">
129
+ <i class="fas fa-border-style"></i>
130
+ </div>
131
+ <h3 class="text-xl font-semibold mb-2">Metal Partitions</h3>
132
+ <p class="text-gray-600">We install metal partitions to create flexible, strong internal divisions in commercial spaces.</p>
133
+ </div>
134
+
135
+ <!-- Service Card 4 -->
136
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
137
+ <div class="text-amber-600 text-4xl mb-4">
138
+ <i class="fas fa-layer-group"></i>
139
+ </div>
140
+ <h3 class="text-xl font-semibold mb-2">MF Ceilings</h3>
141
+ <p class="text-gray-600">Our metal frame ceilings are designed for durability and easy access, ideal for commercial interiors.</p>
142
+ </div>
143
+
144
+ <!-- Service Card 5 -->
145
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
146
+ <div class="text-amber-600 text-4xl mb-4">
147
+ <i class="fas fa-border-all"></i>
148
+ </div>
149
+ <h3 class="text-xl font-semibold mb-2">Drylining</h3>
150
+ <p class="text-gray-600">We specialise in drylining techniques like tacking plasterboard and dot and dab to create smooth, clean wall surfaces efficiently.</p>
151
+ </div>
152
+
153
+ <!-- Service Card 6 -->
154
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
155
+ <div class="text-amber-600 text-4xl mb-4">
156
+ <i class="fas fa-trowel"></i>
157
+ </div>
158
+ <h3 class="text-xl font-semibold mb-2">Plastering</h3>
159
+ <p class="text-gray-600">Our plastering services ensure flawless wall and ceiling finishes for both new builds and renovations.</p>
160
+ </div>
161
+ </div>
162
+
163
+ <div class="text-center mt-12">
164
+ <button id="show-more-services" class="text-amber-600 font-semibold hover:text-amber-700 transition duration-300">
165
+ View All Services <i class="fas fa-chevron-down ml-2"></i>
166
+ </button>
167
+
168
+ <div id="more-services" class="hidden mt-8 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
169
+ <!-- Additional services will be shown here -->
170
+ </div>
171
+ </div>
172
+ </div>
173
+ </section>
174
+
175
+ <!-- Location Section -->
176
+ <section class="py-16 bg-white">
177
+ <div class="container mx-auto px-4">
178
+ <div class="flex flex-col md:flex-row items-center">
179
+ <div class="md:w-1/2 mb-8 md:mb-0">
180
+ <div class="grid grid-cols-2 gap-4">
181
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/05/portsmouth-united-kingdom.jpg" alt="Portsmouth" class="gallery-item rounded-lg shadow-md w-full h-48 object-cover">
182
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/05/Gunwharf-Quays-Spinnaker-Tower.jpg" alt="Spinnaker Tower" class="gallery-item rounded-lg shadow-md w-full h-48 object-cover">
183
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/05/Gun-Wharf-Quays-Dock.jpg" alt="Gun Wharf Quays Dock" class="gallery-item rounded-lg shadow-md w-full h-48 object-cover">
184
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/05/Gunwharf-Quays.jpg" alt="Gunwharf Quays" class="gallery-item rounded-lg shadow-md w-full h-48 object-cover">
185
+ </div>
186
+ </div>
187
+ <div class="md:w-1/2 md:pl-12">
188
+ <h2 class="text-3xl font-bold text-gray-800 mb-6">Serving Portsmouth and Surrounding Areas</h2>
189
+ <p class="text-gray-600 mb-6 leading-relaxed">
190
+ Based in Portsmouth, SDL Construction proudly serves businesses across the city and surrounding areas.
191
+ We understand the local market and regulations, allowing us to deliver efficient, reliable construction
192
+ solutions tailored to the needs of Portsmouth's commercial sector.
193
+ </p>
194
+ <p class="text-gray-600 leading-relaxed">
195
+ Wherever your project is in the region, we're ready to help you build with confidence.
196
+ </p>
197
+ </div>
198
+ </div>
199
+ </div>
200
+ </section>
201
+
202
+ <!-- Gallery Section -->
203
+ <section id="gallery" class="py-16 bg-gray-50">
204
+ <div class="container mx-auto px-4">
205
+ <h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Our Work</h2>
206
+
207
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
208
+ <a href="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-19.jpeg" class="gallery-item">
209
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-19.jpeg" alt="Tall ceilings building with golf simulator" class="rounded-lg shadow-md w-full h-64 object-cover">
210
+ </a>
211
+ <a href="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-17.jpeg" class="gallery-item">
212
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-17.jpeg" alt="Modern style building" class="rounded-lg shadow-md w-full h-64 object-cover">
213
+ </a>
214
+ <a href="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-4.jpeg" class="gallery-item">
215
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-4.jpeg" alt="Wood flooring hallway with framed photos on the walls" class="rounded-lg shadow-md w-full h-64 object-cover">
216
+ </a>
217
+ </div>
218
+ </div>
219
+ </section>
220
+
221
+ <!-- Contact Section -->
222
+ <section id="contact" class="py-16 bg-amber-600 text-white">
223
+ <div class="container mx-auto px-4">
224
+ <h2 class="text-3xl font-bold text-center mb-12">Have a Project For Us?</h2>
225
+
226
+ <div class="max-w-3xl mx-auto bg-white rounded-lg shadow-xl overflow-hidden">
227
+ <div class="md:flex">
228
+ <div class="md:w-1/2 bg-gray-800 p-8 flex flex-col justify-center">
229
+ <h3 class="text-xl font-semibold mb-4">Get in Touch</h3>
230
+ <div class="mb-4 flex items-start">
231
+ <i class="fas fa-phone-alt mt-1 mr-4 text-amber-400"></i>
232
+ <div>
233
+ <p class="text-gray-300">Phone</p>
234
+ <p class="font-medium">+44 1234 567890</p>
235
+ </div>
236
+ </div>
237
+ <div class="mb-4 flex items-start">
238
+ <i class="fas fa-envelope mt-1 mr-4 text-amber-400"></i>
239
+ <div>
240
+ <p class="text-gray-300">Email</p>
241
+ <p class="font-medium">[email protected]</p>
242
+ </div>
243
+ </div>
244
+ <div class="flex items-start">
245
+ <i class="fas fa-map-marker-alt mt-1 mr-4 text-amber-400"></i>
246
+ <div>
247
+ <p class="text-gray-300">Address</p>
248
+ <p class="font-medium">Portsmouth, United Kingdom</p>
249
+ </div>
250
+ </div>
251
+ </div>
252
+ <div class="md:w-1/2 p-8">
253
+ <form class="space-y-4">
254
+ <div>
255
+ <label for="name" class="block text-gray-700 font-medium mb-1">Name</label>
256
+ <input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500">
257
+ </div>
258
+ <div>
259
+ <label for="email" class="block text-gray-700 font-medium mb-1">Email</label>
260
+ <input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500">
261
+ </div>
262
+ <div>
263
+ <label for="phone" class="block text-gray-700 font-medium mb-1">Phone</label>
264
+ <input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500">
265
+ </div>
266
+ <div>
267
+ <label for="message" class="block text-gray-700 font-medium mb-1">Message</label>
268
+ <textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-amber-500"></textarea>
269
+ </div>
270
+ <button type="submit" class="w-full bg-amber-600 hover:bg-amber-700 text-white font-bold py-3 px-4 rounded-md transition duration-300">
271
+ Send Message
272
+ </button>
273
+ </form>
274
+ </div>
275
+ </div>
276
+ </div>
277
+ </div>
278
+ </section>
279
+
280
+ <!-- Footer -->
281
+ <footer class="bg-gray-800 text-white py-8">
282
+ <div class="container mx-auto px-4">
283
+ <div class="flex flex-col md:flex-row justify-between items-center">
284
+ <div class="mb-4 md:mb-0">
285
+ <img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Con-Logo-BG.jpeg" alt="SDL Construction Logo" class="h-12">
286
+ </div>
287
+ <div class="text-center md:text-right">
288
+ <p class="text-gray-400">&copy; 2025 SDL Construction. All rights reserved.</p>
289
+ <div class="flex justify-center md:justify-end space-x-4 mt-2">
290
+ <a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
291
+ <i class="fab fa-facebook-f"></i>
292
+ </a>
293
+ <a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
294
+ <i class="fab fa-twitter"></i>
295
+ </a>
296
+ <a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
297
+ <i class="fab fa-linkedin-in"></i>
298
+ </a>
299
+ <a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
300
+ <i class="fab fa-instagram"></i>
301
+ </a>
302
+ </div>
303
+ </div>
304
+ </div>
305
+ </div>
306
+ </footer>
307
+
308
+ <script>
309
+ // Mobile menu toggle
310
+ document.getElementById('mobile-menu-button').addEventListener('click', function() {
311
+ const menu = document.getElementById('mobile-menu');
312
+ menu.classList.toggle('hidden');
313
+ });
314
+
315
+ // Show more services
316
+ document.getElementById('show-more-services').addEventListener('click', function() {
317
+ const moreServices = document.getElementById('more-services');
318
+ const button = this;
319
+
320
+ if (moreServices.classList.contains('hidden')) {
321
+ // Add remaining services
322
+ moreServices.innerHTML = `
323
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
324
+ <div class="text-amber-600 text-4xl mb-4">
325
+ <i class="fas fa-brush"></i>
326
+ </div>
327
+ <h3 class="text-xl font-semibold mb-2">K Rend</h3>
328
+ <p class="text-gray-600">We apply K Rend to provide durable, weather-resistant, and attractive external wall finishes.</p>
329
+ </div>
330
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
331
+ <div class="text-amber-600 text-4xl mb-4">
332
+ <i class="fas fa-paint-roller"></i>
333
+ </div>
334
+ <h3 class="text-xl font-semibold mb-2">Traditional Render</h3>
335
+ <p class="text-gray-600">Our traditional render services offer classic, textured finishes that protect and enhance building exteriors.</p>
336
+ </div>
337
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
338
+ <div class="text-amber-600 text-4xl mb-4">
339
+ <i class="fas fa-th"></i>
340
+ </div>
341
+ <h3 class="text-xl font-semibold mb-2">Tile and Grid</h3>
342
+ <p class="text-gray-600">We fit tile and grid ceiling systems that combine functionality with aesthetic appeal.</p>
343
+ </div>
344
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
345
+ <div class="text-amber-600 text-4xl mb-4">
346
+ <i class="fas fa-tape"></i>
347
+ </div>
348
+ <h3 class="text-xl font-semibold mb-2">Tape and Joint</h3>
349
+ <p class="text-gray-600">Our tape and joint work ensures seamless plasterboard joints for a polished final finish.</p>
350
+ </div>
351
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
352
+ <div class="text-amber-600 text-4xl mb-4">
353
+ <i class="fas fa-paint-brush"></i>
354
+ </div>
355
+ <h3 class="text-xl font-semibold mb-2">Painting and Decorating</h3>
356
+ <p class="text-gray-600">We provide professional painting and decorating services to complete the look of any space.</p>
357
+ </div>
358
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
359
+ <div class="text-amber-600 text-4xl mb-4">
360
+ <i class="fas fa-hammer"></i>
361
+ </div>
362
+ <h3 class="text-xl font-semibold mb-2">Carpentry</h3>
363
+ <p class="text-gray-600">Our skilled carpentry covers everything from bespoke joinery to structural timber work.</p>
364
+ </div>
365
+ <div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
366
+ <div class="text-amber-600 text-4xl mb-4">
367
+ <i class="fas fa-fire-extinguisher"></i>
368
+ </div>
369
+ <h3 class="text-xl font-semibold mb-2">Fire protection</h3>
370
+ <p class="text-gray-600">Our fire protection services ensure your building meets safety regulations with effective barriers and finishes.</p>
371
+ </div>
372
+ `;
373
+ moreServices.classList.remove('hidden');
374
+ button.innerHTML = 'Show Less <i class="fas fa-chevron-up ml-2"></i>';
375
+ } else {
376
+ moreServices.classList.add('hidden');
377
+ button.innerHTML = 'View All Services <i class="fas fa-chevron-down ml-2"></i>';
378
+ }
379
+ });
380
+
381
+ // Smooth scrolling for navigation links
382
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
383
+ anchor.addEventListener('click', function (e) {
384
+ e.preventDefault();
385
+
386
+ const targetId = this.getAttribute('href');
387
+ const targetElement = document.querySelector(targetId);
388
+
389
+ if (targetElement) {
390
+ window.scrollTo({
391
+ top: targetElement.offsetTop - 80,
392
+ behavior: 'smooth'
393
+ });
394
+
395
+ // Close mobile menu if open
396
+ const mobileMenu = document.getElementById('mobile-menu');
397
+ if (!mobileMenu.classList.contains('hidden')) {
398
+ mobileMenu.classList.add('hidden');
399
+ }
400
+ }
401
+ });
402
+ });
403
+ </script>
404
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=JBS369ai/sdl" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
405
+ </html>