Spaces:
Running
Running
File size: 42,054 Bytes
aae2c18 | 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 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>dbAI - Authentic Intelligence | Applied AI Consulting</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>
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
.floating {
animation: float 6s ease-in-out infinite;
}
.gradient-text {
background: linear-gradient(45deg, #3b82f6, #10b981, #6366f1);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.glow:hover {
text-shadow: 0 0 10px rgba(59, 130, 246, 0.7);
transition: text-shadow 0.3s ease;
}
</style>
</head>
<body class="bg-gray-50 font-sans antialiased">
<!-- Header/Navigation -->
<header class="fixed w-full bg-white shadow-sm z-50">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<div class="flex items-center">
<div class="text-3xl font-bold mr-2">
<span class="gradient-text">dbAI</span>
</div>
<span class="text-gray-600 font-medium hidden md:block">Authentic Intelligence</span>
</div>
<nav class="hidden md:block">
<ul class="flex space-x-8">
<li><a href="#home" class="text-gray-700 hover:text-blue-600 transition">Home</a></li>
<li><a href="#services" class="text-gray-700 hover:text-blue-600 transition">Services</a></li>
<li><a href="#approach" class="text-gray-700 hover:text-blue-600 transition">Approach</a></li>
<li><a href="#cases" class="text-gray-700 hover:text-blue-600 transition">Case Studies</a></li>
<li><a href="#contact" class="text-gray-700 hover:text-blue-600 transition">Contact</a></li>
</ul>
</nav>
<button class="md:hidden focus:outline-none" id="mobile-menu-button">
<i class="fas fa-bars text-gray-600 text-2xl"></i>
</button>
</div>
<!-- Mobile Menu -->
<div class="md:hidden hidden bg-white w-full py-2" id="mobile-menu">
<ul class="flex flex-col space-y-3 px-6">
<li><a href="#home" class="block py-2 text-gray-700 hover:text-blue-600">Home</a></li>
<li><a href="#services" class="block py-2 text-gray-700 hover:text-blue-600">Services</a></li>
<li><a href="#approach" class="block py-2 text-gray-700 hover:text-blue-600">Approach</a></li>
<li><a href="#cases" class="block py-2 text-gray-700 hover:text-blue-600">Case Studies</a></li>
<li><a href="#contact" class="block py-2 text-gray-700 hover:text-blue-600">Contact</a></li>
</ul>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-20 bg-gradient-to-br from-blue-50 to-indigo-50">
<div class="container mx-auto px-6 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 text-gray-800 leading-tight mb-6">
Transforming Businesses with <span class="gradient-text">Authentic Intelligence</span>
</h1>
<p class="text-lg text-gray-600 mb-8">
dbAI delivers cutting-edge applied AI solutions tailored to your unique business challenges.
We bridge the gap between artificial intelligence theory and real-world implementation.
</p>
<div class="flex space-x-4">
<a href="#contact" class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-lg font-medium transition transform hover:-translate-y-1">
Get Started
</a>
<a href="#approach" class="border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition">
Learn More
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative w-80 h-80 md:w-96 md:h-96">
<div class="absolute inset-0 bg-blue-500 rounded-full opacity-20 filter blur-2xl floating" style="animation-delay: 0s;"></div>
<div class="absolute inset-0 bg-indigo-500 rounded-full opacity-20 filter blur-2xl floating" style="animation-delay: 1s;"></div>
<div class="absolute inset-0 bg-green-400 rounded-full opacity-20 filter blur-2xl floating" style="animation-delay: 2s;"></div>
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80"
alt="AI Brain"
class="absolute rounded-2xl w-full h-full object-cover shadow-2xl floating"
style="animation-delay: 0.5s;">
</div>
</div>
</div>
</section>
<!-- Trusted By Section -->
<section class="py-12 bg-white">
<div class="container mx-auto px-6">
<p class="text-center text-gray-500 mb-8">Trusted by innovative companies worldwide</p>
<div class="flex flex-wrap justify-center items-center gap-8 md:gap-16">
<img src="https://via.placeholder.com/150x50/3b82f6/ffffff?text=TECH+" alt="TechCorp" class="h-8 opacity-80 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x50/10b981/ffffff?text=INNOVATE" alt="Innovate Inc" class="h-8 opacity-80 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x50/6366f1/ffffff?text=GLOBAL" alt="Global Solutions" class="h-8 opacity-80 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x50/8b5cf6/ffffff?text=FUTURE+" alt="Future Labs" class="h-8 opacity-80 hover:opacity-100 transition">
<img src="https://via.placeholder.com/150x50/ec4899/ffffff?text=SMART" alt="Smart Industries" class="h-8 opacity-80 hover:opacity-100 transition">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our <span class="gradient-text">AI Services</span></h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
We offer end-to-end AI consulting services to help your business leverage artificial intelligence effectively.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-blue-600 transition">
<i class="fas fa-brain text-2xl text-blue-600 group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-blue-600 transition">AI Strategy & Advisory</h3>
<p class="text-gray-600">
Comprehensive AI roadmap development aligned with your business objectives and technology landscape.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group">
<div class="w-16 h-16 bg-indigo-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-indigo-600 transition">
<i class="fas fa-cogs text-2xl text-indigo-600 group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-indigo-600 transition">Custom AI Solutions</h3>
<p class="text-gray-600">
Bespoke AI model development tailored to your specific use cases and data environment.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group">
<div class="w-16 h-16 bg-green-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-green-600 transition">
<i class="fas fa-chart-line text-2xl text-green-600 group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-green-600 transition">Predictive Analytics</h3>
<p class="text-gray-600">
Advanced statistical modeling and forecasting to uncover patterns in your business data.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group">
<div class="w-16 h-16 bg-purple-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-purple-600 transition">
<i class="fas fa-robot text-2xl text-purple-600 group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-purple-600 transition">Process Automation</h3>
<p class="text-gray-600">
Intelligent automation of repetitive tasks to increase efficiency and reduce operational costs.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group">
<div class="w-16 h-16 bg-teal-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-teal-600 transition">
<i class="fas fa-comments text-2xl text-teal-600 group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-teal-600 transition">Conversational AI</h3>
<p class="text-gray-600">
Natural language processing solutions including chatbots and virtual assistants for superior customer engagement.
</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md hover:shadow-xl transition cursor-pointer group">
<div class="w-16 h-16 bg-amber-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-amber-600 transition">
<i class="fas fa-graduation-cap text-2xl text-amber-600 group-hover:text-white transition"></i>
</div>
<h3 class="text-xl font-bold text-gray-800 mb-3 group-hover:text-amber-600 transition">AI Training</h3>
<p class="text-gray-600">
Customized training programs to upskill your team in AI technologies and best practices.
</p>
</div>
</div>
</div>
</section>
<!-- Approach Section -->
<section id="approach" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our <span class="gradient-text">Unique Approach</span></h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
We don't just implement AI - we ensure it delivers measurable business impact.
</p>
</div>
<div class="flex flex-col md:flex-row">
<div class="md:w-1/2 mb-12 md:mb-0 md:pr-12">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="AI Approach"
class="w-full h-auto rounded-xl shadow-lg">
</div>
<div class="md:w-1/2">
<div class="mb-8">
<div class="flex items-start mb-4">
<div class="bg-blue-100 text-blue-600 rounded-lg p-3 mr-4">
<i class="fas fa-search text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Discovery & Assessment</h3>
<p class="text-gray-600">
Deep dive into your business processes to identify high-impact AI opportunities with clear ROI.
</p>
</div>
</div>
</div>
<div class="mb-8">
<div class="flex items-start mb-4">
<div class="bg-indigo-100 text-indigo-600 rounded-lg p-3 mr-4">
<i class="fas fa-lightbulb text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Solution Design</h3>
<p class="text-gray-600">
Architect AI systems that integrate seamlessly with your existing infrastructure and workflows.
</p>
</div>
</div>
</div>
<div class="mb-8">
<div class="flex items-start mb-4">
<div class="bg-green-100 text-green-600 rounded-lg p-3 mr-4">
<i class="fas fa-code text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Iterative Development</h3>
<p class="text-gray-600">
Agile implementation with continuous feedback loops to ensure alignment with business needs.
</p>
</div>
</div>
</div>
<div class="">
<div class="flex items-start mb-4">
<div class="bg-purple-100 text-purple-600 rounded-lg p-3 mr-4">
<i class="fas fa-rocket text-xl"></i>
</div>
<div>
<h3 class="text-xl font-bold text-gray-800 mb-2">Deployment & Scaling</h3>
<p class="text-gray-600">
Production rollout with monitoring and optimization to maximize long-term value.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Case Studies Section -->
<section id="cases" class="py-20 bg-gray-50">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4"><span class="gradient-text">Success</span> Stories</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
See how we've helped businesses transform with authentic intelligence.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8 mb-12">
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition cursor-pointer group">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="Retail AI Case Study"
class="w-full h-full object-cover group-hover:scale-105 transition duration-500">
</div>
<div class="p-6">
<span class="inline-block px-3 py-1 bg-blue-100 text-blue-600 rounded-full text-sm font-semibold mb-3">Retail</span>
<h3 class="text-xl font-bold text-gray-800 mb-2 group-hover:text-blue-600 transition">30% Sales Lift with AI-Powered Recommendations</h3>
<p class="text-gray-600 mb-4">
Implemented a personalized recommendation engine that increased average order value by 22%.
</p>
<div class="flex items-center text-blue-600 font-medium">
Read Case Study
<i class="fas fa-arrow-right ml-2 transition group-hover:translate-x-1"></i>
</div>
</div>
</div>
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-xl transition cursor-pointer group">
<div class="h-48 overflow-hidden">
<img src="https://images.unsplash.com/1579546929517-abb575faa613?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80"
alt="Manufacturing AI Case Study"
class="w-full h-full object-cover group-hover:scale-105 transition duration-500">
</div>
<div class="p-6">
<span class="inline-block px-3 py-1 bg-green-100 text-green-600 rounded-full text-sm font-semibold mb-3">Manufacturing</span>
<h3 class="text-xl font-bold text-gray-800 mb-2 group-hover:text-green-600 transition">Predictive Maintenance Saves $4M Annually</h3>
<p class="text-gray-600 mb-4">
Reduced equipment downtime by 65% through AI-driven failure prediction models.
</p>
<div class="flex items-center text-green-600 font-medium">
Read Case Study
<i class="fas fa-arrow-right ml-2 transition group-hover:translate-x-1"></i>
</div>
</div>
</div>
</div>
<div class="text-center">
<button class="bg-white border border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-lg font-medium transition">
View All Case Studies
</button>
</div>
</div>
</section>
<!-- Testimonials Section -->
<section class="py-20 bg-gradient-to-r from-blue-600 to-indigo-700 text-white">
<div class="container mx-auto px-6">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">What Our Clients Say</h2>
<p class="text-xl opacity-90 max-w-3xl mx-auto">
Don't just take our word for it - hear from organizations we've partnered with.
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/46.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Sarah Johnson</h4>
<p class="text-sm opacity-80">CTO, TechForward</p>
</div>
</div>
<p class="italic mb-6">
"dbAI transformed our customer segmentation approach. Their AI solution provided insights we never would have discovered manually."
</p>
<div class="flex text-yellow-300">
<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>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm">
<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">Michael Chen</h4>
<p class="text-sm opacity-80">Director of Operations, Global Retail</p>
</div>
</div>
<p class="italic mb-6">
"The inventory optimization system dbAI built for us reduced stockouts by 40% while decreasing excess inventory by 28%."
</p>
<div class="flex text-yellow-300">
<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>
<div class="bg-white bg-opacity-10 p-8 rounded-xl backdrop-filter backdrop-blur-sm">
<div class="flex items-center mb-6">
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Elena Rodriguez" class="w-12 h-12 rounded-full mr-4">
<div>
<h4 class="font-bold">Elena Rodriguez</h4>
<p class="text-sm opacity-80">VP Analytics, FinServ Corp</p>
</div>
</div>
<p class="italic mb-6">
"Their fraud detection models have improved our accuracy by 35% while reducing false positives by half. Incredible results."
</p>
<div class="flex text-yellow-300">
<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>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="container mx-auto px-6">
<div class="max-w-4xl mx-auto bg-gray-50 rounded-xl shadow-md overflow-hidden">
<div class="md:flex">
<div class="md:w-1/2 bg-gradient-to-br from-blue-600 to-indigo-700 text-white p-12">
<h2 class="text-3xl font-bold mb-6">Let's Build Something Extraordinary</h2>
<p class="mb-8 opacity-90">
Ready to explore how authentic intelligence can transform your business? Contact our team for a consultation.
</p>
<div class="space-y-5">
<div class="flex items-center">
<div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
<i class="fas fa-envelope text-xl"></i>
</div>
<div>
<p class="font-medium opacity-90">Email Us</p>
<p class="text-sm">contact@dbai.com</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
<i class="fas fa-phone text-xl"></i>
</div>
<div>
<p class="font-medium opacity-90">Call Us</p>
<p class="text-sm">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-center">
<div class="bg-white bg-opacity-20 rounded-full p-3 mr-4">
<i class="fas fa-map-marker-alt text-xl"></i>
</div>
<div>
<p class="font-medium opacity-90">Visit Us</p>
<p class="text-sm">123 AI Boulevard, Tech District</p>
</div>
</div>
</div>
</div>
<div class="md:w-1/2 p-12">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Send Us a Message</h3>
<form id="contactForm" class="space-y-5">
<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 outline-none transition">
</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 outline-none transition">
</div>
<div>
<label for="company" class="block text-sm font-medium text-gray-700 mb-1">Company</label>
<input type="text" id="company" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition">
</div>
<div>
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">How can we help?</label>
<textarea id="message" rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:ring-2 focus:ring-blue-500 focus:border-blue-500 outline-none transition"></textarea>
</div>
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg transition transform hover:-translate-y-1">
Send Message
</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ Section -->
<section class="py-20 bg-gray-50">
<div class="container mx-auto px-6 max-w-4xl">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Frequently Asked <span class="gradient-text">Questions</span></h2>
<p class="text-xl text-gray-600">
Get answers to common questions about our AI consulting services.
</p>
</div>
<div class="space-y-4">
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none">
<h3 class="text-lg font-medium text-left text-gray-800">What makes dbAI different from other AI consulting firms?</h3>
<i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i>
</button>
<div class="faq-answer px-6 pb-6 hidden">
<p class="text-gray-600">
At dbAI, we focus on "Authentic Intelligence" - solutions that genuinely understand and address your specific business challenges rather than just applying generic AI models. Our approach combines deep industry expertise with cutting-edge technical capabilities to deliver measurable results.
</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none">
<h3 class="text-lg font-medium text-left text-gray-800">How long does it typically take to see results from AI implementation?</h3>
<i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i>
</button>
<div class="faq-answer px-6 pb-6 hidden">
<p class="text-gray-600">
Our phased approach means you'll begin seeing initial results within weeks - faster for well-defined use cases. Most clients achieve their primary KPIs within 3-6 months. However, we emphasize that AI is an evolving capability that continues to improve over time with more data and refinement.
</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none">
<h3 class="text-lg font-medium text-left text-gray-800">Do I need to have AI expertise in-house to work with dbAI?</h3>
<i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i>
</button>
<div class="faq-answer px-6 pb-6 hidden">
<p class="text-gray-600">
Not at all. We guide clients through every step of the process, regardless of their technical maturity. For organizations looking to build internal AI capabilities, we offer knowledge transfer and training as part of our engagement model.
</p>
</div>
</div>
<div class="border border-gray-200 rounded-xl overflow-hidden">
<button class="faq-question w-full flex justify-between items-center p-6 focus:outline-none">
<h3 class="text-lg font-medium text-left text-gray-800">What industries do you specialize in?</h3>
<i class="fas fa-chevron-down text-blue-600 ml-4 transition"></i>
</button>
<div class="faq-answer px-6 pb-6 hidden">
<p class="text-gray-600">
While our methodologies apply across sectors, we have particularly deep experience in retail, manufacturing, financial services, healthcare, and logistics. Our team includes domain experts who understand the unique challenges and opportunities in these industries.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Newsletter Section -->
<section class="py-16 bg-gradient-to-r from-indigo-600 to-purple-600 text-white">
<div class="container mx-auto px-6 text-center">
<h2 class="text-3xl md:text-4xl font-bold mb-6">Stay Ahead with AI Insights</h2>
<p class="text-xl max-w-2xl mx-auto mb-8 opacity-90">
Subscribe to our newsletter for the latest trends, case studies, and AI strategy tips.
</p>
<form class="max-w-md mx-auto flex">
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-lg outline-none text-gray-800">
<button type="submit" class="bg-blue-600 hover:bg-blue-700 px-6 py-3 rounded-r-lg font-medium transition">
Subscribe
</button>
</form>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white pt-16 pb-8">
<div class="container mx-auto px-6">
<div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12">
<div>
<div class="text-3xl font-bold mb-4">
<span class="gradient-text">dbAI</span>
</div>
<p class="text-gray-400 mb-6">
Unleashing authentic intelligence to solve real business challenges.
</p>
<div class="flex space-x-4">
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition">
<i class="fab fa-twitter"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition">
<i class="fab fa-linkedin-in"></i>
</a>
<a href="#" class="w-10 h-10 bg-gray-800 rounded-full flex items-center justify-center hover:bg-gray-700 transition">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Services</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">AI Strategy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Machine Learning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Deep Learning</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Computer Vision</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">NLP Solutions</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Company</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">About Us</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="#" class="text-gray-400 hover:text-white transition">Press</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-6">Resources</h4>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">White Papers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">AI Glossary</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">Webinars</a></li>
<li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li>
</ul>
</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 dbAI. 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">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 anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
});
});
// FAQ accordion functionality
document.querySelectorAll('.faq-question').forEach(question => {
question.addEventListener('click', () => {
const answer = question.nextElementSibling;
const icon = question.querySelector('i');
// Toggle answer visibility
answer.classList.toggle('hidden');
// Rotate icon
if (answer.classList.contains('hidden')) {
icon.classList.remove('fa-chevron-up');
icon.classList.add('fa-chevron-down');
} else {
icon.classList.remove('fa-chevron-down');
icon.classList.add('fa-chevron-up');
}
});
});
// Form submission
document.getElementById('contactForm').addEventListener('submit', function(e) {
e.preventDefault();
alert('Thank you for your message! We will get back to you soon.');
this.reset();
});
// Intersection Observer for animations
const observerOptions = {
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fadeIn');
}
});
}, observerOptions);
document.querySelectorAll('section').forEach(section => {
observer.observe(section);
});
// Add animation class to Tailwind
tailwind.config = {
theme: {
extend: {
animation: {
fadeIn: 'fadeIn 1s ease-in-out forwards',
},
keyframes: {
fadeIn: {
'0%': { opacity: 0, transform: 'translateY(20px)' },
'100%': { opacity: 1, transform: 'translateY(0)' },
}
}
}
}
}
</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=huggingdude19/dbai-sample" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |