<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lahu Capital Partners | Full-Service Real Estate Solutions</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
line-height: 1.6;
color: #1a2332;
overflow-x: hidden;
}
/* Navigation */
nav {
position: fixed;
width: 100%;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
padding: 1.2rem 5%;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}
.logo-container {
display: flex;
align-items: center;
gap: 1rem;
}
.logo-bars {
display: flex;
gap: 4px;
}
.bar {
width: 12px;
height: 40px;
border-radius: 2px;
}
.bar1 { background: #E8989E; }
.bar2 { background: #E05858; }
.bar3 { background: #D20000; }
.logo-text {
display: flex;
flex-direction: column;
}
.logo-main {
font-size: 1.3rem;
font-weight: 300;
letter-spacing: 0.05em;
color: #1a2332;
}
.logo-sub {
font-size: 0.75rem;
color: #6b7280;
font-weight: 300;
letter-spacing: 0.05em;
}
.nav-links {
display: flex;
gap: 3rem;
list-style: none;
}
.nav-links a {
text-decoration: none;
color: #1a2332;
font-weight: 400;
font-size: 0.95rem;
transition: color 0.3s;
}
.nav-links a:hover {
color: #D20000;
}
/* Hero Section */
.hero {
min-height: 100vh;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
position: relative;
overflow: hidden;
padding: 8rem 2rem 4rem;
}
.hero::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 60%;
height: 100%;
background: linear-gradient(135deg, rgba(226,88,88,0.03) 0%, rgba(210,0,0,0.05) 100%);
clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
}
.hero h1 {
font-size: 4.5rem;
margin-bottom: 1.5rem;
font-weight: 300;
color: #1a2332;
letter-spacing: -0.02em;
animation: fadeInUp 0.8s ease;
}
.hero .accent {
color: #D20000;
font-weight: 400;
}
.hero p {
font-size: 1.4rem;
margin-bottom: 3rem;
color: #6b7280;
font-weight: 300;
animation: fadeInUp 0.8s ease 0.2s both;
}
.cta-button {
display: inline-block;
padding: 1rem 3rem;
background: #D20000;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 400;
font-size: 1rem;
transition: all 0.3s;
animation: fadeInUp 0.8s ease 0.4s both;
letter-spacing: 0.03em;
}
.cta-button:hover {
background: #b30000;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(210, 0, 0, 0.2);
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Services Section */
.services {
padding: 8rem 5%;
background: white;
}
.section-title {
text-align: center;
font-size: 3rem;
margin-bottom: 1rem;
color: #1a2332;
font-weight: 300;
letter-spacing: -0.02em;
}
.section-subtitle {
text-align: center;
font-size: 1.1rem;
color: #6b7280;
margin-bottom: 4rem;
font-weight: 300;
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
max-width: 1200px;
margin: 0 auto;
}
.service-card {
background: #f8f9fa;
padding: 3rem 2rem;
border-radius: 8px;
transition: all 0.3s;
border: 1px solid transparent;
}
.service-card:hover {
transform: translateY(-5px);
border-color: #E8989E;
background: white;
box-shadow: 0 10px 40px rgba(210, 0, 0, 0.08);
}
.service-number {
font-size: 2.5rem;
font-weight: 300;
color: #D20000;
margin-bottom: 1rem;
}
.service-card h3 {
color: #1a2332;
margin-bottom: 1rem;
font-size: 1.5rem;
font-weight: 400;
}
.service-card p {
color: #6b7280;
line-height: 1.8;
font-weight: 300;
}
/* About Section */
.about {
padding: 8rem 5%;
background: #f8f9fa;
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 5rem;
align-items: center;
max-width: 1200px;
margin: 0 auto;
}
.about-text h2 {
font-size: 3rem;
color: #1a2332;
margin-bottom: 2rem;
font-weight: 300;
letter-spacing: -0.02em;
}
.about-text p {
color: #6b7280;
line-height: 1.9;
margin-bottom: 1.5rem;
font-size: 1.05rem;
font-weight: 300;
}
.about-stats {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
margin-top: 3rem;
}
.stat {
text-align: center;
padding: 2rem;
background: white;
border-radius: 8px;
}
.stat-number {
font-size: 2.5rem;
color: #D20000;
font-weight: 400;
margin-bottom: 0.5rem;
}
.stat-label {
color: #6b7280;
font-size: 0.9rem;
font-weight: 300;
}
.about-visual {
height: 500px;
background: linear-gradient(135deg, #E8989E 0%, #E05858 50%, #D20000 100%);
border-radius: 8px;
position: relative;
overflow: hidden;
}
.about-visual::after {
content: '';
position: absolute;
top: 20%;
left: 20%;
width: 60%;
height: 60%;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
transform: rotate(15deg);
}
/* Contact Section */
.contact {
padding: 8rem 5%;
background: #1a2332;
color: white;
text-align: center;
}
.contact h2 {
font-size: 3rem;
margin-bottom: 1rem;
font-weight: 300;
letter-spacing: -0.02em;
}
.contact p {
font-size: 1.2rem;
margin-bottom: 3rem;
color: #9ca3af;
font-weight: 300;
}
.contact-button {
display: inline-block;
padding: 1rem 3rem;
background: #D20000;
color: white;
text-decoration: none;
border-radius: 4px;
font-weight: 400;
font-size: 1rem;
transition: all 0.3s;
letter-spacing: 0.03em;
}
.contact-button:hover {
background: #b30000;
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(210, 0, 0, 0.3);
}
/* Footer */
footer {
background: #0f1419;
color: #9ca3af;
text-align: center;
padding: 2rem;
font-size: 0.9rem;
font-weight: 300;
}
/* Responsive */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.1rem;
}
.nav-links {
display: none;
}
.about-content {
grid-template-columns: 1fr;
}
.services-grid {
grid-template-columns: 1fr;
}
.section-title {
font-size: 2rem;
}
.about-text h2 {
font-size: 2rem;
}
.contact h2 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<nav>
<div class="logo-container">
<div class="logo-bars">
<div class="bar bar1"></div>
<div class="bar bar2"></div>
<div class="bar bar3"></div>
</div>
<div class="logo-text">
<div class="logo-main">LAHU CAPITAL PARTNERS</div>
<div class="logo-sub">Real Estate | Construction | Management</div>
</div>
</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<section id="home" class="hero">
<div class="hero-content">
<h1>Your Complete <span class="accent">Real Estate</span> Solution</h1>
<p>From brokerage to construction, management to funding — we handle it all</p>
<a href="#contact" class="cta-button">Start Your Project</a>
</div>
</section>
<section id="services" class="services">
<h2 class="section-title">What We Do</h2>
<p class="section-subtitle">Comprehensive real estate services tailored to your needs</p>
<div class="services-grid">
<div class="service-card">
<div class="service-number">01</div>
<h3>Brokerage</h3>
<p>Expert representation for buyers and sellers. We navigate complex transactions with precision, ensuring you get the best possible outcome for your real estate investments.</p>
</div>
<div class="service-card">
<div class="service-number">02</div>
<h3>Construction</h3>
<p>From ground-up development to strategic renovations, our construction team delivers quality projects on time and within budget, bringing your vision to life.</p>
</div>
<div class="service-card">
<div class="service-number">03</div>
<h3>Management</h3>
<p>Professional property management services that maximize returns and minimize hassle. We handle everything from tenant relations to maintenance and financials.</p>
</div>
<div class="service-card">
<div class="service-number">04</div>
<h3>Funding</h3>
<p>Strategic capital solutions and creative financing options. We connect you with the right funding sources to make your real estate projects possible.</p>
</div>
</div>
</section>
<section id="about" class="about">
<div class="about-content">
<div class="about-text">
<h2>Built on Experience, Driven by Results</h2>
<p>Lahu Capital Partners is a full-service real estate firm that brings together brokerage, construction, management, and funding under one roof. Our integrated approach means seamless coordination and superior outcomes for every project.</p>
<p>We believe in building lasting relationships with our clients by delivering exceptional service, transparent communication, and measurable results. Whether you're buying your first property or managing a diverse portfolio, we have the expertise to help you succeed.</p>
<div class="about-stats">
<div class="stat">
<div class="stat-number">500+</div>
<div class="stat-label">Properties Managed</div>
</div>
<div class="stat">
<div class="stat-number">$2B+</div>
<div class="stat-label">Transaction Volume</div>
</div>
<div class="stat">
<div class="stat-number">20+</div>
<div class="stat-label">Years Experience</div>
</div>
<div class="stat">
<div class="stat-number">100%</div>
<div class="stat-label">Client Satisfaction</div>
</div>
</div>
</div>
<div class="about-visual"></div>
</div>
</section>
<section id="contact" class="contact">
<h2>Let's Build Something Together</h2>
<p>Ready to take the next step in your real estate journey?</p>
<a href="mailto:info@lahucapital.com" class="contact-button">Get In Touch</a>
</section>
<footer>
<p>© 2024 Lahu Capital Partners. All rights reserved.</p>
</footer>
</body>
</html>