/* Fonts */

@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800");

/* Import CSS */

@import "css/bootstrap/bootstrap.min.css";
@import "css/others/animate.css";
@import "css/others/magnific-popup.css";
@import "css/others/owl.carousel.min.css";
@import "css/others/font-awesome.min.css";
@import "css/others/pe-icon-7-stroke.css";

/* Base CSS */
:root {
  --primary-blue: rgba(21, 58, 102);
  --primary-blue-light: rgba(58, 154, 204);
  --primary-brown: rgb(139, 74, 16);
  --medium-brown: rgb(192, 138, 50);
  --light-brown: rgb(227, 192, 98);
}

* {
  margin: 0;
  padding: 0;
}

#preloader {
  overflow: hidden;
  background-color: var(--primary-blue);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
}

.azo-load {
  width: 60px;
  height: 60px;
  background-color: transparent;
  position: relative;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.2)
    rgba(255, 255, 255, 0.95);
  z-index: 9;
  top: 50%;
  margin-left: -30px;
  margin-top: -30px;
  left: 50%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-animation: 4000ms linear 0s normal none infinite running azoload;
  animation: 4000ms linear 0s normal none infinite running azoload;
}

@-webkit-keyframes azoload {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes azoload {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #2a2a2a;
  line-height: 1.3;
}

p {
  color: #848484;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.section-padding-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-padding-150-0 {
  padding-top: 150px;
  padding-bottom: 0;
}

.section-padding-0-150 {
  padding-top: 0;
  padding-bottom: 150px;
}

.section-padding-100-50 {
  padding-top: 100px;
  padding-bottom: 50px;
}

.section-padding-150-50 {
  padding-top: 150px;
  padding-bottom: 50px;
}

.section-padding-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-padding-100-0 {
  padding-top: 100px;
  padding-bottom: 0;
}

.section-padding-0-100 {
  padding-top: 0;
  padding-bottom: 100px;
}

img {
  max-width: 100%;
  height: auto;
}

.mt-15 {
  margin-top: 15px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-150 {
  margin-top: 150px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-100 {
  margin-right: 100px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-100 {
  margin-bottom: 100px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-100 {
  margin-left: 100px;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  outline: none;
  font-weight: 600;
}

li {
  list-style: none;
}

.height-500 {
  height: 500px !important;
}

.height-600 {
  height: 600px !important;
}

.height-700 {
  height: 700px !important;
}

.height-800 {
  height: 800px !important;
}

.azo-table {
  display: table;
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 2;
}

.azo-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.section-heading span {
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto 15px;
  display: block;
}

.section-heading h4 {
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-heading p {
  line-height: 1;
  color: #fff;
  margin-bottom: 0;
}

.section-heading.dark span {
  background-color: #7643ea;
}

.section-heading.dark h4 {
  color: #2a2a2a;
}

.section-heading.dark p {
  color: #848484;
}

#scrollUp {
  bottom: 70px;
  font-size: 18px;
  right: 0;
  width: 40px;
  background-color: var(--primary-blue);
  color: #fff;
  text-align: center;
  height: 40px;
  line-height: 44px;
  border-radius: 0;
  font-size: 36px;
}

.bg-img {
  background-position: center center;
  background-size: cover;
}

.bg-overlay,
.bg-overlay-9 {
  position: relative;
  z-index: 1;
}

.bg-overlay:after,
.bg-overlay-9:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: color-mix(in srgb, var(--primary-blue), transparent 75%);
  z-index: -1;
}

.bg-overlay-9:after {
  background-color: rgba(14, 2, 35, 0.9);
}

.bg-gray {
  background-color: #f9f9f9;
}

.bg-default {
  background-color: #341a79;
}

.azo-btn {
  min-width: 180px;
  height: 52px;
  background-color: var(--primary-blue);
  border-radius: 0;
  padding: 0 15px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.azo-btn:hover,
.azo-btn:focus {
  color: #fff;
  background-color: var(--primary-blue-light);
  font-weight: 600;
}

/* Search Area CSS */

.azo-search-form {
  width: 100%;
  position: fixed;
  z-index: 99999;
  height: 120px;
  background-color: #341a79;
  top: -200px;
  left: 0;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  overflow-x: hidden;
}

.search-form-on .azo-search-form {
  top: 0;
}

.sticky .azo-search-form {
  height: 80px;
}

.azo-search-form form {
  position: relative;
  z-index: 1;
}

.azo-search-form form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: transparent;
  height: 50px;
  color: #fff;
  padding: 0 20px;
  font-size: 14px;
}

#closeBtn {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 9;
  background-color: transparent;
  margin-top: -15px;
  top: 50%;
  border-radius: 50%;
  right: 30px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

#closeBtn:hover {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#closeBtn > i {
  line-height: 30px;
  font-size: 28px;
}

/* Header & Menu Area CSS */

.header_area {
  position: fixed;
  width: 100%;
  z-index: 9999;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition-duration: 700ms;
  transition-duration: 700ms;
  background: color-mix(in srgb, #fff, transparent 75%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 30px;
}

.sticky .header_area {
  background-color: color-mix(in srgb, var(--primary-blue), transparent 10%);
  height: 80px;
  z-index: 9999;
  border-bottom: 1px solid transparent;
}

/* Mobile menu header background */
@media (max-width: 991.98px) {
  .header_area {
    background: var(--primary-blue);
    border-bottom: 1px solid transparent;
  }

  .sticky .header_area {
    background: var(--primary-blue);
  }
}

.navbar-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-right: 70px;
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: #fff;
  font-weight: 700;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 25px;
  padding-left: 25px;
  color: white;
  font-size: 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: var(--medium-brown);
}

.azo-search-btn > a,
.azo-signin-btn > a {
  color: #fff;
  display: inline-block;
  margin-right: 40px;
  font-size: 15px;
}

.azo-search-btn > a i {
  padding-right: 10px;
}

.dropdown-menu {
  border: none;
}

.dropdown-item {
  font-weight: 600;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #7643ea;
  color: #fff;
}

.dropdown-toggle:after {
  border: none;
}
@media (max-width: 991.98px) {
  #azoNav {
    background: var(--primary-blue-light);
    padding: 15px 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
  }
}

/* Welcome Area CSS */

.azo-welcome-area {
  width: 100%;
  height: 945px;
  position: relative;
  z-index: 1;
}

.hero-content h2 {
  color: #fff;
  font-size: 72px;
}

.hero-content h4 {
  color: #fff;
  margin-bottom: 0;
  padding-left: 5px;
}

.hero-search-form {
  margin-top: 90px;
  position: relative;
  z-index: 1;
}

.hero-search-form .nav-tabs {
  border-bottom: none;
}

.hero-search-form .nav-tabs .nav-link {
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  /* background-color: color-mix(in srgb, var(--light-brown), transparent 50%); */
  background-color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  min-width: 100px;
  height: 44px;
  line-height: 44px;
  padding: 0;
  text-align: center;
}

.hero-search-form .nav-tabs .nav-link.active {
  color: var(--medium-brown);
  /* background-color: color-mix(in srgb, var(--primary-brown), transparent 50%); */
  background-color: rgba(255, 255, 255, 0.75);
  border-color: transparent;
}

.hero-search-form .tab-content .tab-pane {
  padding: 35px;
  /* background-color: color-mix(in srgb, var(--medium-brown), transparent 50%); */
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-search-form .tab-content .tab-pane h6 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-search-form .tab-content .tab-pane form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hero-search-form .tab-content .tab-pane form .custom-select {
  height: 52px;
  border-radius: 0;
  padding: 0 80px 0 40px;
  color: #72728c;
  font-size: 12px;
  font-weight: 600;
  border: none;
  margin-right: 10px;
}

.hero-social-btn {
  position: absolute;
  width: auto;
  height: auto;
  bottom: 90px;
  left: 60px;
  z-index: 9;
}

.hero-social-btn .social-title {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-left: -145px;
}

.hero-social-btn .social-title h6 {
  margin-bottom: 0;
  color: #fff;
  line-height: 1;
  margin-right: 30px;
}

.hero-social-btn .social-title span {
  background-color: #fff;
  width: 80px;
  height: 1px;
  display: block;
}

.hero-social-btn .social-btns {
  margin-top: 170px;
}

.hero-social-btn .social-btns > a {
  font-size: 15px;
  color: #fff;
  display: block;
  margin-top: 30px;
}

/* Catagory Area CSS */

.azo-catagory-area {
  position: relative;
  z-index: 9;
}

.single-catagory-area {
  background-color: #7643ea;
  text-align: center;
  padding: 60px 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-catagory-area:hover {
  box-shadow: 5px 20px 30px rgba(0, 0, 0, 0.3);
}

.all-catagories {
  position: relative;
  top: -50%;
  z-index: 15;
}

.single-catagory-area .catagory-content img {
  margin-bottom: 15px;
}

.single-catagory-area .catagory-content h6 {
  margin-bottom: 0;
  color: #fff;
}

/* About Us Area CSS */

.about-content h2 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.about-content span {
  font-size: 42px;
  color: var(--primary-blue-light);
}

.about-content span#dif-span {
  font-size: 22px;
  color: var(--primary-blue-light);
}

.about-content p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 0;
}

/* Editor's Pick Area CSS */

.azo-editors-pick-area {
  position: relative;
  z-index: 1;
}

.editors-pick-info .places-total-destinations > a,
.editors-pick-info .add-more > a {
  height: 70px;
  display: inline-block;
  line-height: 70px;
  background-color: #7643ea;
  padding: 0 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
}

.editors-pick-info .places-total-destinations > a:last-child {
  text-transform: capitalize;
  font-weight: 400;
  background-color: #2a2a2a;
}

.editors-pick-info .add-more > a {
  background-color: #30c0a3;
  padding: 0 30px;
  font-size: 24px;
}

.single-editors-pick-area {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.editors-pick-info {
  position: absolute;
  top: 25px;
  left: 25px;
  z-index: 9;
}

/* Features Area CSS */

.azo-features-destinations-area,
.azo-features-restaurant-area {
  padding: 50px 35px;
  position: relative;
  z-index: 1;
}

.single-features-area {
  position: relative;
  z-index: 1;
  background-color: #f4f6f8;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-features-area .price-start p {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--primary-blue);
  height: 35px;
  font-size: 12px;
  line-height: 35px;
  margin-bottom: 0;
  padding: 0 15px;
  font-weight: 600;
  color: #fff;
  z-index: 9;
  box-shadow: 0 4px 12px rgb(11, 28, 49, 0.7);
}

.feature-content {
  padding: 40px 30px;
}

.feature-content .feature-title h5 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.feature-content .feature-title p {
  font-size: 14px;
  margin-bottom: 0;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.feature-favourite > a {
  color: var(--primary-blue);
  font-size: 24px;
}

.single-features-area:hover {
  background-color: var(--primary-blue);
  box-shadow: 3px 15px 30px rgba(0, 0, 0, 0.15);
}

.single-features-area:hover .feature-content .feature-title h5,
.single-features-area:hover .feature-content .feature-title p,
.single-features-area:hover .feature-favourite > a {
  color: #fff;
}

/* Initial state */
.reveal-card {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

/* Active state */
.reveal-card.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger effect */
.reveal-card:nth-child(1) {
  transition-delay: 0.1s;
}

.reveal-card:nth-child(2) {
  transition-delay: 0.2s;
}

.reveal-card:nth-child(3) {
  transition-delay: 0.3s;
}

.reveal-card:nth-child(4) {
  transition-delay: 0.4s;
}

.reveal-card:nth-child(5) {
  transition-delay: 0.5s;
}

.ratings-map-area > a {
  padding: 0 30px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  height: 70px;
  line-height: 70px;
  background-color: #7643ea;
}

.ratings-map-area > a:last-child {
  background-color: #2a2a2a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.ratings-map-area {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9;
}

.single-features-area:hover .ratings-map-area > a:last-child {
  background-color: #30c0a3;
}

/* Feature Events Area CSS */

.single-feature-events-area {
  position: relative;
  z-index: 1;
  background-color: #fff;
  margin-bottom: 50px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.single-feature-events-area .feature-events-thumb {
  position: relative;
  z-index: 1;
}

.date-map-area {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.date-map-area > a {
  padding: 8px 15px;
  font-size: 12px;
  width: 65px;
  font-weight: 800;
  color: #fff;
  height: 50px;
  background-color: #7643ea;
  text-align: center;
}

.date-map-area > a:last-child {
  background-color: #30c0a3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.feature-events-thumb {
  width: 170px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 170px;
  flex: 0 0 170px;
}

.feature-events-content {
  position: relative;
  z-index: 2;
  padding: 0 15% 0 15px;
}

.feature-events-details-btn > a {
  width: 65px;
  height: 50px;
  background-color: #2a2a2a;
  display: block;
  font-size: 24px;
  color: #fff;
  line-height: 50px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.feature-events-content h5 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.feature-events-content h6 {
  font-size: 14px;
  font-weight: 400;
  color: #bfb1de;
  margin-bottom: 15px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
}

.feature-events-content p {
  font-size: 14px;
  -webkit-transition-duration: 500ms;
  transition-duration: 500ms;
  margin-bottom: 0;
}

.single-feature-events-area:hover {
  background-color: #7643ea;
}

.single-feature-events-area:hover .feature-events-content h5,
.single-feature-events-area:hover .feature-events-content p {
  color: #fff;
}

/* Footer Area CSS */

.azo-footer-area {
  padding: 50px 35px;
  border-top: 1px solid #bec0cc;
}

.footer-text p {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
}

.footer-social-btns > a {
  display: inline-block;
  color: #464646;
  padding: 0 15px;
  font-size: 18px;
}

/* Breadcumb Area CSS */

.breadcumb-area {
  height: 120px;
  position: relative;
  z-index: 1;
}

/* Contact Area CSS */

.contact-form-area {
  position: relative;
  z-index: 1;
  padding: 100px 40px 100px 50px;
}

.contact-form-area,
.azo-map-area {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

#googleMap {
  width: 100%;
  height: 100%;
}

.contact-text h4 {
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 50px;
}

.contact-text p {
  font-size: 14px;
  line-height: 2;
  margin: 0;
}

.single-contact-info {
  margin: 70px 0;
}

.single-contact-info:first-child {
  margin-right: 65px;
}

.single-contact-info h6 {
  font-size: 14px;
}

.single-contact-info h6 > i {
  color: #c2b6d9;
  margin-right: 30px;
}

.contact-form {
  padding: 70px 30px;
  background-color: #f3edff;
}

.contact-form-title h6 {
  font-size: 18px;
  margin-bottom: 30px;
}

.contact-form .form-control {
  height: 50px;
  font-size: 12px;
  color: #72728c;
  font-weight: 600;
  border: none;
  border-radius: 0;
  margin-bottom: 30px;
}

.contact-form textarea.form-control {
  height: 110px;
}

/* Explore Area CSS */

.explore-search-area,
.explore-map-area {
  height: 1100px;
}

#exploreGoogleMap {
  width: 100%;
  height: 100%;
}

.explore-search-area,
.explore-map-area,
.explore-search-form,
.explore-search-result {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  width: 50%;
}

.explore-search-form {
  background-color: #7643ea;
  padding: 50px 40px;
}

.explore-search-form h6 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 35px;
}

.explore-search-form .nav-tabs {
  border-bottom: none;
  margin-bottom: 65px;
}

.explore-search-form .nav-tabs .nav-link {
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  /* background-color: color-mix(in srgb, var(--light-brown), transparent 50%); */
  background-color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
  min-width: 100px;
  height: 44px;
  line-height: 44px;
  padding: 0;
  text-align: center;
}

.explore-search-form .nav-tabs .nav-link.active {
  color: #fff;
  /* background-color: color-mix(in srgb, var(--primary-brown), transparent 10%); */
  background-color: rgba(255, 255, 255, 0.75);
  border-color: transparent;
}

.explore-search-form .tab-content .tab-pane h6 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
}

.explore-search-form .tab-content .tab-pane form .custom-select {
  height: 52px;
  border-radius: 0;
  padding: 0 80px 0 40px;
  color: #72728c;
  font-size: 12px;
  font-weight: 600;
  border: none;
  width: 100%;
  margin-bottom: 30px;
}

.explore-search-form .custom-control-description {
  font-size: 11px;
  color: #fff;
  font-weight: 600;
  line-height: 24px;
}

.explore-search-result {
  padding: 0 40px;
  position: relative;
  z-index: 1;
  height: 1100px;
  overflow-y: auto;
}

.explore-search-result .single-features-area {
  margin-bottom: 30px;
}

/* Single Listing Area CSS */

.breadcumb-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 700px;
}

.map-ratings-review-area {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 999;
}

.map-ratings-review-area > a {
  padding: 0 30px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: 15px;
  background-color: #30c0a3;
}

.map-ratings-review-area > a:nth-child(2) {
  background-color: #7643ea;
}

.map-ratings-review-area > a:last-child {
  background-color: #fff;
  color: #2a2a2a;
}

.book-a-table-widget {
  padding: 50px 30px;
  background-color: #7643ea;
}

.book-a-table-widget h6 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.book-a-table-widget .custom-select {
  width: 100%;
  border: none;
  border-radius: 0;
  margin-bottom: 30px;
  height: 50px;
  font-size: 14px;
  color: #72728c;
  padding: 0 30px;
}

.opening-hours-widget {
  padding: 50px 30px;
  background-color: #f3edff;
  position: relative;
  z-index: 1;
}

.opening-hours-widget h6 {
  margin-bottom: 30px;
  font-size: 18px;
}

.opening-hours li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.opening-hours li:first-child p {
  color: #7643ea;
}

.opening-hours li:last-child p {
  margin-bottom: 0;
}

.author-widget > img {
  width: 43px !important;
  height: 43px !important;
  border-radius: 50%;
  margin-right: 30px;
}

.author-widget .authors-name > a {
  font-size: 14px;
  color: #2a2a2a;
  margin-bottom: 5px;
  display: block;
}

.author-widget .authors-name p {
  font-size: 12px;
  margin-bottom: 0;
}

.author-widget {
  padding: 25px 20px;
  background-color: #f3edff;
}

.contact-form-widget {
  padding: 50px 30px;
}

.contact-form-widget h6 {
  margin-bottom: 30px;
  font-size: 18px;
}

.listing-title {
  margin-bottom: 30px;
}

.listing-title h4 {
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 10px;
}

.listing-title h6 {
  margin-bottom: 0;
}

.single-listing-nav {
  border-bottom: 2px solid #ebebeb;
}

.single-listing-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.single-listing-nav li a {
  padding: 30px 10px;
  font-size: 14px;
  display: block;
  color: #2a2a2a;
  position: relative;
  z-index: 1;
}

.single-listing-nav li.active a,
.single-listing-nav li a:hover {
  color: #7643ea;
}

.single-listing-nav li.active a:after {
  background-color: #7643ea;
  content: "";
  bottom: -2px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 2px;
}

.overview-content p {
  line-height: 2;
  margin-bottom: 50px;
}

.overview-content .custom-control-description {
  font-size: 14px;
  line-height: 22px;
  font-weight: 600;
}

.listing-menu-area h4 {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.single-listing-menu {
  background-color: #f3edff;
  padding: 20px 40px;
  margin-bottom: 5px;
}

.single-listing-menu p {
  margin-bottom: 0;
}

.single-listing-menu:nth-child(odd) {
  background-color: #fbf9ff;
}

.listing-reviews-area h4 {
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 700;
}

.reviewer-meta > img {
  width: 73px !important;
  height: 73px !important;
  border-radius: 50%;
  margin-right: 20px;
}

.review-title-ratings h5 {
  font-style: italic;
  font-size: 18px;
  margin-bottom: 30px;
}

.single-review-area {
  margin-bottom: 50px;
}

.reviewer-content p {
  margin: 0;
  line-height: 2;
}

.reviewer-name {
  padding-left: 93px;
  margin-top: 30px;
}

.reviewer-name p {
  margin-bottom: 0;
  font-size: 12px;
}

.location-on-map h4 {
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 700;
}

#locationMap {
  width: 100%;
  height: 380px;
}

.video-bg {
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Dark overlay */
.video-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

/* Ensure content stays above video */
.video-bg .container,
.video-bg .hero-social-btn {
  position: relative;
  z-index: 2;
}

#town-name {
  color: #ece90e;
  border-right: 3px solid #fff;
  padding-right: 3px;
  animation: blinkCursor 0.8s infinite;
}

@keyframes blinkCursor {
  50% {
    border-color: transparent;
  }
}

.package-card {
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.35s ease;
  cursor: pointer;
}

.package-card img {
  transition: transform 0.6s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.package-card:hover img {
  transform: scale(1.08);
}

.package-card .feature-content {
  padding: 18px;
}

.package-card .feature-title h5 {
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.package-card:hover .feature-title h5 {
  color: #0d6efd;
}

.package-btn {
  margin-top: 16px;
  text-align: right;
}

.package-btn a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px;
}

.package-btn:hover {
  color: white;
}

.package-btn a:hover {
  color: white;
}

.view-all-btn {
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: translateY(-3px);
}

.yeh-about-area {
  background: #f8f9fb;
}

.yeh-info-card,
.yeh-structure-card {
  background: #fff;
  padding: 45px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}

.yeh-info-card:hover,
.yeh-structure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.card-top-line {
  width: 70px;
  height: 4px;
  background: #c9a86a;
  margin-bottom: 25px;
}

.yeh-info-card h3,
.yeh-structure-card h3 {
  font-size: 32px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #222;
}

.yeh-info-card p,
.yeh-structure-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 18px;
}

.yeh-structure-card h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.division-box {
  background: var(--primary-blue);
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.division-box h5 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-blue-light);
}

.division-box span {
  display: block;
  color: #c9a86a;
  font-weight: 600;
  margin-bottom: 20px;
}

.division-box ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style: disc;
}

.division-box p {
  color: white;
}

.division-box li {
  margin-bottom: 10px;
  color: #ffffff;
  list-style: circle;
}

.founder-card {
  position: relative;
}

.founder-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.founder-title {
  display: block;
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

.founder-card p {
  margin-bottom: 18px;
  line-height: 1.9;
}

.section-padding {
  padding: 100px 0;
}

.tour-hero {
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 180px 0 80px 0;
}

.tour-tag {
  background: var(--primary-blue-light);
  padding: 8px 18px;
  border-radius: 50px;
  color: #fff;
}

.tour-hero h1 {
  font-size: 60px;
  margin: 25px 0;
}

.tour-hero h1 span {
  display: block;
  font-size: 26px;
  margin-top: 10px;
}

.highlight-box {
  background: #fff;
  padding: 40px;
  height: 100%;
  border-top: 4px solid var(--primary-blue-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* facts strip  */
.facts-strip {
  background: linear-gradient(135deg, #0b3c6d, #0d5ea8);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.facts-strip::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -250px;
  right: -250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.facts-strip::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  bottom: -175px;
  left: -175px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.fact-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 35px 20px;
  transition: all 0.35s ease;
  z-index: 2;
}

.fact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.fact-card h3 {
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1;
  transition: transform 0.35s ease;
}

.fact-card:hover h3 {
  transform: scale(1.1);
}

.fact-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .fact-card {
    padding: 25px 15px;
  }

  .fact-card h3 {
    font-size: 38px;
  }

  .fact-card p {
    font-size: 13px;
  }
}

/* .timeline-item {
  margin-bottom: 100px;
} */

.day-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  padding: 10px 25px;
  margin-bottom: 20px;
  border-radius: 50px;
}

.include-box {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.included-item {
  text-align: center;
  padding: 25px 15px;
  background: #f6fcf8;
  border: 1px solid #d9f1e1;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
}

.included-item:hover {
  transform: translateY(-4px);
}

.included-item i {
  font-size: 34px;
  color: #28a745;
  margin-bottom: 15px;
  display: block;
}

.included-item span {
  display: block;
  font-weight: 600;
  color: var(--primary-blue);
  font-size: 14px;
}

.exclude-box {
  background: #f8f9fa;
  padding: 35px;
  border-radius: 10px;
  border-left: 3px solid #dee2e6;
}

.exclude-box h5 {
  color: #6c757d;
  margin-bottom: 20px;
}

.exclude-box ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.exclude-box li {
  color: #6c757d;
  margin-bottom: 10px;
  font-size: 14px;
}

.tour-cta {
  background: var(--primary-blue);
  color: #fff;
  padding: 120px 0;
}

.tour-cta h2,
.tour-cta p {
  color: #fff;
}

/* old tour timeline  */
/* .itenerary-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 100px;
}

.itenerary-heading span {
  background-color: var(--primary-blue);
  color: white;
  padding: 5px 15px;
  border-radius: 10px;
}

.itenerary-heading h2 {
  margin: 20px 0 10px 0;
} */
/* 
.tour-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.tour-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-50%);
  background: var(--primary-blue-light);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 50px;
}

.timeline-item.left {
  padding-right: 70px;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 70px;
}

.timeline-marker {
  position: absolute;
  top: 25px;

  width: 64px;
  height: 64px;

  background: var(--primary-blue);
  color: #fff;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-size: 20px;

  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);

  z-index: 2;
}

.timeline-item.left .timeline-marker {
  right: -32px;
}

.timeline-item.right .timeline-marker {
  left: -32px;
}

.timeline-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.timeline-location {
  color: var(--primary-blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.timeline-card h4 {
  color: var(--primary-blue);
  margin-bottom: 15px;
  font-weight: 700;
}

.timeline-card p {
  margin-bottom: 0;
  line-height: 1.8;
  color: #666;
}

@media (max-width: 991px) {
  .tour-timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    margin-left: 0;
    padding-left: 90px;
    padding-right: 0;
  }

  .timeline-item.left .timeline-marker,
  .timeline-item.right .timeline-marker {
    left: -2px;
    right: auto;
  }
} */

/* new tour timeline */
/* ==========================================
   RAMAYANA TRAILS PREMIUM TIMELINE
========================================== */

#itinerary {
  position: relative;
  overflow: hidden;
}

#itinerary::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(rgba(26, 92, 184, 0.08), transparent 70%);
  pointer-events: none;
}

#itinerary::after {
  content: "";
  position: absolute;
  bottom: -300px;
  left: -250px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(rgba(255, 183, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.itenerary-heading span {
  display: inline-block;
  background: rgba(26, 92, 184, 0.08);
  color: var(--primary-blue);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.itenerary-heading h2 {
  margin-top: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.itenerary-heading p {
  max-width: 650px;
  margin: 15px auto 0;
  color: #6c757d;
  font-size: 1.1rem;
}

/* ==========================
   Timeline
========================== */

.tour-timeline {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 0;
}

.tour-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 6px;
  transform: translateX(-50%);
  border-radius: 30px;
  background: linear-gradient(to bottom, #1a5cb8, #3d7ee0, #6ba6ff);
}

/* Animated glow line */

.tour-timeline::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 100%;
  transform: translateX(-50%);
  background: radial-gradient(rgba(255, 255, 255, 0.7), transparent 70%);
  opacity: 0.25;
  animation: pulseLine 4s infinite linear;
}

@keyframes pulseLine {
  0% {
    transform: translateX(-50%) translateY(-50px);
  }
  100% {
    transform: translateX(-50%) translateY(50px);
  }
}

/* ==========================
   Timeline Item
========================== */

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.timeline-item.left {
  padding-right: 85px;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 85px;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================
   Day Marker
========================== */

.timeline-marker {
  position: absolute;
  top: 25px;
  width: 72px;
  height: 72px;

  background: linear-gradient(135deg, var(--primary-blue), #3f7de6);

  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 800;

  border: 5px solid #fff;

  z-index: 5;

  box-shadow:
    0 0 0 10px rgba(26, 92, 184, 0.08),
    0 15px 35px rgba(26, 92, 184, 0.25);

  transition: all 0.4s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.12);
  box-shadow:
    0 0 0 14px rgba(26, 92, 184, 0.12),
    0 20px 45px rgba(26, 92, 184, 0.35);
}

.timeline-item.left .timeline-marker {
  right: -36px;
}

.timeline-item.right .timeline-marker {
  left: -36px;
}

/* ==========================
   Cards
========================== */

.timeline-card {
  position: relative;

  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.9);

  border-radius: 24px;

  padding: 35px;

  overflow: hidden;

  transition: all 0.45s ease;

  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 5px;
  height: 100%;

  /* background: linear-gradient(to bottom, var(--primary-blue), #68a3ff); */
}

.timeline-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* subtle shine */

.timeline-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -100%;
  width: 80%;
  height: 300%;

  background: linear-gradient(
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.3),
    rgba(255, 255, 255, 0)
  );

  transform: rotate(25deg);

  transition: 0.8s;
}

.timeline-card:hover::after {
  left: 180%;
}

/* ==========================
   Location
========================== */

.timeline-location {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;

  border-radius: 30px;

  background: rgba(26, 92, 184, 0.08);

  color: var(--primary-blue);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  margin-bottom: 18px;
}

/* ==========================
   Content
========================== */

.timeline-card h4 {
  color: #17345f;
  font-weight: 800;
  font-size: 1.45rem;
  margin-bottom: 15px;
}

.timeline-card p {
  color: #667085;
  line-height: 1.9;
  margin-bottom: 0;
  font-size: 0.98rem;
}

/* Decorative dots */

.timeline-item::before {
  content: "";
  position: absolute;
  top: 58px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(26, 92, 184, 0.15);
}

.timeline-item.left::before {
  right: 22px;
}

.timeline-item.right::before {
  left: 22px;
}

/* ==========================
   Scroll Animation
========================== */

/* .timeline-item {
  animation: fadeJourney 0.8s ease both;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(7) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(8) {
  animation-delay: 0.7s;
}
.timeline-item:nth-child(9) {
  animation-delay: 0.8s;
}
.timeline-item:nth-child(10) {
  animation-delay: 0.9s;
}

@keyframes fadeJourney {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

/* ==========================
   Mobile
========================== */

@media (max-width: 991px) {
  .tour-timeline::before,
  .tour-timeline::after {
    left: 35px;
  }

  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    margin-left: 0;
    padding-left: 95px;
    padding-right: 0;
  }

  .timeline-item.left .timeline-marker,
  .timeline-item.right .timeline-marker {
    left: 0;
    right: auto;
  }

  .timeline-item::before {
    left: 24px !important;
    right: auto !important;
  }

  .itenerary-heading h2 {
    font-size: 2.2rem;
  }

  .timeline-card {
    padding: 28px;
  }
}

.left-menu,
.right-menu {
  display: flex;
  align-items: center;
}

.left-menu .nav-item,
.right-menu .nav-item {
  margin: 0 12px;
}

.logo-center img {
  max-height: 70px; /* adjust as needed */
}

@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    align-items: center;
  }
}

@media (max-width: 991px) {
  .logo-center {
    margin: 0 auto;
  }

  .navbar-collapse {
    text-align: center;
  }

  .left-menu,
  .right-menu {
    flex-direction: column;
  }

  .azo-add-listings-btn {
    margin-top: 15px;
    text-align: center;
  }
}

.booking-form-card,
.booking-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-info-card h3 {
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.info-item i {
  color: #153a66;
}

.booking-form-card label {
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-form-card .form-control {
  min-height: 52px;
  border-radius: 10px;
}

.booking-form-card textarea.form-control {
  min-height: 140px;
}

.booking-info-card p {
  color: color-mix(in srgb, var(--primary-blue), transparent 33%);
}

.booking-info-card p i {
  margin-right: 10px;
}

/* .booking-form-card .btn {
  padding: 14px 40px;
} */
