diff --git a/about.php b/about.php index 98b0260..0e9da70 100644 --- a/about.php +++ b/about.php @@ -1,5 +1,25 @@ - + +
@@ -125,7 +145,7 @@
icon-img - fun facts + our facts

Save Time & Money
with Top Car Rent
@@ -172,122 +192,7 @@

- -
-
- shape-img -
-
-
-
- icon-img - our testimonials -

- What They’re Talking
- About Remons -

-
-

- Lorem ipsum dolor sit amet nsectetur cing elituspe ndisse suscipit
sagitis leo sit. -

-
-
-
-
-
-
-
-
- -
-

- I was very impresed by the remons service lorem ipsum is simply free text used by copy typing refreshing. Neque porro est qui dolorem ipsum quia. -

-
- - - - - -
-
-
-
-
-
-
- Jessica Brown -
- Customer -
-
-
-
-
-
-
-
-
- -
-

- I was very impresed by the remons service lorem ipsum is simply free text used by copy typing refreshing. Neque porro est qui dolorem ipsum quia. -

-
- - - - - -
-
-
-
-
-
-
- Kevin Martin -
- Customer -
-
-
-
-
-
-
-
-
- -
-

- I was very impresed by the remons service lorem ipsum is simply free text used by copy typing refreshing. Neque porro est qui dolorem ipsum quia. -

-
- - - - - -
-
-
-
-
-
-
- Jessica Brown -
- Customer -
-
-
-
-
-
-
-
- + diff --git a/car-details.php b/car-details.php index 5caf502..947ca1a 100644 --- a/car-details.php +++ b/car-details.php @@ -1,4 +1,28 @@ + + + + +
diff --git a/car-grid.php b/car-grid.php index a44e476..8d13f41 100644 --- a/car-grid.php +++ b/car-grid.php @@ -5,7 +5,7 @@
- 2024 Model + 2018 Model
@@ -222,17 +222,17 @@ 2 Reviews
-

Hyundai Accent Limited

+

MG Hector ZS

$70.00 / Day
  • img - 6 Seats + 5 Seats
  • img - 2 Doors + 5 Doors
    @@ -246,18 +246,18 @@
- book now + book now
- img + img
- 2024 Model + 1995 Model
@@ -267,19 +267,65 @@ 2 Reviews
-

Hyundai Accent Limited

+

Beetle

$70.00 / Day
  • img - 6 Seats + 4 Seats
  • img 2 Doors
+
    +
  • + img + Manual +
  • +
  • + img + Petrol +
  • +
+
+ book now +
+
+
+ +
+
+
+ img +
+
+
+ 2015 Model +
+
+ + + + + + 2 Reviews +
+

Honda City

+
$70.00 / Day
+
+
    +
  • + img + 5 Seats +
  • +
  • + img + 5 Doors +
  • +
  • img @@ -291,7 +337,7 @@
- book now + book now
diff --git a/car-list-sidebar.php b/car-list-sidebar.php index 053f835..d568a05 100644 --- a/car-list-sidebar.php +++ b/car-list-sidebar.php @@ -1,5 +1,26 @@ + +
diff --git a/car-list.php b/car-list.php index 88e2c22..f78557f 100644 --- a/car-list.php +++ b/car-list.php @@ -1,5 +1,26 @@ + +
diff --git a/contact.php b/contact.php index 3e6726b..4a451eb 100644 --- a/contact.php +++ b/contact.php @@ -1,4 +1,26 @@ + + +
diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css index f8468c1..37fc3ee 100644 --- a/css/bootstrap.min.css +++ b/css/bootstrap.min.css @@ -313,7 +313,7 @@ address { ol, ul { - padding-left: 2rem + padding-left: 3rem } dl, @@ -779,7 +779,7 @@ progress { .container-sm, .container-xl, .container-xxl { - --bs-gutter-x: 1.5rem; + --bs-gutter-x: 6rem; --bs-gutter-y: 0; width: 100%; padding-right: calc(var(--bs-gutter-x) * .5); diff --git a/css/main.css b/css/main.css index 3da23f8..45b3056 100644 --- a/css/main.css +++ b/css/main.css @@ -1602,13 +1602,157 @@ span { } .feature-benefit-items { - margin-top: 30px; + display: flex; + flex-direction: column; + justify-content: space-between; + height: 100%; /* Ensure it fills the container height */ + min-height: 300px; /* Adjust the height as per your preference */ + padding: 20px; /* Optional for spacing */ + box-sizing: border-box; +} +.our-services { + background: linear-gradient(to bottom, #ffffff, #ffffff); + padding: 50px 20px; + font-family: "Lexend", sans-serif; +} + +.section-title h2 { + font-size: 36px; + color: #222; + margin-bottom: 30px; + text-transform: uppercase; + position: relative; + font-family: inherit; +} + +.services-list { + display: flex; + flex-wrap: wrap; + gap: 20px; + justify-content: center; +} + +.service-item { + background: #ffffff; border-radius: 10px; + padding: 20px; + width: 300px; + text-align: center; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; overflow: hidden; - z-index: 9; - background-color: var(--white); - box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1); + font-family: inherit; +} + +.service-item:hover { + transform: translateY(-10px); + box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); +} + +.service-icon { + font-size: 40px; + color: #0056b3; + margin-bottom: 15px; + transition: color 0.3s ease; +} + +.service-item:hover .service-icon { + color: #ff6600; +} + +.service-item h3 { + font-size: 20px; + color: #333; + margin-bottom: 10px; + text-transform: uppercase; + font-family: inherit; +} + +.service-item p { + font-size: 16px; + color: #a6a1a1; + text-align: justify; + line-height: 1.6; + font-family: inherit; +} + +.service-item:after { + content: ""; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(255, 102, 0, 0.1); + z-index: -1; + transition: opacity 0.3s ease; + opacity: 0; +} + +.service-item:hover:after { + opacity: 1; +} +.why-nepal { + background: linear-gradient(to bottom, #fefefe, #f4f4f4); + padding: 60px 20px; + text-align: center; + overflow: hidden; +} + +.section-title h2 { + font-size: 36px; + color: #222; + text-transform: uppercase; + margin-bottom: 20px; + font-family: 'Lexend', sans-serif; +} + +.section-title p { + font-size: 16px; + color: #555; + margin-bottom: 40px; + font-family: 'Lexend', sans-serif; +} + +.why-nepal-item { + background: #fff; + border-radius: 10px; + padding: 20px; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease, box-shadow 0.3s ease; + margin: 10px 0; + position: relative; +} + +.why-nepal-item:hover { + transform: translateY(-10px); + box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); +} + +.why-nepal-item .icon { + width: 60px; + height: 60px; + margin: 0 auto 15px; +} + +.why-nepal-item .icon img { + width: 100%; + height: auto; +} + +.why-nepal-item h4 { + font-size: 20px; + color: #333; + margin-bottom: 10px; + font-family: 'Lexend', sans-serif; +} + +.why-nepal-item p { + font-size: 14px; + color: #555; + font-family: 'Lexend', sans-serif; + line-height: 1.6; } .feature-benefit-items .icon-box-shape { position: absolute; @@ -1639,6 +1783,7 @@ span { } .feature-benefit-items .feature-content p { margin: 0 0 20px 0; + text-align: justify; } .feature-benefit-items .feature-content .icon { width: 98px; @@ -2703,7 +2848,7 @@ span { background-color: transparent; } .header-top-section.style-two::before { - background-color: #0c142e; + background-color: #1f1e1e; clip-path: none; width: 100%; left: 260px; diff --git a/faq.php b/faq.php index 1c2fc97..47c336e 100644 --- a/faq.php +++ b/faq.php @@ -1,4 +1,27 @@ + + + +
diff --git a/footer.php b/footer.php index c093465..1d1dabd 100644 --- a/footer.php +++ b/footer.php @@ -10,8 +10,7 @@
  • @@ -149,10 +148,10 @@
  • @@ -161,129 +160,134 @@
    - -
    -
    -
    - -
    - - -
    -
    -
    -
    - -
    -
    -
    -
    -
    - -
    - +
    +
    +
    +
    + +
    + +
    -
    -
    -
    - +
    +
    +
    +
    +
    +
    +
    +
    + -
    -

    Call Anytime

    -
    +92 (8800) - 9850
    +
    +
    - - -
    -
    -
    - - - +
    \ No newline at end of file diff --git a/img/Cars/beetle.jpg b/img/Cars/beetle.jpg new file mode 100644 index 0000000..47e4c61 Binary files /dev/null and b/img/Cars/beetle.jpg differ diff --git a/img/Cars/ford_ecosport_trend.jpg b/img/Cars/ford_ecosport_trend.jpg new file mode 100644 index 0000000..5981992 Binary files /dev/null and b/img/Cars/ford_ecosport_trend.jpg differ diff --git a/img/Cars/honda city.jpg b/img/Cars/honda city.jpg new file mode 100644 index 0000000..25ed0c9 Binary files /dev/null and b/img/Cars/honda city.jpg differ diff --git a/img/Cars/mitsubhi.jpg b/img/Cars/mitsubhi.jpg new file mode 100644 index 0000000..acd1e69 Binary files /dev/null and b/img/Cars/mitsubhi.jpg differ diff --git a/img/Cars/navara.jpg b/img/Cars/navara.jpg new file mode 100644 index 0000000..925f6ac Binary files /dev/null and b/img/Cars/navara.jpg differ diff --git a/img/Cars/peugeot_308.jpg b/img/Cars/peugeot_308.jpg new file mode 100644 index 0000000..553f9be Binary files /dev/null and b/img/Cars/peugeot_308.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-43-631.jpg b/img/Cars/viber_image_2025-01-09_11-47-43-631.jpg new file mode 100644 index 0000000..1509c62 Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-43-631.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-44-107.jpg b/img/Cars/viber_image_2025-01-09_11-47-44-107.jpg new file mode 100644 index 0000000..52d8d62 Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-44-107.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-44-858.jpg b/img/Cars/viber_image_2025-01-09_11-47-44-858.jpg new file mode 100644 index 0000000..38037c0 Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-44-858.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-45-341.jpg b/img/Cars/viber_image_2025-01-09_11-47-45-341.jpg new file mode 100644 index 0000000..55406bc Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-45-341.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-45-674.jpg b/img/Cars/viber_image_2025-01-09_11-47-45-674.jpg new file mode 100644 index 0000000..cd02434 Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-45-674.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-46-046.jpg b/img/Cars/viber_image_2025-01-09_11-47-46-046.jpg new file mode 100644 index 0000000..ba63d1c Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-46-046.jpg differ diff --git a/img/Cars/viber_image_2025-01-09_11-47-46-757.jpg b/img/Cars/viber_image_2025-01-09_11-47-46-757.jpg new file mode 100644 index 0000000..c93f008 Binary files /dev/null and b/img/Cars/viber_image_2025-01-09_11-47-46-757.jpg differ diff --git a/img/boho.svg b/img/boho.svg new file mode 100644 index 0000000..288fe5a --- /dev/null +++ b/img/boho.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + BOHORA CAR RENTAL + + diff --git a/img/bohora (1).jpg b/img/bohora (1).jpg new file mode 100644 index 0000000..a082c68 Binary files /dev/null and b/img/bohora (1).jpg differ diff --git a/img/bohora.jpg b/img/bohora.jpg new file mode 100644 index 0000000..8270fc2 Binary files /dev/null and b/img/bohora.jpg differ diff --git a/img/bohora_logo (1).png b/img/bohora_logo (1).png new file mode 100644 index 0000000..864223e Binary files /dev/null and b/img/bohora_logo (1).png differ diff --git a/img/bohora_logo.png b/img/bohora_logo.png new file mode 100644 index 0000000..bce2299 Binary files /dev/null and b/img/bohora_logo.png differ diff --git a/img/bohora_logo.svg b/img/bohora_logo.svg new file mode 100644 index 0000000..1da5b18 --- /dev/null +++ b/img/bohora_logo.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/img/cargallery/bettle.jpg b/img/cargallery/bettle.jpg new file mode 100644 index 0000000..06a56cf Binary files /dev/null and b/img/cargallery/bettle.jpg differ diff --git a/img/cargallery/carG1.jpg b/img/cargallery/carG1.jpg new file mode 100644 index 0000000..e9c220c Binary files /dev/null and b/img/cargallery/carG1.jpg differ diff --git a/img/cargallery/carG3.jpg b/img/cargallery/carG3.jpg new file mode 100644 index 0000000..6e03e35 Binary files /dev/null and b/img/cargallery/carG3.jpg differ diff --git a/img/cargallery/carG4.jpg b/img/cargallery/carG4.jpg new file mode 100644 index 0000000..8051a68 Binary files /dev/null and b/img/cargallery/carG4.jpg differ diff --git a/img/cargallery/carG5.jpg b/img/cargallery/carG5.jpg new file mode 100644 index 0000000..f9f0448 Binary files /dev/null and b/img/cargallery/carG5.jpg differ diff --git a/img/cargallery/carG6.jpg b/img/cargallery/carG6.jpg new file mode 100644 index 0000000..d6ace9f Binary files /dev/null and b/img/cargallery/carG6.jpg differ diff --git a/img/cargallery/carG7.jpg b/img/cargallery/carG7.jpg new file mode 100644 index 0000000..819bdd2 Binary files /dev/null and b/img/cargallery/carG7.jpg differ diff --git a/img/cargallery/carG8.jpg b/img/cargallery/carG8.jpg new file mode 100644 index 0000000..79c3c01 Binary files /dev/null and b/img/cargallery/carG8.jpg differ diff --git a/img/logohere.jpg b/img/logohere.jpg new file mode 100644 index 0000000..0d2fe32 Binary files /dev/null and b/img/logohere.jpg differ diff --git a/img/umesh.jfif b/img/umesh.jfif new file mode 100644 index 0000000..34fd7ce Binary files /dev/null and b/img/umesh.jfif differ diff --git a/index.php b/index.php index c1ec399..bb36bd5 100644 --- a/index.php +++ b/index.php @@ -1,12 +1,15 @@ - + + - - - - - - + + + + + + + + diff --git a/parts/Testimonial.php b/parts/Testimonial.php index ea3e6f6..bfef14b 100644 --- a/parts/Testimonial.php +++ b/parts/Testimonial.php @@ -1,115 +1,73 @@ - -
    -
    - shape-img -
    + +
    -
    -
    - icon-img - our testimonials -

    - What They’re Talking
    - About Remons -

    +
    +
    +
    +
    +
    +
    +
    +

    + “I had an amazing trip with Puran Bohara from Bohara Car Rental. The driver was professional, the car was comfortable, and the experience was unforgettable!” + +

    +
    +

    + Umesh Pandey +

    +
    .
    + Founder & CEO of Motif Education Abroad (P) Ltd. +
    +
    +
    +
    +
    +
    +
    +
    +

    + “Highly recommend Bohara Car Rental for anyone traveling in Nepal. They made my journey so smooth and enjoyable!” +

    +
    +

    + Nawaraj Karkee + +

    +
    .
    + Customer +
    +
    +
    +
    +
    +
    +
    +
    +

    + This is due to their excellent service, competitive pricing and customer support. It’s throughly refresing to get such a personal touch. +

    +
    +

    + Shirley Smith +

    +
    .
    + Customer +
    +
    +
    +
    +
    -

    - Lorem ipsum dolor sit amet nsectetur cing elituspe ndisse suscipit
    sagitis leo sit. -

    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -

    - I was very impresed by the remons service lorem ipsum is simply free text used by copy typing refreshing. Neque porro est qui dolorem ipsum quia. -

    -
    - - - - - -
    -
    -
    -
    -
    -
    -
    - Jessica Brown -
    - Customer -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -

    - I was very impresed by the remons service lorem ipsum is simply free text used by copy typing refreshing. Neque porro est qui dolorem ipsum quia. -

    -
    - - - - - -
    -
    -
    -
    -
    -
    -
    - Kevin Martin -
    - Customer -
    -
    -
    -
    -
    -
    -
    -
    -
    - -
    -

    - I was very impresed by the remons service lorem ipsum is simply free text used by copy typing refreshing. Neque porro est qui dolorem ipsum quia. -

    -
    - - - - - -
    -
    -
    -
    -
    -
    -
    - Jessica Brown -
    - Customer -
    -
    -
    +
    +
    +
    +
    +
    + +
    -
    +
    \ No newline at end of file diff --git a/parts/about.php b/parts/about.php index d44986f..30332b8 100644 --- a/parts/about.php +++ b/parts/about.php @@ -32,15 +32,16 @@ icon-img Get to know us

    - Services with a Wide - Range of Cars + Why Us?

    committed to providing our customers with exceptional service.

    - Our mission is to provide safe, reliable, and personalized transportation services that leave lasting memories. Whether you're a tourist, a professional, or an adventurer, we are here to ensure your journey is seamless and enjoyable. + At Bohara Car Rental, we pride ourselves on being one of the most trusted car rental services in Nepal. With over 15 years of professional driving experience, we have built a reputation for reliability, comfort, and excellent customer service. Whether you're traveling for business or leisure, we aim to make your journey seamless, safe, and memorable. +Our rental service comes with a dedicated, experienced driver who is highly skilled, also polite, patient, and knowledgeable about Nepal’s diverse landscapes and road conditions. From the bustling streets of Kathmandu to the serene beauty of Pokhara, we’ll take you wherever you need to go with ease and comfort. +

      @@ -51,14 +52,6 @@ Offering Low Prices
    -
      -
    • - Many Pickup Locations -
    • -
    • - Offering Low Prices -
    • -
    Discover More diff --git a/parts/banner.php b/parts/banner.php new file mode 100644 index 0000000..ba7962b --- /dev/null +++ b/parts/banner.php @@ -0,0 +1,89 @@ + +
    +
    + +
    +
    +
    + +
    +
    +
    +
    +
    + + +
    +
    + + +
    +
    Search Any Car
    +
    + icon +
    +
    +
    + +
    +
    +
    + shape-img +
    +
    + shape-img +
    +
    +
    +
    +
    +
    +

    + Welcome to Bohora Car Rentals +

    +

    + Your Trusted Travel Companion in Nepal +

    +

    + Discover Nepal with Comfort and Trust. +

    +
    +
    +
    +
    +
    + +
    +
    +
    + shape-img +
    +
    + shape-img +
    +
    +
    +
    +
    +
    +

    + नेपालमा स्वागत छ! +

    +

    + तपाईंको यात्रा सुखद र अविस्मरणीय रहोस्। +

    +

    + हाम्रो देश प्राकृतिक सौन्दर्य, सांस्कृतिक विविधता, र अद्वितीय अतिथिसत्कारको लागि प्रसिद्ध छ। +

    +
    +
    +
    +
    +
    +
    +
    +
    diff --git a/parts/carservices.php b/parts/carservices.php index f232fb4..584f9ba 100644 --- a/parts/carservices.php +++ b/parts/carservices.php @@ -25,7 +25,7 @@ Car Service?

    - Starting at $ 398 /mo + Starting at Rs- 1000 /day

    Discover More diff --git a/parts/ctaRental.php b/parts/ctaRental.php index d653d0a..fb0aaeb 100644 --- a/parts/ctaRental.php +++ b/parts/ctaRental.php @@ -1,32 +1,331 @@ - -
    + + + +
    -
    -
    -
    -

    Faster, easier access to car rental services

    -

    Premium Car Rental

    -
    - - - - Get in
    - Google Play -
    -
    - - - - Get in
    - Play Store -
    -
    +
    + icon-img + Checkout our cars +

    + Cars We’re Offering
    + for Rentals +

    +
    +
    +
    +
    +
    + img +
    +
    +
    + 2015 Model +
    +
    + + + + + + 2 Reviews +
    +

    peugeot 308

    +
    $70.00 / Day
    +
    +
      +
    • + img + 5 Seats +
    • +
    • + img + 5 Doors +
    • +
    +
      +
    • + img + Automatic and Manual +
    • +
    • + img + Petrol +
    • +
    +
    + book now
    -
    -
    - img +
    +
    +
    + img +
    +
    +
    + 2015 Model +
    +
    + + + + + + 2 Reviews +
    +

    Navara

    +
    $70.00 / Day
    +
    +
      +
    • + img + 5 Seats +
    • +
    • + img + 4 Doors (Double cab) +
    • +
    +
      +
    • + img + Automatic and Manual +
    • +
    • + img + Diesel +
    • +
    +
    + book now +
    +
    +
    +
    +
    +
    + img +
    +
    +
    + 2027 Model +
    +
    + + + + + + 2 Reviews +
    +

    Ford Ecosport Trend

    +
    $70.00 / Day
    +
    +
      +
    • + img + 5 Seats +
    • +
    • + img + 5 Doors +
    • +
    +
      +
    • + img + Automatic and Manual +
    • +
    • + img + Petrol +
    • +
    +
    + book now +
    +
    +
    +
    +
    +
    + img +
    +
    +
    + 2015 Model +
    +
    + + + + + + 2 Reviews +
    +

    Mitsubishi Pajero Exceed

    +
    $70.00 / Day
    +
    +
      +
    • + img + 7 Seats +
    • +
    • + img + 5 Doors +
    • +
    +
      +
    • + img + Automatic +
    • +
    • + img + Diesel +
    • +
    +
    + book now +
    +
    +
    +
    +
    +
    + img +
    +
    +
    + 2018 Model +
    +
    + + + + + + 2 Reviews +
    +

    MG Hector ZS

    +
    $70.00 / Day
    +
    +
      +
    • + img + 5 Seats +
    • +
    • + img + 5 Doors +
    • +
    +
      +
    • + img + Automatic +
    • +
    • + img + Petrol +
    • +
    +
    + book now +
    +
    +
    +
    +
    +
    + img +
    +
    +
    + 1995 Model +
    +
    + + + + + + 2 Reviews +
    +

    Beetle

    +
    $70.00 / Day
    +
    +
      +
    • + img + 4 Seats +
    • +
    • + img + 2 Doors +
    • +
    +
      +
    • + img + Manual +
    • +
    • + img + Petrol +
    • +
    +
    + book now +
    +
    +
    + +
    +
    +
    + img +
    +
    +
    + 2015 Model +
    +
    + + + + + + 2 Reviews +
    +

    Honda City

    +
    $70.00 / Day
    +
    +
      +
    • + img + 5 Seats +
    • +
    • + img + 5 Doors +
    • +
    +
      +
    • + img + Automatic +
    • +
    • + img + Petrol +
    • +
    +
    + book now +
    diff --git a/parts/funFact.php b/parts/funFact.php index 81f8825..9987508 100644 --- a/parts/funFact.php +++ b/parts/funFact.php @@ -20,7 +20,7 @@
    img
    -

    990

    +

    100

    Cars
    rentouts @@ -30,7 +30,7 @@

    img
    -

    230

    +

    30

    Center
    solutions @@ -40,7 +40,7 @@

    img
    -

    660

    +

    200

    happy
    customers diff --git a/parts/gallery.php b/parts/gallery.php index f01117a..85df30f 100644 --- a/parts/gallery.php +++ b/parts/gallery.php @@ -1,126 +1,36 @@ - -