X7ROOT File Manager
Current Path:
/home/u126090504/domains/oceanicabeachresort.com/public_html
home
/
u126090504
/
domains
/
oceanicabeachresort.com
/
public_html
/
π
..
π
.htaccess
(0 B)
π
Version
π
about.php
(4.19 KB)
π
admin
π
assets
π
booking.php
(4.55 KB)
π
booking_details.php
(4.43 KB)
π
booking_process.php
(1.12 KB)
π
config.php
(914 B)
π
contact.php
(14.48 KB)
π
contactdb.php
(796 B)
π
footer.php
(13.26 KB)
π
gallery.php
(2.82 KB)
π
header.php
(19.3 KB)
π
images
π
index.php
(2.27 KB)
π
indexx.php
(75.25 KB)
π
lib
π
oce.zip
(106.17 MB)
π
payment.php
(6.79 KB)
π
payment_submit.php
(15.1 KB)
π
payment_verify.php
(2.31 KB)
π
qrcodes
π
room-service.php
(8.98 KB)
π
search_videos.php
(1.76 KB)
π
services.php
(14.04 KB)
π
success.php
(2.06 KB)
π
test_mailer.php
(372 B)
π
thank-you.php
(1.28 KB)
π
uploads
π
videos.php
(6.87 KB)
Editing: indexx.php
<?php require_once 'config.php'; include 'header.php'; ?> <!-- main start --> <main class="main"> <!-- hero section 3 start --> <!-- Banner Slider --> <!-- ================= BANNER SLIDER START ================= --> <!-- Slick CSS --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick-theme.min.css"> <style> /* Banner Slider Base */ .banner-slider { width: 100%; overflow: hidden; } /* Image */ .banner-slide img { width: 100%; height: auto; display: block; } /* FIX: hide Previous / Next text */ .slick-prev::before, .slick-next::before { font-size: 0 !important; } /* Keep arrows but hide text completely */ .slick-prev, .slick-next { text-indent: -9999px; width: 40px; height: 40px; z-index: 9999; } /* Optional: arrow position */ .slick-prev { left: 15px; } .slick-next { right: 15px; } </style> <div class="banner-slider"> <?php $stmt = $conn->prepare("SELECT imgfile FROM bannertab ORDER BY position ASC, id DESC"); $stmt->execute(); $result = $stmt->get_result(); if ($result->num_rows > 0) { while ($row = $result->fetch_assoc()) { $img = htmlspecialchars($row['imgfile']); echo ' <div class="banner-slide"> <img src="uploads/banners/'.$img.'" alt="MAYURBHANJ MEDICAL ACADEMY"> </div>'; } } ?> </div> <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <!-- Slick JS --> <script src="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.8.1/slick.min.js"></script> <script> jQuery(document).ready(function($){ $('.banner-slider').slick({ slidesToShow: 1, slidesToScroll: 1, arrows: true, autoplay: true, autoplaySpeed: 3000, infinite: true, pauseOnHover: false }); }); </script> <!-- ================= BANNER SLIDER END ================= --> <!-- hero section 3 end --> <?php include 'config.php'; $rooms = mysqli_query($conn,"SELECT * FROM rooms WHERE status='Available'"); ?> <div class="booking-section-2 pt-100 md-pt-80 pb-100 md-pb-80"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="booking-wapper wow fadeInUp"> <div class="default-form booking-form"> <form action="booking_process.php" method="POST"> <!-- Check In --> <div class="form-group"> <div class="field-inner"> <label>Check In</label> <input class="form-control js-date" type="text" name="checkin_date" placeholder="dd-mm-yyyy" autocomplete="off" readonly required> </div> </div> <!-- Check Out --> <div class="form-group"> <div class="field-inner"> <label>Check Out</label> <input class="form-control js-date" type="text" name="checkout_date" placeholder="dd-mm-yyyy" autocomplete="off" readonly required> </div> </div> <!-- Room --> <div class="form-group"> <div class="field-inner"> <label>Room</label> <select class="form-select" name="room_id" required> <option value="">Select Room</option> <?php while($r=mysqli_fetch_assoc($rooms)){ ?> <option value="<?= $r['id'] ?>"> <?= $r['room_name'] ?> - βΉ<?= number_format($r['price'],2) ?> </option> <?php } ?> </select> </div> </div> <!-- Adults --> <div class="form-group"> <div class="field-inner"> <label>Adults</label> <select class="form-select" name="adults" required> <option value="">Select Adults</option> <option value="1">01</option> <option value="2">02</option> </select> </div> </div> <!-- Children --> <div class="form-group"> <div class="field-inner"> <label>Children</label> <select class="form-select" name="children"> <option value="0">00</option> <option value="1">01</option> <option value="2">02</option> </select> </div> </div> <div class="booking-button-wapper"> <button type="submit" class="booking-button"> <i class="fa-solid fa-magnifying-glass"></i> </button> </div> </form> </div> </div> </div> </div> </div> </div> <!-- booking section 2 end --> <script src="https://cdn.jsdelivr.net/npm/flatpickr"></script> <script> document.addEventListener("DOMContentLoaded", function () { const dates = flatpickr(".js-date", { dateFormat: "d-m-Y", minDate: "today", disableMobile: true }); }); </script> <!-- micon section start --> <section class="micon-section pb-70 md-pb-50"> <div class="container"> <div class="row"> <div class="col-lg-3 col-md-6 col-sm-6"> <!-- micon items start --> <div class="micon-items wow fadeInUp" data-wow-delay=".2s"> <div class="micon-icon"> <figure> <img src="assets/images/micon/icon-micon-1.png" alt="quick booking"> </figure> </div> <div class="micon-content"> <h2 class="line-anime-center">Hassle-Free Booking</h2> <p style="text-align:justify;">Book your stay at Oceanica Beach Resort, the best beach resort in Dublagadi, with an easy and quick booking process. Just one call or message is enough to reserve your beachside experience without any hassle.</p> </div> </div> <!-- micon items end --> </div> <div class="col-lg-3 col-md-6 col-sm-6"> <!-- micon items start --> <div class="micon-items wow fadeInUp" data-wow-delay=".4s"> <div class="micon-icon"> <figure> <img src="assets/images/micon/icon-micon-2.png" alt="best guide"> </figure> </div> <div class="micon-content"> <h2 class="line-anime-center">Local Beachside Experience</h2> <p style="text-align:justify;">Enjoy an authentic beachside experience with local support and guidance. Our team helps you explore nearby beaches, scenic spots, and peaceful coastal views around Dublagadi and Balasore.</p> </div> </div> <!-- micon items end --> </div> <div class="col-lg-3 col-md-6 col-sm-6"> <!-- micon items start --> <div class="micon-items wow fadeInUp" data-wow-delay=".3s"> <div class="micon-icon"> <figure> <img src="assets/images/micon/icon-micon-3.png" alt="customization"> </figure> </div> <div class="micon-content"> <h2 class="line-anime-center">Customized Stays & Events</h2> <p style="text-align:justify;">We offer fully customized stay packages for families, couples, corporate groups, and events. From birthday parties and engagements to picnic trips and beach parties, everything is planned as per your needs.</p> </div> </div> <!-- micon items end --> </div> <div class="col-lg-3 col-md-6 col-sm-6"> <!-- micon items start --> <div class="micon-items wow fadeInUp" data-wow-delay=".4s"> <div class="micon-icon"> <figure> <img src="assets/images/micon/icon-micon-4.png" alt="support"> </figure> </div> <div class="micon-content"> <h2 class="line-anime-center">24/7 Guest Assistance</h2> <p style="text-align:justify;">Our dedicated support team is available 24/7 to assist you before, during, and after your stay. From booking queries to on-site help, we ensure a smooth and comfortable experience at the best beach resort in Dublagadi.</p> </div> </div> <!-- micon items end --> </div> </div> </div> </section> <!-- micon section end --> <!-- our-facts section start --> <section class="our-facts-section"> <div class="our-facts-image"> <figure> <img src="assets/images/facts/facts-1.jpg" alt="facts image"> </figure> </div> <div class="container"> <div class="row justify-content-end"> <div class="col-xl-6 col-lg-6 col-md-12"> <!-- our facts content start --> <div class="our-facts-content wow fadeInUp" data-wow-delay=".2s"> <!-- section title start --> <div class="section-title section-title-white mb-30"> <span class="sub-title">Oceanica Beach Resort</span> <h2 class="line-anime" style="font-size:25px;">Oceanica Beach Resort <br/> Best Beach Resort in Dublagadi,Bagda</h2> </div> <!-- section title end --> <p class="text-white" style="text-align:justify;">Experience peace, comfort, and celebration at Oceanica Beach Resort, the best beach resort in Dublagadi,Bagda,Balasore. Located near Golden Sea Beach Road and Bagda Sea Beach Road, our resort is the perfect destination for family vacations, corporate outings, parties, and beachside celebrations.<br/> Oceanica Beach Resort is a premium seaside destination designed for travelers who want relaxation, fun, and memorable moments near nature. Known as the best beach resort in Dublagadi, we offer comfortable AC & Non-AC accommodations, delicious meals, and multiple recreational activities.<br/> Our resort is ideal for family stays, corporate parties, birthday celebrations, engagements, picnic trips, pre-wedding photoshoots, and private beach parties. With scenic surroundings and warm hospitality, we ensure every guest enjoys a peaceful and joyful experience. </p> <p class="text-white mb-30">Enjoy the beauty of the sea, fresh coastal air, delicious food, and comfortable stay β all at an affordable price.</p> <!-- our facts button wapper start --> <div class="our-facts-button-wapper"> <a href="contact.php" class="theme-button style-1" aria-label="Contact Us"> Contact Us </a> </div> <!-- our facts button wapper end --> </div> <!-- our facts content end --> </div> </div> </div> </section> <!-- our facts section end --> <!-- room section 1 start --> <section class="room-section-1"> <!-- room shape top start --> <div class="room-shape-top"> <figure> <img src="assets/images/shape/shape-top.png" alt="room shape top"> </figure> </div> <!-- room shape top end --> <!-- room wapper start --> <div class="room-wapper pt-100 md-pt-80 pb-70 md-pb-50"> <div class="container"> <div class="row"> <div class="col-lg-12"> <!-- section title start --> <div class="section-title text-center section-title-white wow fadeInUp" data-wow-delay=".2s"> <span class="sub-title">Our Room & Suits</span> <h2>Check Our Comfortable luxury Rooms</h2> </div> <!-- section title end --> </div> </div> <div class="row"> <div class="col-12"> <!-- room item box start --> <div class="room-item-box"> <!-- room item start --> <div class="room-item sticky"> <div class="room-image"> <a href="room-details.html"> <figure class="image-anime"> <img src="assets/images/room/room-1.jpg" alt="room image one"> </figure> </a> </div> <div class="room-content"> <div class="room-content-top"> <h2 class="line-anime"><a href="#">Deluxe King Bed (A/C) | <li style="font-size:14px;"> <i class="fa-solid fa-clock"></i> <strong>Check-in:</strong> 11:00 AM | <strong>Check-out:</strong> 11:00 AM </li></a></h2> <p>Our rooms are clean, spacious, and designed for comfort, making Oceanica Beach Resort the best beach resort in Dublagadi for a stress-free stay.</p> <div class="room-meta"> <ul> <li> <i class="fa-solid fa-wifi"></i> <span>Free Wi-Fi</span> </li> <li> <i class="fa-solid fa-bed"></i> <span>King Size Bed</span> </li> <li> <i class="fa-solid fa-martini-glass-citrus"></i> <span>Welcome Drink</span> </li> <li> <i class="fa-solid fa-mug-hot"></i> <span>Breakfast</span> </li> <li> <i class="fa-solid fa-utensils"></i> <span>Lunch</span> </li> <li> <i class="fa-solid fa-cookie-bite"></i> <span>Evening Snacks with Tea/Coffee</span> </li> <li> <i class="fa-solid fa-bowl-food"></i> <span>Dinner</span> </li> <li> <i class="fa-solid fa-square-parking"></i> <span>Parking</span> </li> </ul> </div> </div> <div class="room-content-bottom"> <div class="room-price"> <p>βΉ1800 / Night</p> </div> <div class="room-button-wapper"> <a href="booking.php" class="theme-button style-1" aria-label="Room Details"> Book Now </a> </div> </div> </div> </div> <!-- room item end --> <!-- room item start --> <div class="room-item sticky"> <div class="room-image"> <a href="room-details.html"> <figure class="image-anime"> <img src="assets/images/room/room-1.jpg" alt="room image one"> </figure> </a> </div> <div class="room-content"> <div class="room-content-top"> <h2 class="line-anime"><a href="#">Deluxe King Bed (Non A/C)</a> <li style="font-size:14px;"> <i class="fa-solid fa-clock"></i> <strong>Check-in:</strong> 11:00 AM | <strong>Check-out:</strong> 11:00 AM </li></a></h2> </h2> <p>Our rooms are clean, spacious, and designed for comfort, making Oceanica Beach Resort the best beach resort in Dublagadi for a stress-free stay.</p> <div class="room-meta"> <ul> <li> <i class="fa-solid fa-wifi"></i> <span>Free Wi-Fi</span> </li> <li> <i class="fa-solid fa-bed"></i> <span>King Size Bed</span> </li> <li> <i class="fa-solid fa-martini-glass-citrus"></i> <span>Welcome Drink</span> </li> <li> <i class="fa-solid fa-mug-hot"></i> <span>Breakfast</span> </li> <li> <i class="fa-solid fa-utensils"></i> <span>Lunch</span> </li> <li> <i class="fa-solid fa-cookie-bite"></i> <span>Evening Snacks with Tea/Coffee</span> </li> <li> <i class="fa-solid fa-bowl-food"></i> <span>Dinner</span> </li> <li> <i class="fa-solid fa-square-parking"></i> <span>Parking</span> </li> </ul> </div> </div> <div class="room-content-bottom"> <div class="room-price"> <p>βΉ1500 / Night</p> </div> <div class="room-button-wapper"> <a href="booking.php" class="theme-button style-1" aria-label="Room Details"> Book Now </a> </div> </div> </div> </div> <!-- room item end --> </div> <!-- room item box end --> </div> </div> </div> </div> <!-- room wapper end --> <!-- room shape bottom start --> <!-- room shape bottom end --> </section> <!-- room section end --> <!-- services section start --> <section class="services-section-1 pt-100 md-pt-80 pb-100 md-pb-80"> <div class="container"> <div class="row"> <div class="col-lg-12"> <!-- section title start --> <div class="section-title text-center wow fadeInUp" data-wow-delay=".2s"> <span class="sub-title">Our Services</span> <h2 style="font-size:25px;">Explore Beach Resort Services</h2> </div> <!-- section title end --> </div> </div> <div class="row"> <div class="col-xl-4 col-lg-6 col-md-6"> <!-- services item start --> <div class="services-item wow fadeInUp" data-wow-delay=".3s" > <div class="services-image"> <a href="services.php"> <figure class="image-anime"> <img src="assets/images/services/a.png" alt="gym center"> </figure> </a> </div> <div class="services-content"> <div class="services-icon-box"> <div class="services-icon-content"> <h2 class="services-title line-anime"><a href="services.php">Corporate Party</a></h2> </div> </div> <p style="text-align:justify;">Oceanica Beach Resort offers a perfect beachside setup for corporate parties, meetings, and team outings with peaceful surroundings, quality food, open space, and professional arrangements for a refreshing work experience.</p> <div class="services-button-wapper"> <a href="services.php" class="theme-button style-1" aria-label="View Services"> View Services </a> </div> </div> </div> <!-- services item end --> </div> <div class="col-xl-4 col-lg-6 col-md-6"> <!-- services item start --> <div class="services-item wow fadeInUp" data-wow-delay=".4s"> <div class="services-image"> <a href="services.php"> <figure class="image-anime"> <img src="assets/images/services/b.png" alt="spa and massage"> </figure> </a> </div> <div class="services-content"> <div class="services-icon-box"> <div class="services-icon-content"> <h2 class="services-title line-anime"><a href="services.php">Birthday Party</a></h2> </div> </div> <p>Celebrate your birthday in a joyful beach environment with customized decoration, delicious food, music, and spacious seating. Our resort ensures memorable birthday celebrations for kids, families, and friends.</p> <div class="services-button-wapper"> <a href="services.php" class="theme-button style-1" aria-label="View Services"> View Services </a> </div> </div> </div> <!-- services item end --> </div> <div class="col-xl-4 col-lg-6 col-md-6"> <!-- services item start --> <div class="services-item wow fadeInUp" data-wow-delay=".5s"> <div class="services-image"> <a href="services.php"> <figure class="image-anime"> <img src="assets/images/services/c.png" alt="swimming pool"> </figure> </a> </div> <div class="services-content"> <div class="services-icon-box"> <div class="services-icon-content"> <h2 class="services-title line-anime"><a href="services.php">Engagement</a></h2> </div> </div> <p>Make your engagement special with a romantic seaside setup. We provide beautiful decoration, peaceful ambiance, tasty food, and a perfect beach background to celebrate your new beginning.</p> <div class="services-button-wapper"> <a href="services.php" class="theme-button style-1" aria-label="View Services"> View Services </a> </div> </div> </div> <!-- services item end --> </div> <div class="col-xl-4 col-lg-6 col-md-6"> <!-- services item start --> <div class="services-item wow fadeInUp" data-wow-delay=".6s"> <div class="services-image"> <a href="services.php"> <figure class="image-anime"> <img src="assets/images/services/d.png" alt="restaurant and bar"> </figure> </a> </div> <div class="services-content"> <div class="services-icon-box"> <div class="services-icon-content"> <h2 class="services-title line-anime"><a href="services.php">Bonfire Camp</a></h2> </div> </div> <p>Enjoy a complimentary bonfire camp near the beach, perfect for evening relaxation, group fun, and memorable moments under the open sky with warmth, comfort, and coastal vibes.</p> <div class="services-button-wapper"> <a href="services.php" class="theme-button style-1" aria-label="View Services"> View Services </a> </div> </div> </div> <!-- services item end --> </div> <div class="col-xl-4 col-lg-6 col-md-6"> <!-- services item start --> <div class="services-item wow fadeInUp" data-wow-delay=".7s"> <div class="services-image"> <a href="services.php"> <figure class="image-anime"> <img src="assets/images/services/g.png" alt="car rental"> </figure> </a> </div> <div class="services-content"> <div class="services-icon-box"> <div class="services-icon-content"> <h2 class="services-title line-anime"><a href="services.php">Beach Party</a></h2> </div> </div> <p>Host private beach parties with music, lighting, food, and open space. Oceanica Beach Resort offers the perfect venue for night parties, group celebrations, and special occasions by the sea.</p> <div class="services-button-wapper"> <a href="services.php" class="theme-button style-1" aria-label="View Services"> View Services </a> </div> </div> </div> <!-- services item end --> </div> <div class="col-xl-4 col-lg-6 col-md-6"> <!-- services item start --> <div class="services-item wow fadeInUp" data-wow-delay=".8s"> <div class="services-image"> <a href="services.php"> <figure class="image-anime"> <img src="assets/images/services/f.png" alt="jogging track"> </figure> </a> </div> <div class="services-content"> <div class="services-icon-box"> <div class="services-icon-content"> <h2 class="services-title line-anime"><a href="services.php">Picnic Spot</a></h2> </div> </div> <p>Our resort is an ideal picnic spot with open beachside space, fresh air, seating arrangements, and food options, making it perfect for family outings, school groups, and friendsβ gatherings.</p> <div class="services-button-wapper"> <a href="services.php" class="theme-button style-1" aria-label="View Services"> View Services </a> </div> </div> </div> <!-- services item end --> </div> </div> <div class="row"> <div class="col-lg-12"> <!-- more service content start --> <div class="more-service-content"> <!-- service button wappper start --> <div class="services-button-wapper"> <a href="services.html" class="theme-button style-1" aria-label="Browse All Services"> Browse All Services </a> </div> <!-- service button wappper end --> </div> <!-- more service content end --> </div> </div> </div> </section> <!-- services section end --> <!-- team section start --> <section class="team-section-3 extra-color pt-100 md-pt-80 pb-100 md-pb-80"> <div class="container"> <div class="row"> <div class="col-lg-12"> <!-- section title start --> <div class="section-title text-center wow fadeInUp" data-wow-delay=".2s"> <span class="sub-title">Nearest Place to Visit</span> <h2>Nearest Place to Visit</h2> </div> <!-- section title end --> </div> </div> <div class="row"> <div class="col-lg-12"> <!-- team wapper start --> <div class="team-wapper"> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".3s"> <div class="team-image"> <a href="assets/images/team/team-9.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-9.jpg" alt="team image nine"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="#">Chandipur Beach β 28 km</a></h2> <p>Famous for its vanishing sea, Chandipur Beach is a unique attraction near Balasore. The sea recedes up to five kilometers, creating a rare natural phenomenon and a must-visit tourist destination.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".4s"> <div class="team-image"> <a href="assets/images/team/team-10.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-10.jpg" alt="team image ten"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-10.jpg">Udaypur Beach β 30 km</a></h2> <p>Udaypur Beach is a clean and peaceful beach ideal for couples and families. It offers scenic beauty, quiet surroundings, and beautiful sunset views away from crowded tourist places.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".5s"> <div class="team-image"> <a href="assets/images/team/team-11.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-11.jpg" alt="team image eleven"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-11.jpg">Panchalingeswar Temple β 42 km</a></h2> <p>Located in the Nilgiri hills, Panchalingeswar is a famous Shiva temple surrounded by hills, streams, and forests. It is a perfect spiritual and nature destination near Balasore.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-12.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-12.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-12.jpg">Kuldiha Wildlife Sanctuary β 48 km</a></h2> <p>Kuldiha Wildlife Sanctuary is a nature loverβs paradise with forests, hills, waterfalls, and wildlife. It is ideal for eco-tourism, trekking, and a refreshing break from beach travel.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-13.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-13.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-13.jpg">Khira Chora Gopinath Temple β 35 km</a></h2> <p>This famous temple of Lord Krishna is well known for its spiritual importance and history. Visitors come here for blessings, peaceful surroundings, and traditional Odia culture experience.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-14.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-14.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-14.jpg">Nilagiri Hill Area β 45 km</a></h2> <p>Nilagiri offers scenic hill views, cool weather, and natural beauty. It is a great place for short hill trips, photography, and enjoying a calm environment away from the beach.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-15.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-15.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-15.jpg">Emami Jagannath Temple β 27 km</a></h2> <p>Emami Jagannath Temple is a beautiful and peaceful spiritual destination near Balasore. Known for its grand architecture and calm surroundings, it is ideal for devotees seeking blessings and a divine atmosphere.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-16.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-16.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-16.jpg">Chandaneswar Shiva Temple β 110 km</a></h2> <p>A famous Shiva temple near the OdishaβWest Bengal border, Chandaneswar is known for Mahashivratri celebrations and strong religious faith among devotees from both states.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-17.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-17.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-17.jpg">Panda Amusement Park β 26 km</a></h2> <p>Panda Amusement Park is a fun-filled destination near Balasore, ideal for families and children. It offers exciting rides, play zones, and entertainment activities, making it perfect for a joyful day outing.</p> </div> </div> <!-- team item end --> <!-- team item start --> <div class="team-item wow fadeInUp" data-wow-delay=".6s"> <div class="team-image"> <a href="assets/images/team/team-18.jpg"> <figure class="image-anime"> <img src="assets/images/team/team-18.jpg" alt="team image twelve"> </figure> </a> </div> <div class="team-content"> <h2 class="team-title line-anime"><a href="assets/images/team/team-18.jpg">Padmabati Park β 24 km</a></h2> <p>Padmabati Park is a peaceful green park in Balasore, perfect for morning walks, family relaxation, and nature lovers. The park offers open space, greenery, and a calm environment away from city noise.</p> </div> </div> <!-- team item end --> </div> <!-- team wapper start --> </div> </div> </div> </section> <!-- team section end --> <!-- video section start --> <section class="video-section-3 background-one pt-100 md-pt-80" data-img-src="assets/images/shape/bg-shape-1.png"> <div class="container"> <div class="row"> <div class="col-lg-12"> <!-- section title start --> <div class="section-title section-title-white text-center wow fadeInUp" data-wow-delay=".2s"> <span class="sub-title">Camp Tour</span> <h2>Explore our Camp Tour</h2> </div> <!-- section title end --> </div> </div> <div class="row"> <div class="col-lg-12"> <!-- video wapper start --> <div class="video-box" data-img-src="assets/images/video/video-2.jpg"> <a class="video-popup video-play play-center wow fadeInUp" data-wow-delay=".4s" href="https://www.youtube.com/watch?v=DIOpaByZFgI" aria-label="play video"> <span class="icon"><i class="fa-solid fa-play"></i></span> </a> </div> <!-- cta video wapper end --> </div> </div> </div> </section> <!-- video section end --> <!-- gallery section start --> <section class="gallery-section pt-100 md-pt-80 pb-70 md-pb-50"> <div class="container"> <div class="row"> <div class="col-lg-12"> <!-- section title start --> <div class="section-title text-center wow fadeInUp" data-wow-delay=".2s"> <span class="sub-title">Our Gallery</span> <h2>Hotel Gallery</h2> </div> <!-- section title end --> </div> </div> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-12"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-1.jpg" alt="photo gallery one"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-1.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> <div class="col-lg-6 col-md-6 col-sm-12"> <div class="row"> <div class="col-lg-6 col-md-6 col-sm-6"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-2.jpg" alt="photo gallery two"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-2.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> <div class="col-lg-6 col-md-6 col-sm-6"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-3.jpg" alt="photo gallery three"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-3.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> <div class="col-lg-6 col-md-6 col-sm-6"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-4.jpg" alt="photo gallery four"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-4.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> <div class="col-lg-6 col-md-6 col-sm-6"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-5.jpg" alt="photo gallery five"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-5.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> </div> </div> <div class="col-lg-4 col-md-4 col-sm-12"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-6.jpg" alt="photo gallery six"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-6.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> <div class="col-lg-4 col-md-4 col-sm-12"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-7.jpg" alt="photo gallery seven"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-7.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> <div class="col-lg-4 col-md-4 col-sm-12"> <!-- photo-gallery start --> <div class="photo-gallery"> <div class="photo-gallery-image"> <figure class="image-anime"> <img src="assets/images/gallery/gallery-8.jpg" alt="photo gallery eight"> </figure> </div> <div class="photo-gallery-icon"> <a class="photo-popup" href="assets/images/gallery/gallery-8.jpg" aria-label="photo gallery"><i class="fa-solid fa-plus"></i></a> </div> </div> <!-- photo-gallery end --> </div> </div> </div> </section> <!-- gallery section end --> <!-- testimonials section two start --> <section class="testimonials-section-3 pt-100 md-pt-80" data-img-src="assets/images/testimonials/testimonials-bg.svg"> <div class="container"> <div class="row"> <div class="col-lg-6"> <div class="testimonials-image"> <figure class="image-anime"> <img src="assets/images/testimonials/testimonials-3-1.jpg" alt="testimonials image"> </figure> </div> </div> <div class="col-lg-6"> <!-- section title start --> <div class="section-title wow fadeInUp" data-wow-delay=".2s"> <span class="sub-title">Testimonials</span> <h2>Hear from our satisfied customers</h2> </div> <!-- section title end --> <!-- testimonials slider one start --> <div class="swiper testimonials-slider-one"> <!-- swiper wrapper start --> <div class="swiper-wrapper"> <!-- swiper slide start --> <div class="swiper-slide"> <!-- testimonials item start --> <div class="testimonials-item style-two"> <div class="testimonials-content"> <div class="testimonials-quote"> <figure> <img src="assets/images/testimonials/quote.png" alt="testimonials quote"> </figure> </div> <p>"We came here with family just to relax and honestly loved the calm vibe. The Oceanica Beach Resort is the best Beach Resort in Bagda. Beach is very close and food was surprisingly good."</p> </div> <div class="testimonials-author"> <div class="testimonials-author-image"> <figure> <img src="assets/images/testimonials/t2.jpg" alt="testimonials avatar six"> </figure> <div class="testimonials-review"> <i class="fa-solid fa-star active"></i> <span>4.9</span> </div> </div> <div class="testimonials-author-content"> <h2>Rabina Dash</h2> <p>Guest</p> </div> </div> </div> <!-- testimonials item end --> </div> <!-- swiper slide end --> <!-- swiper slide start --> <div class="swiper-slide"> <!-- testimonials item start --> <div class="testimonials-item style-two"> <div class="testimonials-content"> <div class="testimonials-quote"> <figure> <img src="assets/images/testimonials/quote.png" alt="testimonials quote"> </figure> </div> <p>"Stayed here for one night and didnβt expect this much peace. Staff were polite and helpful. The Oceanica Beach Resort is the best Beach Resort in Bagda, no doubt about it."</p> </div> <div class="testimonials-author"> <div class="testimonials-author-image"> <figure> <img src="assets/images/testimonials/t1.jpg" alt="testimonials avatar seven"> </figure> <div class="testimonials-review"> <i class="fa-solid fa-star active"></i> <span>4.9</span> </div> </div> <div class="testimonials-author-content"> <h2>Alok Sahu</h2> <p>Guest</p> </div> </div> </div> <!-- testimonials item end --> </div> <!-- swiper slide end --> <!-- swiper slide start --> <div class="swiper-slide"> <!-- testimonials item start --> <div class="testimonials-item style-two"> <div class="testimonials-content"> <div class="testimonials-quote"> <figure> <img src="assets/images/testimonials/quote.png" alt="testimonials quote"> </figure> </div> <p>"Perfect place if you want to stay away from crowd and noise. Morning walk on the beach was amazing. The Oceanica Beach Resort is the best Beach Resort in Bagda for a quiet break."</p> </div> <div class="testimonials-author"> <div class="testimonials-author-image"> <figure> <img src="assets/images/testimonials/t4.jpg" alt="testimonials avatar eight"> </figure> <div class="testimonials-review"> <i class="fa-solid fa-star active"></i> <span>4.9</span> </div> </div> <div class="testimonials-author-content"> <h2>Mira Gupta</h2> <p>Guest</p> </div> </div> </div> <!-- testimonials item end --> </div> <!-- swiper slide end --> <div class="swiper-slide"> <!-- testimonials item start --> <div class="testimonials-item style-two"> <div class="testimonials-content"> <div class="testimonials-quote"> <figure> <img src="assets/images/testimonials/quote.png" alt="testimonials quote"> </figure> </div> <p>"We celebrated my sonβs birthday here and everything went smoothly. Food, space, and setup were nice. The Oceanica Beach Resort is the best Beach Resort in Bagda for small functions."</p> </div> <div class="testimonials-author"> <div class="testimonials-author-image"> <figure> <img src="assets/images/testimonials/t3.jpg" alt="testimonials avatar eight"> </figure> <div class="testimonials-review"> <i class="fa-solid fa-star active"></i> <span>4.9</span> </div> </div> <div class="testimonials-author-content"> <h2>Mr. Bubu</h2> <p>Guest</p> </div> </div> </div> <!-- testimonials item end --> </div> <!-- swiper slide end --> </div> <!-- swiper wrapper end --> <!-- swiper actions start --> <div class="swiper-actions ms-2"> <div class="dot"></div> </div> <!-- swiper actions end --> </div> <!-- testimonials slider one end --> </div> </div> </div> </section> <!-- testimonials section two end --> </main> <!-- main end --> <?php include 'footer.php'; ?>
Upload File
Create Folder