| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Karwan-e-Habib | Hajj & Umrah Travel Services</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"> |
| <link href="https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Montserrat:wght@300;400;600;700&display=swap" rel="stylesheet"> |
| <style> |
| :root { |
| --primary: #046a38; |
| --secondary: #d4af37; |
| --light: #f8f5f0; |
| --dark: #1a1a1a; |
| } |
| |
| body { |
| font-family: 'Montserrat', sans-serif; |
| background-color: var(--light); |
| } |
| |
| .arabic { |
| font-family: 'Amiri', serif; |
| direction: rtl; |
| } |
| |
| .hero-overlay { |
| background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3)); |
| } |
| |
| .islamic-pattern { |
| background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%23046a38" fill-opacity="0.05" d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>'); |
| background-size: 150px; |
| } |
| |
| .testimonial-card { |
| box-shadow: 0 10px 20px rgba(0,0,0,0.1); |
| transition: all 0.3s ease; |
| } |
| |
| .testimonial-card:hover { |
| transform: translateY(-5px); |
| box-shadow: 0 15px 30px rgba(0,0,0,0.2); |
| } |
| |
| .package-card { |
| transition: all 0.3s ease; |
| border: 1px solid rgba(212, 175, 55, 0.3); |
| } |
| |
| .package-card:hover { |
| transform: translateY(-10px); |
| box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04); |
| border: 1px solid var(--secondary); |
| } |
| |
| .feature-icon { |
| width: 60px; |
| height: 60px; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| border-radius: 50%; |
| background-color: rgba(212, 175, 55, 0.1); |
| margin-bottom: 1rem; |
| } |
| |
| .nav-link { |
| position: relative; |
| } |
| |
| .nav-link:after { |
| content: ''; |
| position: absolute; |
| width: 0; |
| height: 2px; |
| bottom: 0; |
| left: 0; |
| background-color: var(--secondary); |
| transition: width 0.3s ease; |
| } |
| |
| .nav-link:hover:after { |
| width: 100%; |
| } |
| |
| .active-nav:after { |
| width: 100%; |
| } |
| |
| .dropdown:hover .dropdown-menu { |
| display: block; |
| } |
| |
| .floating-whatsapp { |
| position: fixed; |
| bottom: 30px; |
| right: 30px; |
| z-index: 100; |
| animation: pulse 2s infinite; |
| } |
| |
| @keyframes pulse { |
| 0% { transform: scale(1); } |
| 50% { transform: scale(1.1); } |
| 100% { transform: scale(1); } |
| } |
| |
| .accordion-content { |
| max-height: 0; |
| overflow: hidden; |
| transition: max-height 0.3s ease-out; |
| } |
| |
| .accordion.active .accordion-content { |
| max-height: 500px; |
| } |
| </style> |
| </head> |
| <body class="text-gray-800"> |
| |
| <div class="bg-green-800 text-white py-2 px-4"> |
| <div class="container mx-auto flex justify-between items-center"> |
| <div class="flex space-x-4 text-sm"> |
| <div class="flex items-center"> |
| <i class="fas fa-phone-alt mr-2"></i> |
| <span>+92 300 1234567</span> |
| </div> |
| <div class="flex items-center"> |
| <i class="fas fa-envelope mr-2"></i> |
| <span>info@karwan-e-habib.com</span> |
| </div> |
| </div> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-white hover:text-yellow-300"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="text-white hover:text-yellow-300"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-white hover:text-yellow-300"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-white hover:text-yellow-300"><i class="fab fa-youtube"></i></a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <nav class="bg-white shadow-md sticky top-0 z-50"> |
| <div class="container mx-auto px-4"> |
| <div class="flex justify-between items-center py-4"> |
| <div class="flex items-center"> |
| <a href="#" class="flex items-center"> |
| <div class="w-12 h-12 bg-green-800 rounded-full flex items-center justify-center text-white font-bold text-xl mr-3">KH</div> |
| <div> |
| <h1 class="text-xl font-bold text-green-800">Karwan-e-Habib</h1> |
| <p class="text-xs text-gray-600">Hajj & Umrah Travel Services</p> |
| </div> |
| </a> |
| </div> |
| |
| <div class="hidden md:flex items-center space-x-8"> |
| <a href="#" class="nav-link active-nav text-green-800 font-medium">Home</a> |
| <div class="dropdown relative"> |
| <a href="#" class="nav-link text-gray-700 hover:text-green-800 font-medium flex items-center"> |
| Packages <i class="fas fa-chevron-down ml-1 text-xs"></i> |
| </a> |
| <div class="dropdown-menu absolute hidden bg-white shadow-lg rounded-md mt-2 py-2 w-48"> |
| <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-800">Hajj Packages</a> |
| <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-800">Umrah Packages</a> |
| <a href="#" class="block px-4 py-2 text-gray-700 hover:bg-green-50 hover:text-green-800">Group Tours</a> |
| </div> |
| </div> |
| <a href="#" class="nav-link text-gray-700 hover:text-green-800 font-medium">Services</a> |
| <a href="#" class="nav-link text-gray-700 hover:text-green-800 font-medium">About Us</a> |
| <a href="#" class="nav-link text-gray-700 hover:text-green-800 font-medium">Gallery</a> |
| <a href="#" class="nav-link text-gray-700 hover:text-green-800 font-medium">Contact</a> |
| <div class="ml-4"> |
| <a href="#" class="bg-green-700 hover:bg-green-800 text-white px-6 py-2 rounded-full font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| |
| <div class="md:hidden"> |
| <button class="text-gray-700 focus:outline-none"> |
| <i class="fas fa-bars text-2xl"></i> |
| </button> |
| </div> |
| </div> |
| </div> |
| </nav> |
|
|
| |
| <section class="relative h-screen flex items-center"> |
| <div class="absolute inset-0 hero-overlay"></div> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80" alt="Kaaba" class="absolute inset-0 w-full h-full object-cover"> |
| |
| <div class="container mx-auto px-4 relative z-10 text-white"> |
| <div class="max-w-2xl"> |
| <h1 class="text-4xl md:text-6xl font-bold mb-6 leading-tight">Begin Your Spiritual Journey With Us</h1> |
| <p class="text-xl mb-8">Karwan-e-Habib provides exceptional Hajj and Umrah services with integrity, care, and spiritual responsibility.</p> |
| <div class="flex flex-wrap gap-4"> |
| <a href="#" class="bg-yellow-600 hover:bg-yellow-700 text-white px-8 py-3 rounded-full font-medium transition duration-300">Book Your Hajj</a> |
| <a href="#" class="bg-green-700 hover:bg-green-800 text-white px-8 py-3 rounded-full font-medium transition duration-300">Book Your Umrah</a> |
| <a href="#" class="bg-white hover:bg-gray-100 text-green-800 px-8 py-3 rounded-full font-medium transition duration-300">Request a Quote</a> |
| </div> |
| </div> |
| </div> |
| |
| <div class="absolute bottom-10 left-0 right-0 flex justify-center"> |
| <a href="#services" class="text-white animate-bounce"> |
| <i class="fas fa-chevron-down text-3xl"></i> |
| </a> |
| </div> |
| </section> |
|
|
| |
| <section id="services" class="py-20 bg-white islamic-pattern"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">OUR SERVICES</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Comprehensive Hajj & Umrah Solutions</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8"> |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="feature-icon mx-auto"> |
| <i class="fas fa-hotel text-2xl text-green-700"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Premium Accommodation</h3> |
| <p class="text-gray-600">5-star hotels within walking distance of the Haram in Makkah and Madinah.</p> |
| </div> |
| |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="feature-icon mx-auto"> |
| <i class="fas fa-plane text-2xl text-green-700"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Flight Arrangements</h3> |
| <p class="text-gray-600">Direct flights with reputable airlines for a comfortable journey.</p> |
| </div> |
| |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="feature-icon mx-auto"> |
| <i class="fas fa-user-tie text-2xl text-green-700"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Expert Guidance</h3> |
| <p class="text-gray-600">Experienced scholars and multilingual guides to assist you throughout.</p> |
| </div> |
| |
| <div class="bg-white p-8 rounded-lg shadow-md text-center hover:shadow-lg transition duration-300"> |
| <div class="feature-icon mx-auto"> |
| <i class="fas fa-id-card text-2xl text-green-700"></i> |
| </div> |
| <h3 class="text-xl font-bold mb-3">Visa Processing</h3> |
| <p class="text-gray-600">Complete visa documentation and processing assistance.</p> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">HAJJ PACKAGES</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Tailored Hajj Experiences</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="package-card bg-white rounded-lg overflow-hidden shadow-md"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1549060279-7e168fcee0c2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Economy Hajj" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 right-4 bg-yellow-600 text-white px-3 py-1 rounded-full text-sm font-medium">Popular</div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Economy Hajj Package</h3> |
| <p class="text-gray-600 mb-4">Perfect for budget-conscious pilgrims seeking a spiritual journey.</p> |
| <div class="flex items-center mb-4"> |
| <span class="text-3xl font-bold text-green-700">PKR 1,199,700</span> |
| <span class="text-gray-500 ml-2">/person</span> |
| </div> |
| <ul class="mb-6 space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>3-star hotel accommodation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Group transportation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Daily meals included</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Experienced group leader</span> |
| </li> |
| </ul> |
| <a href="#" class="block text-center bg-green-700 hover:bg-green-800 text-white py-3 rounded-lg font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| |
| |
| <div class="package-card bg-white rounded-lg overflow-hidden shadow-md transform scale-105"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1526397751294-331021109fbd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Premium Hajj" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 right-4 bg-green-700 text-white px-3 py-1 rounded-full text-sm font-medium">Recommended</div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Premium Hajj Package</h3> |
| <p class="text-gray-600 mb-4">Enhanced comfort and convenience for your spiritual journey.</p> |
| <div class="flex items-center mb-4"> |
| <span class="text-3xl font-bold text-green-700">PKR 1,799,700</span> |
| <span class="text-gray-500 ml-2">/person</span> |
| </div> |
| <ul class="mb-6 space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>4-star hotel near Haram</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Private transportation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Buffet meals included</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Scholar-led guidance</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Ziyarat tours included</span> |
| </li> |
| </ul> |
| <a href="#" class="block text-center bg-yellow-600 hover:bg-yellow-700 text-white py-3 rounded-lg font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| |
| |
| <div class="package-card bg-white rounded-lg overflow-hidden shadow-md"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1520250497591-1123d6a5eaa8?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="VIP Hajj" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 right-4 bg-purple-600 text-white px-3 py-1 rounded-full text-sm font-medium">Luxury</div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">VIP Hajj Package</h3> |
| <p class="text-gray-600 mb-4">Ultimate comfort and personalized service for your sacred journey.</p> |
| <div class="flex items-center mb-4"> |
| <span class="text-3xl font-bold text-green-700">PKR 2,699,700</span> |
| <span class="text-gray-500 ml-2">/person</span> |
| </div> |
| <ul class="mb-6 space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>5-star hotel with Haram view</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Private luxury transportation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Premium dining options</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Personal assistant</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Exclusive ziyarat tours</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>24/7 concierge service</span> |
| </li> |
| </ul> |
| <a href="#" class="block text-center bg-green-700 hover:bg-green-800 text-white py-3 rounded-lg font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-flex items-center text-green-700 font-medium hover:text-green-800"> |
| View All Hajj Packages <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">UMRAH PACKAGES</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Flexible Umrah Options</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| |
| <div class="package-card bg-white rounded-lg overflow-hidden shadow-md border border-gray-100"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1565992441121-4367c2967103?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Short Stay Umrah" class="w-full h-48 object-cover"> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Short Stay Umrah</h3> |
| <p class="text-gray-600 mb-4">7-10 days spiritual journey perfect for busy schedules.</p> |
| <div class="flex items-center mb-4"> |
| <span class="text-3xl font-bold text-green-700">PKR 449,700</span> |
| <span class="text-gray-500 ml-2">/person</span> |
| </div> |
| <ul class="mb-6 space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>3-star hotel accommodation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Return flights included</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Group transportation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Basic guidance</span> |
| </li> |
| </ul> |
| <a href="#" class="block text-center bg-green-700 hover:bg-green-800 text-white py-3 rounded-lg font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| |
| |
| <div class="package-card bg-white rounded-lg overflow-hidden shadow-md border border-gray-100"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Family Umrah" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 right-4 bg-yellow-600 text-white px-3 py-1 rounded-full text-sm font-medium">Family Deal</div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Family Umrah Package</h3> |
| <p class="text-gray-600 mb-4">Special arrangements for families with children.</p> |
| <div class="flex items-center mb-4"> |
| <span class="text-3xl font-bold text-green-700">PKR 1,199,700</span> |
| <span class="text-gray-500 ml-2">/family of 4</span> |
| </div> |
| <ul class="mb-6 space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>4-star family rooms</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Return flights included</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Private transportation</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Child-friendly services</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Family guidance</span> |
| </li> |
| </ul> |
| <a href="#" class="block text-center bg-yellow-600 hover:bg-yellow-700 text-white py-3 rounded-lg font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| |
| |
| <div class="package-card bg-white rounded-lg overflow-hidden shadow-md border border-gray-100"> |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Ramadan Umrah" class="w-full h-48 object-cover"> |
| <div class="absolute top-4 right-4 bg-green-700 text-white px-3 py-1 rounded-full text-sm font-medium">Ramadan Special</div> |
| </div> |
| <div class="p-6"> |
| <h3 class="text-xl font-bold mb-2">Ramadan Umrah</h3> |
| <p class="text-gray-600 mb-4">Experience the blessings of Umrah in the holy month.</p> |
| <div class="flex items-center mb-4"> |
| <span class="text-3xl font-bold text-green-700">PKR 749,700</span> |
| <span class="text-gray-500 ml-2">/person</span> |
| </div> |
| <ul class="mb-6 space-y-2"> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>4-star hotel near Haram</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Return flights included</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Iftar and Suhoor</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Taraweeh arrangements</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-check-circle text-green-600 mr-2"></i> |
| <span>Spiritual programs</span> |
| </li> |
| </ul> |
| <a href="#" class="block text-center bg-green-700 hover:bg-green-800 text-white py-3 rounded-lg font-medium transition duration-300">Book Now</a> |
| </div> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-flex items-center text-green-700 font-medium hover:text-green-800"> |
| View All Umrah Packages <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">WHY CHOOSE US</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Our Commitment to Excellence</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center"> |
| <div> |
| <div class="mb-8"> |
| <div class="flex items-start mb-6"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-award text-green-700 text-xl"></i> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Licensed & Accredited</h3> |
| <p class="text-gray-600">We are fully licensed by the Saudi Ministry of Hajj and Umrah and accredited by all relevant authorities.</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start mb-6"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-users text-green-700 text-xl"></i> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Experienced Team</h3> |
| <p class="text-gray-600">Our team has over 15 years of experience organizing Hajj and Umrah journeys with thousands of satisfied pilgrims.</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start mb-6"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-hands-helping text-green-700 text-xl"></i> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">Personalized Service</h3> |
| <p class="text-gray-600">We provide personalized attention to each pilgrim, ensuring a comfortable and spiritually fulfilling journey.</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-headset text-green-700 text-xl"></i> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold mb-2">24/7 Support</h3> |
| <p class="text-gray-600">Our dedicated support team is available round the clock to assist you before, during, and after your journey.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="relative"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Team" class="w-full rounded-lg shadow-xl"> |
| <div class="absolute -bottom-6 -left-6 bg-white p-6 rounded-lg shadow-lg w-3/4"> |
| <div class="flex items-center"> |
| <div class="bg-green-700 text-white p-3 rounded-full mr-4"> |
| <i class="fas fa-star text-xl"></i> |
| </div> |
| <div> |
| <h3 class="text-xl font-bold">Trusted by Thousands</h3> |
| <p class="text-gray-600">Over 10,000 pilgrims have traveled with us since 2008.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-20 grid grid-cols-2 md:grid-cols-4 gap-6 text-center"> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-4xl font-bold text-green-700 mb-2">15+</div> |
| <div class="text-gray-600">Years Experience</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-4xl font-bold text-green-700 mb-2">10K+</div> |
| <div class="text-gray-600">Satisfied Pilgrims</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-4xl font-bold text-green-700 mb-2">50+</div> |
| <div class="text-gray-600">Dedicated Staff</div> |
| </div> |
| <div class="bg-white p-6 rounded-lg shadow-sm"> |
| <div class="text-4xl font-bold text-green-700 mb-2">100%</div> |
| <div class="text-gray-600">Visa Success Rate</div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">TESTIMONIALS</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">What Our Pilgrims Say</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> |
| <div class="testimonial-card bg-white p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-500 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">"Karwan-e-Habib made my Hajj journey seamless and spiritually fulfilling. Their attention to detail and caring staff made all the difference."</p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/men/32.jpg" alt="Ahmed Khan" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Ahmed Khan</h4> |
| <p class="text-gray-500 text-sm">Hajj 2022</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="testimonial-card bg-white p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-500 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">"Our family Umrah with Karwan-e-Habib was exceptional. They took care of everything so we could focus on our ibadah. Highly recommended!"</p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/women/44.jpg" alt="Fatima Ahmed" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Fatima Ahmed</h4> |
| <p class="text-gray-500 text-sm">Family Umrah 2023</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="testimonial-card bg-white p-8 rounded-lg"> |
| <div class="flex items-center mb-4"> |
| <div class="text-yellow-500 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 VIP Hajj package was worth every penny. From the luxurious accommodation to the personal guide, everything was perfect. JazakAllah khair!"</p> |
| <div class="flex items-center"> |
| <img src="https://randomuser.me/api/portraits/men/75.jpg" alt="Abdul Rahman" class="w-12 h-12 rounded-full mr-4"> |
| <div> |
| <h4 class="font-bold">Abdul Rahman</h4> |
| <p class="text-gray-500 text-sm">VIP Hajj 2023</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">GALLERY</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Moments from Our Journeys</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-2 md:grid-cols-4 gap-4"> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 1" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 2" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 3" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 4" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 5" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 6" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 7" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| <div class="overflow-hidden rounded-lg"> |
| <img src="https://images.unsplash.com/photo-1519817650390-64a93db51149?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" alt="Gallery 8" class="w-full h-full object-cover transition duration-300 hover:scale-110"> |
| </div> |
| </div> |
| |
| <div class="text-center mt-12"> |
| <a href="#" class="inline-flex items-center text-green-700 font-medium hover:text-green-800"> |
| View Full Gallery <i class="fas fa-arrow-right ml-2"></i> |
| </a> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-white"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">FAQ</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Frequently Asked Questions</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="max-w-3xl mx-auto"> |
| <div class="accordion mb-4 border-b border-gray-200 pb-4"> |
| <button class="accordion-btn flex justify-between items-center w-full text-left font-medium text-lg"> |
| <span>What documents do I need for Hajj/Umrah?</span> |
| <i class="fas fa-plus text-green-700"></i> |
| </button> |
| <div class="accordion-content mt-2 text-gray-600"> |
| <p>You will need a valid passport with at least 6 months validity, passport-sized photographs, proof of vaccination (especially meningitis), and other documents we will guide you through during the application process.</p> |
| </div> |
| </div> |
| |
| <div class="accordion mb-4 border-b border-gray-200 pb-4"> |
| <button class="accordion-btn flex justify-between items-center w-full text-left font-medium text-lg"> |
| <span>How far in advance should I book my Hajj package?</span> |
| <i class="fas fa-plus text-green-700"></i> |
| </button> |
| <div class="accordion-content mt-2 text-gray-600"> |
| <p>We recommend booking at least 6-8 months in advance for Hajj as packages fill up quickly and visa processing takes time. For Umrah, 2-3 months in advance is usually sufficient, except during peak seasons like Ramadan when earlier booking is advised.</p> |
| </div> |
| </div> |
| |
| <div class="accordion mb-4 border-b border-gray-200 pb-4"> |
| <button class="accordion-btn flex justify-between items-center w-full text-left font-medium text-lg"> |
| <span>What is included in your Hajj packages?</span> |
| <i class="fas fa-plus text-green-700"></i> |
| </button> |
| <div class="accordion-content mt-2 text-gray-600"> |
| <p>Our Hajj packages typically include visa processing, round-trip flights, accommodation in Makkah and Madinah, transportation in Saudi Arabia, meals (depending on package), guidance from experienced scholars, and ziyarat tours. Please check individual package details for specifics.</p> |
| </div> |
| </div> |
| |
| <div class="accordion mb-4 border-b border-gray-200 pb-4"> |
| <button class="accordion-btn flex justify-between items-center w-full text-left font-medium text-lg"> |
| <span>Can I perform Umrah during Hajj season?</span> |
| <i class="fas fa-plus text-green-700"></i> |
| </button> |
| <div class="accordion-content mt-2 text-gray-600"> |
| <p>No, the Saudi government typically does not issue Umrah visas during the Hajj season (usually from mid-Shawwal to mid-Muharram). Umrah visas resume after the Hajj season ends.</p> |
| </div> |
| </div> |
| |
| <div class="accordion mb-4 border-b border-gray-200 pb-4"> |
| <button class="accordion-btn flex justify-between items-center w-full text-left font-medium text-lg"> |
| <span>What if my visa application is rejected?</span> |
| <i class="fas fa-plus text-green-700"></i> |
| </button> |
| <div class="accordion-content mt-2 text-gray-600"> |
| <p>While our visa success rate is 100% due to our thorough documentation process, in the rare case of rejection, we have a full refund policy minus any non-refundable expenses already incurred (like flight tickets if already issued).</p> |
| </div> |
| </div> |
| |
| <div class="accordion"> |
| <button class="accordion-btn flex justify-between items-center w-full text-left font-medium text-lg"> |
| <span>Do you provide guidance on Hajj rituals?</span> |
| <i class="fas fa-plus text-green-700"></i> |
| </button> |
| <div class="accordion-content mt-2 text-gray-600"> |
| <p>Yes, we provide comprehensive guidance before departure through orientation sessions and during the journey through our experienced scholars and group leaders who accompany you throughout your Hajj or Umrah.</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <span class="text-green-700 font-medium">CONTACT US</span> |
| <h2 class="text-3xl md:text-4xl font-bold mt-2 mb-4">Get in Touch</h2> |
| <div class="w-20 h-1 bg-yellow-600 mx-auto"></div> |
| </div> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-12"> |
| <div> |
| <h3 class="text-2xl font-bold mb-6">Send Us a Message</h3> |
| <form class="space-y-4"> |
| <div> |
| <label for="name" class="block text-gray-700 mb-2">Full Name</label> |
| <input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600 focus:border-transparent" placeholder="Your Name"> |
| </div> |
| <div> |
| <label for="email" class="block text-gray-700 mb-2">Email Address</label> |
| <input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600 focus:border-transparent" placeholder="Your Email"> |
| </div> |
| <div> |
| <label for="phone" class="block text-gray-700 mb-2">Phone Number</label> |
| <input type="tel" id="phone" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600 focus:border-transparent" placeholder="Your Phone"> |
| </div> |
| <div> |
| <label for="message" class="block text-gray-700 mb-2">Your Message</label> |
| <textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-green-600 focus:border-transparent" placeholder="Your Message"></textarea> |
| </div> |
| <button type="submit" class="bg-green-700 hover:bg-green-800 text-white px-8 py-3 rounded-lg font-medium transition duration-300">Send Message</button> |
| </form> |
| </div> |
| |
| <div> |
| <h3 class="text-2xl font-bold mb-6">Contact Information</h3> |
| <div class="space-y-6"> |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-map-marker-alt text-green-700"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Office Address</h4> |
| <p class="text-gray-600">123 Islamic Center, Main Boulevard, Lahore, Pakistan</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-phone-alt text-green-700"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Phone Numbers</h4> |
| <p class="text-gray-600">+92 42 1234567 (Office)</p> |
| <p class="text-gray-600">+92 300 1234567 (Mobile/WhatsApp)</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-envelope text-green-700"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Email Address</h4> |
| <p class="text-gray-600">info@karwan-e-habib.com</p> |
| <p class="text-gray-600">bookings@karwan-e-habib.com</p> |
| </div> |
| </div> |
| |
| <div class="flex items-start"> |
| <div class="bg-green-100 p-3 rounded-full mr-4"> |
| <i class="fas fa-clock text-green-700"></i> |
| </div> |
| <div> |
| <h4 class="font-bold mb-1">Office Hours</h4> |
| <p class="text-gray-600">Monday - Saturday: 9:00 AM - 7:00 PM</p> |
| <p class="text-gray-600">Sunday: 10:00 AM - 5:00 PM</p> |
| </div> |
| </div> |
| </div> |
| |
| <div class="mt-8"> |
| <h4 class="font-bold mb-4">Follow Us</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="bg-green-100 text-green-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-green-700 hover:text-white transition duration-300"> |
| <i class="fab fa-facebook-f"></i> |
| </a> |
| <a href="#" class="bg-green-100 text-green-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-green-700 hover:text-white transition duration-300"> |
| <i class="fab fa-instagram"></i> |
| </a> |
| <a href="#" class="bg-green-100 text-green-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-green-700 hover:text-white transition duration-300"> |
| <i class="fab fa-twitter"></i> |
| </a> |
| <a href="#" class="bg-green-100 text-green-700 w-10 h-10 rounded-full flex items-center justify-center hover:bg-green-700 hover:text-white transition duration-300"> |
| <i class="fab fa-youtube"></i> |
| </a> |
| </div> |
| </div> |
| |
| <div class="mt-8"> |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d217898.9523670255!2d74.26357294335936!3d31.483220899999997!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39190483e58107d9%3A0xc23abe6ccc7e2462!2sLahore%2C%20Punjab%2C%20Pakistan!5e0!3m2!1sen!2s!4v1620000000000!5m2!1sen!2s" width="100%" height="300" style="border:0;" allowfullscreen="" loading="lazy" class="rounded-lg shadow-md"></iframe> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section class="py-16 bg-green-800 text-white"> |
| <div class="container mx-auto px-4"> |
| <div class="max-w-4xl mx-auto text-center"> |
| <h2 class="text-3xl font-bold mb-4">Subscribe to Our Newsletter</h2> |
| <p class="mb-8">Stay updated with our latest Hajj & Umrah packages, travel tips, and spiritual guidance.</p> |
| <form class="flex flex-col md:flex-row gap-4 max-w-2xl mx-auto"> |
| <input type="email" placeholder="Your Email Address" class="flex-grow px-6 py-3 rounded-full focus:outline-none text-gray-800"> |
| <button type="submit" class="bg-yellow-600 hover:bg-yellow-700 text-white px-8 py-3 rounded-full font-medium transition duration-300">Subscribe</button> |
| </form> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white pt-16 pb-8"> |
| <div class="container mx-auto px-4"> |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-12 mb-12"> |
| <div> |
| <a href="#" class="flex items-center mb-6"> |
| <div class="w-12 h-12 bg-green-700 rounded-full flex items-center justify-center text-white font-bold text-xl mr-3">KH</div> |
| <div> |
| <h1 class="text-xl font-bold">Karwan-e-Habib</h1> |
| <p class="text-xs text-gray-400">Hajj & Umrah Travel Services</p> |
| </div> |
| </a> |
| <p class="text-gray-400 mb-4">Providing exceptional Hajj and Umrah services with integrity, care, and spiritual responsibility since 2008.</p> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-facebook-f"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-instagram"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a> |
| <a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a> |
| </div> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-6">Quick Links</h3> |
| <ul class="space-y-3"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Home</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">About Us</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Hajj Packages</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Umrah Packages</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Services</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Gallery</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Contact</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-6">Services</h3> |
| <ul class="space-y-3"> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Visa Processing</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Flight Booking</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Hotel Reservations</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Transportation</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Religious Guidance</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Group Tours</a></li> |
| <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">Custom Packages</a></li> |
| </ul> |
| </div> |
| |
| <div> |
| <h3 class="text-lg font-bold mb-6">Contact Info</h3> |
| <ul class="space-y-3 text-gray-400"> |
| <li class="flex items-start"> |
| <i class="fas fa-map-marker-alt mt-1 mr-3 text-green-600"></i> |
| <span>123 Islamic Center, Main Boulevard, Lahore, Pakistan</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-phone-alt mr-3 text-green-600"></i> |
| <span>+92 42 1234567</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-mobile-alt mr-3 text-green-600"></i> |
| <span>+92 300 1234567</span> |
| </li> |
| <li class="flex items-center"> |
| <i class="fas fa-envelope mr-3 text-green-600"></i> |
| <span>info@karwan-e-habib.com</span> |
| </li> |
| </ul> |
| </div> |
| </div> |
| |
| <div class="border-t border-gray-800 pt-8"> |
| <div class="flex flex-col md:flex-row justify-between items-center"> |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 Karwan-e-Habib. All Rights Reserved.</p> |
| <div class="flex space-x-6"> |
| <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a> |
| <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a> |
| <a href="#" class="text-gray-400 hover:text-white">Sitemap</a> |
| </div> |
| </div> |
| </div> |
| </div> |
| </footer> |
|
|
| |
| <div class="floating-whatsapp"> |
| <a href="https://wa.me/923001234567" class="bg-green-600 text-white w-16 h-16 rounded-full flex items-center justify-center shadow-lg hover:bg-green-700 transition duration-300"> |
| <i class="fab fa-whatsapp text-2xl"></i> |
| </a> |
| </div> |
|
|
| <script> |
| |
| document.querySelector('.md\\:hidden button').addEventListener('click', function() { |
| |
| alert('Mobile menu would open here in a full implementation'); |
| }); |
| |
| |
| const accordions = document.querySelectorAll('.accordion'); |
| accordions.forEach(accordion => { |
| const btn = accordion.querySelector('.accordion-btn'); |
| const icon = btn.querySelector('i'); |
| |
| btn.addEventListener('click', () => { |
| accordion.classList.toggle('active'); |
| |
| if (accordion.classList.contains('active')) { |
| icon.classList.remove('fa-plus'); |
| icon.classList.add('fa-minus'); |
| } else { |
| icon.classList.remove('fa-minus'); |
| icon.classList.add('fa-plus'); |
| } |
| }); |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function(e) { |
| e.preventDefault(); |
| |
| const targetId = this.getAttribute('href'); |
| if (targetId === '#') return; |
| |
| const targetElement = document.querySelector(targetId); |
| if (targetElement) { |
| targetElement.scrollIntoView({ |
| behavior: 'smooth' |
| }); |
| } |
| }); |
| }); |
| |
| |
| const packageCards = document.querySelectorAll('.package-card'); |
| packageCards.forEach(card => { |
| card.addEventListener('mouseenter', () => { |
| card.classList.add('hover:shadow-xl'); |
| }); |
| |
| card.addEventListener('mouseleave', () => { |
| card.classList.remove('hover:shadow-xl'); |
| }); |
| }); |
| </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=us3aaa/kh" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> |
| </html> |