File size: 24,186 Bytes
0c32c72 fd06141 0c32c72 |
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SDL Construction | South Coast Drylining</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.hero {
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');
background-size: cover;
background-position: center;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.gallery-item {
transition: all 0.3s ease;
}
.gallery-item:hover {
transform: scale(1.03);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #f59e0b;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
</style>
</head>
<body class="font-sans bg-black">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<a href="#" class="flex items-center">
<img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Con-Logo-BG.jpeg" alt="SDL Construction Logo" class="h-16">
</a>
<div class="hidden md:flex space-x-8">
<a href="#about" class="nav-link text-gray-800 hover:text-amber-600 font-medium">About</a>
<a href="#services" class="nav-link text-gray-800 hover:text-amber-600 font-medium">Services</a>
<a href="#gallery" class="nav-link text-gray-800 hover:text-amber-600 font-medium">Gallery</a>
<a href="#contact" class="nav-link text-gray-800 hover:text-amber-600 font-medium">Contact</a>
</div>
<button id="mobile-menu-button" class="md:hidden text-gray-800">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
<a href="#about" class="block py-2 text-gray-800 hover:text-amber-600">About</a>
<a href="#services" class="block py-2 text-gray-800 hover:text-amber-600">Services</a>
<a href="#gallery" class="block py-2 text-gray-800 hover:text-amber-600">Gallery</a>
<a href="#contact" class="block py-2 text-gray-800 hover:text-amber-600">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section class="hero h-screen flex items-center justify-center text-white">
<div class="text-center px-4">
<h1 class="text-4xl md:text-6xl font-bold mb-6">South Coast Drylining</h1>
<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>
<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">
Have a Project in Mind?
</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0 md:pr-8">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Who We Are</h2>
<p class="text-gray-600 mb-6 leading-relaxed">
Welcome to SDL Construction, Portsmouth's trusted partner for commercial, residential and domestic building projects.
We specialise in delivering high-quality construction services tailored to businesses across the region.
</p>
<p class="text-gray-600 leading-relaxed">
Whether you need new builds, refurbishments, or fit-outs, our skilled team is dedicated to providing excellent workmanship
and solutions designed to meet your specific commercial needs.
</p>
</div>
<div class="md:w-1/2">
<img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/05/Gunwharf-Quays.jpg" alt="Gunwharf Quays" class="rounded-lg shadow-xl w-full">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">What We Offer</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service Card 1 -->
<div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-hammer"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Refurbs</h3>
<p class="text-gray-600">Our refurbishment work revitalises existing spaces with high-quality finishes and modern upgrades.</p>
</div>
<!-- Service Card 2 -->
<div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-home"></i>
</div>
<h3 class="text-xl font-semibold mb-2">New builds</h3>
<p class="text-gray-600">We manage new build projects from start to finish, delivering solid, reliable structures tailored to your requirements.</p>
</div>
<!-- Service Card 3 -->
<div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-border-style"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Metal Partitions</h3>
<p class="text-gray-600">We install metal partitions to create flexible, strong internal divisions in commercial spaces.</p>
</div>
<!-- Service Card 4 -->
<div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-layer-group"></i>
</div>
<h3 class="text-xl font-semibold mb-2">MF Ceilings</h3>
<p class="text-gray-600">Our metal frame ceilings are designed for durability and easy access, ideal for commercial interiors.</p>
</div>
<!-- Service Card 5 -->
<div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-border-all"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Drylining</h3>
<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>
</div>
<!-- Service Card 6 -->
<div class="service-card bg-white p-6 rounded-lg shadow-md transition duration-300">
<div class="text-amber-600 text-4xl mb-4">
<i class="fas fa-trowel"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Plastering</h3>
<p class="text-gray-600">Our plastering services ensure flawless wall and ceiling finishes for both new builds and renovations.</p>
</div>
</div>
<div class="text-center mt-12">
<button id="show-more-services" class="text-amber-600 font-semibold hover:text-amber-700 transition duration-300">
View All Services <i class="fas fa-chevron-down ml-2"></i>
</button>
<div id="more-services" class="hidden mt-8 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Additional services will be shown here -->
</div>
</div>
</div>
</section>
<!-- Location Section -->
<section class="py-16 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<div class="grid grid-cols-2 gap-4">
<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">
<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">
<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">
<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">
</div>
</div>
<div class="md:w-1/2 md:pl-12">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Serving Portsmouth and Surrounding Areas</h2>
<p class="text-gray-600 mb-6 leading-relaxed">
Based in Portsmouth, SDL Construction proudly serves businesses across the city and surrounding areas.
We understand the local market and regulations, allowing us to deliver efficient, reliable construction
solutions tailored to the needs of Portsmouth's commercial sector.
</p>
<p class="text-gray-600 leading-relaxed">
Wherever your project is in the region, we're ready to help you build with confidence.
</p>
</div>
</div>
</div>
</section>
<!-- Gallery Section -->
<section id="gallery" class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center text-gray-800 mb-12">Our Work</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<a href="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-19.jpeg" class="gallery-item">
<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">
</a>
<a href="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-17.jpeg" class="gallery-item">
<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">
</a>
<a href="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Construction-4.jpeg" class="gallery-item">
<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">
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-16 bg-amber-600 text-white">
<div class="container mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Have a Project For Us?</h2>
<div class="max-w-3xl mx-auto bg-white rounded-lg shadow-xl overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-gray-800 p-8 flex flex-col justify-center">
<h3 class="text-xl font-semibold mb-4">Get in Touch</h3>
<div class="mb-4 flex items-start">
<i class="fas fa-phone-alt mt-1 mr-4 text-amber-400"></i>
<div>
<p class="text-gray-300">Phone</p>
<p class="font-medium">+44 1234 567890</p>
</div>
</div>
<div class="mb-4 flex items-start">
<i class="fas fa-envelope mt-1 mr-4 text-amber-400"></i>
<div>
<p class="text-gray-300">Email</p>
<p class="font-medium">[email protected]</p>
</div>
</div>
<div class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-4 text-amber-400"></i>
<div>
<p class="text-gray-300">Address</p>
<p class="font-medium">Portsmouth, United Kingdom</p>
</div>
</div>
</div>
<div class="md:w-1/2 p-8">
<form class="space-y-4">
<div>
<label for="name" class="block text-gray-700 font-medium mb-1">Name</label>
<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">
</div>
<div>
<label for="email" class="block text-gray-700 font-medium mb-1">Email</label>
<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">
</div>
<div>
<label for="phone" class="block text-gray-700 font-medium mb-1">Phone</label>
<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">
</div>
<div>
<label for="message" class="block text-gray-700 font-medium mb-1">Message</label>
<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>
</div>
<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">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-8">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-4 md:mb-0">
<img src="https://sdlconstruction.co.uk/wp-content/uploads/2025/06/SDL-Con-Logo-BG.jpeg" alt="SDL Construction Logo" class="h-12">
</div>
<div class="text-center md:text-right">
<p class="text-gray-400">© 2025 SDL Construction. All rights reserved.</p>
<div class="flex justify-center md:justify-end space-x-4 mt-2">
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-amber-400 transition duration-300">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
</div>
</footer>
<script>
</script>
<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>
</html> |