|
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>ASHRE CRM | Real Estate Management Platform</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'); |
|
|
|
:root { |
|
--primary: #2d3748; |
|
--secondary: #4a5568; |
|
--accent: #4299e1; |
|
--light: #f7fafc; |
|
--dark: #1a202c; |
|
} |
|
|
|
body { |
|
font-family: 'Poppins', sans-serif; |
|
background-color: var(--light); |
|
} |
|
|
|
.gradient-bg { |
|
background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%); |
|
} |
|
|
|
.card-hover { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.card-hover:hover { |
|
transform: translateY(-5px); |
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); |
|
} |
|
|
|
.feature-icon { |
|
width: 60px; |
|
height: 60px; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
border-radius: 12px; |
|
margin-bottom: 1rem; |
|
} |
|
|
|
.dashboard-card { |
|
border-left: 4px solid var(--accent); |
|
} |
|
|
|
.nav-link { |
|
position: relative; |
|
} |
|
|
|
.nav-link::after { |
|
content: ''; |
|
position: absolute; |
|
width: 0; |
|
height: 2px; |
|
bottom: 0; |
|
left: 0; |
|
background-color: var(--accent); |
|
transition: width 0.3s ease; |
|
} |
|
|
|
.nav-link:hover::after { |
|
width: 100%; |
|
} |
|
|
|
.stat-card { |
|
transition: all 0.3s ease; |
|
} |
|
|
|
.stat-card:hover { |
|
transform: scale(1.03); |
|
} |
|
|
|
.timeline { |
|
position: relative; |
|
padding-left: 50px; |
|
} |
|
|
|
.timeline::before { |
|
content: ''; |
|
position: absolute; |
|
left: 20px; |
|
top: 0; |
|
bottom: 0; |
|
width: 2px; |
|
background-color: #e2e8f0; |
|
} |
|
|
|
.timeline-item { |
|
position: relative; |
|
margin-bottom: 30px; |
|
} |
|
|
|
.timeline-item::before { |
|
content: ''; |
|
position: absolute; |
|
left: -50px; |
|
top: 5px; |
|
width: 20px; |
|
height: 20px; |
|
border-radius: 50%; |
|
background-color: var(--accent); |
|
border: 4px solid #ebf8ff; |
|
} |
|
</style> |
|
</head> |
|
<body> |
|
|
|
<header class="gradient-bg text-white shadow-lg"> |
|
<div class="container mx-auto px-4 py-4"> |
|
<div class="flex justify-between items-center"> |
|
<div class="flex items-center space-x-2"> |
|
<i class="fas fa-building text-2xl text-blue-300"></i> |
|
<h1 class="text-2xl font-bold">ASHRE <span class="text-blue-300">CRM</span></h1> |
|
</div> |
|
<nav class="hidden md:flex space-x-8"> |
|
<a href="#features" class="nav-link text-white hover:text-blue-300">Features</a> |
|
<a href="#pricing" class="nav-link text-white hover:text-blue-300">Pricing</a> |
|
<a href="#advantages" class="nav-link text-white hover:text-blue-300">Advantages</a> |
|
<a href="#team" class="nav-link text-white hover:text-blue-300">Team</a> |
|
<a href="#contact" class="nav-link text-white hover:text-blue-300">Contact</a> |
|
</nav> |
|
<button class="md:hidden text-white focus:outline-none"> |
|
<i class="fas fa-bars text-2xl"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</header> |
|
|
|
|
|
<section class="gradient-bg text-white py-20"> |
|
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-10 md:mb-0"> |
|
<h1 class="text-4xl md:text-5xl font-bold mb-6 leading-tight">Transform Your Real Estate Management Digitally</h1> |
|
<p class="text-xl mb-8 text-gray-200">A white-labeled, client-isolated SaaS platform built for the Gulf region's real estate sector.</p> |
|
<div class="flex space-x-4"> |
|
<button class="bg-blue-500 hover:bg-blue-600 text-white px-6 py-3 rounded-lg font-medium transition duration-300 shadow-lg"> |
|
Request Demo <i class="fas fa-arrow-right ml-2"></i> |
|
</button> |
|
<button class="border border-white hover:bg-white hover:text-gray-800 text-white px-6 py-3 rounded-lg font-medium transition duration-300"> |
|
Learn More |
|
</button> |
|
</div> |
|
</div> |
|
<div class="md:w-1/2 flex justify-center"> |
|
<div class="relative w-full max-w-md"> |
|
<div class="absolute -top-6 -left-6 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div> |
|
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-blue-400 rounded-full opacity-20"></div> |
|
<div class="relative bg-white rounded-xl shadow-2xl overflow-hidden"> |
|
<div class="bg-gray-800 p-3 flex items-center space-x-2"> |
|
<div class="w-3 h-3 rounded-full bg-red-500"></div> |
|
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> |
|
<div class="w-3 h-3 rounded-full bg-green-500"></div> |
|
</div> |
|
<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="Dashboard Preview" class="w-full h-auto"> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="features" class="py-16 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold text-gray-800 mb-4">Comprehensive Platform Features</h2> |
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">ASHRE CRM offers a complete suite of tools designed specifically for real estate management in the Gulf region.</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> |
|
|
|
<div class="bg-gray-50 p-8 rounded-xl card-hover"> |
|
<div class="feature-icon bg-blue-100 text-blue-600"> |
|
<i class="fas fa-users-cog text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 text-gray-800">Client-Isolated CRM</h3> |
|
<p class="text-gray-600">Each client gets their own isolated instance with custom branding and configurations.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 p-8 rounded-xl card-hover"> |
|
<div class="feature-icon bg-green-100 text-green-600"> |
|
<i class="fas fa-tools text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 text-gray-800">Facility Management</h3> |
|
<p class="text-gray-600">Comprehensive tools for managing properties, maintenance, and service requests.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 p-8 rounded-xl card-hover"> |
|
<div class="feature-icon bg-purple-100 text-purple-600"> |
|
<i class="fas fa-project-diagram text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 text-gray-800">Project Management</h3> |
|
<p class="text-gray-600">End-to-end project tracking from planning to completion with PMD module.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 p-8 rounded-xl card-hover"> |
|
<div class="feature-icon bg-yellow-100 text-yellow-600"> |
|
<i class="fas fa-mobile-alt text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 text-gray-800">Mobile Integration</h3> |
|
<p class="text-gray-600">Full mobile access with native apps for iOS and Android platforms.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 p-8 rounded-xl card-hover"> |
|
<div class="feature-icon bg-red-100 text-red-600"> |
|
<i class="fas fa-random text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 text-gray-800">SAP Connectors</h3> |
|
<p class="text-gray-600">Seamless integration with SAP for financial and operational data synchronization.</p> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 p-8 rounded-xl card-hover"> |
|
<div class="feature-icon bg-indigo-100 text-indigo-600"> |
|
<i class="fas fa-chart-line text-2xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold mb-3 text-gray-800">Analytics Dashboards</h3> |
|
<p class="text-gray-600">Powerful data visualization tools with customizable reports and KPIs.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 bg-gray-100"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold text-gray-800 mb-4">Strategic Positioning</h2> |
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Why ASHRE CRM stands out in the Gulf real estate market</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-3 gap-8"> |
|
<div class="bg-white p-8 rounded-xl shadow-sm card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-blue-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-crown text-blue-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-800">100% IP Ownership</h3> |
|
</div> |
|
<p class="text-gray-600">Fully owned by Al Shareef Holding with no recurring license fees.</p> |
|
</div> |
|
|
|
<div class="bg-white p-8 rounded-xl shadow-sm card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-green-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-user-shield text-green-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-800">Client-Specific Deployments</h3> |
|
</div> |
|
<p class="text-gray-600">Non-multitenant architecture ensures complete data isolation and security.</p> |
|
</div> |
|
|
|
<div class="bg-white p-8 rounded-xl shadow-sm card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-purple-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-puzzle-piece text-purple-600 text-xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-800">Modular Provisioning</h3> |
|
</div> |
|
<p class="text-gray-600">Clients can select only the features they need with flexible module options.</p> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="pricing" class="py-16 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold text-gray-800 mb-4">Commercial Model</h2> |
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Transparent pricing structure with high-margin opportunities</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6"> |
|
|
|
<div class="bg-gray-50 border border-gray-200 rounded-xl p-6 card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-blue-100 p-2 rounded-lg mr-3"> |
|
<i class="fas fa-laptop-code text-blue-600"></i> |
|
</div> |
|
<h3 class="text-lg font-bold text-gray-800">One-time Setup</h3> |
|
</div> |
|
<p class="text-3xl font-bold text-gray-800 mb-2">QAR 395,000</p> |
|
<p class="text-gray-600 mb-4">Per client implementation</p> |
|
<div class="bg-blue-50 p-3 rounded-lg"> |
|
<p class="text-blue-700 font-medium">100% margin (no cost)</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 border border-gray-200 rounded-xl p-6 card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-green-100 p-2 rounded-lg mr-3"> |
|
<i class="fas fa-cloud text-green-600"></i> |
|
</div> |
|
<h3 class="text-lg font-bold text-gray-800">Monthly SaaS</h3> |
|
</div> |
|
<p class="text-3xl font-bold text-gray-800 mb-2">QAR 25K–30K</p> |
|
<p class="text-gray-600 mb-4">Module-based average</p> |
|
<div class="bg-green-50 p-3 rounded-lg"> |
|
<p class="text-green-700 font-medium">~56% margin</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 border border-gray-200 rounded-xl p-6 card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-purple-100 p-2 rounded-lg mr-3"> |
|
<i class="fas fa-headset text-purple-600"></i> |
|
</div> |
|
<h3 class="text-lg font-bold text-gray-800">Support Fee</h3> |
|
</div> |
|
<p class="text-3xl font-bold text-gray-800 mb-2">QAR 25,000</p> |
|
<p class="text-gray-600 mb-4">Per month</p> |
|
<div class="bg-purple-50 p-3 rounded-lg"> |
|
<p class="text-purple-700 font-medium">60% margin (cost = QAR 10K)</p> |
|
</div> |
|
</div> |
|
|
|
|
|
<div class="bg-gray-50 border border-gray-200 rounded-xl p-6 card-hover"> |
|
<div class="flex items-center mb-4"> |
|
<div class="bg-yellow-100 p-2 rounded-lg mr-3"> |
|
<i class="fas fa-code text-yellow-600"></i> |
|
</div> |
|
<h3 class="text-lg font-bold text-gray-800">Custom Dev</h3> |
|
</div> |
|
<p class="text-3xl font-bold text-gray-800 mb-2">QAR 400/hr</p> |
|
<p class="text-gray-600 mb-4">Client-specific work</p> |
|
<div class="bg-yellow-50 p-3 rounded-lg"> |
|
<p class="text-yellow-700 font-medium">80% margin (cost = QAR 80/hr)</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="advantages" class="py-16 bg-gray-100"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold text-gray-800 mb-4">Financial Advantage</h2> |
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">High-margin business model with predictable revenue streams</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8 items-center"> |
|
<div> |
|
<div class="bg-white p-6 rounded-xl shadow-sm mb-6"> |
|
<h3 class="text-xl font-bold text-gray-800 mb-4">Revenue Streams</h3> |
|
<div class="space-y-4"> |
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="font-medium">Setup Fees</span> |
|
<span class="font-bold">QAR 395K/client</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-blue-600 h-2.5 rounded-full" style="width: 100%"></div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="font-medium">Recurring SaaS</span> |
|
<span class="font-bold">QAR 25K–30K/month</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-green-600 h-2.5 rounded-full" style="width: 75%"></div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="font-medium">Support Fees</span> |
|
<span class="font-bold">QAR 25K/month</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-purple-600 h-2.5 rounded-full" style="width: 60%"></div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<div class="flex justify-between mb-1"> |
|
<span class="font-medium">Custom Development</span> |
|
<span class="font-bold">QAR 400/hour</span> |
|
</div> |
|
<div class="w-full bg-gray-200 rounded-full h-2.5"> |
|
<div class="bg-yellow-600 h-2.5 rounded-full" style="width: 80%"></div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-white p-6 rounded-xl shadow-sm"> |
|
<h3 class="text-xl font-bold text-gray-800 mb-4">Year 1 Goals</h3> |
|
<div class="grid grid-cols-2 gap-4"> |
|
<div class="bg-blue-50 p-4 rounded-lg text-center"> |
|
<p class="text-3xl font-bold text-blue-700">10</p> |
|
<p class="text-gray-600">Clients onboarded</p> |
|
</div> |
|
<div class="bg-green-50 p-4 rounded-lg text-center"> |
|
<p class="text-3xl font-bold text-green-700">QAR 4M+</p> |
|
<p class="text-gray-600">Revenue</p> |
|
</div> |
|
<div class="bg-purple-50 p-4 rounded-lg text-center"> |
|
<p class="text-3xl font-bold text-purple-700">60%+</p> |
|
<p class="text-gray-600">Blended margin</p> |
|
</div> |
|
<div class="bg-yellow-50 p-4 rounded-lg text-center"> |
|
<p class="text-3xl font-bold text-yellow-700">90%</p> |
|
<p class="text-gray-600">Client retention</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div> |
|
<div class="bg-white p-8 rounded-xl shadow-sm"> |
|
<h3 class="text-xl font-bold text-gray-800 mb-6">Implementation Timeline</h3> |
|
<div class="timeline"> |
|
<div class="timeline-item"> |
|
<h4 class="font-bold text-gray-800 mb-1">Discovery & Planning</h4> |
|
<p class="text-gray-600 text-sm">Week 1-2: Requirements gathering and solution design</p> |
|
</div> |
|
<div class="timeline-item"> |
|
<h4 class="font-bold text-gray-800 mb-1">Configuration</h4> |
|
<p class="text-gray-600 text-sm">Week 3-4: System setup and branding customization</p> |
|
</div> |
|
<div class="timeline-item"> |
|
<h4 class="font-bold text-gray-800 mb-1">Data Migration</h4> |
|
<p class="text-gray-600 text-sm">Week 5: Secure transfer of existing client data</p> |
|
</div> |
|
<div class="timeline-item"> |
|
<h4 class="font-bold text-gray-800 mb-1">Testing & Training</h4> |
|
<p class="text-gray-600 text-sm">Week 6: User acceptance testing and staff training</p> |
|
</div> |
|
<div class="timeline-item"> |
|
<h4 class="font-bold text-gray-800 mb-1">Go-Live</h4> |
|
<p class="text-gray-600 text-sm">Week 7: System launch and transition support</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section id="team" class="py-16 bg-white"> |
|
<div class="container mx-auto px-4"> |
|
<div class="text-center mb-16"> |
|
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Team</h2> |
|
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Experienced professionals covering the Gulf region</p> |
|
</div> |
|
|
|
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
|
<div class="bg-gray-50 p-6 rounded-xl text-center card-hover"> |
|
<div class="w-32 h-32 mx-auto mb-4 rounded-full bg-blue-100 flex items-center justify-center"> |
|
<i class="fas fa-user-tie text-blue-600 text-4xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-800 mb-1">Sales Managers</h3> |
|
<p class="text-gray-600 mb-3">Covering Qatar, KSA, and UAE markets</p> |
|
<div class="flex justify-center space-x-2"> |
|
<span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Business Development</span> |
|
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Client Relations</span> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl text-center card-hover"> |
|
<div class="w-32 h-32 mx-auto mb-4 rounded-full bg-purple-100 flex items-center justify-center"> |
|
<i class="fas fa-tasks text-purple-600 text-4xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-800 mb-1">Product Manager</h3> |
|
<p class="text-gray-600 mb-3">In-house platform expert</p> |
|
<div class="flex justify-center space-x-2"> |
|
<span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Roadmap</span> |
|
<span class="bg-yellow-100 text-yellow-800 text-xs px-3 py-1 rounded-full">Features</span> |
|
</div> |
|
</div> |
|
|
|
<div class="bg-gray-50 p-6 rounded-xl text-center card-hover"> |
|
<div class="w-32 h-32 mx-auto mb-4 rounded-full bg-green-100 flex items-center justify-center"> |
|
<i class="fas fa-hard-hat text-green-600 text-4xl"></i> |
|
</div> |
|
<h3 class="text-xl font-bold text-gray-800 mb-1">PMD SME</h3> |
|
<p class="text-gray-600 mb-3">Project Management Domain Specialist</p> |
|
<div class="flex justify-center space-x-2"> |
|
<span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Implementation</span> |
|
<span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Consulting</span> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="mt-12 bg-blue-50 rounded-xl p-8"> |
|
<div class="flex flex-col md:flex-row items-center"> |
|
<div class="md:w-1/2 mb-6 md:mb-0"> |
|
<h3 class="text-2xl font-bold text-gray-800 mb-3">Delivery Partners</h3> |
|
<p class="text-gray-600">Implementation delivered via internal resources or through our trusted subcontractor Seeroo for specialized requirements.</p> |
|
</div> |
|
<div class="md:w-1/2 flex justify-center"> |
|
<div class="bg-white p-4 rounded-lg shadow-sm inline-block"> |
|
<div class="flex items-center"> |
|
<div class="bg-blue-100 p-3 rounded-lg mr-4"> |
|
<i class="fas fa-handshake text-blue-600 text-2xl"></i> |
|
</div> |
|
<div> |
|
<p class="font-bold text-gray-800">Seeroo Consulting</p> |
|
<p class="text-sm text-gray-600">Trusted implementation partner</p> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<section class="py-16 gradient-bg text-white"> |
|
<div class="container mx-auto px-4 text-center"> |
|
<h2 class="text-3xl font-bold mb-6">Ready to Transform Your Real Estate Management?</h2> |
|
<p class="text-xl mb-8 max-w-2xl mx-auto">ASHRE CRM offers a complete digital solution with exceptional financial benefits for your organization.</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-gray-800 hover:bg-gray-100 px-8 py-3 rounded-lg font-bold shadow-lg transition duration-300"> |
|
Request Demo <i class="fas fa-chevron-right ml-2"></i> |
|
</button> |
|
<button class="border border-white hover:bg-blue-700 px-8 py-3 rounded-lg font-medium transition duration-300"> |
|
Contact Sales |
|
</button> |
|
</div> |
|
</div> |
|
</section> |
|
|
|
|
|
<footer id="contact" class="bg-gray-900 text-white py-12"> |
|
<div class="container mx-auto px-4"> |
|
<div class="grid grid-cols-1 md:grid-cols-4 gap-8"> |
|
<div> |
|
<div class="flex items-center space-x-2 mb-4"> |
|
<i class="fas fa-building text-xl text-blue-400"></i> |
|
<h3 class="text-xl font-bold">ASHRE CRM</h3> |
|
</div> |
|
<p class="text-gray-400 mb-4">A product of Al Shareef Holding</p> |
|
<p class="text-gray-400">Digitally transforming real estate management in the Gulf region.</p> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-lg font-bold mb-4">Quick Links</h4> |
|
<ul class="space-y-2"> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Features</a></li> |
|
<li><a href="#" class="text-gray-400 hover:text-white transition">Pricing</a></li> |
|
<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">Documentation</a></li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-lg font-bold mb-4">Contact</h4> |
|
<ul class="space-y-2"> |
|
<li class="flex items-center"> |
|
<i class="fas fa-map-marker-alt text-blue-400 mr-2"></i> |
|
<span class="text-gray-400">Doha, Qatar</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-phone text-blue-400 mr-2"></i> |
|
<span class="text-gray-400">+974 1234 5678</span> |
|
</li> |
|
<li class="flex items-center"> |
|
<i class="fas fa-envelope text-blue-400 mr-2"></i> |
|
<span class="text-gray-400">[email protected]</span> |
|
</li> |
|
</ul> |
|
</div> |
|
|
|
<div> |
|
<h4 class="text-lg font-bold mb-4">Follow Us</h4> |
|
<div class="flex space-x-4 mb-4"> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-600 transition"> |
|
<i class="fab fa-linkedin-in"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-blue-400 transition"> |
|
<i class="fab fa-twitter"></i> |
|
</a> |
|
<a href="#" class="w-10 h-10 rounded-full bg-gray-800 flex items-center justify-center hover:bg-red-600 transition"> |
|
<i class="fab fa-youtube"></i> |
|
</a> |
|
</div> |
|
<p class="text-gray-400 text-sm">Subscribe to our newsletter</p> |
|
<div class="flex mt-2"> |
|
<input type="email" placeholder="Your email" class="bg-gray-800 text-white px-4 py-2 rounded-l focus:outline-none w-full"> |
|
<button class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded-r"> |
|
<i class="fas fa-paper-plane"></i> |
|
</button> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<div class="border-t border-gray-800 mt-8 pt-8 flex flex-col md:flex-row justify-between items-center"> |
|
<p class="text-gray-400 text-sm mb-4 md:mb-0">© 2023 ASHRE CRM. All rights reserved.</p> |
|
<div class="flex space-x-6"> |
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Privacy Policy</a> |
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Terms of Service</a> |
|
<a href="#" class="text-gray-400 hover:text-white text-sm">Cookie Policy</a> |
|
</div> |
|
</div> |
|
</div> |
|
</footer> |
|
|
|
<script> |
|
|
|
document.querySelector('button[class*="md:hidden"]').addEventListener('click', function() { |
|
const nav = document.querySelector('nav[class*="hidden"]'); |
|
nav.classList.toggle('hidden'); |
|
nav.classList.toggle('flex'); |
|
nav.classList.toggle('flex-col'); |
|
nav.classList.toggle('absolute'); |
|
nav.classList.toggle('top-16'); |
|
nav.classList.toggle('left-0'); |
|
nav.classList.toggle('right-0'); |
|
nav.classList.toggle('bg-gray-800'); |
|
nav.classList.toggle('p-4'); |
|
nav.classList.toggle('space-y-4'); |
|
nav.classList.toggle('space-x-0'); |
|
nav.classList.toggle('z-50'); |
|
}); |
|
|
|
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
|
anchor.addEventListener('click', function (e) { |
|
e.preventDefault(); |
|
|
|
document.querySelector(this.getAttribute('href')).scrollIntoView({ |
|
behavior: 'smooth' |
|
}); |
|
|
|
|
|
const nav = document.querySelector('nav'); |
|
if (!nav.classList.contains('hidden')) { |
|
nav.classList.add('hidden'); |
|
nav.classList.remove('flex', 'flex-col', 'absolute', 'top-16', 'left-0', 'right-0', 'bg-gray-800', 'p-4', 'space-y-4', 'space-x-0', 'z-50'); |
|
} |
|
}); |
|
}); |
|
|
|
|
|
function animateOnScroll() { |
|
const elements = document.querySelectorAll('.card-hover, .stat-card'); |
|
|
|
elements.forEach(element => { |
|
const elementPosition = element.getBoundingClientRect().top; |
|
const screenPosition = window.innerHeight / 1.2; |
|
|
|
if (elementPosition < screenPosition) { |
|
element.style.opacity = '1'; |
|
element.style.transform = 'translateY(0)'; |
|
} |
|
}); |
|
} |
|
|
|
|
|
document.querySelectorAll('.card-hover, .stat-card').forEach(element => { |
|
element.style.opacity = '0'; |
|
element.style.transform = 'translateY(20px)'; |
|
element.style.transition = 'all 0.5s ease'; |
|
}); |
|
|
|
|
|
window.addEventListener('load', animateOnScroll); |
|
window.addEventListener('scroll', animateOnScroll); |
|
</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=emad600/ash" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
|
</html> |