diff --git a/about.php b/about.php index 0e9da70..9f53e07 100644 --- a/about.php +++ b/about.php @@ -60,8 +60,9 @@ + - +
diff --git a/css/custom.css b/css/custom.css index 81ca498..1dd226b 100644 --- a/css/custom.css +++ b/css/custom.css @@ -167,4 +167,234 @@ margin-left: 20px; cursor: pointer; font-weight: bold; +} +.logo img { + width: 120px; /* Adjust the width */ + height: 60px; /* Maintain aspect ratio */ +} +a:hover { + color: #f39c12; + text-decoration: underline; + } + + .contact-form-items { + background-color: #fff; + padding: 30px; + border-radius: 10px; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); + animation: fadeInUp 1s ease-out; +} + +.input-field { + border: 1px solid #ccc; + padding: 12px; + font-size: 16px; + width: 100%; + border-radius: 5px; + margin-top: 10px; + transition: all 0.3s ease; +} + +.input-field:focus { + border-color: #007bff; + box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); +} + +.input-field::placeholder { + color: #aaa; +} + +.label-text { + font-size: 14px; + font-weight: 600; + color: #555; +} + +.theme-btn { + background-color: #007bff; + color: #fff; + border: none; + padding: 12px 30px; + border-radius: 30px; + font-size: 16px; + cursor: pointer; + transition: all 0.3s ease; +} + +.theme-btn:hover { + background-color: #0056b3; + transform: translateY(-2px); +} + +.animated-btn { + position: relative; + overflow: hidden; +} + +.animated-btn::after { + content: ''; + position: absolute; + width: 300%; + height: 100%; + top: 0; + left: -100%; + background-color: rgba(255, 255, 255, 0.2); + transition: all 0.4s ease; +} + +.animated-btn:hover::after { + left: 100%; +} + +.category { + border: 1px solid #ccc; + padding: 12px; + font-size: 16px; + width: 100%; + border-radius: 5px; + background: #fff; + appearance: none; + transition: all 0.3s ease; +} + +.category:hover { + border-color: #007bff; +} + +.category:focus { + border-color: #007bff; + box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); +} + +@keyframes fadeInUp { + 0% { + opacity: 0; + transform: translateY(30px); + } + 100% { + opacity: 1; + transform: translateY(0); + } +} + +.car-booking-items { + background: linear-gradient(45deg, rgb(240, 101, 9), rgb(246, 238, 4)); + border-radius: 10px; + padding: 40px 30px; + color: #fff; + box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); + font-family: 'Roboto', sans-serif; + width: 100%; + max-width: 850px; + margin: 40px auto; +} + +.booking-header h3 { + font-size: 24px; + margin-bottom: 10px; +} + +.booking-header p { + font-size: 16px; + margin-bottom: 25px; + font-weight: 300; +} + +.label-text { + font-size: 16px; + color: #fff; + margin-bottom: 8px; +} + +.input-field { + width: 100%; + padding: 12px; + border: 2px solid #fff; + border-radius: 5px; + margin-bottom: 20px; + font-size: 16px; + color: #333; + background-color: #f7f7f7; + transition: border-color 0.3s ease; +} + +.input-field:focus { + border-color: #ff7b00; + outline: none; +} + +.input-group-addon i { + color: #ff7b00; +} + +.ui-datepicker { + font-size: 14px; + border-radius: 5px; + background: #fff; + box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); +} + +.theme-btn { + background-color: #ff7b00; + color: #fff; + padding: 15px 25px; + border-radius: 5px; + font-size: 18px; + border: none; + cursor: pointer; + width: 100%; + transition: background-color 0.3s ease; +} + +.theme-btn:hover { + background-color: #ff6600; +} + +.animated-btn { + position: relative; + overflow: hidden; +} + +.animated-btn::after { + content: ''; + position: absolute; + top: 50%; + left: 50%; + width: 300%; + height: 300%; + background: rgba(255, 255, 255, 0.2); + transition: all 0.4s ease; + transform: translate(-50%, -50%) scale(0); + border-radius: 50%; +} + +.animated-btn:hover::after { + transform: translate(-50%, -50%) scale(1); +} + +/* Form Container */ +.form-clt { + margin-bottom: 20px; +} + +/* Input Container Styles */ +.input-group-addon { + display: flex; + align-items: center; + justify-content: center; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 50%; + padding: 8px; + color: #ff7b00; +} + +/* Responsive Design */ +@media (max-width: 767px) { + .row { + display: block; + } + .col-lg-6, .col-lg-4 { + width: 100%; + } } \ No newline at end of file diff --git a/css/main.css b/css/main.css index 76600c2..b33bb97 100644 --- a/css/main.css +++ b/css/main.css @@ -11,7 +11,7 @@ Version: 1.0.0 --body: #fff; --black: #000; --white: #fff; - --theme: #ff3726; + --theme: #ffcc26; --theme2: #005cb5; --header: #0c142e; --text: #77797e; @@ -2808,7 +2808,7 @@ span { .header-top-section { background-color: #020202; - padding: 10px 60px; + padding: 1px 21px; position: relative; z-index: 9; border-top: 3px solid #020202; @@ -2831,7 +2831,7 @@ span { height: 100%; width: 285px; content: ""; - background-color: var(--white); + background-color: #000000; z-index: -1; clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%); } diff --git a/footer.php b/footer.php index ef80a46..e85868c 100644 --- a/footer.php +++ b/footer.php @@ -24,152 +24,70 @@ - + + diff --git a/header.php b/header.php index 252e36a..f041952 100644 --- a/header.php +++ b/header.php @@ -103,9 +103,9 @@ -

+

Contact Info

@@ -115,7 +115,7 @@
- Main Street, Melbourne, Australia + Kathmandu
  • @@ -123,23 +123,23 @@
  • -
  • + +
  • @@ -175,13 +175,13 @@
    - - --> +
  • Contact
  • @@ -274,7 +275,7 @@
    - + Find a Car
    diff --git a/img/bohora-logo.png b/img/bohora-logo.png new file mode 100644 index 0000000..8480f45 Binary files /dev/null and b/img/bohora-logo.png differ diff --git a/index.php b/index.php index 0406fb1..2422199 100644 --- a/index.php +++ b/index.php @@ -1,13 +1,12 @@ + - - diff --git a/parts/CarRental.php b/parts/CarRental.php index ee30204..0049b56 100644 --- a/parts/CarRental.php +++ b/parts/CarRental.php @@ -1,333 +1,161 @@ +
    icon-img - Checkout our cars + Checkout our new 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 +
    +
    + + + + + + +
    +

    peugeot 308

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

    Navara

    +
    $70.00 / Day
    +
    +
      +
    • + img + 6 Seats +
    • +
    • + img + 2 Doors +
    • +
    +
      +
    • + img + Automatic +
    • +
    • + img + Petrol +
    • +
    +
    + book now +
    -
    - - - - - - 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 +
    +
    +
    + img +
    +
    +
    + 2024 Model +
    +
    + + + + + + 2 Reviews +
    +

    beetle

    +
    $70.00 / Day
    +
    +
      +
    • + img + 6 Seats +
    • +
    • + img + 2 Doors +
    • +
    +
      +
    • + img + Automatic +
    • +
    • + img + Petrol +
    • +
    +
    + book now +
    -
    - - - - - - 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
    -
    \ No newline at end of file + \ No newline at end of file diff --git a/parts/about.php b/parts/about.php index 30332b8..11a0cea 100644 --- a/parts/about.php +++ b/parts/about.php @@ -43,16 +43,7 @@ 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.

    -
    - -
    + Discover More diff --git a/parts/banner.php b/parts/banner.php index b81faca..5cb5544 100644 --- a/parts/banner.php +++ b/parts/banner.php @@ -1,16 +1,16 @@ - -
    -
    - -
    -
    -
    - +
    @@ -22,10 +22,10 @@
    -
    Book Any Car
    -
    + +
    diff --git a/parts/howitworks.php b/parts/howitworks.php index 5e5a3c7..96e30fd 100644 --- a/parts/howitworks.php +++ b/parts/howitworks.php @@ -9,7 +9,7 @@
    -
    Contact
    +
    Connect
    img @@ -23,7 +23,7 @@
    -
    Select
    +
    Share
    img @@ -37,7 +37,7 @@
    -
    Book
    +
    Recommend
    img diff --git a/parts/pickupform.php b/parts/pickupform.php new file mode 100644 index 0000000..4580544 --- /dev/null +++ b/parts/pickupform.php @@ -0,0 +1,71 @@ + +
    +
    +
    + +
    + +
    + + +
    +
    +
    + +
    + + +
    +
    +
    + +
    + +
    +
    +
    + + +
    +
    +
    +
    \ No newline at end of file diff --git a/parts/searchbooking.php b/parts/searchbooking.php index 79108a2..11a4591 100644 --- a/parts/searchbooking.php +++ b/parts/searchbooking.php @@ -1,127 +1,59 @@ - -
    -
    -
    -
    - img +
    +
    +
    +
    + +
    +
    +
    + icon-img +

    Book &
    Rent Vehicle Easily

    +
    +

    + Welcome to Bohara Car Rental—your reliable partner for exploring Nepal’s breathtaking landscapes and vibrant cities. + With over 15 years of driving expertise, we promise a safe, comfortable, and unforgettable travel experience. + Whether you need a ride through Nepal’s bustling cities or a journey into its serene countryside, we’re always here for you. +

    -
    -
    -
    -
    - icon-img - -

    - Book &
    - Rent Vehicle Easily -

    -
    -

    - Welcome to Bohara Car Rental—your reliable partner for
    exploring Nepal’s breathtaking landscapes and vibrant
    cities. With over 15 years of driving expertise, we promise a safe,
    comfortable, and unforgettable travel experience.
    -
    Whether you need a ride through Nepal’s bustling cities or a journey into its serene countryside, we’re always here for you. -

    -
    -
    -
    - icon-img -
    -

    - Easier &
    - Faster Bookings -

    -
    -
    -
    - icon-img -
    -

    - Too Many
    - Pickup Locations -

    -
    -
    -
    +
    + + +
    +
    + img +
    +
    +
    +
    + +
    +
    +
    +
    -
    -
    - -
    -
    -
    - -
    - -
    -
    -
    -
    -
    - -
    - - -
    -
    -
    -
    -
    - -
    - - -
    -
    -
    -
    -
    - -
    - -
    -
    -
    -
    -
    - -
    -
    -
    - -
    +

    Easier & Faster Bookings

    +

    Experience a seamless booking process with just a few clicks.

    +
    +
    +
    +
    +
    +
    +

    Multiple Pickup Locations

    +

    Conveniently pick up and drop off vehicles across key locations.

    +
    +
    +
    +
    +
    + +
    +

    Wide Range of Vehicles

    +

    Choose from a variety of cars, SUVs, and jeeps for your journey.

    -
    \ No newline at end of file +
    +
    +
    diff --git a/peugeot.php b/peugeot.php index 96d1428..87eb18b 100644 --- a/peugeot.php +++ b/peugeot.php @@ -20,325 +20,165 @@ Car -

    Car-Details

    +

    Peugeot

    -
    -
    -
    -
    -
    -
    -
    - img -
    -
    -
    - - - - - - 2 Reviews -
    -

    Peugeot 308

    -
    $70.00 / Day
    -

    - To deliver on the promise of technology and human We help our clients become sions of themselves. -

    -
    -

    Key Features

    -
    -
    -
    - img -
    -
    -
    body:
    -

    Sedan

    -
    -
    -
    -
    - img -
    -
    -
    Mileage:
    -

    70.000 (Mi)

    -
    -
    -
    -
    - img -
    -
    -
    Year:
    -

    2024

    -
    -
    -
    -
    - img -
    -
    -
    Engine:
    -

    2500 cc

    -
    -
    -
    -
    -
    -
    - img -
    -
    -
    Passengers:
    -

    6 Seats

    -
    -
    -
    -
    - img -
    -
    -
    Gear:
    -

    Automatic

    -
    -
    -
    -
    - img -
    -
    -
    Gear:
    -

    Automatic

    -
    -
    -
    -
    - img -
    -
    -
    Fuel:
    -

    Petrol

    -
    -
    -
    -
    +
    +
    +
    +
    +
    + +
    +
    +

    Request for Booking

    +

    Send your requirement to us. We will check your request and contact you soon.

    +
    +
    + +
    + +
    +
    + + +
    +
    + + +
    +
    + + +
    +
    -
    -
    -

    Request for Booking

    -

    Send your requirement to us. We will check email and contact you soon.

    -
    - - -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - - -
    -
    -
    -
    - -
    -
    - Select Location -
    • - Select Location -
    • - Airpot -
    • - Koteshor -
    • - New York -
    • - Other Location -
    -
    -
    -
    -
    -
    - -
    - - -
    -
    -
    -
    -
    - -
    - - -
    -
    -
    - -
    - -
    -
    - -
    - -
    -
    - -
    -

    2 Reviews

    -
    -
    - image -
    -
    -
    -
    -

    Kevin Martin

    -
    -
    - - - - - -
    -
    -

    - It has survived not only five centuries, but also the into electronic typesetting simply fee text aunchanged. It was popularised in the sheets containing lorem ipsum is simply free text. -

    -
    -
    -
    -
    - image -
    -
    -
    -
    -

    Sarah Albert

    -
    -
    - - - - - -
    -
    -

    - It has survived not only five centuries, but also the into electronic typesetting simply fee text aunchanged. It was popularised in the sheets containing lorem ipsum is simply free text. -

    -
    -
    -
    + +
    +
    + + +
    +
    + + +
    +
    + +
    + + +
    +
    +
    + + +
    +
    + +
    + + +
    +
    +
    + + +
    + +
    +
    + + + + +
    + + + +
    +
    + Peugeot 308
    -
    -
    -

    Other Car

    - - - - - - - - - +
    +
    + + + + + + 2 Reviews
    +

    Peugeot 308

    +
    $70.00 / Day
    +

    + To deliver on the promise of technology and human We help our clients become sions of themselves. +

    + +
    +
    +
    + +
    -
    - \ No newline at end of file +
    +
    +
    +