Janjua Estate

Janjua Estate

Real Estate Investment with Real-Time Research & Statistical Analysis

Our Vision

At Janjua Estate, we redefine luxury real estate by integrating cutting-edge research and statistical analysis into every investment decision. Our data-driven approach ensures unparalleled insights, empowering our clients to make informed choices in a dynamic market. We are committed to fostering enduring relationships built on trust, transparency, and exceptional results. Our mission is to elevate your real estate portfolio with precision and foresight.

We combine deep market understanding with innovative technology to identify prime opportunities and mitigate risks. Janjua Estate is where legacy meets future, creating value that stands the test of time.

+1500
Properties Managed
25%
Average ROI
10+
Years Experience
+500M
Assets Under Management

Our Premium Services

Market Intelligence

Leverage our proprietary real-time market data and statistical models to gain an unfair advantage in identifying investment opportunities and trends.

Portfolio Management

Expert management of your real estate assets, optimizing for growth, income generation, and long-term value appreciation.

Property Acquisition

From initial search to negotiation and closing, our team ensures a seamless and strategic acquisition process for prime properties.

Development Consulting

Guidance through every stage of property development, ensuring projects align with market demand and maximize profitability.

Luxury Sales

Discreet and effective marketing strategies for the sale of high-value properties, connecting with an exclusive network of buyers.

Global Investment

Expand your horizons with our expertise in international real estate markets, offering diversified and secure investment avenues.

Connect With Us

usama.abid@agency21.com.pk

+92 334 5228621

Janjua Estate, Luxury Property Group

// Entrance Overlay Animation window.addEventListener('load', () => { const entranceOverlay = document.querySelector('.entrance-overlay'); setTimeout(() => { entranceOverlay.style.opacity = '0'; setTimeout(() => { entranceOverlay.style.display = 'none'; }, 1500); // Matches the transition duration }, 1000); // Delay before starting fade out }); // Particles.js initialization for Hero Section particlesJS('particles-js', { "particles": { "number": { "value": 80, "density": { "enable": true, "value_area": 800 } }, "color": { "value": "#C9A84C" // Gold particles }, "shape": { "type": "circle", "stroke": { "width": 0, "color": "#C9A84C" }, "polygon": { "nb_sides": 5 } }, "opacity": { "value": 0.5, "random": false, "anim": { "enable": false, "speed": 1, "opacity_min": 0.1, "sync": false } }, "size": { "value": 3, "random": true, "anim": { "enable": false, "speed": 40, "size_min": 0.1, "sync": false } }, "line_linked": { "enable": true, "distance": 150, "color": "#C9A84C", "opacity": 0.4, "width": 1 }, "move": { "enable": true, "speed": 2, "direction": "none", "random": false, "straight": false, "out_mode": "out", "bounce": false, "attract": { "enable": false, "rotateX": 600, "rotateY": 1200 } } }, "interactivity": { "detect_on": "canvas", "events": { "onhover": { "enable": true, "mode": "grab" }, "onclick": { "enable": true, "mode": "push" }, "resize": true }, "modes": { "grab": { "distance": 140, "line_linked": { "opacity": 1 } }, "bubble": { "distance": 400, "size": 40, "duration": 2, "opacity": 8, "speed": 3 }, "repulse": { "distance": 200, "duration": 0.4 }, "push": { "particles_nb": 4 }, "remove": { "particles_nb": 2 } } }, "retina_detect": true }); // Animated Counters for About Section document.addEventListener('DOMContentLoaded', () => { const counters = document.querySelectorAll('.number'); const speed = 200; // The lower the speed, the faster the count const animateCounter = (counter) => { const target = +counter.getAttribute('data-target').replace(/[+%,M]/g, ''); let current = 0; let increment = target / speed; const updateCounter = () => { if (current < target) { current += increment; let displayValue = Math.floor(current); if (counter.getAttribute('data-target').includes('M')) { displayValue = Math.round(current / 10) / 100 + 'M'; // Adjust for million formatting } else if (counter.getAttribute('data-target').includes('%')) { displayValue += '%'; } else if (counter.getAttribute('data-target').includes('+')) { displayValue += '+'; } counter.innerText = displayValue; setTimeout(updateCounter, 1); } else { counter.innerText = counter.getAttribute('data-target'); } }; updateCounter(); }; const options = { root: null, // viewport rootMargin: '0px', threshold: 0.5 // Trigger when 50% of the item is visible }; const observer = new IntersectionObserver((entries, observer) => { entries.forEach(entry => { if (entry.isIntersecting) { animateCounter(entry.target); observer.unobserve(entry.target); // Stop observing once animated } }); }, options); counters.forEach(counter => { observer.observe(counter); }); });