File size: 35,672 Bytes
f45355d | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nexus Enterprise | Business Solutions</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-bg {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}
.hero-clip-path {
clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.feature-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);
}
.testimonial-card {
transition: all 0.3s ease;
}
.testimonial-card:hover {
transform: scale(1.03);
}
.stats-item {
transition: all 0.3s ease;
}
.stats-item:hover {
transform: translateY(-5px);
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md 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-cube text-blue-600 text-3xl mr-2"></i>
<span class="text-xl font-bold text-gray-900">Nexus</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="#solutions" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Solutions</a>
<a href="#about" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">About</a>
<a href="#testimonials" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Clients</a>
<a href="#contact" class="text-gray-900 hover:text-blue-600 px-3 py-2 font-medium">Contact</a>
<button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium transition duration-300">
Get Started
</button>
</div>
</div>
<div class="md:hidden">
<button id="mobile-menu-button" class="text-gray-900 hover:text-blue-600 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 text-gray-900 hover:text-blue-600 font-medium">Home</a>
<a href="#solutions" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">Solutions</a>
<a href="#about" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">About</a>
<a href="#testimonials" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">Clients</a>
<a href="#contact" class="block px-3 py-2 text-gray-900 hover:text-blue-600 font-medium">Contact</a>
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium mt-2">
Get Started
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="gradient-bg text-white hero-clip-path pt-24 pb-32 md:pt-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-12 md:mb-0">
<h1 class="text-4xl md:text-5xl lg:text-6xl font-bold leading-tight mb-6">
Transform Your Business With Our <span class="text-blue-200">Enterprise Solutions</span>
</h1>
<p class="text-lg md:text-xl text-blue-100 mb-8">
We help businesses of all sizes streamline operations, enhance productivity, and drive growth with our cutting-edge technology solutions.
</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-3 rounded-md font-semibold text-lg transition duration-300">
Get Started
</button>
<button class="border-2 border-white text-white hover:bg-blue-700 px-8 py-3 rounded-md font-semibold text-lg transition duration-300">
Learn More
</button>
</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="Business Solutions"
class="rounded-lg shadow-2xl animate-float w-full max-w-md">
</div>
</div>
</div>
</section>
<!-- Trusted By Section -->
<section class="bg-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<p class="text-center text-gray-500 mb-8">Trusted by leading companies worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<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">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Microsoft_logo.svg/2560px-Microsoft_logo.svg.png" alt="Microsoft" class="h-8 opacity-70 hover:opacity-100 transition">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Google_2015_logo.svg/2560px-Google_2015_logo.svg.png" alt="Google" class="h-8 opacity-70 hover:opacity-100 transition">
<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">
<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>
</section>
<!-- Solutions Section -->
<section id="solutions" 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">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">Our Enterprise Solutions</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
We offer a comprehensive suite of services designed to meet the unique needs of your business.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Solution 1 -->
<div class="bg-white rounded-xl shadow-lg p-8 feature-card transition duration-300">
<div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cloud text-blue-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 that grows with your business, ensuring reliability and security.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Solution 2 -->
<div class="bg-white rounded-xl shadow-lg p-8 feature-card transition duration-300">
<div class="w-16 h-16 bg-green-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-chart-line text-green-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Data Analytics</h3>
<p class="text-gray-600 mb-4">
Transform your data into actionable insights with our powerful analytics platform.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Solution 3 -->
<div class="bg-white rounded-xl shadow-lg p-8 feature-card transition duration-300">
<div class="w-16 h-16 bg-purple-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-lock text-purple-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 protection against evolving threats with our enterprise-grade security solutions.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Solution 4 -->
<div class="bg-white rounded-xl shadow-lg p-8 feature-card transition duration-300">
<div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-robot text-yellow-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">AI & Automation</h3>
<p class="text-gray-600 mb-4">
Leverage artificial intelligence to automate processes and enhance decision-making.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Solution 5 -->
<div class="bg-white rounded-xl shadow-lg p-8 feature-card transition duration-300">
<div class="w-16 h-16 bg-red-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-mobile-alt text-red-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Mobile Solutions</h3>
<p class="text-gray-600 mb-4">
Enterprise mobile applications that empower your workforce anywhere, anytime.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
Learn more <i class="fas fa-arrow-right ml-2"></i>
</a>
</div>
<!-- Solution 6 -->
<div class="bg-white rounded-xl shadow-lg p-8 feature-card transition duration-300">
<div class="w-16 h-16 bg-indigo-100 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-users-cog text-indigo-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold text-gray-900 mb-3">Consulting Services</h3>
<p class="text-gray-600 mb-4">
Expert guidance to align technology with your business strategy for maximum impact.
</p>
<a href="#" class="text-blue-600 font-medium flex items-center">
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 lg:flex-row items-center">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">About Nexus Enterprise</h2>
<p class="text-gray-600 mb-6">
Founded in 2010, Nexus Enterprise has grown from a small startup to a global leader in enterprise technology solutions. Our mission is to empower businesses through innovation and technology.
</p>
<p class="text-gray-600 mb-8">
With offices in 12 countries and a team of over 500 experts, we've helped more than 1,000 companies transform their operations and achieve their business goals.
</p>
<div class="grid grid-cols-2 gap-6 mb-8">
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700 font-medium">Certified Experts</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700 font-medium">24/7 Support</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700 font-medium">Custom Solutions</span>
</div>
<div class="flex items-center">
<i class="fas fa-check-circle text-green-500 text-xl mr-3"></i>
<span class="text-gray-700 font-medium">Global Reach</span>
</div>
</div>
<button class="bg-blue-600 hover:bg-blue-700 text-white px-8 py-3 rounded-md font-semibold transition duration-300">
Our Story
</button>
</div>
<div class="lg:w-1/2">
<div class="relative">
<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 w-full">
<div class="absolute -bottom-6 -left-6 bg-white p-6 rounded-lg shadow-lg hidden md:block">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-trophy text-blue-600 text-2xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-900">Industry Leader</h4>
<p class="text-gray-600 text-sm">Ranked #1 by Gartner for 3 consecutive years</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="gradient-bg text-white py-16">
<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="stats-item p-6">
<div class="text-4xl md:text-5xl font-bold mb-2">12+</div>
<div class="text-blue-200">Years Experience</div>
</div>
<div class="stats-item p-6">
<div class="text-4xl md:text-5xl font-bold mb-2">500+</div>
<div class="text-blue-200">Team Members</div>
</div>
<div class="stats-item p-6">
<div class="text-4xl md:text-5xl font-bold mb-2">1K+</div>
<div class="text-blue-200">Clients Worldwide</div>
</div>
<div class="stats-item p-6">
<div class="text-4xl md:text-5xl font-bold mb-2">98%</div>
<div class="text-blue-200">Client Satisfaction</div>
</div>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section id="testimonials" 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">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-4">What Our Clients Say</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">
Don't just take our word for it. Here's what some of our clients have to say about working with us.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white rounded-xl shadow-lg p-8 testimonial-card">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/43.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Sarah Johnson</h4>
<p class="text-gray-600 text-sm">CTO, TechForward Inc.</p>
</div>
</div>
<p class="text-gray-700 mb-6">
"Nexus Enterprise transformed our IT infrastructure with their cloud solutions. Our systems are now more scalable and secure than ever before."
</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-white rounded-xl shadow-lg p-8 testimonial-card">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Michael Chen</h4>
<p class="text-gray-600 text-sm">CEO, Global Retail Corp</p>
</div>
</div>
<p class="text-gray-700 mb-6">
"Their data analytics platform gave us insights we never had before. We've increased revenue by 30% since implementation."
</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-white rounded-xl shadow-lg p-8 testimonial-card">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/65.jpg" alt="Emma Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-900">Emma Rodriguez</h4>
<p class="text-gray-600 text-sm">CIO, Financial Services Group</p>
</div>
</div>
<p class="text-gray-700 mb-6">
"The cybersecurity solutions from Nexus Enterprise have given us peace of mind. Their team is responsive and incredibly knowledgeable."
</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-blue-600 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 Business?</h2>
<p class="text-xl text-blue-100 mb-8 max-w-3xl mx-auto">
Schedule a consultation with our experts today and discover how our solutions can drive your business forward.
</p>
<div class="flex flex-col sm:flex-row justify-center space-y-4 sm:space-y-0 sm:space-x-4">
<button class="bg-white text-blue-600 hover:bg-gray-100 px-8 py-3 rounded-md font-semibold text-lg transition duration-300">
Get Started
</button>
<button class="border-2 border-white text-white hover:bg-blue-700 px-8 py-3 rounded-md font-semibold text-lg transition duration-300">
Contact Sales
</button>
</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 lg:flex-row">
<div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
<h2 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">Get In Touch</h2>
<p class="text-gray-600 mb-8">
Have questions about our solutions or want to discuss how we can help your business? Our team is ready to assist you.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-map-marker-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">Our Headquarters</h4>
<p class="text-gray-600">123 Enterprise Way, San Francisco, CA 94107</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-phone-alt text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">Phone</h4>
<p class="text-gray-600">+1 (800) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="bg-blue-100 p-3 rounded-full mr-4">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<div>
<h4 class="font-bold text-gray-900 mb-1">Email</h4>
<p class="text-gray-600">info@nexusenterprise.com</p>
</div>
</div>
</div>
<div class="mt-8">
<h4 class="font-bold text-gray-900 mb-4">Follow Us</h4>
<div class="flex space-x-4">
<a href="#" class="bg-gray-100 hover:bg-blue-600 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-blue-400 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-blue-700 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="bg-gray-100 hover:bg-pink-600 hover:text-white w-10 h-10 rounded-full flex items-center justify-center transition duration-300">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="lg:w-1/2">
<div class="bg-gray-50 rounded-xl shadow-lg p-8">
<h3 class="text-2xl font-bold text-gray-900 mb-6">Send Us a Message</h3>
<form>
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="company" class="block text-gray-700 font-medium mb-2">Company</label>
<input type="text" id="company" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-semibold transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div>
<div class="flex items-center mb-4">
<i class="fas fa-cube text-blue-500 text-2xl mr-2"></i>
<span class="text-xl font-bold">Nexus</span>
</div>
<p class="text-gray-400 mb-4">
Empowering businesses through innovative technology solutions since 2010.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-facebook-f"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Solutions</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Cloud Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Data Analytics</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Cybersecurity</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">AI & Automation</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Mobile Solutions</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Company</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">News</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Partners</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Resources</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Whitepapers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Case Studies</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Webinars</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Help Center</a></li>
</ul>
</div>
</div>
<div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
<p class="text-gray-400 mb-4 md:mb-0">
© 2023 Nexus Enterprise. All rights reserved.
</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
<a href="#" class="text-gray-400 hover:text-white">Cookie Policy</a>
</div>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
document.getElementById('mobile-menu-button').addEventListener('click', function() {
const menu = document.getElementById('mobile-menu');
menu.classList.toggle('hidden');
});
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
window.scrollTo({
top: targetElement.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Add shadow to navbar on scroll
window.addEventListener('scroll', function() {
const nav = document.querySelector('nav');
if (window.scrollY > 10) {
nav.classList.add('shadow-lg');
} else {
nav.classList.remove('shadow-lg');
}
});
</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=AIMaster7/nexus" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |