Architecture & Design Build  ·  Chandigarh, India

Building with purpose.

Est. 2019  ·  Design-Build Practice
Scroll
KOARC Studio
2019
Founded
6+
Years
100%
Design-Build
The Inner Light — Living Room
01  ·  2021  ·  SAS Nagar, Punjab
The Inner Light
Residential
5,000 – 10,000 sq ft
Selected Work
3
Projects
38,800
Sq ft Built
The Inner Light — Staircase
01  ·  2021  ·  SAS Nagar, Punjab
The Inner Light
Residential
The Staircase
About KOARC
Architecture that lives in execution, not just in drawings.
Founded in Chandigarh in 2019, KOARC is a design-build practice working at the intersection of rigorous design thinking and precise construction delivery.

We handle both architecture and structural turnkey construction — from concept through to completion. Interior design is offered as a design-only service.

Our work spans residential homes, student housing, and urban projects across Punjab and the wider region.
2019
Founded
6+
Years of Practice
100%
Design-Build
Our Principles
K
Knowledge
Every project begins with deep understanding of site, brief, and context.
O
Order
Structure, clarity and discipline at every stage of design and delivery.
A
Architecture
Form that is purposeful, enduring, and grounded in its environment.
R
Relevance
Design that responds to how people actually live, work, and move.
C
Craft
Attention to material, detail, and execution — from drawing to building.
Selected Work
The Inner Light
01 · 2021
The Inner Light
Residential  ·  SAS Nagar, Punjab
02 · 2025
White Rock Hostel
Student Housing  ·  Raipur Kalan  ·  22,000 sq ft
Cornerstone
03 · 2025
Cornerstone
Residential  ·  Sector 125, Mohali  ·  6,800 sq ft
Park View
04 · 2025
Park View
Residential  ·  Upcoming
Projects coming soon.
Interior Design · KOARC Studio
Projects coming soon.
Urban & Master Planning · KOARC Studio
Projects coming soon.
Design Build · KOARC Studio
The Team
Founder & Principal Architect
Harman
Sodhi
B.Arch from CCA and an MBA in entrepreneurship. Harman founded KOARC in Chandigarh in 2019 with a clear goal: to build a practice recognised as much for its execution as its design.

At KOARC, he shapes the vision from the first sketch to the last detail on site.

Outside of work: ideas, business, strategy, photography, and any conversation with real depth.
"My goal is to grow KOARC into one of India's best architecture practices — where our work is seen globally and recognised for its quality and thought."
Architectural Assistant
Jagmohan
Diploma in Architecture, College of Military Engineering, Pune. Over 20 years across Army, Air Force and Navy projects. Vastu Praveena certified. CAD, 3D, technical drawings, MEP.
Interior Designer
Aarti
Focused on spaces that feel both functional and personal. Works closely with the architecture team so interiors and buildings speak the same language.
Junior Architect
Gaurav
Brings attention to detail and a willingness to adapt to every brief. Focused on spaces that are functional and visually considered.
Get in Touch
Let's talk about your project.
Address
SCF 34, Ground Floor, Phase 5, Mohali
Hours
Monday – Saturday   9:00 – 18:00 IST
KOARC works with private clients, developers, and institutions across Punjab, Haryana, and beyond.

Whether you're planning a home, a commercial building, or a larger development — we'd like to hear from you.
The Inner Light
Project Hero
ProjectThe Inner Light
Year2021
TypologyResidential
LocationSAS Nagar, Punjab
Area6,800 sq ft
KOARC
KOARC
KOARC Studio
Online
* Required fields
/* ═══ KOARC CHATBOT JS ═══ */ (function() { var bot = document.getElementById('chatbot'); var msgs = document.getElementById('cb-msgs'); var typing = document.getElementById('cb-typing'); var inputWrap = document.getElementById('cb-input-wrap'); var textarea = document.getElementById('cb-textarea'); var sendBtn = document.getElementById('cb-send'); var selectedService = ''; var chatOpened = false; function now() { var d = new Date(); return d.getHours().toString().padStart(2,'0') + ':' + d.getMinutes().toString().padStart(2,'0'); } function addMsg(text, who, delay) { return new Promise(function(resolve) { setTimeout(function() { // Hide typing typing.classList.remove('on'); var wrap = document.createElement('div'); wrap.className = 'cb-msg ' + who; var bubble = document.createElement('div'); bubble.className = 'cb-msg-text'; bubble.innerHTML = text; var time = document.createElement('div'); time.className = 'cb-msg-time'; time.textContent = now(); wrap.appendChild(bubble); wrap.appendChild(time); msgs.insertBefore(wrap, typing); msgs.scrollTop = msgs.scrollHeight; resolve(wrap); }, delay || 0); }); } function showTyping(duration) { return new Promise(function(resolve) { typing.classList.add('on'); msgs.scrollTop = msgs.scrollHeight; setTimeout(function() { resolve(); }, duration || 1000); }); } function addOptions(options) { var wrap = document.createElement('div'); wrap.className = 'cb-msg bot'; var optDiv = document.createElement('div'); optDiv.className = 'cb-options'; options.forEach(function(opt, i) { var btn = document.createElement('button'); btn.className = 'cb-opt'; btn.innerHTML = '0'+(i+1)+' '+opt.label; btn.onclick = function() { // Remove options wrap.remove(); // Show user selection as bubble addMsg(opt.label, 'user', 0); selectedService = opt.label; // Bot responds setTimeout(function() { showTyping(900).then(function() { addMsg('Please fill in your details below and we\'ll be in touch.', 'bot', 0); document.getElementById('cb-service-display').textContent = selectedService; inputWrap.classList.add('on'); msgs.scrollTop = msgs.scrollHeight; }); }, 300); }; optDiv.appendChild(btn); }); wrap.appendChild(optDiv); msgs.insertBefore(wrap, typing); msgs.scrollTop = msgs.scrollHeight; } async function startChat() { await showTyping(800); await addMsg('Hello! Welcome to KOARC Studio.', 'bot', 0); await showTyping(700); await addMsg('How may I assist you today?', 'bot', 0); setTimeout(function() { addOptions([ { label: 'Architecture' }, { label: 'Interior Design' }, { label: 'Design Build' }, { label: 'Urban & Master Planning' }, ]); }, 400); } window.cbOpen = function() { bot.classList.add('open'); document.getElementById('cb-bubble').style.display = 'none'; if (!chatOpened) { chatOpened = true; startChat(); } }; window.cbClose = function() { bot.classList.remove('open'); document.getElementById('cb-bubble').style.display = 'flex'; }; /* Auto-open when hero video ends */ window.cbAutoOpen = function() { if (!chatOpened) { window.cbOpen(); } }; /* Send handler */ window.cbSend = function() { var text = textarea.value.trim(); if (!text) return; sendBtn.disabled = true; inputWrap.classList.remove('on'); addMsg(text, 'user', 0); // Send to WhatsApp via wa.me (backend-style — opens silently via hidden form) var waMsg = encodeURIComponent( '🏢 *New KOARC Inquiry*\n\n' + '*Service:* ' + selectedService + '\n\n' + '*Details:*\n' + text ); // Silent background POST to formsubmit.co (email fallback) fetch('https://formsubmit.co/ajax/koarcstudio@gmail.com', { method: 'POST', headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' }, body: JSON.stringify({ _subject: 'New KOARC inquiry — ' + selectedService, service: selectedService, details: text, _template: 'table' }) }).catch(function(){}); // Also open WhatsApp with pre-filled message var waWin = window.open('https://wa.me/919646365051?text=' + waMsg, '_blank'); // Show confirmation showTyping(1200).then(function() { addMsg('Thank you! Your inquiry has been received.', 'bot', 0); }).then(function() { return showTyping(900); }).then(function() { addMsg('A dedicated team member from KOARC will be assigned to your project and will get back to you shortly. 🙏', 'bot', 0); }); }; /* Trigger chatbot open when hero video ends */ var hv = document.getElementById('hero-video'); if (hv) { hv.addEventListener('ended', function() { setTimeout(function() { window.cbAutoOpen(); }, 800); }); } })();