File size: 62,815 Bytes
b19adb3 f1e9a9b b19adb3 f1e9a9b b19adb3 f1e9a9b b19adb3 f1e9a9b b19adb3 f1e9a9b b19adb3 f1e9a9b b19adb3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 | <!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">
<!-- Top Bar -->
<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>
<!-- Navigation -->
<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>
<!-- Hero Section -->
<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>
<!-- Services 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>
<!-- Hajj Packages 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">
<!-- Economy Package -->
<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>
<!-- Premium Package -->
<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>
<!-- VIP Package -->
<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>
<!-- Umrah Packages 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">
<!-- Short Stay Package -->
<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>
<!-- Family Umrah Package -->
<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>
<!-- Ramadan Umrah Package -->
<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>
<!-- Why Choose Us 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>
<!-- Testimonials 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>
<!-- Gallery 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>
<!-- FAQ 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>
<!-- Contact 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>
<!-- Newsletter 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 -->
<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>
<!-- WhatsApp Floating Button -->
<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>
// Mobile menu toggle
document.querySelector('.md\\:hidden button').addEventListener('click', function() {
// This would toggle a mobile menu - implementation depends on your needs
alert('Mobile menu would open here in a full implementation');
});
// Accordion functionality
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');
}
});
});
// Smooth scrolling for anchor links
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'
});
}
});
});
// Package card hover effect
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> |