<html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin="">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
background: #050505;
color: #ffffff;
line-height: 1.7;
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}
section {
padding: 120px 0;
position: relative;
}
.eyebrow {
color: #8b8b8b;
text-transform: uppercase;
letter-spacing: 0.25em;
font-size: 12px;
margin-bottom: 20px;
}
h1 {
font-size: 72px;
line-height: 1.05;
font-weight: 800;
letter-spacing: -2px;
}
h2 {
font-size: 48px;
line-height: 1.1;
font-weight: 700;
letter-spacing: -1px;
}
h3 {
font-size: 24px;
font-weight: 600;
}
p {
color: #b3b3b3;
font-size: 18px;
}
.hero {
border-bottom: 1px solid rgba(255,255,255,0.08);
overflow: hidden;
}
.hero-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 80px;
align-items: center;
}
.hero p {
margin-top: 32px;
max-width: 700px;
}
.buttons {
display: flex;
gap: 16px;
margin-top: 40px;
flex-wrap: wrap;
}
.btn {
padding: 16px 28px;
border-radius: 16px;
font-weight: 600;
text-decoration: none;
transition: all 0.25s ease;
display: inline-block;
}
.btn-primary {
background: white;
color: black;
}
.btn-primary:hover {
transform: translateY(-2px);
}
.btn-secondary {
border: 1px solid rgba(255,255,255,0.1);
background: rgba(255,255,255,0.03);
color: white;
}
.hero-card {
background: rgba(255,255,255,0.03);
border: 1px solid rgba(255,255,255,0.08);
border-radius: 32px;
padding: 40px;
backdrop-filter: blur(20px);
position: relative;
}
.stats-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.stat-box {
background: #101010;
border: 1px solid rgba(255,255,255,0.06);
border-radius: 24px;
padding: 28px;
}
.stat-box.large {
grid-column: span 2;
}
.stat-number {
font-size: 42px;
font-weight: 700;
}
.stat-label {
margin-top: 10px;
font-size: 14px;
color: #888;
}
.two-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.image-placeholder {
height: 450px;
border-radius: 32px;
background: linear-gradient(135deg, #121212, #1e1e1e);
border: 1px solid rgba(255,255,255,0.08);
display: flex;
align-items: center;
justify-content: center;
color: #666;
font-size: 18px;
}
.section-bg {
background: rgba(255,255,255,0.02);
border-top: 1px solid rgba(255,255,255,0.08);
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.section-heading {
text-align: center;
max-width: 800px;
margin: 0 auto 80px;
}
.card-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.card {
background: #0f0f0f;
border: 1px solid rgba(255,255,255,0.08);
border-radius: 28px;
padding: 32px;
transition: all 0.25s ease;
}
.card:hover {
transform: translateY(-5px);
border-color: rgba(255,255,255,0.15);
}
.step-number {
width: 52px;
height: 52px;
border-radius: 16px;
background: white;
color: black;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
margin-bottom: 24px;
}
.card p {
margin-top: 14px;
font-size: 15px;
}
.values-grid,
.services-grid,
.cases-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 70px;
}
.case-card {
overflow: hidden;
border-radius: 28px;
border: 1px solid rgba(255,255,255,0.08);
background: #0f0f0f;
}
.case-image1 {
height: 220px;
background: url(https://cdn.prod.website-files.com/69efbebf26af63e0471157d9/6a0258974792a25760658514_IMG_7058.JPG);
background-size: cover;
}
.case-image2 {
height: 220px;
background: url(https://cdn.prod.website-files.com/69efbebf26af63e0471157d9/6a0258963cd80699253d8343_IMG_7060.JPG);
background-size: cover;
}
.case-image3 {
height: 220px;
background: url(https://cdn.prod.website-files.com/69efbebf26af63e0471157d9/6a025896273dd05b7869f46c_IMG_7059.JPG);
background-size: cover;
}
.case-content {
padding: 36px;
}
.case-content p {
margin-top: 18px;
font-size: 15px;
}
.cta {
text-align: center;
background: linear-gradient(180deg, #0b0b0b, #050505);
border-top: 1px solid rgba(255,255,255,0.08);
}
.cta p {
max-width: 800px;
margin: 30px auto 0;
}
@media(max-width: 1024px) {
h1 {
font-size: 56px;
}
h2 {
font-size: 40px;
}
.hero-grid,
.two-column,
.card-grid,
.values-grid,
.services-grid,
.cases-grid {
grid-template-columns: 1fr;
}
.hero-grid {
gap: 60px;
}
}
@media(max-width: 768px) {
section {
padding: 90px 0;
}
h1 {
font-size: 44px;
}
h2 {
font-size: 34px;
}
p {
font-size: 16px;
}
.container {
padding: 0 20px;
}
}
</style>
</head>
<body>
<!-- HERO -->
<section class="hero">
<div class="container hero-grid">
<div>
<div class="eyebrow">Infrastructure • DevOps • Operations</div>
<h1>
Helping Businesses Scale Through Technology & Operational Excellence
</h1>
<p>
We help companies modernize infrastructure, automate operations, optimize workflows, and build scalable systems - allowing teams to focus on growth instead of operational complexity.
</p>
<div class="buttons">
<a href="#" class="btn btn-primary">View Case Studies</a>
<a href="#" class="btn btn-secondary">Book a Consultation</a>
</div>
</div>
<div class="hero-card">
<div class="stats-grid">
<div class="stat-box">
<div class="stat-number">35%</div>
<div class="stat-label">Infrastructure Cost Reduction</div>
</div>
<div class="stat-box">
<div class="stat-number">20m</div>
<div class="stat-label">Deployment Time</div>
</div>
<div class="stat-box large">
<h3>Operational Focus</h3>
<p>
Helping businesses reduce operational overhead through automation, infrastructure modernization, integrations, and scalable systems.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- WHO WE ARE -->
<section>
<div class="container two-column">
<div class="image-placeholder"></div>
<div>
<div class="eyebrow">Who We Are</div>
<h2>
Technology & Operations Partners for Growing Businesses
</h2>
<p style="margin-top: 28px;">
We partner with companies to solve operational and technical challenges through practical, scalable, and results-driven solutions.
</p>
<p style="margin-top: 22px;">
From infrastructure modernization and DevOps automation to middleware integrations and communication systems, we help businesses improve efficiency, reliability, and scalability.
</p>
</div>
</div>
</section>
<!-- HOW WE WORK -->
<section class="section-bg">
<div class="container">
<div class="section-heading">
<div class="eyebrow">How We Work</div>
<h2>
A Structured Approach Built Around Business Results
</h2>
</div>
<div class="card-grid">
<div class="card">
<div class="step-number">1</div>
<h3>Discovery</h3>
<p>
We analyze your systems, workflows, and operational bottlenecks to identify opportunities for optimization.
</p>
</div>
<div class="card">
<div class="step-number">2</div>
<h3>Strategy</h3>
<p>
We design scalable technical and operational solutions aligned with your business goals.
</p>
</div>
<div class="card">
<div class="step-number">3</div>
<h3>Implementation</h3>
<p>
We deploy infrastructure, automation, integrations, and optimized processes with minimal disruption.
</p>
</div>
<div class="card">
<div class="step-number">4</div>
<h3>Optimization</h3>
<p>
We continuously improve performance, reliability, scalability, and operational efficiency.
</p>
</div>
</div>
</div>
</section>
<!-- MISSION -->
<section>
<div class="container">
<div class="section-heading">
<div class="eyebrow">Mission & Values</div>
<h2>
Focus on What You Do Best - Outsource the Rest
</h2>
<p>
We help businesses reduce operational complexity so internal teams can focus on growth, innovation, and core business priorities.
</p>
</div>
<div class="values-grid">
<div class="card">
<h3>Efficiency</h3>
<p>Automation and optimization that reduce operational overhead.</p>
</div>
<div class="card">
<h3>Reliability</h3>
<p>Stable and resilient systems designed for business continuity.</p>
</div>
<div class="card">
<h3>Scalability</h3>
<p>Infrastructure and processes built for long-term growth.</p>
</div>
<div class="card">
<h3>Transparency</h3>
<p>Clear communication and honest collaboration throughout every project.</p>
</div>
<div class="card">
<h3>Long-Term Thinking</h3>
<p>Sustainable solutions designed to evolve with your business.</p>
</div>
<div class="card">
<h3>Operational Excellence</h3>
<p>Continuous improvement focused on efficiency, reliability, and performance.</p>
</div>
</div>
</div>
</section>
<!-- SERVICES -->
<section class="section-bg">
<div class="container">
<div class="section-heading">
<div class="eyebrow">Services</div>
<h2>
Solutions Designed for Modern Businesses
</h2>
</div>
<div class="services-grid">
<div class="card">
<h3>Cloud Infrastructure</h3>
<p>Scalable and secure cloud-native infrastructure solutions.</p>
</div>
<div class="card">
<h3>DevOps & CI/CD</h3>
<p>Automated deployment pipelines and operational automation.</p>
</div>
<div class="card">
<h3>Middleware APIs</h3>
<p>Modern integrations between legacy and modern platforms.</p>
</div>
<div class="card">
<h3>System Integrations</h3>
<p>Reliable and scalable business system connectivity.</p>
</div>
<div class="card">
<h3>VoIP & PBX Solutions</h3>
<p>Modern communication systems with high availability.</p>
</div>
<div class="card">
<h3>Monitoring & Automation</h3>
<p>Operational visibility, alerting, and infrastructure automation.</p>
</div>
</div>
</div>
</section>
<!-- CASE STUDIES -->
<section>
<div class="container">
<div class="section-heading">
<div class="eyebrow">Case Studies</div>
<h2>
Real Solutions. Measurable Results.
</h2>
</div>
<div class="cases-grid">
<div class="case-card">
<div class="case-image1"></div>
<div class="case-content">
<h3>Cloud Infrastructure Modernization</h3>
<p>
Reduced deployment times from hours to minutes through Kubernetes and CI/CD automation.
</p>
</div>
</div>
<div class="case-card">
<div class="case-image2"></div>
<div class="case-content">
<h3>PBX Migration to Asterisk</h3>
<p>
Modernized telephony infrastructure with high availability and remote work capabilities.
</p>
</div>
</div>
<div class="case-card">
<div class="case-image3"></div>
<div class="case-content">
<h3>Middleware API Integration</h3>
<p>
Connected modern applications with legacy systems through scalable REST APIs and asynchronous messaging.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<section class="cta">
<div class="container">
<h2>
Let’s Build More Efficient Systems Together
</h2>
<p>
Whether you need infrastructure modernization, DevOps automation, middleware integrations, or operational optimization — we help businesses build scalable and reliable foundations for growth.
</p>
<div class="buttons" style="justify-content:center; margin-top:50px;">
<a href="#" class="btn btn-primary">Contact Us</a>
<a href="#" class="btn btn-secondary">Schedule a Consultation</a>
</div>
</div>
</section>
</body></html>