Spaces:
Running
Running
File size: 41,825 Bytes
4f3914d |
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 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FutureWave | IT Solutions & Digital Innovation</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>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
scroll-behavior: smooth;
}
.gradient-text {
background: linear-gradient(90deg, #3b82f6, #8b5cf6);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.animate-wave {
animation: wave 8s linear infinite;
}
@keyframes wave {
0% { transform: rotate(0deg); }
50% { transform: rotate(5deg); }
100% { transform: rotate(0deg); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20 items-center">
<div class="flex-shrink-0 flex items-center">
<div class="flex items-center">
<i class="fas fa-wave-square text-3xl gradient-text mr-2"></i>
<span class="text-2xl font-bold text-gray-900">Future<span class="gradient-text">Wave</span></span>
</div>
</div>
<div class="hidden md:block">
<div class="ml-10 flex items-center space-x-8">
<a href="#home" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Home</a>
<a href="#services" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Services</a>
<a href="#about" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">About</a>
<a href="#portfolio" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Portfolio</a>
<a href="#contact" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Contact</a>
<a href="#contact" class="bg-gradient-to-r from-blue-500 to-purple-600 text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition">Get Started</a>
</div>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-900 focus:outline-none">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white shadow-lg">
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
<a href="#home" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-100">Home</a>
<a href="#services" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-100">Services</a>
<a href="#about" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-100">About</a>
<a href="#portfolio" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-100">Portfolio</a>
<a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium text-gray-900 hover:bg-gray-100">Contact</a>
<a href="#contact" class="block w-full text-center bg-gradient-to-r from-blue-500 to-purple-600 text-white px-6 py-2 rounded-full font-medium hover:opacity-90 transition mt-2">Get Started</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient text-white py-20 md:py-32">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 animate-wave">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">Transform Your Business with <span class="gradient-text">Digital Excellence</span></h1>
<p class="text-xl text-blue-100 mb-8">Strategic IT solutions and enterprise-grade digital transformation services to accelerate your growth.</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-white text-blue-600 px-8 py-3 rounded-full font-bold text-center hover:bg-gray-100 transition">Get a Free Quote</a>
<a href="#services" class="border-2 border-white text-white px-8 py-3 rounded-full font-bold text-center hover:bg-white hover:text-blue-600 transition">Our Services</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Digital Innovation" class="w-full rounded-lg shadow-xl">
</div>
</div>
</div>
</section>
<!-- Clients Section -->
<section class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<h3 class="text-center text-gray-500 mb-10">Trusted by innovative companies worldwide</h3>
<div class="grid grid-cols-2 md:grid-cols-5 gap-8 items-center">
<div class="flex justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/a9/Amazon_logo.svg/2560px-Amazon_logo.svg.png" alt="Amazon" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
<div class="flex justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Microsoft_logo.svg/2560px-Microsoft_logo.svg.png" alt="Microsoft" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
<div class="flex justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/HP_logo_630x630.png/640px-HP_logo_630x630.png" alt="HP" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
<div class="flex justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Apple_logo_black.svg/505px-Apple_logo_black.svg.png" alt="Apple" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
<div class="flex justify-center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/IBM_logo.svg/2560px-IBM_logo.svg.png" alt="IBM" class="h-8 opacity-70 hover:opacity-100 transition">
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<span class="text-blue-600 font-bold">OUR SERVICES</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2">Comprehensive <span class="gradient-text">IT Solutions</span></h2>
<p class="max-w-2xl mx-auto text-gray-600 mt-4">We provide end-to-end IT services to help your business thrive in the digital landscape.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="service-card bg-white rounded-xl shadow-md p-8 transition duration-300">
<div class="w-16 h-16 bg-blue-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-globe text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Web Design & Development</h3>
<p class="text-gray-600 mb-4">Custom, responsive websites that captivate your audience and drive conversions with cutting-edge design and technology.</p>
<a href="#" class="text-blue-600 font-medium flex items-center hover:text-blue-800">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 2 -->
<div class="service-card bg-white rounded-xl shadow-md p-8 transition duration-300">
<div class="w-16 h-16 bg-purple-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Mobile App Development</h3>
<p class="text-gray-600 mb-4">Native and cross-platform mobile applications that deliver seamless user experiences across all devices.</p>
<a href="#" class="text-purple-600 font-medium flex items-center hover:text-purple-800">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 3 -->
<div class="service-card bg-white rounded-xl shadow-md p-8 transition duration-300">
<div class="w-16 h-16 bg-green-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-brush text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Brand Identity</h3>
<p class="text-gray-600 mb-4">Complete branding solutions including logo design, visual identity, and brand guidelines to establish your unique presence.</p>
<a href="#" class="text-green-600 font-medium flex items-center hover:text-green-800">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 4 -->
<div class="service-card bg-white rounded-xl shadow-md p-8 transition duration-300">
<div class="w-16 h-16 bg-red-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cloud text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Cloud Solutions</h3>
<p class="text-gray-600 mb-4">Scalable cloud infrastructure and services to optimize your operations and reduce IT overhead.</p>
<a href="#" class="text-red-600 font-medium flex items-center hover:text-red-800">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 5 -->
<div class="service-card bg-white rounded-xl shadow-md p-8 transition duration-300">
<div class="w-16 h-16 bg-yellow-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-yellow-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Cybersecurity</h3>
<p class="text-gray-600 mb-4">Comprehensive security solutions to protect your digital assets and ensure compliance with industry standards.</p>
<a href="#" class="text-yellow-600 font-medium flex items-center hover:text-yellow-800">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Service 6 -->
<div class="service-card bg-white rounded-xl shadow-md p-8 transition duration-300">
<div class="w-16 h-16 bg-indigo-50 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Digital Marketing</h3>
<p class="text-gray-600 mb-4">Data-driven marketing strategies to increase your online visibility, engagement, and conversion rates.</p>
<a href="#" class="text-indigo-600 font-medium flex items-center hover:text-indigo-800">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-lg shadow-xl">
</div>
<div class="md:w-1/2">
<span class="text-blue-600 font-bold">ABOUT US</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6">Innovating the <span class="gradient-text">Digital Future</span></h2>
<p class="text-gray-600 mb-6">Founded in 2015, FutureWave has been at the forefront of digital transformation, helping businesses of all sizes navigate the complex world of technology with innovative solutions tailored to their unique needs.</p>
<div class="space-y-4 mb-8">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-check text-blue-600"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-900 font-medium">Award-winning IT solutions provider</p>
<p class="text-gray-600">Recognized for excellence in innovation and customer service.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-check text-blue-600"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-900 font-medium">Global client base</p>
<p class="text-gray-600">Serving clients across 15+ countries with localized solutions.</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-8 h-8 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-check text-blue-600"></i>
</div>
</div>
<div class="ml-3">
<p class="text-gray-900 font-medium">Expert team</p>
<p class="text-gray-600">50+ certified professionals with diverse technical expertise.</p>
</div>
</div>
</div>
<a href="#contact" class="inline-flex items-center bg-gradient-to-r from-blue-500 to-purple-600 text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition">
Contact Us <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-16 bg-gradient-to-r from-blue-600 to-purple-700 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="p-6">
<div class="text-4xl font-bold mb-2">250+</div>
<div class="text-blue-100">Projects Completed</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">98%</div>
<div class="text-blue-100">Client Satisfaction</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">50+</div>
<div class="text-blue-100">Team Members</div>
</div>
<div class="p-6">
<div class="text-4xl font-bold mb-2">15+</div>
<div class="text-blue-100">Countries Served</div>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<span class="text-blue-600 font-bold">OUR WORK</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2">Featured <span class="gradient-text">Projects</span></h2>
<p class="max-w-2xl mx-auto text-gray-600 mt-4">Explore our portfolio of successful projects across various industries and technologies.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Project 1 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-xl">
<div class="h-48 bg-blue-100 overflow-hidden">
<img src="https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="E-Commerce Platform" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">E-Commerce Platform</h3>
<p class="text-gray-600 mb-4">A complete online shopping solution with advanced product filtering and secure checkout.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Web Development</span>
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">UI/UX Design</span>
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Payment Integration</span>
</div>
<a href="#" class="text-blue-600 font-medium flex items-center hover:text-blue-800">
View Case Study <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-xl">
<div class="h-48 bg-purple-100 overflow-hidden">
<img src="https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Fitness App" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Fitness Mobile App</h3>
<p class="text-gray-600 mb-4">A personalized workout and nutrition tracking application with AI recommendations.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">iOS</span>
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Android</span>
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">AI Integration</span>
</div>
<a href="#" class="text-purple-600 font-medium flex items-center hover:text-purple-800">
View Case Study <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
<!-- Project 3 -->
<div class="bg-white rounded-xl shadow-md overflow-hidden transition duration-300 hover:shadow-xl">
<div class="h-48 bg-green-100 overflow-hidden">
<img src="https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1415&q=80" alt="Analytics Dashboard" class="w-full h-full object-cover">
</div>
<div class="p-6">
<h3 class="text-xl font-bold text-gray-900 mb-2">Business Analytics Dashboard</h3>
<p class="text-gray-600 mb-4">A comprehensive data visualization tool for real-time business performance monitoring.</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-indigo-100 text-indigo-800 text-xs px-3 py-1 rounded-full">Data Analytics</span>
<span class="bg-pink-100 text-pink-800 text-xs px-3 py-1 rounded-full">Cloud Computing</span>
<span class="bg-teal-100 text-teal-800 text-xs px-3 py-1 rounded-full">Custom API</span>
</div>
<a href="#" class="text-green-600 font-medium flex items-center hover:text-green-800">
View Case Study <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</div>
<div class="text-center mt-12">
<a href="#" class="inline-flex items-center border-2 border-blue-600 text-blue-600 px-6 py-3 rounded-full font-medium hover:bg-blue-600 hover:text-white transition">
View All Projects <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<span class="text-blue-600 font-bold">TESTIMONIALS</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2">What Our <span class="gradient-text">Clients Say</span></h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-gray-50 p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="John Doe" class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold text-gray-900">John Doe</h4>
<p class="text-gray-600">CEO, TechCorp</p>
</div>
</div>
<p class="text-gray-600 mb-4">"FutureWave transformed our online presence with their innovative web design and development services. Their team delivered beyond our expectations."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-gray-50 p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Alice Smith" class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold text-gray-900">Alice Smith</h4>
<p class="text-gray-600">CMO, GlobalSoft</p>
</div>
</div>
<p class="text-gray-600 mb-4">"The mobile app developed by FutureWave has significantly increased our customer engagement. Their attention to detail is remarkable."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
</div>
<!-- Testimonial 3 -->
<div class="bg-gray-50 p-8 rounded-xl shadow-sm">
<div class="flex items-center mb-4">
<img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Robert Johnson" class="w-12 h-12 rounded-full object-cover mr-4">
<div>
<h4 class="font-bold text-gray-900">Robert Johnson</h4>
<p class="text-gray-600">CTO, Innova</p>
</div>
</div>
<p class="text-gray-600 mb-4">"Their cloud solutions helped us scale our infrastructure seamlessly. FutureWave is our go-to partner for all IT needs."</p>
<div class="flex text-yellow-400">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star-half-alt"></i>
</div>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-gradient-to-r from-blue-600 to-purple-700 text-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your Digital Strategy?</h2>
<p class="max-w-2xl mx-auto text-blue-100 mb-8">Partner with our award-winning team to develop enterprise-grade solutions that drive measurable business results.</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-white text-blue-600 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition">Get Started Now</a>
<a href="tel:+1234567890" class="border-2 border-white text-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-blue-600 transition">
<i class="fas fa-phone-alt mr-2"></i> Call Us
</a>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
<span class="text-blue-600 font-bold">CONTACT US</span>
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mt-2 mb-6">Let's Build <span class="gradient-text">Something Great</span></h2>
<p class="text-gray-600 mb-8">Have a project in mind or want to learn more about our services? Reach out to our team—we'd love to hear from you!</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-900">Our Office</h4>
<p class="text-gray-600">123 Tech Street, Silicon Valley<br>San Francisco, CA 94107</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-envelope text-blue-600"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-900">Email Us</h4>
<p class="text-gray-600">info@futurewave.com<br>support@futurewave.com</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 mt-1">
<div class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold text-gray-900">Call Us</h4>
<p class="text-gray-600">+1 (555) 123-4567<br>Mon-Fri, 9am-6pm PST</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="text-lg font-bold text-gray-900 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-blue-100 rounded-full flex items-center justify-center text-blue-600 hover:bg-blue-200 transition">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="md:w-1/2">
<form class="bg-gray-50 p-8 rounded-xl shadow-sm">
<div class="grid grid-cols-1 md:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500">
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-gradient-to-r from-blue-500 to-purple-600 text-white px-6 py-3 rounded-full font-medium hover:opacity-90 transition">
Send Message <i class="fas fa-paper-plane ml-2"></i>
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-wave-square text-3xl gradient-text mr-2"></i>
<span class="text-2xl font-bold">Future<span class="gradient-text">Wave</span></span>
</div>
<p class="text-gray-400 mb-4">Leading the digital transformation wave with innovative IT solutions and services.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Services</h3>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white transition">Web Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Mobile App Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">UI/UX Design</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Cloud Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Digital Marketing</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Company</h3>
<ul class="space-y-2">
<li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#portfolio" class="text-gray-400 hover:text-white transition">Portfolio</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-4">Newsletter</h3>
<p class="text-gray-400 mb-4">Subscribe to our newsletter for the latest updates and insights.</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 rounded-l-lg bg-gray-800 text-white focus:outline-none focus:ring-2 focus:ring-blue-500 w-full">
<button type="submit" class="bg-gradient-to-r from-blue-500 to-purple-600 px-4 py-2 rounded-r-lg hover:opacity-90 transition">
<i class="fas fa-paper-plane"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">© 2023 FutureWave Technologies. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white transition">Cookies</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('menu-toggle').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
if (targetId === '#') return;
const targetElement = document.querySelector(targetId);
if (targetElement) {
targetElement.scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Form submission
const contactForm = document.querySelector('form');
if (contactForm) {
contactForm.addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
}
</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=TUSSIP/futurewave" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |