@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: var(--poppin);
}


:root {
  --pc: #05203C;
  --sc: #FCB736;
  /* --gradient: linear-gradient(90deg, #0A1E46 0%, #014C71 100%); */
  --black: #000;
  --white: #fff;
  --txt-color: #4E5561;
  --txt-white: #ffffffd9;
  --light-white: #adadad;
  /* --gradient-col: #242627; */
  --fw-medium: 500;
  --fw-semiBold: 600;
  --fw-bold: 700;

  /* font-family */
  --poppin: "Poppins", sans-serif;
  --Just-Another-Hand: "Just Another Hand", cursive;
  /* Size */
  /* --fs-20: 20px; */
  /* --fs-18: 18px; */
  /* --fs-17: 17px; */
  /* --fs-30:30px; */
}


/* heading start */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.5;
  color: var(--black);
  font-weight: var(--fw-semiBold);
}

h1 {
  font-size: clamp(1.625rem, 1rem + 1.6667vw, 2.5rem);
  line-height: 1.4;
}

.h1 {
  font-size: clamp(1.625rem, 1rem + 1.6667vw, 2.5rem) !important;
}

.all-page h2 {
  font-size: clamp(1.625rem, 1.3846rem + 0.9615vw, 2.25rem);
}

.h2 {
  font-size: clamp(1.625rem, 1.3846rem + 0.9615vw, 2.25rem) !important;
}

.all-page h3{
  font-size: clamp(1.5rem, 1.2321rem + 0.7143vw, 1.875rem);
}

.h3 {
  font-size: clamp(1.5rem, 1.2321rem + 0.7143vw, 1.875rem) !important;
}

.all-page h4{
  font-size: clamp(1.25rem, 0.9821rem + 0.7143vw, 1.625rem);
}

.h4 {
  font-size: clamp(1.25rem, 0.9821rem + 0.7143vw, 1.625rem) !important;
}

.all-page h5 {
  font-size: clamp(1.25rem, 1.1607rem + 0.2381vw, 1.375rem);
}

.h5 {
  font-size: clamp(1.25rem, 1.1607rem + 0.2381vw, 1.375rem) !important;
}

.all-page h6 {
  font-size: 18px;
}

.h6 {
  font-size: 18px !important;
}

/* heading end */

a {
  transition: var(--transition);
  text-decoration: none;
  color: var(--sc);
}

p {
  color: var(--txt-color);
  line-height: 1.6;
  font-size: 16px;
}

strong{
	font-weight:700;
}


.text-white {
  --black: var(--white);
  --txt-color: var(--light-white);
}

/* hero banner */
[class*="hero-banner"] {
  position: relative;
}

.single-hero-banner {
  position: relative;
	margin-bottom:40px;
}

.single-hero-banner:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #000000bd;
  height: 100%;
  width: 100%;
}

.single-hero-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

[class*="hero-banner"] .flex-col-hero-content {
  top: 55%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: center;
  flex-direction: column;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.single-hero-banner .flex-col-hero-content h1 {
  color: #fff;
  margin-bottom: 0;
}

/* .inner-block-img {
  filter: brightness(30%);
} */

#breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px 50px;
  margin-block: 15px 0;
  justify-content: center;
  white-space: nowrap;
}

#breadcrumbs :is(a, span) {
  color: var(--white);
}

#breadcrumbs span {
  position: relative;
}

#breadcrumbs span::before {
  content: '';
  position: absolute;
  top: 10px;
  left: -28px;
  background: var(--white);
  height: 6px;
  width: 6px;
  border-radius: 50%;
}


.breadcrumbs-section #breadcrumbs {
  justify-content: flex-start !important;
}

.breadcrumbs-section .breadcrumb_last {
  color: black !important;
}

/* hero banner end */


/* contact page css */

.contact-form {
  background-color: #EDE9DF80;
  padding: 60px;
  height: 100%;
  position: relative;
  width: 856px;
  border-radius: 20px;
  overflow: hidden;
}

/* .contact-hub {
  padding: 80px 0px 10px 0px;
} */

.contact-cards {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

.contact-card {
  border-radius: 10px;
  border: 1px solid #c7c7c7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 222px;
  width: 416px;
  gap: 16px;
}

.contact-cards .contact-card:nth-child(1) {
  background-color: #F6EB7C80 !important;
  border-color: #827C3D80 !important;
}

.contact-cards .contact-card:nth-child(2) {
  background-color: #FDE2F380 !important;
  border-color: #FB428980;
}

.contact-cards .contact-card:nth-child(3) {
  background-color: #85CBFF80 !important;
  border-color: #14619A66;
}

.contact-circle {
  height: 60px;
  width: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-circle-1 {
  background-color: #FFA600;
}

.contact-circle-2 {
  background-color: #FB4289;
}

.contact-circle-3 {
  background-color: #05203C;
}

.contact-heading {
  font-size: 18px;
  font-weight: 600;
}

.contact-details {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  text-align: center;
}

.contact-form-content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-form-content::after {
  height: 150px;
  width: 150px;
  bottom: -60px;
  right: 120px;
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/2025/10/giant-wheel.png") no-repeat;
  background-size: cover;
}

.contact-form::before {
  height: 120px;
  width: 120px;
  top: 35px;
  right: 10px;
  content: "";
  position: absolute;
  transform: rotate(338deg);
  background: url("/wp-content/uploads/2025/10/parachute.png") no-repeat;
  background-size: cover;
}

.contact-form::after {
  height: 120px;
  width: 120px;
  bottom: 80px;
  left: 10px;
  content: "";
  position: absolute;
  transform: rotate(338deg);
  background: url("/wp-content/uploads/2025/10/left-aeroplane.png") no-repeat;
  background-size: cover;
}

.contact-form label {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
  font-weight: 500;
}

.contact-form :is(input, select, textarea) {
  border-bottom: 1px solid var(--black);
  color: var(--black);
  padding: 5px 15px 15px 0;
  transition: .4s cubic-bezier(0, 0, .3642, 1);
}

.contact-form :is(input, select, textarea) {
  margin-bottom: 5px;
  width: 100%;
  border: 0px;
  padding: 15px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 400;
}

/* contact page css end */


/* common componet */


/* top header start */
.email-id {
  color: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}

.top-header {
  background-color: var(--pc);
  color: var(--white);
  padding: 10px 16px;
}

.top-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-right-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.right-top-bar :is(.language, .currency),
.right-top-bar {
  display: flex;
  align-items: center;
}

.language select,
.currency select {
  background-color: transparent;
  color: var(--white);
  border: none;
}

option {
  color: var(--black);
}

.right-top-bar .divider {
  width: 1px;
  height: 18px;
  background: #6c7b8a;
  opacity: .6;
  display: inline-block;
  margin: 0 4px;
}

.right-top-bar {
  gap: 14px;
}


.social-media {
  display: flex;
  list-style: none;
  gap: 6px;
  padding-left: 0;
}

.social-media a {
  width: 27px;
  height: 27px;
  display: inline-block;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 5px;
  transition: all 0.3s;
}

.social-media a:hover {
  background-color: var(--sc);
}

/* top header end */

/* header start */
.main-header {
  background-color: var(--white);
  /* padding-block: 18px; */
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
  z-index:10;
  position: sticky;
  top: 0;
}

.main-header .container {
  background-color: var(--sc);
	z-index:1;
}

.main-header .logo::after,
.main-header .head-style::after {
  content: "";
  position: absolute;
  width: 14%;
  height: 100%;
  background-color: var(--white);
  top: 0;
}

.main-header .logo::after {
  left: -22px;
}


.main-header nav {
  margin-left: 30px;
}


.main-header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.main-header nav ul a {
  color: var(--black);
  font-weight: var(--fw-medium);
  font-size: 15px;
}

/* .dropdown ul li a {
  padding-block: 10px;
  display: inline-block;
} */

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-header ul .dropdown ul {
  display: block;
  visibility: hidden;
  position: absolute;
  margin: 0;
  z-index: 99;
  transform-origin: top;
  transform: scale(0);
  padding: 10px;
  background-color: var(--white);
  box-shadow: 0 0 30px rgb(127 137 161 / .25);
  transition: all 0.3s;
}

.main-header ul .dropdown ul li {
  padding: 10px;
  min-width: 170px;
}

.header-right {
  margin-left: auto;
  gap: 20px;
}

.cancel-btn,
.toggle-slide-btn {
  display: none;

}

.search-button {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 1px solid var(--white);
  border: 2px solid #fcb736;
  cursor: pointer;
}

.search-input select {
  width: fit-content;
  font-size: 16px;
  margin-right: 18px;
    padding: 2px 10px;
  border-radius: 4px;
}

.search-button:hover {
  background-color: #fff5e2;
}

.logo,
.head-style {
  position: relative;
  padding-block: 14.3px;
  background: white;
  z-index: 1;
}

.logo {
  border-radius: 0 60px 60px 0;
  padding-right: 27px;
}

.head-style {
  border-radius: 60px 0px 0px 60px;
  padding-left: 27px;
}

.logo::before,
.head-style::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  border-radius: 39px;
  background-color: #ffffff6b;
}

.logo::before {
  right: -8px;
}

.head-style::before {
  left: -8px;
}

/* header end */

/* button start */
.btn-dark {
  background-color: var(--pc);
  color: var(--white);
  font-weight: var(--fw-medium);
}

.btn-primary {
  background-color: var(--sc);
  color: var(--black);
}

/* button end */

/* hero slider swiper start */
.hero-slider .swiper {
  width: 100%;
  height: 100%;
}

/* .hero-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.hero-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider {
  /* height: 630px; */
  height: clamp(30rem, 23.3036rem + 17.8571vw, 39.375rem);
  background-color: var(--black);
}

[class*="hero-img-"] {
  width: 100%;
  height: 100%;
  /* full screen height */
  background-size: cover !important;
  position: relative;
}

[class*="hero-img-"]::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.774) 0%, rgba(0, 0, 0, 0.582) 50%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  left: 0;

}

/* .hero-img-1 {
  background: url("../img/hero-img1.png") no-repeat;
}

.hero-img-2 {
  background: url("../img/maldives2.webp") no-repeat;
}

.hero-img-3 {
  background: url("../img/bali.webp") no-repeat;
  background-position-x: right;
} */


.hero-content {
  text-align: left;
  margin-top: 14%;
}

.hero-content p {
  color: var(--txt-white);
}

.sub-heading {
  color: var(--sc);
  font-family: var(--Just-Another-Hand);
  font-size: 30px;
}

.hero-title {
  font-size: clamp(2.125rem, 0.9643rem + 3.0952vw, 3.75rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  background: url("data:image/svg+xml,%3Csvg width='367' height='11' viewBox='0 0 367 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M337.723 2.645c-7.998-.379-15.995-.674-23.994-1.006-2.639-.114-5.291-.134-7.931-.202-5.728-.147-11.457-.285-17.187-.432-3.187-.08-6.385-.17-9.571-.242a257 257 0 0 0-2.777-.04c-2.077-.017-4.158-.014-6.235-.021-9.45-.065-18.914-.13-28.363-.204-2.257-.018-4.5.002-6.757.003-5.58.003-11.145.015-16.712.018-6.291.006-12.569-.024-18.86.038-10.176.087-20.337.184-30.514.272-5.894.056-11.775.066-17.671.178-10.149.199-20.285.39-30.434.58-5.539.105-11.092.182-16.633.352-10.492.318-20.984.626-31.476.944-5.609.17-11.217.284-16.813.565L24.451 5.015l-6.772.338c-4.515.225-9.004.599-13.506.907-.287.026-.561.052-.848.068a3.75 3.75 0 0 0-1.413.547c-.591.395-.938.95-.942 1.517s.333 1.127.918 1.541c.53.367 1.458.709 2.251.65 5.433-.376 10.852-.77 16.283-1.044 5.049-.249 10.083-.507 15.132-.755l16.5-.82c2.216-.112 4.433-.262 6.663-.328 8.577-.258 17.154-.507 25.73-.765 5.35-.163 10.698-.316 16.047-.479 2.216-.066 4.418-.151 6.634-.199 8.494-.166 17.002-.313 25.496-.46 5.157-.09 10.299-.19 15.457-.279 1.736-.033 3.46-.075 5.196-.09q13.767-.112 27.532-.211c5.13-.044 10.246-.078 15.375-.121 1.818-.014 3.651-.046 5.47-.041l28.391.027c5.909 0 11.803.009 17.711.064 10.051.098 20.102.186 30.14.283 1.983.015 3.965.087 5.948.149l16.641.465 12.483.349c2.953.078 5.892.25 8.845.385 8.681.384 17.363.787 26.031 1.217 2.2.11 4.401.24 6.602.368 2.365.13 4.729.27 7.08.464.369.04.724.09 1.093.149.93.137 1.818.107 2.655-.212.769-.3 1.346-.808 1.597-1.391.503-1.224-.581-2.543-2.384-2.9-1.584-.31-3.225-.444-4.85-.569-1.121-.083-2.228-.175-3.35-.258-2.144-.166-4.304-.257-6.452-.386-4.032-.208-8.079-.36-12.112-.55' fill='%23FCB736'/%3E%3C/svg%3E") no-repeat;
  background-position: left bottom;
  background-size: contain;
}

/* hero-slider swiper end */

/* search form start */
.search-form {
  background-color: var(--white);
  padding: 5px;
  display: flex;
  align-items: center;
  border-radius: 40px;
  gap: 10px;
  padding-left: 15px;
  width: 95%;
  margin-bottom: 30px;
}

.search-form svg {
  fill: #cacaca;
}

.search-form input {
  width: 100%;
  border: 0px;
  font-size: 15px;
}

.search-form input:focus {
  border: unset;
  outline: none;
}

.search-form button {
  padding: 8px 24px;
  width: fit-content;
  display: inline-block;
  background-color: var(--sc);
  border-radius: 50px;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}

.search-form button:hover {
  background: var(--pc);
  color: var(--white);
}

.main-header .search-input {
  height: 230px;
  justify-content: center;
  position: fixed;
  right: 0;
  transform: translateY(-350px);
  width: 100%;
  z-index: 1;
  background: var(--white);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.search-input button {
  background-color: transparent;
}

.main-header .search-input.search-show {
  transform: translateY(-110px);
}

.main-header .search-input form input {
  font-size: 20px;
}

.overlay {
  position: fixed;
  background-color: #00000094;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 11;
  cursor: url("../uploads/2025/10/close.png"), auto;
}

.search-cancel-btn {
  position: absolute;
  right: 4%;
  top: 25px;
  width: 40px;
  height: 40px;
  background: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
}

.main-header .search-input form {
  width: 83%;
  overflow: hidden;
  padding: 10px;
  display: flex;
  border-bottom: 1px solid hsl(0 0% 76% / .4);
}

.swiper-pagination-bullet-active {
  background-color: var(--sc) !important;
}

.swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  outline: 1px solid var(--sc);
  border: 4px solid transparent;
}

.hero-slider .swiper-pagination {
  bottom: 65px !important;
  user-select: none;
}

/* search form end */

/* popular city start */
.populer-city a {
  font-size: 14px;
  background-color: #FFF0D3;
  padding: 5px 12px;
  border-radius: 29px;
  border: 1px solid var(--sc);
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 5px;
  color: var(--pc);
}

.populer-city a:hover {
  background-color: #fddfa6;
}

.populer-city {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.city-card p {
  font-size: 16px;
  font-weight: var(--fw-semiBold);
  color: var(--black);
}

.city-card {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-inline: auto;
}

.city-card figure{
	margin-bottom:0;
}

.midnav {
  display: flex;
  background: white;
  padding: 21px 35px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  border-radius: 61px;
  box-shadow: 0px 2px 7px rgb(0 0 0 / 12%);
}


/* popular city end */

.sec-space {
  margin-bottom: clamp(2.5rem, 1.6071rem + 2.381vw, 3.75rem);
}

.heading-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  text-align: center;
}

/* .heading-sec p {
  margin-top: 20px;
}
 */
.sec-heading {
  font-size: clamp(1.75rem, 1.3929rem + 0.9524vw, 2.25rem);
  font-weight: var(--fw-semiBold);
}


/* popular destination start */
.popular-destination {
  position: relative;
}

.popular-destination::before {
  content: "";
  position: absolute;
  background: url("/wp-content/uploads/2025/10/Swing.svg") no-repeat;
  width: 210px;
  height: 210px;
  background-size: contain;
  right: 0;
  bottom: -60px;
  z-index: -1;
}

[class*="overlay-card"] {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #ccc;
}

[class*="overlay-card"]:hover img {
  transform: scale(1.1);
}

[class*="overlay-card"]::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #000000b8, #00000000);
  pointer-events: none;
  z-index: 1;
}

[class*="overlay-card"] img {
  width: 100%;
  transition: all 0.3s ease-in-out;
  height: 100%;
  object-fit: cover;
}

.overlay-card-small {
  height: 221px;
}

.overlay-card-small img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.overlay-card-small [class^="btn"] {
  font-size: 15px;
  width: 88%;
}

.overlay-card-small [class^="btn"] svg {
  margin-left: auto;
  flex-shrink: 0;
}

[class*="overlay-card"] .btn-primary {
  position: absolute;
  bottom: 20px;
  left: 0;
  margin-inline: 11px;
  z-index: 2;
}

.grid-six {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 20px;
}

/* popular destination start */
.popular-des {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 20px;
}

.grid-two {
  display: grid;
  gap: 20px;
}

/* popular destination end */

/* popular destination end */

.bg-sec-half {
  padding-block: clamp(2.5rem, 1.6071rem + 2.381vw, 3.75rem);
  position: relative;
}

.bg-sec-half::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 70%;
  background: url("/wp-content/uploads/2025/10/doggle-bg.png") no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  z-index: -1;

}

/* our packages with tab start */
.left-head-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}

/* Style the tab */
.tab {
  /* overflow: hidden; */
  /* border: 1px solid #ccc;
  background-color: #f1f1f1; */
  margin-bottom: 30px;
  display: flex;
  gap: 10px;
}

.tab button {
  background-color: var(--white);
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: var(--fw-medium);
  position: relative;
}

/* .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
} */

.tab button:hover {
  background-color: #ffd078;
}

.tab button.active {
  background-color: var(--sc);
}

/* .tab button::before.active {
  position: absolute;
    content: '';
    top: 4px;
    left: -10px;
    border-bottom: 12px solid #c37f02;
    border-left: 10px solid transparent;
    rotate: 358deg;
} */

.tab button.active::before {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid #00000000;
  border-right: 10px solid #0000ff00;
  border-top: 10px solid var(--sc);
  rotate: 358deg;
  z-index: 1;
}

.tabcontent {
  display: none;
  /* padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none; */
}

/* our packages with tab end */

/* package card start */
.review {
  font-size: 14px;
  color: var(--txt-color);
}

.review span {
  background-color: var(--sc);
  padding-inline: 6px;
  margin-right: 5px;
  border-radius: 4px;
  color: var(--black);
  font-weight: var(--fw-medium);
}

.package-content {
  padding: 16px 20px;
  background-color: var(--white);
  color: var(--txt-color);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tag {
  font-size: 13px;
  background-color: var(--sc);
  border-radius: 10px;
  width: fit-content;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  color: var(--black);
  padding: 1px 7px;
}

.price-new {
  color: #cf3425;
  font-weight: var(--fw-semiBold);
  font-size: 17px;
}

.price-old {
  font-size: 17px;
  font-weight: var(--fw-semiBold);
  color: #969AA2;
}

.package-price {
  font-size: 14px;
}

.package-card {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  box-shadow: 0px 0px 6px #e3dfdf;
  border: 1px solid #e1e1e1;
}

.package-card p {
  margin-bottom: 0;
}

.package-footer {
  display: flex;
  align-items: center;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e5e5e5;
}

.package-footer :is(p, .btn-primary) {
  font-size: 14px;
}

.package-footer .btn-primary {
  padding: 8px 16px;
  margin-left: auto;
}

.location {
  font-size: 15px;
}

.location a {
  color: var(--txt-color);
}

.location a:hover {
  text-decoration: underline;
}

.location svg {
  margin-right: 5px;
}

.package-title {
  font-size: 18px;
  color: var(--black);
}

.package-title:hover {
  text-decoration: underline;
}

.package-img {
  position: relative;
}

.package-card:hover .package-img:before,
.blog-card:hover .img-placeholder::before {
  animation: imgAnimate 0.75s;
  transition: all 0.3s ease-in-out;
}

.package-card .package-img:before,
.blog-card:hover .img-placeholder::before {
  content: "";
  border-radius: 100%;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  position: absolute;
  background: hsl(0 0% 100% / .1);
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  pointer-events: none;
}

@keyframes imgAnimate {
  0% {
    opacity: 1
  }

  40% {
    opacity: 1
  }

  to {
    height: 200%;
    opacity: 0;
    width: 200%
  }
}


/* package card end */


/* holiday package budget start */
.budget-sec {
  padding: clamp(1.875rem, 0.5357rem + 3.5714vw, 3.75rem);
  background: url("/wp-content/uploads/2025/10/abstract-bg.webp") no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.budget-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  justify-content: center;
}

.center-button {
  text-align: center;
  /* margin-top: 40px; */
}

.budget-cards .budget-card {
  background-color: #f2a6a0;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 216px;
  height: 160px;
  gap: 16px;
}

.budget-cards .budget-card:nth-child(2) {
  background-color: #efa581 !important;
  border-color: #f98852;
}

.budget-cards .budget-card:nth-child(3) {
  background-color: #f0e9ad !important;
  border-color: #e3cc0c;
}

.budget-cards .budget-card:nth-child(4) {
  background-color: #f0e0e4 !important;
  border-color: #e9a1b3;
}

.budget-cards .budget-card:nth-child(5) {
  background-color: #b6d7ec !important;
  border-color: #5bbfff;
}

span.mint {
  background: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 28px;
  font-family: var(--Just-Another-Hand);
}

.budget-price {
  font-size: 25px;
}

/* holiday package budget end */

/* why choose us start */
.bg-sec {
  background: url("/wp-content/uploads/2025/10/doggle-bg-2.png") no-repeat;
  background-size: cover;
  padding-block: clamp(2.5rem, 1.6071rem + 2.381vw, 3.75rem);
}

.feature-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
}

.features-card {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 26px;
  position: relative;
}

.features-card::before {
  left: 133px;
  content: "";
  height: 75%;
  border-left: 2px dashed #d1d2d1;
  position: absolute;
  top: 59px;
}

.feature-title {
  font-size: 22px;
  margin-bottom: 8px;
}

.feature-icon {
  background: #ffffff;
  padding: 16px;
  border-radius: 50%;
  box-shadow: 0px 0px 4px #26262624;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition);
}

.features-card:hover .feature-icon {
  border: 1px solid #ffd587;
}

/* why choose us end */

.myslider {
  padding-bottom: 60px;
}

/* activity section start */
.activites-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.activity-card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 2px 2px rgb(165 165 165 / 6%);
  transition: all 0.3s ease;
}

.activity-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-title {
  font-size: 16px !important;
}

.activity-card:hover .activity-icon,
.feature-item:hover .feature-icon img {
  transform: rotateY(360deg);
  transition: transform .8s .1s;
}


.icon-orange {
  background: linear-gradient(135deg, #ff9a3d 0%, #ff7b1c 100%);
}

.icon-magenta {
  background: linear-gradient(135deg, #e879f9 0%, #d946ef 100%);
}

.icon-cyan {
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
}

.icon-mint {
  background: linear-gradient(135deg, #6ee7b7 0%, #34d399 100%);
}

.icon-yellow {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.icon-purple {
  background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
}

.icon-lime {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
}

.icon-red {
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

/* activity section end */

/* testimonails start */
.testimonials-sec {
  border-bottom: unset;
  border-radius: 10px;
  background-image: linear-gradient(180deg, #fcb73661 0%, #ff525200 90.04%);
  position: relative;
  padding-inline: 40px;
  padding-top: 60px;
}

.testimonials-sec::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 20px);
  z-index: 0;
  background: linear-gradient(180deg, #ffffff 75%, #fff0 99.04%);
}

.testimonials-sec .heading-sec {
  position: relative;
}

.testimonail-dt {
  padding: 2px 6px;
  font-size: 14px;
  border-radius: 36px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.mySwiper .swiper-wrapper .swiper-slide:nth-child(even) .testimonail-dt {
  background-color: #fde2c7;
}

.mySwiper .swiper-wrapper .swiper-slide:nth-child(odd) .testimonail-dt {
  background-color: #d8e8ff;
}

/* swipper start */
.mySwiper .swiper-wrapper .swiper-slide:nth-child(even) .testimonail-card {
  background-color: #f3f8ff;
}

.mySwiper {
  padding-bottom: 50px !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  outline: 1px solid var(--sc) !important;
  outline-offset: 3px !important;
}

.testimonail-card {
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  align-items: flex-start;
  padding: 30px;
  gap: 20px;
}

.client-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.client-profile {
  gap: 15px;
}

.client-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* .swiper-slide {
    text-align: center;
    background: #fff
} */

.mySwiper .swiper-wrapper .swiper-slide:nth-child(odd) .testimonail-card {
  background-color: #fff6f1;
}


/* swipper end */
/* testimonails end */


/* blog start */
.blog-card {
  padding: 20px;
  box-shadow: 0px 0px 7px 0px #dbdbdbad;
  border-radius: 10px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.blog-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-placeholder {
/*   margin-bottom: 16px; */
  position: relative;
  background-color: #c7c7c7;
  height: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
/*   border-radius: 10px; */
  width: 100%;
}

.blog-auth {
  gap: 10px;
  color: var(--txt-color);
}

.blog-card p {
  margin-bottom: 0;
}

.blog-title,
.blog-info p,.package-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  margin-bottom: 0 !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-title {
  font-size: 18px;
  font-weight: var(--fw-semiBold);
  color: var(--black);
}

.blog-info {
  flex-direction: column;
  gap: 12px;
	text-align:left;
}

.dt {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  width: 58px;
  height: auto;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.dt span:first-of-type {
  background-color: var(--sc);
  color: var(--white);
}

.dt span:last-of-type {
  background-color: var(--white);
}

.dt span {
  padding: 1px;
  font-size: 15px;
}

/* blog end */

/* cta start */
.cta-sec {
  background: url("/wp-content/uploads/2025/10/cta-bg.png") no-repeat;
  padding-block: 30px;
  background-size: cover;
}

.cta-sec .sec-heading {
  color: var(--white);
}

.play-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.play-button:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #e7960b 100%);
}

.contact-info {
  padding: 13px 22px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  color: white;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-info:hover {
  background-color: #0f0b0b40;
}

.cta-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-img {
  text-align: end;
  position: relative;
}

.cta-img::before {
  content: "'";
  position: absolute;
  background: url("data:image/svg+xml,%3Csvg width='90' height='60' viewBox='0 0 90 60' fill='none' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='url(%23a)' d='M0 0h90v60H0z'/%3E%3Cdefs%3E%3Cpattern id='a' patternContentUnits='objectBoundingBox' width='1' height='1'%3E%3Cuse xlink:href='%23b' transform='matrix(.01111 0 0 .01667 -.019 -.342)'/%3E%3C/pattern%3E%3Cimage id='b' width='96' height='97' preserveAspectRatio='none' xlink:href='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABhCAYAAAApxKSdAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAASwSURBVHgB7ZvvldsoFMXf5Oz3dQerDnY6iLaCSQeercDTQbwVTDpwtoKkAzkVTFKBnAqcDm4goDMIoX82kiVyf+dwJOsgBDx4wAWLEEIIIYQQQgghhBBCCCGEEEIIIYQQMi0APsCwFzIvqtIzvFIKmYU3Lc83QmaBBrgxb4QsB9T5S8jk+D3gh5BZ8Q1wcu7vhUxOlwEyIZPDHnBj/vB+f3PuZzeAXgyqS66COwHQ49K3u7u7o6SOtxo+qzD5ekB/Q0sfevWNbnR+DtZI6WILWpHLRDgVf8Y4ShXeSarYVlbxXibA9rSXnkoubGgz0FZSRBXs0SlkIZFRad63VGqhwlsE3J59XnrxdRqZpAaMa3CJNg7Yln8OVfzA9z/670qK2EqpiOKGrGFLrwKfI6SRnmSiCrVzCvgiEUB9bLnYsKi7SM1OUsO2tGizIdSnt5qDXEggbxentWi0e0AkX+u1/hJXDp6oz6CSHQf8VpvLBQTSuXr66Bl01QZo3ZBRS/+Tunx0Hl06GD849yeV7v9yPe7MbNUSet+O2H/OfX5hL3BXrUeJg2uAk6SMNxaUGLku8NxPFIHPS/NBUiYw6xg8d4dZ9VacJQJoTkPTP0CgCvnOK/TTwPfy2IMl6ovENKegIVCXAc5D3IlngKsrK9D6B0kYSYCmDNArhnk95ypJA2Y6W8buUasCTTGt7OoJXg8YpfsE0iq81p/J7wiacrK+f+qIe7ULQlMFnWSfwvmednXbxRrZuhZfVtbT1Y0Xz5W2R4t69v3C+04UcbDjm/fe94pFGsNmtPQyq39vvXhunMFTRhj3FUo/kwkJGGC5xkBzYKwZAqYFf3Ke5wPSzNFs9ZqXuQquvvMe/XvVOj/PmHDffDCor5ZDxqgoAu9ubKU/o/1kxAE3WHDBjAWfMIwCxnD5mLzeSSRgWqeu4Kwn6g95FdA20n0UXsf7Vwl4n+WG2ArVmpaWPXIZdnz/qxid6ihznmtSmX1A2IWM4Wxb0yJlBphDAgd0n+zwyWVOYMaH3Qhj6ErX3X271IoPYcv5OMAgk06dh2S08DL0bCtbhyQ21tF+5EZzW9kE9VXxLwNIQtjytVX+Mv70iOZsaS8JgKZIiEU2NoTP9exlxcCcb220eO93JksB4dNxe1kZCMskGn/isTzVFs0NnlUZAWGZ5GzLFf0UyCQg7DeLRXVXD9vqPwTyXVb5hncGSpZMixHKJbYalacnhGc5eu2ysXH81r/8Y5MIq6rAQv4Ng7C7gTXGzov75MXJZA3YllMgzGHugsC4mh3axcEilCcv/voODMDoP+gwRC4TgldVtm1BpaWGty3v+u40kzUC0xsOHYYoEUmHR13HOfd8c9uTVuk2FhlINDk6NrYFaQHrsSfqUYxsreXf7xI+qljJ3n+K+fttZq99ot9Rhb2Skr9Id14f1cWt9LzvndXg9IgS86B7gu5hg8Uz/C7HZWD2Gg6Ib4wCZvwZrViiKTKOSmOxLqgPmPNIWsbOxbiUKrS5lWon7mTDVxv0btXFR9xh1gAv9ttHldY/I15frwH6gLPHoCrlu0wIzHj1twpfrjEmIYQQQgghhBBCCCGEEEIIIYSQtPgJ0x10onGGeyUAAAAASUVORK5CYII='/%3E%3C/defs%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  width: 100px;
  height: 70px;
  left: 40px;
  top: 67%;
  transform: translateY(-50%);
}

.cta-sec .sec-heading {
  font-size: clamp(1.75rem, 0.9911rem + 2.0238vw, 2.8125rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* cta end */


/* footer start */
.footer {
  background-color: var(--pc);
  margin-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 50% auto;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--sc);
  padding-bottom: 30px;
}

.footer-right {
  padding: 40px 50px 40px 0;
}

.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li:hover a {
  transform: translateX(10px);

}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.footer-links li::before {
  content: '»';
  color: #fbbf24;
  font-weight: 700;
}

.footer-logo {
  margin-bottom: 10px;
}

.tag-line {
  font-size: clamp(1.5rem, 1.2321rem + 0.7143vw, 1.875rem);
  color: var(--white);
  font-weight: var(--fw-semiBold);
  line-height: 1.5;
}

.wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.call {
  color: var(--txt-white);
  font-weight: var(--fw-semiBold);
}

.footer-title {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-column p {
  color: var(--txt-white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}



.footer-stats {
  background-color: #041324;
  border-radius: 10px;
  padding: 23px;
  height: fit-content;
}

.stat-number {
  font-size: 20px;
  font-weight: 700;
  color: white;
  display: block;
}

.stats-box {
  margin-bottom: 10px;
}

.footer-stats .stats-box:last-child {
  margin-bottom: 0;
}


.stat-label {
  font-size: 14px;
  color: #9ca3af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copywrite {
  text-align: center;
  padding-block: 10px;
  border-top: 1px solid rgba(122, 122, 122, 0.164);
  color: var(--white);
}

.subscribe {
  background-color: #373a41;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.subscribe button {
  background-color: var(--sc);
  padding: 5px 10px;
  font-size: 15px;
}

.subscribe input {
  background-color: #041324;
  border: none;
  outline: none;
  color: var(--txt-white);
  width: 100%;
  padding: 10px 16px;
  font-size: 16px;
}

.subscribe input::placeholder {
  color: var(--white);
}

.doc-overlay {
  bottom: 0px;
  height: 100vh;
  opacity: 0.5;
  position: fixed;
  top: 0px;
  width: 100vw;
  z-index: 2;
  background: var(--black);
}

/* footer end */


/* author css */
.auth-bio {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.auth-head img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
}

.auth-head .auth-name {
  font-size: 35px;
  font-weight: 700;
}

.auth-follow ul {
  list-style: none;
  margin-block: 20px;
  padding: 0;
}

/* author bio css end  */


@media (max-width: 1024px) {
  .check-circle {
    display: none;
  }

  .features-card::before {
    left: 64px;
  }

  .feature-item {
    gap: 30px;
  }

  .contact-form-content::after {
    bottom: -45px;
    right: 60px;
  }


  .thank-you::after {
    width: 33%;
  }

  /* .budget-cards {
    grid-template-columns: repeat(2, 1fr);
} */

  .main-header nav {
    background: var(--white);
    height: 100vh;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-116%);
    transition: all 0.2s;
    width: 300px;
    z-index: 10;
    box-shadow: 0px 1px 13px 1px #3c3c3c17;
  }

  .main-header nav ul {
    display: block;
    padding: 50px 30px 30px;
  }

  .main-header nav ul li {
    margin-bottom: 10px;
    padding: 10px 0 0;
  }

  .main-header ul li.showMenu>ul {
    display: block !important;
    margin-top: 15px;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    top: 30px;
  }

  .toggle-slide-btn {
    display: block;
    cursor: pointer;
  }

  .show-ul {
    overflow-y: auto;
    transform: translate(-31px) !important;
  }

  .head-style {
    display: none;
  }

  .main-header::after {
    content: "";
    width: 20%;
    height: 100%;
    background-color: var(--sc);
    position: absolute;
    right: 0;
  }

  .cancel-btn {
    display: none;
    position: fixed;
    right: 7%;
    top: 14px;
    z-index: 100;
  }

  .midnav {
    display: none;
  }

  .col1 {
    grid-area: col1;
  }

  .col2 {
    grid-area: col2;
  }

  .col3 {
    grid-area: col3;
  }

  .col4 {
    grid-area: col4;
  }

  .col5 {
    grid-area: col5;
  }


  .footer-main {
    grid-template-columns: auto auto auto;
    grid-template-areas:
      "col1 col2 col3"
      "col4 col5 col5";
  }

}

@media (min-width:768px) and (max-width: 1023px) {
  .blog-card {
    display: grid;
    grid-template-columns: auto auto;
    gap: 20px;
  }

  .popular-des {
    grid-template-columns: 1fr 1fr;
  }


}


@media (max-width: 768px) {
  .left-head-sec {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }


  .footer-img {
    display: none;
  }

  .footer-top {
    grid-template-columns: auto;
  }

  .footer-right {
    padding-left: 40px
  }

  .main-header::after {
    width: 9px;
  }
	
	.single-post .bwe-contact-card{
	margin-bottom:30px;
}

}

@media (max-width: 600px) {

  .review-hero{
    margin-top: 10px;
/*     flex-direction: column; */
    width: -webkit-fill-available;
	  justify-content:flex-start !important;
  }

  .detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .detail-item-left {
    flex-direction: column;
    align-items: center;
    text-align: center;

  }

  .budget-cards .budget-card {
    width: 140px;
  }

  .footer-right {
    padding-inline: 10px;
  }

  .testimonials-sec {
    border: unset;
    background: transparent;
    padding-inline: 15px;
    padding-top: 0;
  }

  .play-button {
    display: none;
  }

  .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-img {
    width: 300px;
    height: auto;
    margin-inline: auto;
  }

  .email-id {
    display: none;
  }

  .right-top-bar {
    margin-left: auto;
  }

  .top-header {
    padding-inline: 0;
  }

  .activites-grid {
    grid-template-columns: auto auto;
  }

  .activity-card {
    flex-direction: column;
    text-align: center;
  }

  .hero-slider .swiper-pagination {
    bottom: 25px !important;
  }

  .grid-six {
    grid-template-columns: auto auto;
  }

  .footer-main {
    grid-template-columns: auto auto;
    grid-template-areas:
      "col1 col2"
      "col3 col4"
      "col5 col5";
  }

  .box1 {
    grid-area: box1;
  }

  .box2 {
    grid-area: box2;
  }

  .box3 {
    grid-area: box3;
  }

  .box4 {
    grid-area: box4;
  }

  .popular-des {
    grid-template-columns: auto auto;
    grid-template-areas:
      "box1  box1"
      "box2 box3"
      "box4 box4"
  }

  .box4 {
    display: grid;
    grid-template-columns: auto auto;
  }

  .box1 {
    height: 250px;
  }

  .contact-form-content::after {
    display: none;
  }
}

@media (min-width: 1025px) {
  .dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
  }

  .main-header ul .dropdown ul {
    display: block;
    visibility: hidden;
    position: absolute;
    margin: 0;
    z-index: 99;
    transform-origin: top;
    transform: scale(0);
    padding: 10px;
    background-color: var(--white);
    box-shadow: 0 0 30px rgb(127 137 161 / .25);
    transition: all 0.3s;
    left: -15px;
    top: 40px;
    white-space: nowrap;
  }

  .main-header .dropdown:hover>ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
}


/* hero search start */
/* .hero-search {
    position: absolute;
    bottom: 80px;
    left: 5%;
    transform: none;
    width: 80%;
    max-width: 800px;
    text-align: left;
    z-index: 10;
} */


.hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 1;
}


/* style added by Nikhil For tourpage start */

.all-page :is(h2, h3, h4, h5, h6, p){
  margin-bottom: 20px;
}

.s-p-hero-features{
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.s-p-hero-heading{
  margin-bottom: 20px;
}

.booking-hero {
  display: flex;
  gap: 15px;
}

.booking-hero .feature-item{
  gap: 15px !important;
}

.highlights .feature-item {
  display: flex;
  align-items: center;
  gap: 10px
}

.check-icon {
  border: 2px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  color: #666;
  font-size: 16px
}

.review-hero {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
}

.rating-stars {
  display: flex;
  gap: 2px
}

.star {
  color: #ddd;
  font-size: 24px;
}

.star.filled {
  color: #ffa500
}

.star.half {
  background: linear-gradient(90deg, #ffa500 50%, #ddd 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.st .rating-text {
  font-weight: 600;
  color: #333
}

.review-count {
  color: #666;
  font-size: 14px
}

.share-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: white;
  cursor: pointer
}

.s-p-hero{
  padding-block: 40px;
  background:#FFF8E8;
  margin-bottom:40px;
  position:relative;
}

.s-p-hero::after{
	position:absolute;
	content:"";
	background:url("https://mintcream-shark-136803.hostingersite.com/wp-content/uploads/2025/10/Swing.svg") no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 205px;
	opacity:0.6;
}

.s-p-hero-g{
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  height: 340px;
	position:relative;
	z-index:1;
}


.s-p-hero-g::before{
	content:"";
	position:absolute;
	top:0;
    left: -53px;
	background:url("https://mintcream-shark-136803.hostingersite.com/wp-content/uploads/2025/10/loctaion-icon.svg") no-repeat;
	background-size: contain;
    width: 240px;
    height: 151px;
}

.s-p-hero .box1 {
  height: 340px
}

.s-p-hero .box1 .overlay-card img {
  height: 100%;
  object-fit: cover
}

.s-p-hero .grid-two {
  grid-template-columns: 1fr 1fr;
  height: 100%
}

.s-p-hero .overlay-card-small {
  height: 160px !important
}

.s-p-hero .overlay-card-small img {
  height: 100%;
  object-fit: cover
}

@media (max-width:768px) {
  .s-p-hero-g {
    grid-template-columns: 1fr 1fr;
    height: auto
  }

  .s-p-hero .grid-two {
    grid-template-columns: repeat(2,1fr);
    height: auto;
/*     margin-left: 16px; */
  }
	
	.s-p-hero .overlay-card-small {
    height: 120px !important;
}

  .s-p-hero .box1 {
    height: 250px;
    margin-bottom: 20px
  }
	
	.s-p-hero{
		padding-block:30px 20px;
	}
}

@media (max-width:600px) {

  .package-inc-exclu {
    flex-direction: column !important;
  }

/* 
  .s-p-hero .overlay-card-small {
         height: 83px !important;
        margin-bottom: 20px;
  } */
	
	.s-p-hero-g{
		 grid-template-columns: 1fr;
	}
}

.sidebar-Q-cta .sidebar-hd span {
  font-size: 20px;
  font-weight: 600;
}

.sidebar-Q-cta .flex-col-sidebar-card {
  border: 1px solid gray;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  flex-direction: column;
}

.sidebar-Q-cta .flex-col-sidebar-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.sidebar-Q-cta .flex-col-sidebar-card .price span {
  font-size: 15px;
  color: #5e5e5e;
  font-weight: normal;
}

.sidebar-Q-cta .flex-col-sidebar-card .flex-tym {
  gap: 5px;
  color: #1e293b;
}

.sidebar-Q-cta .flex-col-sidebar-card .flex-mrp {
  gap: 3px;
  font-size: 18px;
  margin-block: 7px;
}

.sidebar-Q-cta .flex-col-sidebar-card .flex-mrp span {
  text-decoration: line-through;
}

.tours-card {
  background-color: #fafafa;
  flex-direction: column;
  justify-content: center;
  border: 0.5px solid gray;
  margin-bottom: 20px;
}

.tours-card .activity-details {
  color: #666;
  font-size: 14px;
}

.tours-card span {
  color: #ffa500;
}

.flex-col-pg-sec {
  gap: 25px;
  margin-top: 50px;
}

.destinationSwiper {
  padding: 20px 0 60px
}

.destinationSwiper .swiper-slide {
  height: auto
}

.destinationSwiper .overlay-card-small {
  height: 250px;
  border-radius: 8px;
  overflow: hidden
}

.destinationSwiper .overlay-card-small img {
  height: 100%;
  object-fit: cover
}

/* Include/Exclude Icons */
.flex-col-inclusion-wrap p::before,
.flex-col-exclusion-wrap p::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: middle
}

.flex-col-inclusion-wrap p::before {
  border: 1px solid #3b82f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%233b82f6'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
}

.flex-col-exclusion-wrap p::before {
  border: 1px solid #ef4444;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ef4444'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
}

.highlights{
  margin-bottom: 20px;
}

.highlights.features-card {
  border: 0.2px solid #bababa;
  gap: 18px !important;
  align-items: start !important;
}

.highlights.features-card::before {
  left: 0px;
  border-left: 2px solid #505050 !important;
  top: 26px;
}

.highlights.features-card .check-icon {
  border: 1px solid #ffa500;
  width: 16px;
  height: 16px;

}

.package-inc-exclu {
  display: flex;
  margin-bottom: 20px;
  gap: 16px;
}

.package-inc-exclu h3{
	margin-bottom:0px;
	font-size:22px;
}

.flex-col-inclusion-wrap {
  background: #e3ffe2;
}

.flex-col-exclusion-wrap {
  background: #ffe9e9;
}

.package-inc-exclu .flex-col-inclusion-wrap,
.flex-col-exclusion-wrap {
  padding: 18px;
  gap: 18px;
  flex-direction: column;
	border-radius:8px;
}

.package-inc-exclu p {

  font-size: 16px;
}


/* .mt-auto {
  margin-top: 3.76rem;
} */


/* pagination css */
.navigation {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.pagination .nav-links {
  display: flex;
  gap: 20px;
}

.pagination .page-numbers {
  color: #3c3c3c;
  background: #35ad451c;
  display: grid;
  height: 50px;
  width: 50px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease 0.2s;
  line-height: 45px;
}

.pagination .page-numbers:hover {
  color: var(--white);
  background: var(--sc);
  box-shadow: 0 0 10px -2px rgba(0, 0, 0, 0.3);
}

.pagination .page-numbers:before {
  content: "";
  background-color: var(--sc);
  height: 12px;
  width: 12px;
  border-radius: 50%;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -15px;
  z-index: -1;
  transition: all 0.5s ease 0s;
}

.pagination .page-numbers:hover:before {
  opacity: 0;
  top: 50%;
}

.expand-icon svg {
  transition: all 0.3s ease;
}

/* Modern Card Styling for Itinerary */
/* .itinerary-section {
  margin-top: 40px;
} */

.itinerary-section h3 {
  padding-bottom: 12px;
}

.itinerary-card {
    margin-bottom: 30px;
}

.destination-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.destination-header {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  gap: 12px;
}

.destination-header:hover {
  background: #f8f9fa;
}

.destination-name {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.departure-time {
  font-size: 14px;
  color: #666;
  margin-left: auto;
  margin-right: 12px;
}

.destination-content {
  padding: 0 24px 24px;
  border-top: 1px solid #f0f0f0;
}

.day-item {
  margin-top: 25px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #e5e5e5;
}


.day-header {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  background: #fafafa;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  gap: 10px;
  justify-content: space-between;
}

.day-header:hover {
  background: #f0f0f0;
}

.day-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

.day-name {
  font-size: 16px;
  color: #333;
  flex: 1;
}

.day-content {
  padding: 0 20px 20px;
  border-top: 1px solid #e5e5e5;
}

.day-content :last-of-type{
	margin-bottom:0;
}

.day-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 16px 0;
  padding: 0 4px;
}

.day-details {
  margin-top: 16px;
}

.detail-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  justify-content: space-between;
  gap: 12px;
}

.detail-item a {
  text-decoration: none;
  color: #000000;
}

.detail-item a:hover {
  color: #fcb736;
  transition: 0.1s;
  text-decoration: none;
}

/* New Pricing and Contact Cards with bwe- prefix */
.bwe-pricing-card {
  background: #f8f4e6;
  border-radius: 12px;
  padding: 24px;
/*   margin: 20px 0; */
  border: 4.2px solid #e6ddd1;
  position: relative;
  overflow: hidden;
}

.bwe-pricing-header {
  margin-bottom: 16px;
}

.bwe-starts-from {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.bwe-pricing-amount {
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.bwe-original-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.bwe-current-price {
  font-size: 32px;
  font-weight: 700;
  color: #e74c3c;
  margin-right: 4px;
}

.bwe-per-person {
  font-size: 14px;
  color: #666;
}

.bwe-pricing-features {
  margin-bottom: 24px;
}

.bwe-pricing-features .bwe-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.bwe-pricing-features .bwe-check-icon {
  width: 20px;
  height: 20px;
  background: #f39c12;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  margin-right: 12px;
  flex-shrink: 0;
}

.bwe-pricing-features .bwe-feature-text {
  font-size: 14px;
  color: #333;
}

.bwe-enquiry-btn {
  width: 100%;
  background: #ff6b35;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bwe-enquiry-btn:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.bwe-contact-card {
  background: #e8f5e8;
  border-radius: 12px;
  padding: 24px;
/*   margin-bottom: 20px; */
  border: 1px solid green;
  position: relative;
  overflow: hidden;
}

.bwe-contact-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.bwe-contact-description p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bwe-contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px;
  border-radius: 8px;
}

.bwe-contact-phone svg {
  color: #27ae60;
  flex-shrink: 0;
}

.bwe-contact-phone a {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  text-decoration: none;
}

.bwe-contact-phone a:hover {
  color: #27ae60;
}


.bwe-contact-card .btn-primary{
  color: var(--white);
  background: #27ae60;

}

/* Fix layout issues */
.sidebar-Q-cta {
  position: sticky;
  top: 90px;
	display:flex;
	gap:20px;
}

.bwe-pricing-card,
.bwe-contact-card {
  max-width: 100%;
  box-sizing: border-box;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.detail-item .day-title {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.view-hotel {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  transition: color 0.2s ease;
}

.view-hotel:hover {
  color: #0056b3;
  text-decoration: underline;
}

.day-title svg {
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .itinerary-section {
    padding: 16px;
    margin: 16px 0;
  }

  .destination-header {
    padding: 16px 20px;
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }

  .destination-name {
    font-size: 16px;
  }

  .departure-time {
    font-size: 12px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 4px;
  }

  .day-header {
    padding: 14px 16px;
  }

  .day-content {
    padding: 0 16px 16px;
  }
}

.s-p-hero .s-p-hero-g .overlay-card::before,
.s-p-hero .s-p-hero-g .overlay-card-small::before {
  background: none !important;
}

.bwe-pricing-card a , .bwe-contact-card a{
  width: 100%;
  justify-content: center;
}

.auth-post h2 {
  font-size: 40px;
  font-weight: 700;
}

/* Tour Page Share Dropdown Styles */

.tourpage-share-container {
  position: relative;
  display: inline-block;
}

.tourpage-share-btn {
  background-color: #fff !important;
  border: 1px solid #D5D5D5;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position:relative;
}

.tourpage-share-btn:hover {
  background-color: #fcb735 !important;
  transform: scale(1.1);
}

.tourpage-share-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 12px 8px;
  min-width: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tourpage-share-container:hover .tourpage-share-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.tourpage-share-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.tourpage-share-social:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tourpage-share-social svg {
  transition: all 0.3s ease;
}

.tourpage-share-social:hover svg {
  transform: scale(1.1);
}

/* Tooltip styles */
.tourpage-share-social::after {
  content: attr(title);
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-right: 8px;
  z-index: 1001;
}

.tourpage-share-social::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-right: 3px;
  z-index: 1001;
}

.tourpage-share-social:hover::after,
.tourpage-share-social:hover::before {
  opacity: 1;
  visibility: visible;
}

.single-blog  .inner-pg > img{
    width: 100%;
    margin-bottom: 20px;
    height: 350px;
	border-radius:8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .tourpage-share-dropdown {
    right: -20px;
  }
	.column-md-reverse{
		 flex-direction: column-reverse !important
	}
	
	.single-blog  .inner-pg .overlay-card{
    width: 100%;
    margin-bottom: 20px;
    height: auto;
}
}


.feature-image img{
  margin-bottom: 20px;
}

.feature-image img{
  width: 100%;
  border-radius: 8px;
}

.all-page ol li, .all-page ul li {
  line-height: 1.6;
  margin-bottom: 20px;
}

.explore-destinations{
  margin-bottom: 20px;
}
/* style added by Nikhil For tourpage End */



/* table style by added by nikhil */

.wp-block-table {
  overflow-x: auto;
}

table tr:first-child th {
  background-color: var(--sc);
  font-weight: 600;
  width: 200px;
}

table tbody tr:nth-child(odd) {
  background-color: #f8f4e6;
}

table tbody tr, table tbody tr td {
  text-align: center;
}

.wp-block-table td, .wp-block-table th {
  border: 1px solid #d5d5d5;
  padding: .5em;
}

table tbody tr:first-child th {
  background: unset;
  color: var(--black)
}

.wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}

.d-block {
	display: block;
}

.d-none {
	display: none;
}

/* Scroll to Top Button */
#scroll_top_btn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background-color: var(--sc);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9;
}

/* Show the button when visible */
#scroll_top_btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}