| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Justice Law Partners | Premier Legal Representation</title> |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> |
| <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script> |
| <style> |
| .hero-section { |
| min-height: 100vh; |
| position: relative; |
| } |
| .vanta-background { |
| position: absolute; |
| top: 0; |
| left: 0; |
| width: 100%; |
| height: 100%; |
| z-index: -1; |
| } |
| .nav-scroll { |
| background: rgba(255, 255, 255, 0.95); |
| backdrop-filter: blur(10px); |
| box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); |
| } |
| .practice-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); |
| } |
| </style> |
| </head> |
| <body class="font-sans antialiased"> |
| <div id="vanta-bg" class="vanta-background"></div> |
| |
| |
| <nav class="fixed w-full z-50 transition-all duration-300" id="navbar"> |
| <div class="container mx-auto px-6 py-4"> |
| <div class="flex justify-between items-center"> |
| <a href="index.html" class="text-2xl font-bold text-blue-900">Justice<span class="text-amber-600">Law</span></a> |
| |
| <div class="hidden md:flex space-x-8"> |
| <a href="index.html" class="text-blue-900 hover:text-amber-600 transition-colors">Home</a> |
| <a href="about.html" class="text-blue-900 hover:text-amber-600 transition-colors">About</a> |
| <a href="services.html" class="text-blue-900 hover:text-amber-600 transition-colors">Services</a> |
| <a href="contact.html" class="text-blue-900 hover:text-amber-600 transition-colors">Contact</a> |
| </div> |
| |
| <button class="md:hidden text-blue-900"> |
| <i data-feather="menu"></i> |
| </button> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section class="hero-section flex items-center justify-center"> |
| <div class="container mx-auto px-6 text-center"> |
| <h1 class="text-5xl md:text-7xl font-bold text-blue-900 mb-6" data-aos="fade-up"> |
| Excellence in <span class="text-amber-600">Legal</span> Representation |
| </h1> |
| <p class="text-xl md:text-2xl text-gray-700 mb-8 max-w-3xl mx-auto" data-aos="fade-up" data-aos-delay="200"> |
| Trusted legal counsel with over 25 years of experience delivering exceptional results for our clients. |
| </p> |
| <div class="flex flex-col sm:flex-row gap-4 justify-center" data-aos="fade-up" data-aos-delay="400"> |
| <a href="#contact" class="bg-amber-600 hover:bg-amber-700 text-white px-8 py-4 rounded-lg font-semibold transition-colors"> |
| Schedule Consultation |
| </a> |
| <a href="services.html" class="border-2 border-blue-900 text-blue-900 hover:bg-blue-900 hover:text-white px-8 py-4 rounded-lg font-semibold transition-colors"> |
| Our Services |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-4xl font-bold text-blue-900 mb-4" data-aos="fade-up">Our Practice Areas</h2> |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200"> |
| Comprehensive legal services tailored to meet your specific needs |
| </p> |
| </div> |
| |
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-white rounded-xl p-8 shadow-lg practice-card transition-all duration-300" data-aos="fade-up"> |
| <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="briefcase" class="text-blue-900 w-8 h-8"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-blue-900 mb-4">Corporate Law</h3> |
| <p class="text-gray-600 mb-6">Business formation, contracts, mergers, acquisitions, and compliance matters.</p> |
| <a href="services.html#corporate" class="text-amber-600 hover:text-amber-700 font-semibold flex items-center"> |
| Learn more |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> |
| </a> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl p-8 shadow-lg practice-card transition-all duration-300" data-aos="fade-up" data-aos-delay="200"> |
| <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="home" class="text-blue-900 w-8 h-8"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-blue-900 mb-4">Real Estate</h3> |
| <p class="text-gray-600 mb-6">Property transactions, leasing, zoning, and real estate litigation.</p> |
| <a href="services.html#realestate" class="text-amber-600 hover:text-amber-700 font-semibold flex items-center"> |
| Learn more |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> |
| </a> |
| </div> |
|
|
| |
| <div class="bg-white rounded-xl p-8 shadow-lg practice-card transition-all duration-300" data-aos="fade-up" data-aos-delay="400"> |
| <div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="users" class="text-blue-900 w-8 h-8"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-blue-900 mb-4">Family Law</h3> |
| <p class="text-gray-600 mb-6">Divorce, child custody, adoption, and domestic relations matters.</p> |
| <a href="services.html#family" class="text-amber-600 hover:text-amber-700 font-semibold flex items-center"> |
| Learn more |
| <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-blue-900 text-white"> |
| <div class="container mx-auto px-6"> |
| <div class="grid md:grid-cols-4 gap-8 text-center"> |
| <div data-aos="fade-up"> |
| <div class="text-4xl font-bold text-amber-600 mb-2">25+</div> |
| <div class="text-lg">Years Experience</div> |
| </div> |
| <div data-aos="fade-up" data-aos-delay="200"> |
| <div class="text-4xl font-bold text-amber-600 mb-2">500+</div> |
| <div class="text-lg">Cases Resolved</div> |
| </div> |
| <div data-aos="fade-up" data-aos-delay="400"> |
| <div class="text-4xl font-bold text-amber-600 mb-2">98%</div> |
| <div class="text-lg">Success Rate</div> |
| </div> |
| <div data-aos="fade-up" data-aos-delay="600"> |
| <div class="text-4xl font-bold text-amber-600 mb-2">24/7</div> |
| <div class="text-lg">Client Support</div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-6"> |
| <div class="text-center mb-16"> |
| <h2 class="text-4xl font-bold text-blue-900 mb-4" data-aos="fade-up">Client Testimonials</h2> |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto" data-aos="fade-up" data-aos-delay="200"> |
| Hear what our clients have to say about our services |
| </p> |
| </div> |
|
|
| <div class="grid md:grid-cols-3 gap-8"> |
| <div class="bg-gray-50 p-8 rounded-xl" data-aos="fade-up"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 bg-blue-900 rounded-full flex items-center justify-center text-white font-bold">JD</div> |
| <div class="ml-4"> |
| <div class="font-semibold">John Doe</div> |
| <div class="text-sm text-gray-600">Corporate Client</div> |
| </div> |
| </div> |
| <p class="text-gray-700">"Exceptional service and expertise. They handled our merger with precision and care."</p> |
| </div> |
|
|
| <div class="bg-gray-50 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="200"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 bg-blue-900 rounded-full flex items-center justify-center text-white font-bold">JS</div> |
| <div class="ml-4"> |
| <div class="font-semibold">Jane Smith</div> |
| <div class="text-sm text-gray-600">Real Estate Client</div> |
| </div> |
| </div> |
| <p class="text-gray-700">"Professional and responsive. Made our property transaction smooth and stress-free."</p> |
| </div> |
|
|
| <div class="bg-gray-50 p-8 rounded-xl" data-aos="fade-up" data-aos-delay="400"> |
| <div class="flex items-center mb-4"> |
| <div class="w-12 h-12 bg-blue-900 rounded-full flex items-center justify-center text-white font-bold">RW</div> |
| <div class="ml-4"> |
| <div class="font-semibold">Robert Wilson</div> |
| <div class="text-sm text-gray-600">Family Law Client</div> |
| </div> |
| </div> |
| <p class="text-gray-700">"Compassionate and knowledgeable. Guided me through a difficult divorce with empathy."</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-6"> |
| <div class="max-w-4xl mx-auto"> |
| <div class="text-center mb-16"> |
| <h2 class="text-4xl font-bold text-blue-900 mb-4" data-aos="fade-up">Contact Us</h2> |
| <p class="text-xl text-gray-600" data-aos="fade-up" data-aos-delay="200"> |
| Ready to discuss your legal needs? We're here to help. |
| </p> |
| </div> |
|
|
| <div class="bg-white rounded-xl p-8 shadow-lg" data-aos="fade-up"> |
| <form class="space-y-6"> |
| <div class="grid md:grid-cols-2 gap-6"> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">First Name</label> |
| <input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-900 focus:border-transparent"> |
| </div> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Last Name</label> |
| <input type="text" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-900 focus:border-transparent"> |
| </div> |
| </div> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Email</label> |
| <input type="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-900 focus:border-transparent"> |
| </div> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Phone</label> |
| <input type="tel" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-900 focus:border-transparent"> |
| </div> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Service Needed</label> |
| <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-900 focus:border-transparent"> |
| <option>Corporate Law</option> |
| <option>Real Estate</option> |
| <option>Family Law</option> |
| <option>Other</option> |
| </select> |
| </div> |
| <div> |
| <label class="block text-sm font-medium text-gray-700 mb-2">Message</label> |
| <textarea rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-900 focus:border-transparent"></textarea> |
| </div> |
| <button type="submit" class="w-full bg-amber-600 hover:bg-amber-700 text-white py-4 px-6 rounded-lg font-semibold transition-colors"> |
| Send Message |
| </button> |
| </form> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-blue-900 text-white py-12"> |
| <div class="container mx-auto px-6"> |
| <div class="grid md:grid-cols-4 gap-8"> |
| <div> |
| <h3 class="text-2xl font-bold mb-4">Justice<span class="text-amber-600">Law</span></h3> |
| <p class="text-gray-300">Providing exceptional legal services with integrity and excellence.</p> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Quick Links</h4> |
| <ul class="space-y-2"> |
| <li><a href="index.html" class="text-gray-300 hover:text-amber-600 transition-colors">Home</a></li> |
| <li><a href="about.html" class="text-gray-300 hover:text-amber-600 transition-colors">About</a></li> |
| <li><a href="services.html" class="text-gray-300 hover:text-amber-600 transition-colors">Services</a></li> |
| <li><a href="contact.html" class="text-gray-300 hover:text-amber-600 transition-colors">Contact</a></li> |
| </ul> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Contact Info</h4> |
| <div class="space-y-2 text-gray-300"> |
| <p>123 Legal Avenue</p> |
| <p>New York, NY 10001</p> |
| <p>info@justicelaw.com</p> |
| <p>(555) 123-4567</p> |
| </div> |
| </div> |
| <div> |
| <h4 class="text-lg font-semibold mb-4">Follow Us</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-300 hover:text-amber-600 transition-colors"> |
| <i data-feather="facebook" class="w-6 h-6"></i> |
| </a> |
| <a href="#" class="text-gray-300 hover:text-amber-600 transition-colors"> |
| <i data-feather="twitter" class="w-6 h-6"></i> |
| </a> |
| <a href="#" class="text-gray-300 hover:text-amber-600 transition-colors"> |
| <i data-feather="linkedin" class="w-6 h-6"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-300"> |
| <p>© 2024 Justice Law Partners. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| AOS.init(); |
| feather.replace(); |
| |
| |
| VANTA.NET({ |
| el: "#vanta-bg", |
| mouseControls: true, |
| touchControls: true, |
| gyroControls: false, |
| minHeight: 200.00, |
| minWidth: 200.00, |
| scale: 1.00, |
| scaleMobile: 1.00, |
| color: 0x1e40af, |
| backgroundColor: 0xf8fafc, |
| points: 12.00, |
| maxDistance: 22.00, |
| spacing: 18.00 |
| }); |
| |
| |
| window.addEventListener('scroll', function() { |
| const navbar = document.getElementById('navbar'); |
| if (window.scrollY > 100) { |
| navbar.classList.add('nav-scroll'); |
| } else { |
| navbar.classList.remove('nav-scroll'); |
| } |
| }); |
| </script> |
| </body> |
| </html> |
|
|