<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Possibility Tech Solutions | Where technology meets tomorrow</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<script src="https://unpkg.com/lucide@latest"></script>
<style>
/* Custom Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
/* Custom Gradients and Animations */
.hero-bg {
background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.8)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
background-size: cover;
background-position: center;
}
.cyber-accent {
color: #64ffda;
}
.bg-navy {
background-color: #0a192f;
}
.bg-light-navy {
background-color: #112240;
}
.text-slate {
color: #8892b0;
}
.trust-badge {
transition: all 0.3s ease;
}
.trust-badge:hover {
transform: translateY(-5px);
}
</style>
</head>
<body class="bg-slate-50 text-gray-800">
<!-- Navigation -->
<nav class="bg-navy text-white fixed w-full z-50 shadow-lg">
<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">
<!-- Logo / Brand Name -->
<a href="#" class="flex items-center gap-2">
<!-- Replaced placeholder "P" with Image Tag -->
<!-- Ensure you upload your logo as 'logo.png' to the same folder -->
<img src="logo.png" alt="Possibility Tech Logo" class="h-12 w-auto object-contain rounded-lg">
<!--<span class="font-bold text-xl tracking-wide ml-2">Possibility Tech Solutions</span>-->
</a>
</div>
<!-- Desktop Menu -->
<div class="hidden md:flex space-x-8 items-center">
<a href="#about" class="hover:text-cyan-400 transition-colors">About Us</a>
<a href="#services" class="hover:text-cyan-400 transition-colors">Services</a>
<a href="#solutions" class="hover:text-cyan-400 transition-colors">Solutions</a>
<a href="#contact" class="px-5 py-2.5 bg-cyan-500 hover:bg-cyan-600 text-navy font-bold rounded-md transition-all">Get In Touch</a>
</div>
<!-- Mobile Menu Button -->
<div class="md:hidden flex items-center">
<button id="mobile-menu-btn" class="text-white hover:text-cyan-400 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-light-navy border-t border-gray-700">
<a href="#about" class="block py-3 px-4 hover:bg-navy hover:text-cyan-400">About Us</a>
<a href="#services" class="block py-3 px-4 hover:bg-navy hover:text-cyan-400">Services</a>
<a href="#solutions" class="block py-3 px-4 hover:bg-navy hover:text-cyan-400">Solutions</a>
<a href="#contact" class="block py-3 px-4 bg-cyan-600 text-white font-bold text-center mt-2">Get In Touch</a>
</div>
</nav>
<!-- Hero Section -->
<header class="hero-bg h-screen flex items-center justify-center relative pt-20">
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-navy/90 bottom-0 h-32"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center relative z-10">
<h1 class="text-4xl md:text-6xl font-extrabold text-white mb-6 leading-tight">
Possibility Tech <span class="text-transparent bg-clip-text bg-gradient-to-r from-cyan-400 to-blue-500">Solutions</span>
</h1>
<div class="inline-block mb-4 px-4 py-1.5 rounded-full bg-cyan-500/10 border border-cyan-500/30 text-cyan-400 text-sm font-semibold tracking-wide uppercase">
Where technology meets tomorrow
</div>
<p class="text-lg md:text-xl text-slate mb-10 max-w-3xl mx-auto">
We build secure, enterprise-grade systems and empower the next generation of tech leaders through AI-driven solutions and industry-first education.
</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#contact" class="px-8 py-4 bg-gradient-to-r from-cyan-500 to-blue-600 text-white font-bold rounded-lg shadow-lg shadow-cyan-500/30 hover:shadow-cyan-500/50 transition-all transform hover:-translate-y-1">
Start Your Project
</a>
<a href="#services" class="px-8 py-4 bg-transparent border border-slate-600 text-white font-semibold rounded-lg hover:bg-white/5 transition-all">
Explore Services
</a>
</div>
</div>
</header>
<!-- Trust Badges (The pillars) -->
<section class="bg-navy py-12 border-b border-gray-800">
<div class="max-w-7xl mx-auto px-4 grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="trust-badge">
<i class="fas fa-shield-alt text-3xl text-cyan-400 mb-2"></i>
<h3 class="text-white font-bold">Security First</h3>
<p class="text-sm text-slate">Zero Trust Architecture</p>
</div>
<div class="trust-badge">
<i class="fas fa-brain text-3xl text-purple-400 mb-2"></i>
<h3 class="text-white font-bold">AI Driven</h3>
<p class="text-sm text-slate">Intelligent Automation</p>
</div>
<div class="trust-badge">
<i class="fas fa-graduation-cap text-3xl text-green-400 mb-2"></i>
<h3 class="text-white font-bold">Academic Bridge</h3>
<p class="text-sm text-slate">Industry-Ready Grads</p>
</div>
<div class="trust-badge">
<i class="fas fa-server text-3xl text-blue-400 mb-2"></i>
<h3 class="text-white font-bold">Reliability</h3>
<p class="text-sm text-slate">99.9% Uptime Systems</p>
</div>
</div>
</section>
<!-- About Us 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="grid md:grid-cols-2 gap-12 items-center">
<div class="relative">
<div class="absolute -top-4 -left-4 w-24 h-24 bg-cyan-100 rounded-lg -z-0"></div>
<img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80" alt="Team collaborating" class="relative z-10 rounded-lg shadow-2xl">
<div class="absolute -bottom-6 -right-6 bg-navy p-6 rounded-lg shadow-xl hidden md:block z-20">
<p class="text-cyan-400 font-bold text-4xl">100%</p>
<p class="text-white text-sm">Commitment to<br>Closing the Gap</p>
</div>
</div>
<div>
<h2 class="text-sm font-bold text-cyan-600 uppercase tracking-widest mb-2">Who We Are</h2>
<h3 class="text-3xl md:text-4xl font-bold text-gray-900 mb-6">Turning Potential into Performance</h3>
<p class="text-gray-600 mb-4 leading-relaxed">
At Possibility Tech Solutions, we believe the name of a company should be its promise. We were founded on a simple but powerful observation: while technology moves at lightning speed, the gap between traditional systems and modern innovation—and the gap between the classroom and the boardroom—is only getting wider.
</p>
<p class="text-gray-600 mb-8 leading-relaxed">
We exist to close those gaps. Whether we are architecting high-security enterprise applications or lecturing the next generation of engineers, our mission remains the same: <strong>Build robust systems. Build robust people.</strong>
</p>
<ul class="space-y-3 mb-8">
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-cyan-500 mr-3"></i> Secure Enterprise Systems
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-cyan-500 mr-3"></i> Out-of-this-world AI Applications
</li>
<li class="flex items-center text-gray-700">
<i class="fas fa-check-circle text-cyan-500 mr-3"></i> Advanced IT Lecturing
</li>
</ul>
</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">
<h2 class="text-sm font-bold text-blue-600 uppercase tracking-widest mb-2">What We Do</h2>
<h3 class="text-3xl md:text-4xl font-bold text-gray-900">Our Core Specializations</h3>
</div>
<div class="grid md:grid-cols-3 gap-8">
<!-- Service 1 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-2xl transition-all group border-t-4 border-transparent hover:border-cyan-500">
<div class="w-14 h-14 bg-blue-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-blue-600 transition-colors">
<i class="fas fa-building text-2xl text-blue-600 group-hover:text-white"></i>
</div>
<h4 class="text-xl font-bold text-gray-900 mb-3">Enterprise Consulting</h4>
<p class="text-gray-600 mb-4">
We design and deploy robust, secured, and scalable applications tailored for the modern enterprise. Our focus is on reliability and long-term infrastructure health.
</p>
<ul class="text-sm text-gray-500 space-y-2">
<li>• Legacy Migration</li>
<li>• Security Audits</li>
<li>• Custom Software Dev</li>
</ul>
</div>
<!-- Service 2 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-2xl transition-all group border-t-4 border-transparent hover:border-purple-500">
<div class="w-14 h-14 bg-purple-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-purple-600 transition-colors">
<i class="fas fa-robot text-2xl text-purple-600 group-hover:text-white"></i>
</div>
<h4 class="text-xl font-bold text-gray-900 mb-3">AI & Innovation</h4>
<p class="text-gray-600 mb-4">
We leverage cutting-edge AI to build "out-of-this-world" applications. From predictive analytics to automated workflows, we meet demands with intelligence.
</p>
<ul class="text-sm text-gray-500 space-y-2">
<li>• Machine Learning Models</li>
<li>• Automated Workflows</li>
<li>• Data Strategy</li>
</ul>
</div>
<!-- Service 3 -->
<div class="bg-white p-8 rounded-xl shadow-lg hover:shadow-2xl transition-all group border-t-4 border-transparent hover:border-green-500">
<div class="w-14 h-14 bg-green-100 rounded-lg flex items-center justify-center mb-6 group-hover:bg-green-600 transition-colors">
<i class="fas fa-chalkboard-teacher text-2xl text-green-600 group-hover:text-white"></i>
</div>
<h4 class="text-xl font-bold text-gray-900 mb-3">The Academic Bridge</h4>
<p class="text-gray-600 mb-4">
We prepare students for the workforce by teaching the latest tech stacks. We don't just teach code; we teach the art of building production-ready systems.
</p>
<ul class="text-sm text-gray-500 space-y-2">
<li>• University Lecturing</li>
<li>• Student Bootcamps</li>
<li>• Curriculum Design</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Solutions For You (Segmentation) -->
<section id="solutions" class="py-20 bg-navy text-white relative overflow-hidden">
<!-- Background decorative elements -->
<div class="absolute top-0 right-0 w-64 h-64 bg-cyan-500/10 rounded-full blur-3xl"></div>
<div class="absolute bottom-0 left-0 w-96 h-96 bg-blue-600/10 rounded-full blur-3xl"></div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 relative z-10">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Solutions For You</h2>
<p class="text-slate max-w-2xl mx-auto">We tailor our expertise to solve your specific challenges.</p>
</div>
<div class="grid md:grid-cols-2 gap-12">
<!-- For Business -->
<div class="flex gap-6">
<div class="flex-shrink-0">
<div class="w-12 h-12 rounded-full bg-cyan-500 flex items-center justify-center font-bold text-navy">01</div>
</div>
<div>
<h4 class="text-xl font-bold mb-2">For The Enterprise</h4>
<p class="text-slate mb-4">Your current systems are outdated or vulnerable. We provide a <strong>Security-First Architecture</strong> overhaul to ensure you are robust, reliable, and hack-proof.</p>
</div>
</div>
<!-- For Education -->
<div class="flex gap-6">
<div class="flex-shrink-0">
<div class="w-12 h-12 rounded-full bg-green-500 flex items-center justify-center font-bold text-navy">02</div>
</div>
<div>
<h4 class="text-xl font-bold mb-2">For The Educator</h4>
<p class="text-slate mb-4">Theoretical academics often lag behind industry. We provide <strong>IT Lecturing Services</strong> that bring real-world DevOps, Cloud, and AI skills into your classroom.</p>
</div>
</div>
<!-- For Innovators -->
<div class="flex gap-6">
<div class="flex-shrink-0">
<div class="w-12 h-12 rounded-full bg-purple-500 flex items-center justify-center font-bold text-navy">03</div>
</div>
<div>
<h4 class="text-xl font-bold mb-2">For The Innovator</h4>
<p class="text-slate mb-4">You have complex data needs. We build <strong>Custom AI Models</strong> that automate decisions and give you a competitive edge that is "out of this world."</p>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="bg-white rounded-2xl shadow-xl overflow-hidden flex flex-col md:flex-row">
<!-- Left Side: Info -->
<div class="bg-navy p-10 md:w-2/5 text-white flex flex-col justify-between">
<div>
<h3 class="text-2xl font-bold mb-6">Let's Build the Future</h3>
<p class="text-slate mb-8 leading-relaxed">
Whether you need an enterprise overhaul, AI innovation, or to prepare your students for the real world, we are ready to partner with you.
</p>
<div class="space-y-6">
<div class="flex items-start">
<i class="fas fa-envelope mt-1 mr-4 text-cyan-400"></i>
<span>info@possibilitytechsolutions.co.za</span>
</div>
<div class="flex items-start">
<i class="fas fa-map-marker-alt mt-1 mr-4 text-cyan-400"></i>
<span>Gauteng, South Africa</span>
</div>
</div>
</div>
<div class="mt-12">
<p class="text-sm text-slate opacity-70">Possibility Tech Solutions (Pty) Ltd</p>
<p class="text-xs text-cyan-400 mt-1 italic">"Where technology meets tomorrow"</p>
</div>
</div>
<!-- Right Side: Form -->
<div class="p-10 md:w-3/5">
<form onsubmit="event.preventDefault(); document.getElementById('success-msg').classList.remove('hidden');">
<div class="grid md:grid-cols-2 gap-6 mb-6">
<div>
<label class="block text-sm font-semibold text-gray-700 mb-2">Full Name</label>
<input type="text" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:border-cyan-500 focus:ring-2 focus:ring-cyan-200 outline-none transition-all" placeholder="John Doe" required>
</div>
<div>
<label class="block text-sm font-semibold text-gray-700 mb-2">Company / Institution</label>
<input type="text" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:border-cyan-500 focus:ring-2 focus:ring-cyan-200 outline-none transition-all" placeholder="Company Ltd" required>
</div>
</div>
<div class="mb-6">
<label class="block text-sm font-semibold text-gray-700 mb-2">Service Interest</label>
<div class="relative">
<select class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:border-cyan-500 focus:ring-2 focus:ring-cyan-200 outline-none transition-all appearance-none bg-white" required>
<option value="" disabled selected>Select a service...</option>
<option value="enterprise">Enterprise IT Consulting</option>
<option value="ai">AI & Machine Learning Innovation</option>
<option value="lecturing">IT Lecturing & Academic Partnership</option>
<option value="other">Other Inquiry</option>
</select>
<div class="pointer-events-none absolute inset-y-0 right-0 flex items-center px-4 text-gray-700">
<i class="fas fa-chevron-down text-xs"></i>
</div>
</div>
</div>
<div class="mb-6">
<label class="block text-sm font-semibold text-gray-700 mb-2">Your Challenge / Vision</label>
<textarea rows="4" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:border-cyan-500 focus:ring-2 focus:ring-cyan-200 outline-none transition-all" placeholder="Tell us about the gap you need to close..." required></textarea>
</div>
<button type="submit" class="w-full bg-navy hover:bg-light-navy text-white font-bold py-4 rounded-lg transition-all transform hover:-translate-y-1 shadow-lg">
Send Message
</button>
<!-- Success Message (Hidden by default) -->
<div id="success-msg" class="hidden mt-4 p-4 bg-green-100 text-green-700 rounded-lg text-center">
Thank you! We've received your message and will be in touch shortly.
</div>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-navy text-slate border-t border-gray-800 py-12">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 flex flex-col md:flex-row justify-between items-center gap-6">
<div class="flex items-center gap-2">
<!-- Replaced placeholder "P" with Image Tag -->
<img src="logo.png" alt="Possibility Tech Logo" class="h-8 w-auto object-contain rounded">
<span class="text-white font-bold">Possibility Tech Solutions</span>
</div>
<div class="text-sm">
© 2025 Possibility Tech Solutions. All rights reserved.
</div>
<div class="flex space-x-6">
<a href="#" class="hover:text-cyan-400 transition-colors"><i class="fab fa-linkedin text-xl"></i></a>
<a href="#" class="hover:text-cyan-400 transition-colors"><i class="fab fa-twitter text-xl"></i></a>
</div>
</div>
</footer>
<script>
// Mobile Menu Toggle
const btn = document.getElementById('mobile-menu-btn');
const menu = document.getElementById('mobile-menu');
btn.addEventListener('click', () => {
menu.classList.toggle('hidden');
});
</script>
</body>
</html>