File size: 42,518 Bytes
d2a6726 |
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 710 711 712 713 714 715 716 717 718 719 720 721 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Decision Labs | AI/ML Consulting for Hard Problems</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>
/* Custom animations */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
.floating { animation: float 6s ease-in-out infinite; }
/* Simple text highlight */
.highlight-text {
color: #213448;
}
</style>
</head>
<body class="font-sans bg-gray-50 text-gray-800">
<!-- 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 items-center">
<div class="text-2xl font-bold">
<span class="highlight-text">decision</span><span class="text-gray-600">-labs</span>
</div>
</div>
<div class="hidden md:flex space-x-8">
<a href="#services" class="text-gray-600 hover:text-indigo-600 font-medium transition">Services</a>
<a href="#approach" class="text-gray-600 hover:text-indigo-600 font-medium transition">Approach</a>
<a href="#work" class="text-gray-600 hover:text-indigo-600 font-medium transition">Work</a>
<a href="#team" class="text-gray-600 hover:text-indigo-600 font-medium transition">Team</a>
<a href="#products" class="text-gray-600 hover:text-indigo-600 font-medium transition">Products</a>
<a href="#contact" class="text-gray-600 hover:text-indigo-600 font-medium transition">Contact</a>
</div>
<div class="md:hidden">
<button id="menu-toggle" class="text-gray-600 hover:text-indigo-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 pb-4 px-4 shadow-lg">
<div class="flex flex-col space-y-3">
<a href="#services" class="text-gray-600 hover:text-indigo-600 font-medium py-2 border-b border-gray-100">Services</a>
<a href="#approach" class="text-gray-600 hover:text-indigo-600 font-medium py-2 border-b border-gray-100">Approach</a>
<a href="#work" class="text-gray-600 hover:text-indigo-600 font-medium py-2 border-b border-gray-100">Work</a>
<a href="#team" class="text-gray-600 hover:text-indigo-600 font-medium py-2 border-b border-gray-100">Team</a>
<a href="#products" class="text-gray-600 hover:text-indigo-600 font-medium py-2 border-b border-gray-100">Products</a>
<a href="#contact" class="text-gray-600 hover:text-indigo-600 font-medium py-2">Contact</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="pt-32 pb-20 bg-gray-100">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="md:grid md:grid-cols-2 md:gap-12 items-center">
<div class="mb-12 md:mb-0">
<h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">
Solving <span class="underline-custom gradient-text">hard problems</span> with AI/ML
</h1>
<p class="text-xl text-gray-600 mb-8">
We're decision-labs: a boutique software engineering consultancy specializing in end-to-end AI/ML solutions for complex challenges.
</p>
<div class="flex flex-wrap gap-4">
<a href="#contact" class="px-8 py-3 bg-gray-800 text-white font-medium rounded-full hover:bg-gray-700 transition duration-300">
Contact Us
</a>
<a href="#work" class="px-8 py-3 bg-white text-[#213448] font-medium rounded-full border border-[#94B4C1] hover:bg-[#ECEFCA] transition duration-300">
See Our Work
</a>
</div>
</div>
<div class="relative">
<img src="https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1300&q=80"
alt="AI and Machine Learning"
class="rounded-lg shadow-md">
<div class="absolute -bottom-6 -right-6 bg-white p-4 rounded-xl shadow-lg">
<div class="flex items-center">
<div class="bg-blue-100 p-3 rounded-lg mr-4">
<i class="fas fa-brain text-blue-600 text-2xl"></i>
</div>
<div>
<h4 class="font-bold text-gray-800">Research & Development</h4>
<p class="text-sm text-gray-600">Cutting-edge AI solutions</p>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<!-- Trusted By Section -->
<section class="py-12 bg-white">
<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 innovative companies worldwide</p>
<div class="grid grid-cols-2 md:grid-cols-5 gap-8 items-center justify-center">
<img src="https://via.placeholder.com/160x60?text=Fortune+500" alt="Fortune 500 Company" class="h-12 opacity-70 grayscale hover:opacity-100 hover:grayscale-0 transition">
<img src="https://via.placeholder.com/160x60?text=Tech+Startup" alt="Tech Startup" class="h-10 opacity-70 grayscale hover:opacity-100 hover:grayscale-0 transition">
<img src="https://via.placeholder.com/160x60?text=Healthcare" alt="Healthcare Company" class="h-14 opacity-70 grayscale hover:opacity-100 hover:grayscale-0 transition">
<img src="https://via.placeholder.com/160x60?text=Finance" alt="Finance Company" class="h-12 opacity-70 grayscale hover:opacity-100 hover:grayscale-0 transition">
<img src="https://via.placeholder.com/160x60?text=Government" alt="Government" class="h-12 opacity-70 grayscale hover:opacity-100 hover:grayscale-0 transition">
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-[#ECEFCA]">
<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 mb-4">Our <span class="gradient-text">AI/ML Consulting</span> Services</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Comprehensive solutions from concept to production deployment
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white p-8 rounded-lg border border-gray-200 hover:border-gray-300 transition duration-300">
<div class="p-2 inline-block mb-4">
<i class="fas fa-robot text-gray-700 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Problem Discovery & Scoping</h3>
<p class="text-gray-600 mb-4">
We work closely with you to identify high-impact opportunities where AI/ML can drive meaningful results.
</p>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Feasibility assessment</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>ROI analysis</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Solution architecture</span>
</li>
</ul>
</div>
<!-- Service 2 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300">
<div class="bg-blue-100 p-4 rounded-lg inline-block mb-6">
<i class="fas fa-microscope text-blue-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Advanced Model Development</h3>
<p class="text-gray-600 mb-4">
Our team builds custom models designed specifically for your unique challenges, not off-the-shelf solutions.
</p>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Deep learning architectures</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Reinforcement learning</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Explainable AI techniques</span>
</li>
</ul>
</div>
<!-- Service 3 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-xl transition duration-300">
<div class="bg-purple-100 p-4 rounded-lg inline-block mb-6">
<i class="fas fa-server text-purple-600 text-2xl"></i>
</div>
<h3 class="text-xl font-bold mb-3">Production Deployment</h3>
<p class="text-gray-600 mb-4">
We don't stop at prototypes β we ensure your models are scalable, reliable, and maintainable in production.
</p>
<ul class="space-y-2">
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>MLOps pipelines</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Monitoring systems</span>
</li>
<li class="flex items-start">
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i>
<span>Continuous improvement</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Approach Section -->
<section id="approach" 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">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Approach</span> to Hard Problems</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
We thrive where others struggle β tackling complex, ambiguous challenges with structured problem-solving
</p>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Step 1 -->
<div class="relative">
<div class="bg-gray-800 text-white rounded-lg p-6 h-full border border-gray-700">
<div class="text-4xl font-bold mb-4 opacity-30">01</div>
<h3 class="text-xl font-bold mb-3">Problem Decomposition</h3>
<p class="text-blue-100">
Complex problems get broken down into solvable components with measurable success criteria.
</p>
</div>
<div class="hidden md:block absolute -right-6 top-1/2 transform -translate-y-1/2">
<div class="h-12 w-12 rounded-full bg-white flex items-center justify-center shadow-lg">
<i class="fas fa-arrow-right text-indigo-600 text-xl"></i>
</div>
</div>
</div>
<!-- Step 2 -->
<div class="relative">
<div class="bg-gradient-to-br from-[#547792] to-[#94B4C1] text-white rounded-xl p-8 h-full shadow-lg transform scale-105">
<div class="text-4xl font-bold mb-4 opacity-30">02</div>
<h3 class="text-xl font-bold mb-3">Rapid Prototyping</h3>
<p class="text-blue-100">
We quickly test key assumptions through targeted experiments to prove viability early.
</p>
</div>
<div class="hidden md:block absolute -right-6 top-1/2 transform -translate-y-1/2">
<div class="h-12 w-12 rounded-full bg-white flex items-center justify-center shadow-lg">
<i class="fas fa-arrow-right text-purple-600 text-xl"></i>
</div>
</div>
</div>
<!-- Step 3 -->
<div class="">
<div class="bg-gradient-to-br from-[#94B4C1] to-[#213448] text-white rounded-xl p-8 h-full shadow-lg">
<div class="text-4xl font-bold mb-4 opacity-30">03</div>
<h3 class="text-xl font-bold mb-3">Sustainable Solutions</h3>
<p class="text-blue-100">
We design for long-term success with maintainable, scalable architectures.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- Work Section -->
<section id="work" class="py-20 bg-[#ECEFCA]">
<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 mb-4">Featured <span class="gradient-text">Work</span></h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Examples of complex challenges we've solved (confidentiality maintained)
</p>
</div>
<div class="grid md:grid-cols-2 gap-8">
<!-- Project 1 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden group">
<div class="relative overflow-hidden h-64">
<img src="https://images.unsplash.com/photo-1641375833166-d8bec27c5e6c?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1587&q=80"
alt="AI in Defense"
class="w-full h-full object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent"></div>
<div class="absolute bottom-0 left-0 p-6">
<div class="bg-red-500 text-white text-xs font-bold px-3 py-1 rounded-full mb-3 inline-block">
Defense
</div>
<h3 class="text-white text-xl font-bold">Anomaly Detection at Scale</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-600 mb-4">
Developed custom deep learning models to detect rare anomalies in real-time sensor data across distributed edge devices.
</p>
<ul class="flex flex-wrap gap-2">
<li class="text-xs bg-gray-100 px-3 py-1 rounded-full">Computer Vision</li>
<li class="text-xs bg-gray-100 px-3 py-1 rounded-full">Edge AI</li>
<li class="text-xs bg-gray-100 px-3 py-1 rounded-full">Federated Learning</li>
</ul>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl shadow-lg overflow-hidden group">
<div class="relative overflow-hidden h-64">
<img src="https://images.unsplash.com/photo-1622675363311-3e1904dc1885?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80"
alt="Healthcare AI"
class="w-full h-full object-cover transition duration-500 group-hover:scale-105">
<div class="absolute inset-0 bg-gradient-to-t from-black/80 via-black/30 to-transparent"></div>
<div class="absolute bottom-0 left-0 p-6">
<div class="bg-blue-500 text-white text-xs font-bold px-3 py-1 rounded-full mb-3 inline-block">
Healthcare
</div>
<h3 class="text-white text-xl font-bold">Treatment Optimization</h3>
</div>
</div>
<div class="p-6">
<p class="text-gray-600 mb-4">
Built reinforcement learning system to optimize treatment protocols while maintaining interpretability for clinicians.
</p>
<ul class="flex flex-wrap gap-2">
<li class="text-xs bg-gray-100 px-3 py-1 rounded-full">Reinforcement Learning</li>
<li class="text-xs bg-gray-100 px-3 py-1 rounded-full">Explainable AI</li>
<li class="text-xs bg-gray-100 px-3 py-1 rounded-full">Time Series</li>
</ul>
</div>
</div>
</div>
<div class="text-center mt-12">
<button class="px-8 py-3 bg-white text-indigo-600 font-medium rounded-full border border-indigo-200 hover:bg-indigo-50 transition duration-300 shadow-sm">
View More Case Studies
</button>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" 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">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our <span class="gradient-text">Team</span></h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Senior engineers and researchers with deep expertise in solving hard technical problems
</p>
</div>
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Team Member 1 -->
<div class="text-center">
<div class="h-48 w-48 mx-auto rounded-full bg-gradient-to-br from-blue-500 to-indigo-600 p-1 mb-6">
<div class="bg-white h-full w-full rounded-full p-1 overflow-hidden">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80"
alt="Dr. Sarah Chen"
class="h-full w-full object-cover rounded-full">
</div>
</div>
<h3 class="text-xl font-bold mb-1">Dr. Sarah Chen</h3>
<p class="text-indigo-600 mb-3">Chief Scientist</p>
<p class="text-gray-600 text-sm">
PhD in Machine Learning from MIT. Former research lead at DeepMind.
</p>
<div class="flex justify-center space-x-3 mt-4">
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fas fa-graduation-cap"></i></a>
</div>
</div>
<!-- Team Member 2 -->
<div class="text-center">
<div class="h-48 w-48 mx-auto rounded-full bg-gradient-to-br from-blue-500 to-indigo-600 p-1 mb-6">
<div class="bg-white h-full w-full rounded-full p-1 overflow-hidden">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=688&q=80"
alt="James Rodriguez"
class="h-full w-full object-cover rounded-full">
</div>
</div>
<h3 class="text-xl font-bold mb-1">James Rodriguez</h3>
<p class="text-indigo-600 mb-3">Engineering Director</p>
<p class="text-gray-600 text-sm">
Built AI platforms at Google and two successful AI startups.
</p>
<div class="flex justify-center space-x-3 mt-4">
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-github"></i></a>
</div>
</div>
<!-- Team Member 3 -->
<div class="text-center">
<div class="h-48 w-48 mx-auto rounded-full bg-gradient-to-br from-blue-500 to-indigo-600 p-1 mb-6">
<div class="bg-white h-full w-full rounded-full p-1 overflow-hidden">
<img src="https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80"
alt="Dr. Priya Patel"
class="h-full w-full object-cover rounded-full">
</div>
</div>
<h3 class="text-xl font-bold mb-1">Dr. Priya Patel</h3>
<p class="text-indigo-600 mb-3">Research Lead</p>
<p class="text-gray-600 text-sm">
PhD in NLP from Stanford. Expert in transformer architectures.
</p>
<div class="flex justify-center space-x-3 mt-4">
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fas fa-graduation-cap"></i></a>
</div>
</div>
<!-- Team Member 4 -->
<div class="text-center">
<div class="h-48 w-48 mx-auto rounded-full bg-gradient-to-br from-blue-500 to-indigo-600 p-1 mb-6">
<div class="bg-white h-full w-full rounded-full p-1 overflow-hidden">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=687&q=80"
alt="Michael Johnson"
class="h-full w-full object-cover rounded-full">
</div>
</div>
<h3 class="text-xl font-bold mb-1">Michael Johnson</h3>
<p class="text-indigo-600 mb-3">MLOps Architect</p>
<p class="text-gray-600 text-sm">
Designed scalable ML infrastructure at AWS and Netflix.
</p>
<div class="flex justify-center space-x-3 mt-4">
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-linkedin"></i></a>
<a href="#" class="text-gray-400 hover:text-indigo-600"><i class="fab fa-github"></i></a>
</div>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 bg-[#ECEFCA]">
<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 mb-4">What Our <span class="gradient-text">Clients</span> Say</h2>
</div>
<div class="grid md:grid-cols-2 gap-8">
<!-- Testimonial 1 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<div class="text-yellow-400 text-2xl mr-2">
β
β
β
β
β
</div>
</div>
<p class="text-gray-600 italic mb-6">
"decision-labs took on our most challenging prediction problem that had stumped our internal team for months. Their approach was methodical, creative, and delivered results that dramatically improved our operations."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/women/43.jpg"
alt="Emma Parker"
class="h-12 w-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">Emma Parker</h4>
<p class="text-sm text-gray-600">CTO, Industrial Analytics Co.</p>
</div>
</div>
</div>
<!-- Testimonial 2 -->
<div class="bg-white p-8 rounded-xl shadow-md">
<div class="flex items-center mb-6">
<div class="text-yellow-400 text-2xl mr-2">
β
β
β
β
β
</div>
</div>
<p class="text-gray-600 italic mb-6">
"What impressed me most was how decision-labs balanced cutting-edge research with practical engineering. They didn't just deliver a model - they delivered a production-ready system our team could maintain."
</p>
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/32.jpg"
alt="David Kim"
class="h-12 w-12 rounded-full mr-4">
<div>
<h4 class="font-bold text-gray-800">David Kim</h4>
<p class="text-sm text-gray-600">Director of AI, HealthTech Inc.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Products Section -->
<section id="products" 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">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our AI <span class="text-gray-800">Products</span></h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">
Pre-built solutions for common enterprise challenges
</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<!-- Product 1 -->
<div class="bg-gray-50 p-8 rounded-lg border border-gray-200 hover:border-gray-300 transition duration-300">
<div class="text-4xl mb-4 text-gray-700">
<i class="fas fa-globe-americas"></i>
</div>
<h3 class="text-xl font-bold mb-3">GeoBase.app</h3>
<p class="text-gray-600 mb-4">
Fullstack geospatial backend as a service for location-aware applications.
</p>
<div class="space-y-2">
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Geospatial data processing</span>
</div>
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>API-first architecture</span>
</div>
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Scalable cloud infrastructure</span>
</div>
</div>
<button class="mt-6 px-6 py-2 bg-gray-800 text-white rounded hover:bg-gray-700 transition">
View Demo
</button>
</div>
<!-- Product 2 -->
<div class="bg-gray-50 p-8 rounded-lg border border-gray-200 hover:border-gray-300 transition duration-300">
<div class="text-4xl mb-4 text-gray-700">
<i class="fas fa-satellite-dish"></i>
</div>
<h3 class="text-xl font-bold mb-3">VerisatAI</h3>
<p class="text-gray-600 mb-4">
Advanced deepfake detection for satellite imagery and geospatial data.
</p>
<div class="space-y-2">
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Tamper detection algorithms</span>
</div>
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Metadata verification</span>
</div>
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Enterprise API access</span>
</div>
</div>
<button class="mt-6 px-6 py-2 bg-gray-800 text-white rounded hover:bg-gray-700 transition">
View Demo
</button>
</div>
<!-- Product 3 -->
<div class="bg-gray-50 p-8 rounded-lg border border-gray-200 hover:border-gray-300 transition duration-300">
<div class="text-4xl mb-4 text-gray-700">
<i class="fas fa-rocket"></i>
</div>
<h3 class="text-xl font-bold mb-3">EarthGPT</h3>
<p class="text-gray-600 mb-4">
AI-powered remote sensing analysis via natural language commands.
</p>
<div class="space-y-2">
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Multispectral analysis</span>
</div>
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Time series detection</span>
</div>
<div class="flex items-start">
<i class="fas fa-check-circle text-gray-600 mt-1 mr-2"></i>
<span>Automated reporting</span>
</div>
</div>
<button class="mt-6 px-6 py-2 bg-gray-800 text-white rounded hover:bg-gray-700 transition">
View Demo
</button>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-800">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-2 gap-12 items-center">
<div>
<h2 class="text-3xl md:text-4xl font-bold text-white mb-6">
Ready to solve your hardest AI challenge?
</h2>
<p class="text-blue-100 text-xl mb-8">
Let's discuss how we can help. We take on a limited number of projects each year to ensure we deliver exceptional results.
</p>
<div class="grid grid-cols-2 gap-4 text-blue-100 mb-8">
<div class="flex items-start">
<i class="fas fa-envelope mt-1 mr-3 text-[#ECEFCA]"></i>
<span class="text-[#ECEFCA]">contact@decision-labs.com</span>
</div>
<div class="flex items-start">
<i class="fas fa-phone-alt mt-1 mr-3 text-[#ECEFCA]"></i>
<span class="text-[#ECEFCA]">+1 (555) 987-6543</span>
</div>
<div class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-3 text-[#ECEFCA]"></i>
<span class="text-[#ECEFCA]">San Francisco, CA</span>
</div>
<div class="flex items-start">
<i class="fas fa-clock mt-1 mr-3 text-[#ECEFCA]"></i>
<span class="text-[#ECEFCA]">Mon-Fri: 9am-5pm PST</span>
</div>
</div>
</div>
<div class="bg-white p-8 rounded-xl shadow-2xl">
<h3 class="text-2xl font-bold text-gray-800 mb-6">Send us a message</h3>
<form>
<div class="mb-4">
<label for="name" class="block text-gray-700 mb-2">Name</label>
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-400">
</div>
<div class="mb-4">
<label for="email" class="block text-gray-700 mb-2">Email</label>
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-400">
</div>
<div class="mb-4">
<label for="message" class="block text-gray-700 mb-2">How can we help?</label>
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-lg focus:ring-2 focus:ring-indigo-200 focus:border-indigo-400"></textarea>
</div>
<button type="submit" class="w-full py-3 bg-gradient-to-r from-[#213448] to-[#547792] text-white font-medium rounded-lg hover:shadow-lg transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid md:grid-cols-4 gap-8">
<div>
<div class="text-2xl font-bold mb-4">
<span class="gradient-text">decision</span><span class="text-[#94B4C1]">-labs</span>
</div>
<p class="text-gray-400 mb-4">
Solving hard problems with AI/ML through rigorous research and engineering excellence.
</p>
<div class="flex space-x-4">
<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"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
</div>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Services</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">AI Strategy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Model Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">MLOps</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Technical Due Diligence</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">Team</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">Blog</a></li>
</ul>
</div>
<div>
<h4 class="text-lg font-semibold mb-4">Legal</h4>
<ul class="space-y-2">
<li><a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Terms of Service</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">GDPR</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 decision-labs. All rights reserved.</p>
<div class="flex space-x-6">
<a href="#" class="text-gray-400 hover:text-white">Privacy</a>
<a href="#" class="text-gray-400 hover:text-white">Terms</a>
<a href="#" class="text-gray-400 hover:text-white">Contact</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();
// Close mobile menu if open
const mobileMenu = document.getElementById('mobile-menu');
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</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=saburq/decision-labs-preview-site" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |