Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Manas Prop | Premium Real Estate Solutions</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'); | |
body { | |
font-family: 'Poppins', sans-serif; | |
scroll-behavior: smooth; | |
} | |
.hero-gradient { | |
background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #1d4ed8 100%); | |
} | |
.property-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.testimonial-card { | |
transition: all 0.3s ease; | |
} | |
.testimonial-card:hover { | |
transform: scale(1.03); | |
} | |
.nav-link { | |
position: relative; | |
} | |
.nav-link::after { | |
content: ''; | |
position: absolute; | |
width: 0; | |
height: 2px; | |
bottom: -2px; | |
left: 0; | |
background-color: #3b82f6; | |
transition: width 0.3s ease; | |
} | |
.nav-link:hover::after { | |
width: 100%; | |
} | |
.scroll-top { | |
animation: bounce 2s infinite; | |
} | |
@keyframes bounce { | |
0%, 20%, 50%, 80%, 100% { | |
transform: translateY(0); | |
} | |
40% { | |
transform: translateY(-10px); | |
} | |
60% { | |
transform: translateY(-5px); | |
} | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-lg sticky top-0 z-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fas fa-building text-blue-600 text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-gray-900">Manas Prop</span> | |
</div> | |
</div> | |
<div class="hidden md:flex items-center space-x-8"> | |
<a href="#home" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a> | |
<a href="#properties" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Properties</a> | |
<a href="#services" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Services</a> | |
<a href="#about" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a> | |
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a> | |
<button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> | |
Get Started | |
</button> | |
</div> | |
<div class="md:hidden flex items-center"> | |
<button id="mobile-menu-button" class="text-gray-500 hover:text-gray-900 focus:outline-none"> | |
<i class="fas fa-bars text-xl"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
<!-- Mobile menu --> | |
<div id="mobile-menu" class="hidden md:hidden bg-white border-t border-gray-200"> | |
<div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"> | |
<a href="#home" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Home</a> | |
<a href="#properties" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Properties</a> | |
<a href="#services" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Services</a> | |
<a href="#about" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">About</a> | |
<a href="#contact" class="block px-3 py-2 text-base font-medium text-gray-700 hover:text-blue-600 hover:bg-gray-50">Contact</a> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium mt-2 transition duration-300"> | |
Get Started | |
</button> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section id="home" class="hero-gradient text-white py-20"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="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 leading-tight mb-4">Find Your Dream Property With <span class="text-blue-300">Manas Prop</span></h1> | |
<p class="text-lg text-blue-100 mb-8">We connect you with the best properties in the market. Whether you're buying, selling or renting, we've got you covered.</p> | |
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4"> | |
<button class="bg-white text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-md font-medium transition duration-300"> | |
Explore Properties | |
</button> | |
<button class="border-2 border-white text-white hover:bg-white hover:bg-opacity-10 px-6 py-3 rounded-md font-medium transition duration-300"> | |
Contact Agent | |
</button> | |
</div> | |
</div> | |
<div class="md:w-1/2 relative"> | |
<img src="https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1473&q=80" alt="Luxury Home" class="rounded-lg shadow-2xl w-full h-auto"> | |
<div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg hidden md:block"> | |
<div class="flex items-center"> | |
<div class="bg-blue-100 p-3 rounded-full mr-4"> | |
<i class="fas fa-home text-blue-600 text-xl"></i> | |
</div> | |
<div> | |
<p class="text-gray-500 text-sm">Properties Listed</p> | |
<p class="text-gray-900 font-bold text-xl">1,250+</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Search Section --> | |
<section class="bg-white py-12 -mt-8 relative z-10"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="bg-white rounded-xl shadow-lg p-6"> | |
<h2 class="text-2xl font-bold text-gray-800 mb-6">Find Your Perfect Home</h2> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-4"> | |
<div> | |
<label class="block text-sm font-medium text-gray-700 mb-1">Location</label> | |
<select class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"> | |
<option>Select City</option> | |
<option>New York</option> | |
<option>Los Angeles</option> | |
<option>Chicago</option> | |
<option>Houston</option> | |
</select> | |
</div> | |
<div> | |
<label class="block text-sm font-medium text-gray-700 mb-1">Property Type</label> | |
<select class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"> | |
<option>All Types</option> | |
<option>Apartment</option> | |
<option>Villa</option> | |
<option>Townhouse</option> | |
<option>Commercial</option> | |
</select> | |
</div> | |
<div> | |
<label class="block text-sm font-medium text-gray-700 mb-1">Price Range</label> | |
<select class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"> | |
<option>Any Price</option> | |
<option>$100k - $300k</option> | |
<option>$300k - $500k</option> | |
<option>$500k - $1M</option> | |
<option>$1M+</option> | |
</select> | |
</div> | |
<div class="flex items-end"> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md font-medium transition duration-300"> | |
Search Properties | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Featured Properties --> | |
<section id="properties" class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Featured Properties</h2> | |
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Discover our handpicked selection of premium properties that match your lifestyle</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<!-- Property 1 --> | |
<div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Modern Apartment" class="w-full h-64 object-cover"> | |
<div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-xs font-medium"> | |
For Sale | |
</div> | |
<div class="absolute bottom-4 left-4 bg-white text-blue-600 px-3 py-1 rounded-full text-xs font-medium"> | |
$450,000 | |
</div> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Modern Luxury Apartment</h3> | |
<p class="text-gray-600 mb-4 flex items-center"> | |
<i class="fas fa-map-marker-alt text-blue-500 mr-2"></i> | |
Downtown, New York | |
</p> | |
<div class="flex justify-between text-sm text-gray-500 border-b border-gray-200 pb-4 mb-4"> | |
<span class="flex items-center"> | |
<i class="fas fa-bed text-blue-500 mr-1"></i> 3 Beds | |
</span> | |
<span class="flex items-center"> | |
<i class="fas fa-bath text-blue-500 mr-1"></i> 2 Baths | |
</span> | |
<span class="flex items-center"> | |
<i class="fas fa-ruler-combined text-blue-500 mr-1"></i> 1,450 sqft | |
</span> | |
</div> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> | |
View Details | |
</button> | |
</div> | |
</div> | |
<!-- Property 2 --> | |
<div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1600585154340-be6161a56a0c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Luxury Villa" class="w-full h-64 object-cover"> | |
<div class="absolute top-4 right-4 bg-green-600 text-white px-3 py-1 rounded-full text-xs font-medium"> | |
For Rent | |
</div> | |
<div class="absolute bottom-4 left-4 bg-white text-blue-600 px-3 py-1 rounded-full text-xs font-medium"> | |
$3,200/mo | |
</div> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Luxury Beachfront Villa</h3> | |
<p class="text-gray-600 mb-4 flex items-center"> | |
<i class="fas fa-map-marker-alt text-blue-500 mr-2"></i> | |
Malibu, California | |
</p> | |
<div class="flex justify-between text-sm text-gray-500 border-b border-gray-200 pb-4 mb-4"> | |
<span class="flex items-center"> | |
<i class="fas fa-bed text-blue-500 mr-1"></i> 4 Beds | |
</span> | |
<span class="flex items-center"> | |
<i class="fas fa-bath text-blue-500 mr-1"></i> 3 Baths | |
</span> | |
<span class="flex items-center"> | |
<i class="fas fa-ruler-combined text-blue-500 mr-1"></i> 2,800 sqft | |
</span> | |
</div> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> | |
View Details | |
</button> | |
</div> | |
</div> | |
<!-- Property 3 --> | |
<div class="property-card bg-white rounded-lg overflow-hidden shadow-md transition duration-300"> | |
<div class="relative"> | |
<img src="https://images.unsplash.com/photo-1605276374104-dee2a0ed3cd6?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Townhouse" class="w-full h-64 object-cover"> | |
<div class="absolute top-4 right-4 bg-blue-600 text-white px-3 py-1 rounded-full text-xs font-medium"> | |
For Sale | |
</div> | |
<div class="absolute bottom-4 left-4 bg-white text-blue-600 px-3 py-1 rounded-full text-xs font-medium"> | |
$320,000 | |
</div> | |
</div> | |
<div class="p-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Charming Townhouse</h3> | |
<p class="text-gray-600 mb-4 flex items-center"> | |
<i class="fas fa-map-marker-alt text-blue-500 mr-2"></i> | |
Boston, Massachusetts | |
</p> | |
<div class="flex justify-between text-sm text-gray-500 border-b border-gray-200 pb-4 mb-4"> | |
<span class="flex items-center"> | |
<i class="fas fa-bed text-blue-500 mr-1"></i> 2 Beds | |
</span> | |
<span class="flex items-center"> | |
<i class="fas fa-bath text-blue-500 mr-1"></i> 2 Baths | |
</span> | |
<span class="flex items-center"> | |
<i class="fas fa-ruler-combined text-blue-500 mr-1"></i> 1,200 sqft | |
</span> | |
</div> | |
<button class="w-full bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-300"> | |
View Details | |
</button> | |
</div> | |
</div> | |
</div> | |
<div class="text-center mt-10"> | |
<button class="bg-white border-2 border-blue-600 text-blue-600 hover:bg-blue-50 px-6 py-3 rounded-md font-medium transition duration-300"> | |
View All Properties | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Services Section --> | |
<section id="services" class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Services</h2> | |
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Comprehensive real estate services tailored to your needs</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Service 1 --> | |
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-lg transition duration-300"> | |
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-4"> | |
<i class="fas fa-home text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-3">Property Sales</h3> | |
<p class="text-gray-600 mb-4">We help you find the perfect property that matches your needs and budget with our extensive network and market expertise.</p> | |
<a href="#" class="text-blue-600 font-medium flex items-center"> | |
Learn More <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Service 2 --> | |
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-lg transition duration-300"> | |
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-4"> | |
<i class="fas fa-key text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-3">Property Rental</h3> | |
<p class="text-gray-600 mb-4">Find your ideal rental property with our curated selection of apartments, houses, and commercial spaces in prime locations.</p> | |
<a href="#" class="text-blue-600 font-medium flex items-center"> | |
Learn More <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
<!-- Service 3 --> | |
<div class="bg-gray-50 rounded-lg p-6 hover:shadow-lg transition duration-300"> | |
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mb-4"> | |
<i class="fas fa-search-dollar text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-3">Property Valuation</h3> | |
<p class="text-gray-600 mb-4">Get accurate property valuations from our team of experts to make informed decisions about buying or selling real estate.</p> | |
<a href="#" class="text-blue-600 font-medium flex items-center"> | |
Learn More <i class="fas fa-arrow-right ml-2"></i> | |
</a> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section id="about" class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<img src="https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="About Manas Prop" class="rounded-lg shadow-lg w-full"> | |
</div> | |
<div class="md:w-1/2 md:pl-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-6">About Manas Prop</h2> | |
<p class="text-gray-600 mb-6">Founded in 2010, Manas Prop has grown to become one of the most trusted names in real estate. Our team of dedicated professionals is committed to providing exceptional service and helping clients navigate the complex real estate market.</p> | |
<div class="space-y-4 mb-8"> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-2 rounded-full mr-4"> | |
<i class="fas fa-check text-blue-600"></i> | |
</div> | |
<div> | |
<h4 class="font-medium text-gray-800 mb-1">15+ Years Experience</h4> | |
<p class="text-gray-600">Our team brings decades of combined experience in the real estate industry.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-2 rounded-full mr-4"> | |
<i class="fas fa-check text-blue-600"></i> | |
</div> | |
<div> | |
<h4 class="font-medium text-gray-800 mb-1">1,250+ Properties Sold</h4> | |
<p class="text-gray-600">We've helped thousands of clients find their dream homes and investments.</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-100 p-2 rounded-full mr-4"> | |
<i class="fas fa-check text-blue-600"></i> | |
</div> | |
<div> | |
<h4 class="font-medium text-gray-800 mb-1">98% Client Satisfaction</h4> | |
<p class="text-gray-600">Our commitment to excellence has earned us an outstanding satisfaction rate.</p> | |
</div> | |
</div> | |
</div> | |
<button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium transition duration-300"> | |
Learn More About Us | |
</button> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Testimonials --> | |
<section class="py-16 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">What Our Clients Say</h2> | |
<p class="text-lg text-gray-600 max-w-2xl mx-auto">Hear from people who have experienced our exceptional service</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
<!-- Testimonial 1 --> | |
<div class="testimonial-card bg-gray-50 rounded-lg p-8"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 mb-6">"Manas Prop made the entire home buying process seamless. Their attention to detail and market knowledge helped us find our dream home within our budget."</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Sarah Johnson" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-medium text-gray-800">Sarah Johnson</h4> | |
<p class="text-gray-500 text-sm">Home Buyer</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 2 --> | |
<div class="testimonial-card bg-gray-50 rounded-lg p-8"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 mb-6">"As an investor, I appreciate Manas Prop's deep understanding of market trends. They've helped me build a profitable portfolio over the years."</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Michael Chen" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-medium text-gray-800">Michael Chen</h4> | |
<p class="text-gray-500 text-sm">Real Estate Investor</p> | |
</div> | |
</div> | |
</div> | |
<!-- Testimonial 3 --> | |
<div class="testimonial-card bg-gray-50 rounded-lg p-8"> | |
<div class="flex items-center mb-4"> | |
<div class="text-yellow-400 mr-2"> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
<i class="fas fa-star"></i> | |
</div> | |
</div> | |
<p class="text-gray-600 mb-6">"The team at Manas Prop sold my property above asking price in just 2 weeks! Their marketing strategy and negotiation skills are unmatched."</p> | |
<div class="flex items-center"> | |
<img src="https://randomuser.me/api/portraits/women/68.jpg" alt="Emily Rodriguez" class="w-12 h-12 rounded-full mr-4"> | |
<div> | |
<h4 class="font-medium text-gray-800">Emily Rodriguez</h4> | |
<p class="text-gray-500 text-sm">Home Seller</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section id="contact" class="py-16 bg-gray-50"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="bg-white rounded-xl shadow-lg overflow-hidden"> | |
<div class="flex flex-col md:flex-row"> | |
<div class="md:w-1/2 bg-blue-600 text-white p-12"> | |
<h2 class="text-3xl font-bold mb-6">Get In Touch</h2> | |
<p class="text-blue-100 mb-8">Have questions about properties or our services? Our team is ready to help you with all your real estate needs.</p> | |
<div class="space-y-6"> | |
<div class="flex items-start"> | |
<div class="bg-blue-500 p-3 rounded-full mr-4"> | |
<i class="fas fa-map-marker-alt"></i> | |
</div> | |
<div> | |
<h4 class="font-medium mb-1">Our Office</h4> | |
<p class="text-blue-100">123 Real Estate Ave, Suite 400<br>New York, NY 10001</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-500 p-3 rounded-full mr-4"> | |
<i class="fas fa-phone-alt"></i> | |
</div> | |
<div> | |
<h4 class="font-medium mb-1">Phone Number</h4> | |
<p class="text-blue-100">+1 (555) 123-4567</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="bg-blue-500 p-3 rounded-full mr-4"> | |
<i class="fas fa-envelope"></i> | |
</div> | |
<div> | |
<h4 class="font-medium mb-1">Email Address</h4> | |
<p class="text-blue-100">[email protected]</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="md:w-1/2 p-12"> | |
<h3 class="text-2xl font-bold text-gray-800 mb-6">Send Us a Message</h3> | |
<form> | |
<div class="grid grid-cols-1 gap-6"> | |
<div> | |
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Your Name</label> | |
<input type="text" id="name" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div> | |
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email Address</label> | |
<input type="email" id="email" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div> | |
<label for="phone" class="block text-sm font-medium text-gray-700 mb-1">Phone Number</label> | |
<input type="tel" id="phone" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"> | |
</div> | |
<div> | |
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Your Message</label> | |
<textarea id="message" rows="4" class="w-full px-4 py-2 border border-gray-300 rounded-md focus:ring-blue-500 focus:border-blue-500"></textarea> | |
</div> | |
<div> | |
<button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white px-6 py-3 rounded-md font-medium transition duration-300"> | |
Send Message | |
</button> | |
</div> | |
</div> | |
</form> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Newsletter --> | |
<section class="py-16 bg-blue-600 text-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center"> | |
<h2 class="text-3xl font-bold mb-4">Subscribe to Our Newsletter</h2> | |
<p class="text-blue-100 max-w-2xl mx-auto mb-8">Stay updated with the latest property listings, market trends, and real estate news delivered straight to your inbox.</p> | |
<div class="max-w-md mx-auto flex"> | |
<input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 rounded-l-md focus:outline-none text-gray-800"> | |
<button class="bg-blue-800 hover:bg-blue-900 px-6 py-3 rounded-r-md font-medium transition duration-300"> | |
Subscribe | |
</button> | |
</div> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 text-white pt-16 pb-8"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12"> | |
<div> | |
<div class="flex items-center mb-4"> | |
<i class="fas fa-building text-blue-400 text-2xl mr-2"></i> | |
<span class="text-xl font-bold">Manas Prop</span> | |
</div> | |
<p class="text-gray-400 mb-4">Premium real estate services with a commitment to excellence and client satisfaction.</p> | |
<div class="flex space-x-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300"> | |
<i class="fab fa-linkedin-in"></i> | |
</a> | |
</div> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">Quick Links</h4> | |
<ul class="space-y-2"> | |
<li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> | |
<li><a href="#properties" class="text-gray-400 hover:text-white transition duration-300">Properties</a></li> | |
<li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">Services</a></li> | |
<li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> | |
<li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">Services</h4> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Property Sales</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Property Rental</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Property Valuation</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Investment Properties</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Property Management</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold mb-4">Contact Info</h4> | |
<ul class="space-y-2 text-gray-400"> | |
<li class="flex items-start"> | |
<i class="fas fa-map-marker-alt text-blue-400 mt-1 mr-3"></i> | |
<span>123 Real Estate Ave, Suite 400<br>New York, NY 10001</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-phone-alt text-blue-400 mr-3"></i> | |
<span>+1 (555) 123-4567</span> | |
</li> | |
<li class="flex items-center"> | |
<i class="fas fa-envelope text-blue-400 mr-3"></i> | |
<span>[email protected]</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
<div class="border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
<p class="text-gray-400 mb-4 md:mb-0">© 2023 Manas Prop. All rights reserved.</p> | |
<div class="flex space-x-6"> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Privacy Policy</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Terms of Service</a> | |
<a href="#" class="text-gray-400 hover:text-white transition duration-300">Sitemap</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<!-- Scroll to Top Button --> | |
<button id="scroll-top" class="fixed bottom-8 right-8 bg-blue-600 text-white w-12 h-12 rounded-full flex items-center justify-center shadow-lg scroll-top hidden"> | |
<i class="fas fa-arrow-up"></i> | |
</button> | |
<script> | |
// Mobile menu toggle | |
const mobileMenuButton = document.getElementById('mobile-menu-button'); | |
const mobileMenu = document.getElementById('mobile-menu'); | |
mobileMenuButton.addEventListener('click', () => { | |
mobileMenu.classList.toggle('hidden'); | |
}); | |
// Scroll to top button | |
const scrollTopButton = document.getElementById('scroll-top'); | |
window.addEventListener('scroll', () => { | |
if (window.pageYOffset > 300) { | |
scrollTopButton.classList.remove('hidden'); | |
} else { | |
scrollTopButton.classList.add('hidden'); | |
} | |
}); | |
scrollTopButton.addEventListener('click', () => { | |
window.scrollTo({ | |
top: 0, | |
behavior: 'smooth' | |
}); | |
}); | |
// Smooth scrolling for navigation links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function(e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
window.scrollTo({ | |
top: targetElement.offsetTop - 80, | |
behavior: 'smooth' | |
}); | |
// Close mobile menu if open | |
if (!mobileMenu.classList.contains('hidden')) { | |
mobileMenu.classList.add('hidden'); | |
} | |
} | |
}); | |
}); | |
</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=Tony369/manas-prop" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |