@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css');

html {
  scroll-behavior: smooth;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

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

:root {
  --primary-color: #933d22;
  --secondary-color: #f29321;
  --tertiary-color: #fed811;
  --quaternary-color: #d0e4f6;
  --quinary-color: #293896;
  --senary-color: #7c1235;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  /* background: linear-gradient(to bottom, #fef9ef, #fe6d73); */

}

.top-header {
  /* background-color: var(--primary-color); */
  padding: 0 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.logo-class {
  width: 100px;
  height: 50px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-left: 10px;

  transition: transform 0.3s ease;


}

.search-box {
  position: relative;
}

.search-input {
  width: 0;
  opacity: 0;
  transition: width 0.4s ease, opacity 0.4s ease;
}

.search-box.active .search-input {
  width: 200px;
  opacity: 1;
  padding: 0.375rem 0.75rem;
  margin-right: 0.5rem;
  color: #000;
}

.bi-x {
  display: none;
}

.bi-search {
  color: #ffffff;
}

.search-box.active .bi-search {
  display: none;
  color: #fff;
}

.search-box.active .bi-x {
  display: inline;
  color: #fff;
}

.book-consultation {
  padding: 0.4em 1.5em;
  border: none;
  outline: none;
  color: #000;
  background: var(--primary-color);
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.book-consultation:before {
  content: "";
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--tertiary-color), var(--quinary-color), var(--senary-color), #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing-book-consultation 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

@keyframes glowing-book-consultation {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.book-consultation:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.banner-background {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.banner-background .owl-carousel .item {
  position: relative;
  width: 100%;
  height: 100vh;
}

.banner-background .owl-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;

}

.banner-text-left,
.banner-text-right {
  color: white;
  max-width: 800px;

}

.banner-text-left h1,
.banner-text-right h1 {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  font-family: 'Pacifico', cursive;

}

.banner-text-left p,
.banner-text-right p {
  font-size: 1.25rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }

  .banner-text-left,
  .banner-text-right {
    max-width: 100%;
  }
}

.banner-backgrounds .desination-banner  {
  position: relative;
  width: 100%;
  height: 70vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url('../resources/images/h3-rev-slider-img-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}
.top-header a h1 {
  font-size: 2.5rem;
  color: var(--quaternary-color);
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.top-header a h1:hover {
  color: var(--secondary-color) !important;
}
nav  ul .nav-item  .nav-link {
  color: #fff !important;
}




/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1
}

/* .owl-animated-in - only for upcoming item
/* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0
}

/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.desination {
  padding: 100px 0;
  position: relative;
  background-image: url('../resources/images/bg-destination.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: -10000px;
}

.desination h1 {
  font-size: 2.9rem;
  font-weight: 900;

}

.desination .title-desination-list {
  font-size: 1rem !important;
  color: var(--primary-color);
  font-style: normal;
  background-color: #F2F4F8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 20px;
  margin-bottom: 15px;
}

.desination .title-desination-list:hover {
  background-color: var(--primary-color);
  color: #fff;
}


.desination .title-desination-list:hover .desination-list {
  color: #fff;
}

.desination .title-desination-list:hover .desination-list i {
  color: #fff;
}

.desination .title-desination {
  color: #801336;
  text-transform: uppercase;
}

.desination-button button {
  background-color: var(--primary-color);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  height: 60px;
  font-size: 1.2rem;

}

.desination-button button:hover {
  background-color: var(--secondary-color);
  color: #fff !important;
}

.desination-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-in-out;
  font-weight: 300;

}

.col-sm-6 .desination-item1 {
  margin-bottom: 20px;
  border-radius: 10px;
  height: 400px !important;
  width: 750px !important;

}

.col-sm-6 .desination-item1 img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
}

.desination-item {
  /* box-shadow: #fff 0px 0px 20px 0px; */
  transition: all 0.3s ease;

}

.desination-item:hover {
  transform: scale(1.05);
}

.desination .image-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-top-left-radius: 50px;
  max-width: 400px;
  max-height: 400px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: contain;
}

.desination .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* border-radius: 50%; */
  margin-top: 40px;
}

.desination .hover-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* height: 25%; 0.25 of the image height */
  background: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.4s ease, transform 0.4s ease;

}

.desination .image-wrapper:hover {
  border-radius: none;
  height: 400px;
  width: 400px;
}

.desination .image-wrapper:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}

.desination .hover-text p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.2;
  font-weight: 400;
}

.desination-item h5 {
  font-size: 2.5rem;
  color: #fff;
  margin-top: 20px;
  font-weight: 900;
  text-align: center;
}

.about-us {
  padding: 60px 0;
  /* background: linear-gradient(to bottom, #fef9ef, #fe6d73); */
  position: relative;
  overflow: hidden;
  background-image: url('../resources/images/bg-05.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-size: cover;
  z-index: 1;
}

.about-us .row {
  position: relative;
}

.image-wrapper {
  position: relative;
  text-align: center;
}

.image-wrapper img {
  width: 100%;
  max-height: 600px;
  min-height: 600px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.background-title-about-us {
  position: absolute;
  top: -30px;
  right: -30px;
  /* Moved to right */
  width: 130px;
  height: 130px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: bold;
  box-shadow: -4px 0 15px rgba(255, 255, 255, 0.5);
  border-left: 6px solid #ffffffcc;
  /* Glowing left edge */
  z-index: 2;
}

.about-us-title {
  margin: 0;
  padding: 0 10px;
  text-align: center;
}

.content-wrapper {
  padding: 30px;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-in-out;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

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

.container-mission {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* Burgundy background */
  padding: 40px 20px;
}

.container-mission .box {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
  padding: 20px;
}

.container-mission .heading {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.container-mission .heading i {
  font-size: 24px;
}

.container-mission .mission-text {
  line-height: 1.6;
  margin-bottom: 15px;
}

.container-mission .values-list {
  border-left: 2px solid #000;
  padding-left: 23px;
  margin-top: 10px;
}

.container-mission .value-item {
  margin-bottom: 20px;
  position: relative;
}

.container-mission .value-item::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--secondary-color);
  border-radius: 50%;
}

.container-mission h4 {
  margin: 0;
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 600;
}

.container-mission p {
  margin: 5px 0 0 0;
  font-size: 14px;
}

/* Icons using emojis (or use Font Awesome / SVG for advanced designs) */
.container-mission .icon-mission::before {
  content: "🎯";
}

.container-mission .icon-values::before {
  content: "🌟";
}

.team-section {
  text-align: center;
  padding: 60px 30px;
  background-image: url('../resources/images/bg-03.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.team-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #801336;
  color: white;
  padding: 10px 20px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: fit-content;
  margin-bottom: 40px;
}

.team-header img {
  width: 40px;
  margin-right: 10px;
}




.team-header img {
  width: 70px;
}

.team-header h2 {
  color: #fff;
  font-size: 2.8em;
}

/* Tree Structure */
.tree ul {
  padding-top: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style-type: none;
}

.tree ul ul {
  padding-top: 50px;
}

.tree li {
  text-align: center;
  position: relative;
  padding: 30px 10px 0 10px;
  margin-top: 20px;
}

.tree li::before,
.tree li::after {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  border-top: 3px dashed #801336;
  width: 50%;
  height: 30px;
}

.tree li::after {
  right: auto;
  left: 50%;
  border-left: 3px dashed #801336;
}

.tree li:only-child::before,
.tree li:only-child::after {
  display: none;
}

.tree li:only-child {
  padding-top: 0;

}

.tree li:first-child::before,
.tree li:last-child::after {
  border: none;
}

.tree li:last-child::before {
  border-right: 3px dashed #801336;
  border-radius: 0 8px 0 0;
}

.tree li:first-child::after {
  border-radius: 8px 0 0 0;
}

.person {
  border: 2px solid #801336;
  background: #801336;
  color: #fff;
  padding: 18px 30px;
  border-radius: 30px;
  display: inline-block;
  min-width: 180px;
  font-size: 1.3em;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.person:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.person::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 75px;
  border: 5px solid #801336;
  border-radius: 50%;
  background: url('https://img.icons8.com/ios-filled/50/ffffff/user.png') no-repeat center;
  background-size: 55%;
  background-color: #000;
  z-index: 1;
}

.experience-destination {
  padding: 60px 0;
  background-image: url('../resources/images/bg-26.png');
  position: relative;
  background-repeat: no-repeat;
  background-position: right;
  background-attachment: fixed;
}

.experience-destination .main-image {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.main-image img {
  width: 100%;
  border-radius: 20px;
  /* height: 600px; */
  /* max-width: 600px; */
  /* padding-top: 40px; */
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #fff;
  color: #f57c00;
  font-weight: bold;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.beach-image {
  margin-top: 20px;
  border-radius: 20px;
  overflow: hidden;
}

.beach-image img {
  width: 100%;
  border-radius: 20px;
}


.experience-destination .small-btn {
  background-color: #eef4ff;
  color: #1e40af;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
  cursor: pointer;
}

.experience-destination h1 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 15px;
}

.experience-destination .description {
  /* font-size: 16px; */
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

.experience-destination .features {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}

.experience-destination .feature {
  background: #fff;
  padding: 10px;
  flex: 1;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.experience-destination .feature:hover,
.experience-destination .feature:focus {
  transform: scale(1.05);

}

.experience-destination .icon {
  font-size: 2rem;
  color: #1d4ed8;
  margin-bottom: 10px;
  font-weight: 900;
}

.feature h4 {
  margin-bottom: 10px;
  /* font-size: 16px; */
  color: #1e293b;
}

.bottom-box {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.award {
  background: #fef2e8;
  padding: 10px;
  border-radius: 12px;
  text-align: center;
  color: #c2410c;
  font-weight: bold;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award i {
  font-size: 32px;
  margin-bottom: 10px;
}

.benefits {
  list-style: none;
  color: #475569;
  flex: 1;
}

.benefits li {
  margin-bottom: 10px;
  font-size: 15px;
}

.benefits i {
  color: #1e40af;
  margin-right: 8px;
}

.explore-btn {
  margin-top: 10px;
  background: #f97316;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.blog-section {
  padding: 60px 80px;
  margin-top: 50px;
  background-image: url('../resources/images/bg-23.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  /* background-color: var(--quaternary-color); */
  border-top-right-radius: 30px !important;

}

.section-header {
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
}

.section-header .category {
  background: #000;
  color: #1e40af;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  cursor: default;
  margin-bottom: 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  transition: all 0.3s ease;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #0f172a;
}

.blog-section .row .col-sm-4 {
  max-height: 250px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  background: #fff;

}

.blog-section .col-sm-4 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.col-sm-4 .blog-meta {
  background: #1e40af;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  font-size: 13px;
  border-radius: 10px 10px 0 0;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

.col-sm-4 .blog-meta i {
  margin-right: 5px;
}

.col-sm-4 .blog-content {
  padding: 15px;
}

.col-sm-4 .blog-author {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 5px;
}

.col-sm-4 .blog-meta i {
  margin-right: 5px;
}

.col-sm-4 .blog-meta h3 {
  font-size: 0.7rem;
  color: #0f172a;
  margin: 0;
  padding: 0;
}

.col-sm-4.blog-content-item {
  padding: 20px;
  background: #F2F4F8 !important;
  border-radius: 0 0 10px 10px;
}

.read-more {
  display: flex;
  color: #1e293b;
  margin-top: 10px;
  text-decoration: none;
  font-size: 14px;
  justify-content: space-between;
}

.read-more i {
  margin-left: 5px;
}

.trusted-heading {
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 30px;
}

.trusted-heading::before,
.trusted-heading::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #ccc;
}

.trusted-heading:not(:empty)::before {
  margin-right: .75em;
}

.trusted-heading:not(:empty)::after {
  margin-left: .75em;
}

.brands img {
  /* max-height: 60px; */
  /* filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease-in-out; */
}

.brands .active img {
  filter: none;
  opacity: 1;
}

.brands .owl-carousel-brands {
  /* display: inline-flex; */
  /* justify-content: center;
  align-items: center; */
}

.brands .owl-carousel-brands .item img {
  height: 200px;
  width: 200px;
  object-fit: contain;
}

.brands .owl-carousel-brands .item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.5);
  transition: all 0.3s ease-in-out;
}

.brands .owl-carousel .owl-nav {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  font-size: 4rem;
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-55%);
  left: 0%;
  z-index: 10;
  color: var(--quinary-color);

}

.brands .owl-carousel .owl-nav button {
  background: transparent;
  border: none;
  color: var(--quinary-color);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}




.tour-section {
  text-align: center;
  padding: 100px 20px;
  background-image: url('../resources/images/h6-img-1.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  /* background-color: #dbdde6; */

}

.tour-section .label,
.blog-section .label {
  display: inline-block;
  background: white;
  color: #1e1e2f;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  font-family: 'Courier New', Courier, monospace;
}

.tour-section .heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

.tour-section .tour-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tour-section .tour-card {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  height: 300px;
}

.tour-section .tour-card.active {
  background: #0053ce;
  color: white;
  transform: translateY(-10px);
}

.tour-section .tour-card .circle {
  width: 48px;
  height: 48px;
  background: #ff9d30;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: absolute; */
  top: -24px;
  left: 16px;
  font-size: 16px;
  z-index: 5px;

}

/* .tour-cards.owl-carousel,
.tour-cards.owl-carousel .owl-stage-outer,
.tour-cards.owl-carousel .owl-stage {
  overflow: visible !important;
} */

/* .tour-section .tour-card.active .circle {
  background: #ff9d30;
} */

.tour-section .tour-card .icon {
  font-size: 40px;
  margin: 20px 0 10px;
}

.tour-section .tour-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.tour-section .tour-card p {
  font-size: 14px;
  color: #555;
}

.tour-section .tour-card.active p {
  color: #e0e0e0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-right: 30px;
}

.social-icon {
  background-color: #003049;
  color: #fff !important;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: #ff9d00;
}

footer {
  /* background-color: #003049; */
  color: white !important;
  /* background-image: url('../resources/images/bg-23.png');
  background-size: contain;
  background-repeat: no-repeat; */
  padding: 20px 0;
  /* background-position: right; */

  /* text-align: center;
  padding: 60px 20px; */
  /* background-image: url('../resources/images/bg-footer.png'); */
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #1A1B1B;
}

footer img {
  width: 100px;
  height: 100px;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: contain;
}

.important-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer h6{
  font-weight: 900 !important;
  font-size: 2rem;

}
footer .social-icon {
  color: #fff !important;
}

.important-links a {
  color: #f29321 !important;
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.small.text-muted {
  font-size: 14px;
  color: #f29321 !important;
}

.logo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-left: 30px;
}

.why-us {
  padding: 60px 0;
  background-image: url('../resources/images/image-03.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.why-us .text-maroon {
  color: #861944;
}

.why-us .border-maroon {
  border: 6px solid var(--quaternary-color);
}

.why-us .bg-primary-vertical {
  width: 20px;
  height: 80px;
  background-color: #861944;
}

.why-us ul {
  padding-left: 1.25rem;
}

.why-us ul li {
  margin-bottom: 0.5rem;
}

/* Dashed border effect (optional decoration like in the image) */
.why-us .dashed-border {
  width: 90%;
  height: 90%;
  border: 3px dashed var(--secondary-color);
  border-radius: 50%;
  z-index: -1;
}

.destination-banner {
  position: relative;
  padding: 60px 0;
  background-image: url('../resources/images/bg1.jpg');
  background-size: contain;
  background-position: right;
  /* background-repeat: no-repeat; */
}

.destination-banner .container {
  background-image: url('../resources/images/bg1.jpg');
  background-size: cover;
  background-position: center;
}

.destination-banner .title {
  font-family: 'Great Vibes', cursive;
  font-size: 3rem;
  color: #800020;
  font-weight: normal;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.8rem;
  position: relative;
  display: inline-block;
}

.destination-banner .page-wrapper {
  display: flex;
}

.destination-banner .left-bar {
  width: 20px;
  background-color: var(--primary-color);
}

.destination-banner .content {
  flex-grow: 1;
  padding: 3rem;
}

.title::after {
  content: '';
  display: block;
  width: 60%;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0.4rem auto 0 auto;
  border-radius: 10px;
}

.destination-banner .highlight {
  color: #800020;
}

.destination-banner .section-title {
  font-weight: 600;
  margin-top: 1.5rem;
}

.destination-banner .highlight-red {
  color: #800020;
}

.highlight-green {
  color: #2e8b57;
}

.highlight-blue {
  color: #1e90ff;
}

.highlight-purple {
  color: #6a0dad;
}

.highlight-multi {
  color: #ff69b4;
}

.destination-banner .right-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}

.destination-banner .vertical-stripe {
  position: absolute;
  width: 2rem;
  height: 100%;
  background-color: #800020;
  z-index: 0;
}

.destination-banner .image-card {
  position: relative;
  width: 80%;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  margin: 2rem 0;
  z-index: 1;
}

.destination-banner .image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.destination-banner .dots {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(5, 6px);
  gap: 4px;
  margin: 1.5rem 0;
  z-index: 2;
}

.destination-banner .dots div {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
}

.destination-banner .image-card {
  position: relative;
  width: 80%;
  max-width: 350px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  margin: 2rem 0;
  z-index: 1;
  border: 2px solid #800020;
}

.destination-banner .section-title {
  font-weight: 600;
  margin-top: 1.5rem;
}

.highlight-box {
  background-color: #eaf1ff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.highlight-box ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.highlight-box li::before {
  content: '\f26e';
  font-family: 'Bootstrap-icons';
  color: #0d6efd;
  margin-right: 0.5rem;
}

.tour-plan .card {
  border: none;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 1rem;
}

.tour-plan .card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.toggle-switch {
  float: right;
  font-size: 0.9rem;
}

.faq-question {
  cursor: pointer;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 0.75rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem 1rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.faq-answer.active {
  display: block;
}

.section-header {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
/* 
Specialty Section Styles
 */
 .speciality-header nav .nav-item .nav-link {
  color: #000 !important;
 }

 
.specialty h2 {
  font-weight: bold;
  color: #7b1e57;
}

.specialty .section-title {
  margin-top: 60px;
}

.specialty .specialty-content-world {
  background-image: url('../resources/images/bg1.jpg');
  background-color: var(--primary-color);
  background-size: contain;
  background-position: left;
  background-repeat: repeat;

}

.specialty .specialty-content-experiential {
    background-image: url('../resources/images/bg-26.png');

  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  /* background-color: #f0f4ff; */

}
.specialty .row .col-sm-6 img {
  height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  margin-bottom: 20px;
  transition: transform 0.3s ease;


}


.specialty .advisory-section {
  background-image: url('../resources/images/bg-21.png');
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;


}

.specialty .highlight {
  color: #7b1e57;
  font-weight: 600;
  font-size: 2rem;
}

.specialty ul li {
  margin-bottom: 10px;
}

.speciality-banner {
  font-family: 'Segoe UI', sans-serif;
  background: url('../resources/images/bg-hero-3.jpg') no-repeat left bottom;
}

.speciality-banner .hero-section {
  padding: 4rem 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.speciality-banner .hero-text h1 {
  font-weight: 900;
  font-size: 6rem;
}

.speciality-banner .hero-text p {
  color: #f7941d;
  font-size: 1.25rem;
  font-family: 'Great Vibes', cursive;
  font-weight: 600;
}

.speciality-banner .highlight-badges span {
  margin-right: 0.5rem;
}

.speciality-banner .search-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.speciality-banner .form-label {
  font-weight: 500;
  color: #777;
  font-size: 0.9rem;
}

.speciality-banner .form-value {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
}

.speciality-banner .search-btn {
  background-color: #f7941d;
  border: none;
  padding: 0.75rem;
  width: 100%;
  font-weight: 600;
  color: #fff;
  border-radius: 6px;
}

.speciality-banner .form-group {
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.speciality-banner.range-output {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: right;
}

.about-section {
  padding: 60px 0;
  position: relative;
}

.about-section .section-label {
  display: inline-block;
  background: #f0f4ff;
  color: #0d6efd;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-section .section-title {
  font-size: 36px;
  font-weight: 700;
}

.about-section .consultation-box {
  background: #f0f4f8;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 30px 0;
}



.about-section .check-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 16px;
}

.about-section .check-list i {
  color: #0d6efd;
  margin-right: 8px;
}

.about-section .explore-btn {
  background-color: #0d6efd;
  color: white;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
}

.about-section .image-stack {
  position: relative;
}

.about-section .main-image {
  width: 100%;
  border-radius: 16px;
}

.about-section .overlay-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 60%;
  border-radius: 16px;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.about-section .image-label {
  position: absolute;
  bottom: -70px;
  left: 0;
  background-color: #f7941d;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 14px;
}

.about-section .hot-air {
  position: absolute;
  top: 0;
  right: 30px;
  width: 80px;
}

@media (max-width: 768px) {

  .about-section .overlay-image,
  .image-label {
    position: static;
    margin-top: 16px;
  }

  .about-section .hot-air {
    display: none;
  }
}

/* Contacts  */
.banner-background-contact {
  height: 40vh;
  position: relative;
  width: 100%;
  background-image: url('../resources/images/aust4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px !important;



}
.banner-background-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-background-contact h1 {
  color: white;
  font-size: 3rem;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.banner-background-contact p {
  color: #000;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}


.contact-section {
  padding: 60px 0;
  background-image: url('../resources/images/bg-23.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: relative;
}


.contact-section .contact-header {
  text-align: center;
  margin-bottom: 40px;

}

.contact-section .contact-header .badge {
  background-color: #eaf2fd;
  color: #0053ce;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.contact-section .contact-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-top: 15px;
  color: #1e1e2f;
}

.contact-section .contact-box {
  background-color: #0c1f47;
  border-radius: 20px;
  overflow: hidden;
  color: white;
}

.contact-section .contact-box .image-top {
  width: 100%;
  height: 200px;
  background: url('../resources/images/mm.jpg') center/cover no-repeat;
  position: relative;
}

.contact-section .contact-box .image-top .tag {
  position: absolute;
  bottom: 10px;
  left: 20px;
  background-color: #ff9d30;
  color: white;
  padding: 5px 15px;
  border-radius: 8px;
  font-weight: 600;
}

.contact-section .contact-info {
  padding: 30px 20px;
}

.contact-section .contact-info .info-block {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-section .contact-info i {
  font-size: 20px;
  margin-top: 2px;
  color: #ff9d30;
}

.contact-section .contact-info strong {
  display: block;
  font-size: 16px;
}

.contact-section .form-control {
  background-color: #f4f7fa;
  border: none;
  border-radius: 8px;
  padding: 12px 15px;
}

.contact-section .form-control:focus {
  box-shadow: none;
  border: 1px solid #0053ce;
}

.contact-section .send-btn {
  background-color: #ff9d30;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  color: white;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-section .send-btn:hover {
  background-color: #e5861d;
}