@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&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&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle, rgb(0, 58, 48) 9%, rgb(4, 50, 39) 77%);
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  /* overflow-x: hidden; */
}

:root {
  --montserrat: "Montserrat", sans-serif;
  --poppins: "Poppins", sans-serif;
  --lato: "Lato", sans-serif;
  --roboto: "Roboto", sans-serif;
  --primary: rgb(4, 50, 39);
  --secondary: rgb(1, 75, 63);
  --yellow: #ebc300;
  --white: #fff;
}

.divider {
  width: 80%;
  height: 1.5px;
  color: #fff;
  margin: 0 auto;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: var(--secondary);
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background-color: #fbb400;
  border-radius: 10px;
  background-image: -webkit-linear-gradient(
    90deg,
    rgb(232, 179, 4) 25%,
    transparent 25%,
    transparent 50%,
    rgb(255, 162, 0) 50%,
    rgba(0, 0, 0, 0.2) 75%,
    transparent 75%,
    transparent
  );
}

.whatsapp i {
  color: var(--white);
  background: #0a9300;
  padding: 13px 15px;
  font-size: 2.5rem;
  position: fixed;
  bottom: 35px;
  z-index: 99;
  right: 40px;
  border-radius: 50%;
  animation: zoomInOut  1s infinite alternate-reverse;
}
.scroll i {
  color: #000;
  background: var(--yellow);
  padding: 13px 15px;
  font-size: 1.5rem;
  position: fixed;
  bottom: 35px;
  left: 40px;
  z-index: 99;
  border-radius: 50%;
}

#preloader {
  background: var(--primary) url(../images/Loading-1.gif) no-repeat center
    center;
  background-size: 15%;
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 999;
}

.all-btn a {
  background: var(--yellow);
  padding: 9px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  color: #000;
  transition: all ease 0.5s;
}

.all-btn a:hover {
  transform: scale(1.1);
}

/* ====== Header Styles =========== */

header {
  width: 100%;
  z-index: 2;
  position: relative;
}
.top-header {
  width: 100%;
  padding: 10px 0;
  display: flex;
  height: 7vh;
  align-items: center;
  justify-content: space-between;
  box-shadow: -5px -5px 11px 0px #ffffffa6;
}
.top-left-header {
  width: 25%;
}
.top-left-social {
  display: flex;
  align-items: center;
  gap: 30px;
  width: 100%;
  height: 100%;
  justify-content: center;
}
.top-left-social i {
  color: #000;
  font-size: 1.1rem;
  background: var(--yellow);
  padding: 5px 6px;
  border-radius: 50%;
  transition: all ease 0.5s;
}
.top-left-social i:hover {
  background: var(--primary);
  color: #fff;
  margin-top: -3px;
}
.top-right-header {
  width: 75%;
  margin-right: 40px;
  border-left: 1px solid var(--yellow);
  padding-left: 10px;
}
.top-right-header marquee {
  color: var(--white);
  font-size: 1rem;
  font-family: var(--lato);
  font-weight: 700;
}
.main-header {
  width: 100%;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
}
.main-header-left {
  width: 20%;
  display: flex;
  align-items: center;
  margin-left: 75px;
}
.main-header-logo {
  width: 60%;
}
.main-header-logo img {
  width: 100%;
}
.main-header-mid {
  width: 60%;
}
.main-header-menus ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 10px;
}
.main-header-menus ul li {
  list-style: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: all ease 0.5s;
}
.main-header-menus ul li::before {
  position: absolute;
  content: "";
  height: 1.5px;
  width: 0;
  background: var(--yellow);
  top: -5px;
  left: 0;
  transition: all ease 0.5s;
}
.main-header-menus ul li::after {
  position: absolute;
  content: "";
  height: 1.5px;
  width: 0;
  background: var(--yellow);
  bottom: -5px;
  left: 0;
  transition: all ease 0.5s;
}
.main-header-menus ul li:hover::after,
.main-header-menus ul li:hover::before {
  width: 40px;
}
.main-header-menus ul li a {
  color: var(--white);
  text-decoration: none;
}
#header-btn {
  background: var(--yellow);
  padding: 8px 15px;
  border-radius: 5px;
  animation: zoomInOut  1s infinite alternate-reverse;
  box-shadow: -1px 0px 7px 0.2px #968013;
}
#header-btn::after,
#header-btn::before {
  display: none;
}
#header-btn > a {
  color: #000;
  font-weight: 700;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.main-header-right{
  width: 20%;
}
.header-right-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.cta-icon i{
  color: var(--yellow);
  font-size: 1.32rem;
}
.cta-text{
  padding: 10px 0 0 10px;
}
.cta-text p{
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.cta-text p a{
  color: #fff;
  text-decoration: none;
}
.main-header-hamburger{
  display: none;
}
.main-header-hamburger .bars{
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.main-header-hamburger .bars span {
  display: block;
  width: 36px;
  background: #fff;
  height: 3px;
}

/* ======================slider============= */

#hero-banner {
  width: 100%;
  position: relative;
  height: 100vh;
  margin-top: -150px;
}
.hero-image {
  height: 100vh;
  width: 100%;
  position: relative;
}
.hero-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--primary);
  opacity: 0.79;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-content-wrapper {
  color: #fff;
  position: absolute;
  top: 60%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}
.hero-content-wrapper .content-image {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-content-wrapper .content-image h3 {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--poppins);
  text-transform: uppercase;
}
.hero-content-wrapper .content-image img {
  border-radius: 80px;
  width: 180px;
  height: 80px;
  border: 5px solid var(--yellow);
  object-fit: cover;
}
.content-text {
  margin-top: 10px;
}
.content-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--yellow);
  -webkit-background-clip: text;
  color: transparent;
  animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-banner-btn {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 35px;
}

.all-btn a:nth-child(2) {
  background: var(--white);
  color: #000;
}

/* =====================about============ */

#about {
  width: 100%;
  padding: 20px 0 20px 50px;
  background-image: url(/images/bg.png);
  background-size: cover;
  overflow: hidden;
}
.about-headline {
  text-align: center;
}
.about-title {
  padding: 10px 0;
}
.about-title h2 {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 700;
}
.about-title h2 span {
  padding-right: 10px;
}
.about-title h2 span img {
  width: 30px;
}
.about-subtitle {
  padding: 2px 0;
}
.about-subtitle h4 {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
}
.about-content-wrapper {
  width: 100%;
  margin: 30px auto;
  display: flex;
  gap: 30px;
}
.about-left {
  width: 40%;
}
.about-content {
  padding: 10px 0;
}
.about-content p {
  color: var(--white);
  text-align: justify;
}
.about-counter {
  display: flex;
  justify-content: space-evenly;
  margin-top: 10px;
  gap: 30px;
  background: var(--secondary);
  border-radius: 10px;
  padding: 20px 0;
}

.counter-item {
  text-align: center;
  color: #ffffff;
}

.counter {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  position: relative;
}

.counter::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--yellow);
  margin: 2px auto 3px;
}

.counter-symbol {
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
  margin-left: -5px;
}

.counter-item p {
  margin-top: 15px;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.about-content-button {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.about-mid {
  width: 40%;
}
.about-mid-image {
  width: 100%;
  height: 90%;
  float: right;
  position: relative;
}

.experience-circle {
  position: absolute;
  bottom: -25px;
  right: -45px;
  width: 130px;
  height: 130px;
  background-color: #f0a500;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: roll 7s infinite;
}

.experience-circle h5 span {
  line-height: 1.2;
  padding: 5px;
  color: #000;
  font-weight: 700;
  font-size: 1.6rem;
}
.experience-circle h5 {
  font-size: 1rem;
  color: #000;
}

@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.about-mid-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.about-right {
  width: 15%;
}
.founder-details {
  float: left;
  padding: 5px 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.founder-details h2 {
  font-weight: 700;
  font-size: 3rem;
  font-family: var(--poppins);
  color: var(--yellow);
}
.founder-details h5 {
  font-weight: 600;
  font-size: 2.5rem;
  font-family: var(--poppins);
  color: var(--white);
}
.about-floating-advisor {
  position: relative;
  white-space: nowrap;
  font-size: 50px;
  animation: scroll 10s infinite alternate-reverse;
  padding: 40px 0;
  width: 100%;
}
.about-floating-advisor h2 i {
  color: #f8d74e;
  stroke: none;
}
.about-floating-advisor h2 {
  color: #fff;
  font-size: 2rem;
}
.about-floating-advisor h2 img {
  width: 70px;
  background: #19cda0;
  padding: 5px;
  border-radius: 20px;
}
@keyframes scroll {
  0% {
    transform: translateX(50%);
  }
  100% {
    transform: translateX(-8%);
  }
}

/* ================trips============ */
#trips {
  width: 100%;
  padding: 40px 0;
}

.left-trips {
  text-align: left;
}
.trips-headline {
  display: flex;
  align-items: center;
  gap: 30px;
}
.trips-title {
  padding: 10px 0;
}
.trips-subtitle h2 {
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 700;
}
.trips-title-image img {
  width: 80px;
}
.trips-subtitle {
  padding: 2px 0;
}
.trips-subtitle h4 {
  font-size: 2.5rem;
  color: var(--white);
}
.trips-content {
  padding: 30px 0;
  display: flex;
  align-items: center;
}
.trips-content p {
  color: var(--white);
}
.trips-bottom-wrapper {
  margin-top: 50px;
  padding: 20px;
}

.trips-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.card {
  min-width: 300px;
  margin: 0 10px;
  position: relative;
  transition: transform 0.5s;
  border-radius: 10px;
}
.card img {
  width: 100%;
  border-radius: 10px;
  height: 400px;
}
.title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  transform: scale(1.03);
}
.card:hover .title {
  opacity: 1;
}

.trip-partners {
  padding: 10px 0;
}
.partner-box {
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.left-partner {
  border-right: 1px solid #ccc;
}
.partner-text {
  color: var(--yellow);
  padding: 20px 0;
}
.partner-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
}
.partner-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  align-items: center;
}

.slider-item {
  flex: 0 0 auto;
  width: 150px;
  margin-right: 30px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider-item:hover {
  filter: grayscale(0%);
  transform: scale(1.07);
}

.partner-slider img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============destinations=========== */

#destination {
  width: 100%;
  padding: 40px 0;
  background-image: url(../images/bg.png);
  background-size: cover;
  z-index: 1;
}

.left-dest {
  text-align: left;
}
.dest-headline {
  display: flex;
  align-items: center;
  gap: 30px;
}
.dest-title {
  padding: 10px 0;
}
.dest-subtitle h2 {
  color: var(--yellow);
  font-size: 3rem;
  font-weight: 700;
}
.dest-title-image img {
  width: 80px;
}
.dest-subtitle {
  padding: 2px 0;
}
.dest-subtitle h4 {
  font-size: 2.5rem;
  color: var(--white);
}
.dest-content {
  padding: 30px 0;
  display: flex;
  align-items: center;
}
.dest-content p {
  color: var(--white);
}
.dest-bottom-wrapper {
  padding: 50px 0;
}

.tabs-box-bg {
  position: relative;
}
.tab-bg-element {
  position: absolute;
  z-index: 2;
  right: -100px;
  top: -130px;
}
.tab-bg-element img {
  width: 350px;
  opacity: 0.6;
}
.tabs-box {
  padding: 20px;
}

.tabs-first-group,
.tabs-second-group,
.tabs-third-group,
.tabs-fourth-group {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
}

.tab {
  background: #f8d74e;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
  width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.tab:hover {
  background: #e3c040;
  transform: translateY(-2px);
}

.tab.active {
  background: #ffffff;
  color: #000;
}
.tab.active > h5 {
  font-weight: 700;
}

.tab h5 {
  margin: 0;
  font-size: 16px;
  color: #333;
}
.tab h5 span {
  padding-right: 10px;
}
.tab h5 span img {
  width: 30px;
}
.tab-pane {
  height: 90%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab-image {
  width: 80%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  z-index: 5;
  position: relative;
}

.tab-pane:hover .tab-image {
  transform: scale(1.05);
}

/* ===========testimonials========== */

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

.testi-wrapper {
  width: 100%;
  display: flex;
}

.left-testi {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.testi-title {
  width: 100%;
  text-align: center;
}

.testi-title h3 {
  color: #f7f5f0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}

.testi-subtitle p {
  font-size: 3.5rem;
  color: #f7f5f0;
}

.testi-left-para {
  margin-top: 20px;
  width: 60%;
  position: relative;
}
.arrow {
  position: absolute;
  transform: translateY(-50%);
  background: var(--yellow);
  border: none;
  padding: 5px 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  border-radius: 50%;
  transition: background 0.3s;
}
.left-arrow {
  left: 10px;
}
.right-arrow {
  right: 10px;
}
.arrow:hover {
  background: rgba(255, 255, 255, 1);
}
.testi-left-para .testi-para-icon {
  font-size: 2.54rem;
  text-align: center;
}

.testi-left-para .testi-para-icon i {
  color: #f7f5f0;
}

.testi-left-para .testi-para-text {
  text-align: center;
}

.testi-left-para .testi-para-text p {
  color: #f7f5f0;
  font-size: 1.3rem;
  transition: opacity 0.5s ease;
}

.testi-image {
  height: 100px;
  width: 100px;
  padding-top: 20px;
}

.testi-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.image-detail {
  margin-top: 20px;
  text-align: center;
}

.image-detail h5 {
  font-size: 1.3rem;
  color: #f7f5f0;
}

.image-detail p {
  color: #f7f5f0cf;
  margin-top: 5px;
}

.right-testi {
  width: 50%;
}

.right-testi-image {
  width: 100%;
  height: 100%;
}

.right-testi-image img {
  height: 100%;
  width: 100%;
}

/* ==================form========== */

#touch {
  padding: 40px 0;
  background-image: url(../images/bg.png);
  background-size: cover;
}
.touch-headline {
  text-align: center;
}
.touch-title {
  padding: 10px 0;
}
.touch-title h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}
.touch-title h2 span {
  padding-right: 10px;
}
.touch-title h2 span img {
  width: 50px;
}
.touch-subtitle {
  padding: 2px 0;
}
.touch-subtitle h4 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.touch-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(6 84 72 / 48%);
  padding: 30px;
  margin-top: 25px;
  border-radius: 30px;
  border-left: 1px solid var(--yellow);
  border-right: 1px solid var(--yellow);
}

.touch-form form {
  width: 100%;
}

.form-upper,
.form-mid {
  display: flex;
  gap: 30px;
  width: 100%;
}

.form-upper div,
.form-mid div {
  flex-basis: 100%;
}
.touch-form form input::placeholder,
.touch-form form textarea::placeholder {
  color: #949494bf;
  text-transform: uppercase;
  font-weight: 700;
}
.touch-form form input,
.touch-form form textarea {
  width: 100%;
  padding: 10px;
  background: transparent;
  box-sizing: border-box;
  font-size: 16px;
  margin: 20px 0;
  border-bottom: 3px solid #ccc;
  border-top: none;
  border-left: none;
  border-right: none;
  color: var(--white);
}
.touch-form form input:focus,
.touch-form form textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 5px var(--secondary);
}
.touch-form form textarea {
  height: 100px;
  resize: none;
}
.touch-form form .submit {
  margin-top: 20px;
}
.touch-form form .submit button {
  width: 100%;
  padding: 12px;
  background-color: var(--yellow);
  border: none;
  border-radius: 5px;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
  transition: all ease 0.5s;
}

.touch-form form .submit button:hover {
  background-color: var(--secondary);
  color: #fff;
}

/* ===================visit========== */

#visit {
  padding: 40px 0;
  background-image: url(../images/bg.png);
  background-size: cover;
}
.visit-box {
  padding: 20px;
  display: flex;
  gap: 25px;
  justify-content: center;
}
.visit-icon i {
  background: var(--yellow);
  padding: 8px 10px;
  font-size: 2rem;
  border-radius: 50%;
}
.visit-details {
  padding: 0 10px;
}
.visit-details .visit-title h4 {
  font-size: 1.7rem;
  color: var(--yellow);
  font-weight: 700;
}
.visit-details .visit-detail p {
  font-size: 1rem;
  color: var(--white);
}
.visit-link a {
  color: var(--white);
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 10px;
  font-weight: 700;
  transition: all ease 0.5s;
}
.visit-link a:hover {
  color: var(--yellow);
  margin-left: 10px;
}


/* ======================breadcrum============ */

#breadcrums{
  width: 100%;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrum-title{
  text-align: center;
  color: var(--yellow);
}
.breadcrum-title h1{
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--poppins);
}
.breadcrum-subtitle{
  text-align: center;
}
.breadcrum-subtitle h3{
  font-size: 1.2rem;
  margin-top: 20px;
  color: #fff;
  font-weight: 600;
}
.breadcrum-subtitle h3 a{
  color: #fff;
  text-decoration: none;
}
.breadcrum-subtitle h3 span{
  background: var(--yellow);
  padding: 5px 6px;
  color: #000;
}

/* =================about-page============= */

#about-content{
  width: 100%;
}
.ab-desc{
  padding: 10px;
}
.ab-desc p{
  color: #fff;
  text-align: center;
}

#aboutus{
  margin: 20px 0;
}
.aboutus-box{
  padding: 20px 0;
}
.aboutus-left-content{
  text-align: justify;
  color: #fff;
}
.aboutus-image{
  width: 100%;
  padding-left: 40px;
}
.aboutus-image img{
  width: 70%;
}

/* ==================choose============ */
#choose{
  width: 100%;
  padding: 40px 0;
}
.choose-box{
  width: 100%;
  border: 1px solid #cccccc78;
  padding: 20px;
  margin-top: 30px;
  transition: all ease 0.5s;
  cursor: pointer;
}
.choose-box:hover{
  transform: scale(1.05);
  box-shadow: 1px 1px 5px 1px #cccccc78;
}

.choose-icon {
  text-align: center;
}
.choose-icon img{
  width: 30%;
}
.choose-title{
  text-align: center;
}
.choose-title h3{
  font-size: 1.3rem;
  color: var(--yellow);
  padding: 20px 0;
  font-weight: 700;
}

/* ===================portfolio-gallery=========== */

#gallery {
  width: 100%;
  background-image: url(../images/bg.png);
  background-size: cover;
  padding: 30px 0;
}

.album .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.album .responsive-container-block.bg {
  max-width: 1320px;
}

.album .img {
  width: 100%;
  margin: 0 0 20px 0;
}

.album .responsive-container-block.img-cont {
  flex-direction: column;
  max-width: 33.3%;
  height: 100%;
}

.img-wrapper {
  position: relative;
  cursor: pointer;
}

.img-wrapper::after {
  content: attr(data-details);
  position: absolute;
  bottom: 30px;
  left: 10px;
  color: white;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.img-wrapper:hover::after {
  opacity: 1;
}

.album .img.img-big {
  height: 50%;
  margin: 0 0 16px 0;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex; 
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  margin: 50% auto;
  display: block;
}


.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* ====================contact-page============ */

#contact-form{
  width: 80%;
  padding: 40px 30px;
  background: var(--secondary);
  margin: 30px auto;
  border-radius: 25px;
  box-shadow: -1px 3px 14px 5px #f2f2f221;
}
.contact-title{
  text-align: center;
}
.contact-box{
  padding: 10px 0;
}
.contact-map iframe{
  border-radius: 10px;
}

.contact-page-form form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.contact-form-upper,
.contact-form-mid {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.contact-page-form textarea {
  margin-bottom: 25px;
}

.contact-form-upper .name,
.contact-form-upper .phone,
.contact-form-mid .email,
.contact-form-mid .location,
.contact-message,
.contact-submit {
  width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-page-form textarea {
  height: 100px;
  resize: vertical;
}

.contact-page-form button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
  background-color: var(--yellow);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-page-form button:hover {
  background-color: var(--primary);
  color: #fff;
}


/* ===============destinations-page============= */

#places{
  width: 100%;
  padding: 30px;
}

.destination-box{
  width: 90%;
  padding: 15px;
  color: #fff;
  text-align: center;
  background: var(--secondary);
  margin: 15px auto;
  border-radius: 15px;
}

.destination-box:hover > .destination-image img{
    transform: scale(1.10);
    transition: transform 0.3s ease-in-out;
}

.destination-image{
  width: 100%;
  height: 250px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 10px;
}

.destination-image img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.destination-title h3{
  font-weight: 700;
  font-size: 1.5rem;
}

.destination-para{
  padding: 10px 0 5px 0;
}

.destination-button{
  margin: 10px 0 10px 0;
  display: flex;
  justify-content: space-evenly;
}

.destination-button a{
  padding: 8px 15px !important;
  border-radius: 10px;
}

/*====================destination specific pages=======*/

#tour-detials{
    width: 100%;
    padding: 20px 0;
}
.tour-location-box {
    padding: 20px;
    width: 100%;
    border-radius: 20px;
}
.left-location{
    background: rgb(16 61 54);
}
.tour-location-image{
    width: 100%;
    height: 400px;
     object-fit: cover;
}
.tour-location-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.tour-location-details{
    color: #fff;
    padding: 20px 0;
    text-align: justify;
}
.tour-location-details h3, b{
    color: var(--yellow);
    font-weight: 700;
}
.tour-location-details h4{
    font-weight: 700;
}
.tour-location-details p{
    text-align: justify;
    color: #fff;
}
.right-location-title{
    text-align: center;
    padding: 0 0 10px 0;
}
.right-location-title h3{
    color: var(--yellow);
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: underline 2px double;
    text-underline-offset: 10px;
}
/* ========================footer=============== */

footer {
  background-image: url(../images/footer-bg.jpg);
  background-size: cover;
  padding: 40px 0;
  position: relative;
}
footer::before {
  content: "";
  height: 100%;
  width: 100%;
  background: var(--primary);
  position: absolute;
  top: 0;
  opacity: 0.94;
}
.ftr-bg-element {
  position: absolute;
  left: 250px;
  bottom: 30px;
}
.ftr-bg-element img {
  width: 400px;
  opacity: 0.2;
}
.footer-box {
  padding: 10px;
  position: relative;
  z-index: 2;
}
.footer-title {
  color: var(--yellow);
}
.footer-title h4 {
  font-size: 2rem;
  font-weight: 700;
}
.footer-title p {
  color: var(--white);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-logo {
  width: 60%;
}
.footer-logo img {
  width: 100%;
}
.footer-text {
  padding: 30px 0;
  color: #fff;
}
.list-unstyled {
  list-style-type: none;
  padding: 10px 0;
}

.media {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-icon {
  font-size: 20px;
  color: var(--yellow);
  margin-right: 15px;
}

.info-icon i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.info-details {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
}

.info-type {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.info-value {
  font-size: 14px;
  color: #ccc;
}

.info-value a {
  color: #ccc;
  text-decoration: none;
}

.info-value a:hover {
  color: #797979;
}

.footer-contact li:last-child .info-details {
  padding-bottom: 0;
}

.footer-contact li:first-child .info-details {
  padding-top: 0;
}



/* ==============================media-query============== */

@media (max-width: 1200px){
    .tab-bg-element {
       right: 0px;
    }
    .tabs-box {
      padding: 15px;
    }
    .tabs-first-group,
    .tabs-second-group,
    .tabs-third-group,
    .tabs-fourth-group {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      gap: 20px;
      text-align: center;
    }
    .tab-image {
      width: 95%;
    }
}

@media screen and (max-width: 1390px) and (min-width: 1024px){
    .album .img {
        margin: 0 0 18px 0;
    }
    #hero-banner {
        margin-top: -185px;
    }
    .main-header-logo {
      width: 95%;
    }
    .main-header-left {
      margin-left: 15px;
    }
    .main-header-menus ul {
      gap: 30px;
    }
    .content-text h1 {
      font-size: 2.5rem;
    }
    .hero-content-wrapper .content-image h3 {
      font-size: 2.5rem;
    }
    .about-right {
      display: none;
    }
    .about-left {
      width: 55%;
    }
    .about-mid {
      width: 45%;
    }
    .experience-circle {
      right: -5px;
    }
    .trips-content {
      padding: 11px 13px;
    }
    .dest-subtitle h2 {
      font-size: 2.2rem;
    }
    .dest-content {
      padding: 0px 15px;
    }
    .visit-details .visit-title h4 {
      font-size: 1.5rem;
    }
}

@media (max-width: 800px) {
    .album .img {
        max-width: 32.5%;
        margin: 0 0 0 0;
    }
    
    .album .responsive-container-block.bg {
        flex-direction: column;
    }
    
    .album .responsive-container-block.img-cont {
        max-width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .album .img.img-big {
        max-width: 49%;
        margin: 0 0 0 0;
    }
    .main-header-left {
    margin-left: 19px;
    }
    .main-header-logo img {
    width: 100%;
    }
    .main-header-logo {
    width: 100%;
}
    .main-header-right {
        display: none;
    }
    .main-header-mid {
      width: 80%;
    }
    .main-header-menus ul {
      gap: 29px;
    }
    .main-header-menus ul li {
      font-size: 0.9rem;
    }
    .main-header-menus ul {
      display: flex;
      align-items: center;
      justify-content: end;
      gap: 47px;
      margin-top: 11px;
      margin-right: 28px;
    }
    .top-left-header {
      width: 30%;
    }
    .top-right-header {
      width: 70%;
    }
    .top-left-social {
      gap: 17px;
    }
    .hero-content-wrapper {
      width: 70%;
    }
    .hero-content-wrapper .content-image h3 {
      font-size: 2.5rem;
    }
    .content-text h1 {
      font-size: 2.5rem;
    }
    #about {
      padding: 20px 0 20px 0;
    }
    .about-content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 0;
    }
    .about-left {
      width: 100%;
      padding: 20px;
    }
    .about-mid {
      width: 65%;
      padding: 20px;
      margin: 0 auto;
    }
    .about-content-button {
      justify-content: center;
    }
    .about-floating-advisor h2 {
      color: #fff;
      font-size: 1.5rem;
    }
    .trips-subtitle h4 {
      font-size: 1rem;
    }
    .trips-subtitle h2 {
      font-size: 2rem;
    }
    .trips-content {
      padding: 30px 13px;
    }
    .slider-item {
      width: 120px;
    }
    .partner-text h3 {
      font-size: 1.3rem;
      font-weight: 700;
    }
    .dest-content {
      padding: 30px 15px;
    }
    .dest-subtitle h4 {
      font-size: 1rem;
    }
    .dest-subtitle h2 {
      font-size: 2rem;
    }
    .left-testi {
      width: 100%;
    }
    .right-testi {
      display: none;
    }
    .visit-box {
      gap: 20px;
      padding: 5px;
    }
    .visit-details .visit-detail p {
      font-size: 0.8rem;
    }
    .visit-link a {
      font-size: 1rem;
    }
    .footer-logo {
      width: 90%;
    }
    .footer-text p{
      font-size: 0.9rem;
    }
}

@media (max-width: 500px) {

    .album .img {
        max-width: 94%;
        margin: 0 0 25px 0;
    }
    .album .responsive-container-block.img-cont {
        flex-direction: column;
        align-items: center;
        padding: 10px 10px 10px 10px;
    }
    .album .img.img-big {
        max-width: 94%;
        margin: 0 0 25px 0;
    }
    .album .img.img-last {
        margin: 0 0 5px 0;
    }
    .ftr-bg-element {
        display: none;
    }
    .main-header-hamburger{
      display: block;
    }
    .main-header-hamburger .bars span{
      transition: all ease 0.5s;
    }
    .main-header-hamburger.open .bars span:nth-child(1) {
      transform: rotate(45deg);
      margin-top: 5px;
    }
    .main-header-hamburger.open .bars span:nth-child(2) {
      opacity: 0;
    }
    .main-header-hamburger.open .bars span:nth-child(3) {
      transform: rotate(-45deg);
      margin-top: -25px;
    }
    .main-header-menus ul{
      display: flex;
      flex-direction: column;
      background: var(--secondary);
      width: 100%;
      position: absolute;
      top: 50px;
      left: 0;
      height: auto;
      text-align: center;
      padding: 20px;
    }
    .main-header-mid {
      display: none;
    }
    .main-header-mid.active{
      display: block;
    }
    .main-header {
      padding: 15px 20px;
      position: relative;
    }
    .main-header-left {
      width: 40%;
      margin-left: 10px;
    }
    .main-header-logo {
      width: 80%;
    }
    .top-left-social {
      gap: 6px;
    }
    .top-left-header {
      width: 60%;
    }
    .top-left-social i {
      color: #000;
      font-size: 0.7rem;
    }
    .top-right-header marquee {
      font-size: 0.8rem;
    }
    .hero-image {
      height: 90vh;
    }
    .hero-content-wrapper {
      width: 80%;
    }
    .hero-content-wrapper .content-image {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      text-align: center;
      justify-content: center;
    }
    .content-text h1 {
      text-align: center;
      font-size: 1.5rem;
    }
    .all-btn a {
      background: var(--yellow);
      padding: 9px 13px;
    }
    .about-mid {
      width: 100%;
    }
    .experience-circle {
      right: -18px;
      bottom: -43px;
    }
    .about-floating-advisor {
      position: relative;
      white-space: nowrap;
      font-size: 50px;
      animation: none;
      padding: 40px 0;
    }
    .about-floating-advisor h2 {
      color: #fff;
      font-size: 1rem;
      text-align: center;
    }
    .about-floating-advisor h2 img {
      width: 50px;
    }
    .testi-subtitle p {
      font-size: 2.54rem;
      color: #f7f5f0;
    }
    .testi-left-para .testi-para-text p {
      color: #f7f5f0;
      font-size: 1rem;
      transition: opacity 0.5s ease;
    }
    .about-right {
      display: none;
    }
    .aboutus-image img {
        width: 85%;
    }
    .sec-visit{
        gap: 20px;
        padding: 20px;
        text-align: left;
        margin-left: -60px;
    }
    .counter-item p {
      margin-top: 15px;
      font-size: 13px;
      text-transform: uppercase;
      text-align: center;
    }
    .counter-item {
      text-align: center;
      width: 100%;
      color: #ffffff;
    }
    .about-counter {
      display: flex;
      flex-wrap: wrap;
    }
    .contact-page-form form {
      padding: 0;
    }
    #contact-form {
      padding: 0;
    }
    .touch-title h2 {
      color: var(--white);
      font-size: 1.2rem;
      font-weight: 700;
    }
    .breadcrum-title h1 {
      font-size: 3rem;
      font-weight: 700;
      font-family: var(--poppins);
    }
    .tab-bg-element img {
        display: none;
    }
    .footer-logo {
        width: 50%;
    }
}

@media (max-width: 400px){
    .hero-content-wrapper .content-image h3 {
        font-size: 2.1em;
    }
    .content-text h1 {
        font-size: 1.3rem;
    }
    .about-floating-advisor h2 img {
        width: 27px;
    }
    .tabs-first-group, .tabs-second-group, .tabs-third-group, .tabs-fourth-group {
        flex-wrap: wrap;
        gap: 0 !important;
    }
    .testi-subtitle p {
        font-size: 2.2rem;
        color: #f7f5f0;
    }
    .arrow {
        padding: 3px 16px;
    }
    .destination-box {
    width: 100% !important;
    }
    #places {
    width: 100%;
    padding: 30px 0;
}
    .breadcrum-title h1 {
        font-size: 2.7rem;
    }
    .tour-location-box {
    padding: 20px 0 !important;