/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
}

.btn.btn-primary:hover {
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
  color: var(--bs-white);
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.btn.btn-light {
  color: var(--bs-primary);
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
  0% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }

  25% {
    border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
  }

  50% {
    border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
  }

  75% {
    border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
  }

  100% {
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  }
}
/*** Icon Animation End ***/

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
}

.sticky-top {
  transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 50px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

.form-control-error {
  color: red;
  font-size: 0.85em;
  margin-top: 4px;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}
/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
  object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
  height: 700px;
}

.carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
}

.carousel .carousel-indicators {
  left: 75%;
  top: 50%;
  margin-right: 25%;
  transform: translateY(-50%);
  flex-direction: column;
}

.carousel-indicators [data-bs-target] {
  display: flex;
  width: 15px;
  height: 15px;
  border: 6px solid var(--bs-white);
  border-radius: 15px;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: var(--bs-secondary);
  opacity: 1;
  transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
  background-color: var(--bs-primary);
}

@media (max-width: 992px) {
  .carousel-indicators [data-bs-target] {
    display: none;
  }
}
/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(31, 46, 78, 1), rgba(0, 12, 33, 0.8)),
    url(../img/fact-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Features Start ***/
.feature {
  background: var(--bs-light);
}

.feature .feature-item {
  display: flex;
  border-radius: 10px;
}

.feature .feature-item .feature-icon span {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Features End ***/

/*** About Start ***/
.about .about-item .about-item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.about .about-item .about-item-inner .about-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

.about .about-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.about .about-img .img-1 {
  height: 85%;
  margin-right: 50px;
}

.about .about-img .img-2 {
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  padding-left: 50px;
  border-radius: 10px;
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 98%;
  top: 0;
  right: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  z-index: -1;
}

.about .about-item .text-item {
  position: relative;
  padding-left: 25px;
}

.about .about-item .text-item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}
/*** About End ***/

/*** Fact Counter Start ***/
.counter {
  background: linear-gradient(rgba(0, 12, 33, 0.9), rgba(31, 46, 78, 0.9)),
    url(../img/fact-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.counter .counter-item .counter-item-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Fact Counter End ***/

/*** Services Start ***/
.service .service-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: var(--bs-white);
  transition: 0.5s;
}

.service .service-item:hover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  background: var(--bs-light);
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--bs-primary);
  border-radius: 10px;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.service .service-item:hover::after {
  opacity: 1;
}

.service .service-item .service-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}
/*** Service End ***/

/*** Cars Categories Start ***/
.categories .categories-item {
  position: relative;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item:hover {
  border: 1px solid var(--bs-primary);
}

.categories .categories-item .categories-item-inner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: 0.5s;
}

.categories .categories-item .categories-item-inner:hover {
  box-shadow: 0 0 50px rgba(234, 0, 30, 0.3);
}

.categories .categories-item-inner .categories-img {
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-content {
  border-top: 4px solid var(--bs-white);
  text-align: center;
  background: var(--bs-light);
}

.categories .categories-item-inner .categories-review {
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories-carousel .owl-stage-outer {
  margin-top: 65px;
  margin-right: -1px;
}

.categories-carousel .owl-nav .owl-prev,
.categories-carousel .owl-nav .owl-next {
  position: absolute;
  top: -65px;
  padding: 10px 35px;
  color: var(--bs-white);
  background: var(--bs-primary);
  border-radius: 50px;
  transition: 0.5s;
}

.categories-carousel .owl-nav .owl-prev {
  left: 0 !important;
}

.categories-carousel .owl-nav .owl-next {
  right: 0;
}

.categories-carousel .owl-nav .owl-prev:hover,
.categories-carousel .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
/*** Cars Categories End ***/

/*** Process Start ***/
.steps {
  background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
    url(../img/bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.steps .steps-item {
  position: relative;
  background: var(--bs-secondary);
  border-radius: 10px;
}

.steps .steps-item h4,
.steps .steps-item p {
  color: var(--bs-white);
}

.steps .steps-item .setps-number {
  position: absolute;
  width: 64px;
  height: 64px;
  bottom: 0;
  right: 40px;
  font-weight: 900;
  border: 1px solid var(--bs-white);
  border-radius: 64px;
  transform: translateY(50%);
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
/*** Process End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
  height: 100%;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-content {
  position: relative;
  background: var(--bs-light);
}

.blog .blog-item .blog-content .blog-date {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  padding: 12px 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.blog .blog-item .blog-content .blog-comment {
  display: flex;
  justify-content: space-between;
}
/*** Blog End ***/

/*** Banner Start ***/
.banner .banner-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.banner .banner-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.banner .banner-item .banner-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  margin-left: 0;
  margin-bottom: 0;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  z-index: 5;
}

@media (min-width: 992px) {
  .banner .banner-item .banner-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
  }

  .banner .banner-item .banner-content h1 {
    font-size: 72px;
    margin-bottom: 20px;
  }

  .banner .banner-item .banner-content p {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  text-align: center;
  border-radius: 10px;
  margin-top: 100px;
  background: var(--bs-light);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
  z-index: 2;
  transition: 0.5s;
}

.team .team-item:hover::after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-white);
}
.team .team-item:hover .team-content p {
  color: var(--bs-white);
}

.team .team-item .team-img {
  position: relative;
  overflow: hidden;
  top: -100px;
  margin-bottom: -100px;
  border-radius: 10px;
  z-index: 3;
}

.team .team-item .team-img img {
  transition: 0.5s;
}

.team .team-item:hover .team-img img {
  transform: scale(1.1);
}

.team .team-item .team-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 4;
  transition: 0.5s;
}

.team .team-item:hover .team-img::after {
  height: 100%;
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
  margin-right: -1px;
}

.testimonial .testimonial-item {
  position: relative;
  margin-top: 35px;
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  right: 25px;
  transform: translateY(-50%);
  border-radius: 70px;
  color: var(--bs-white);
  background: var(--bs-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
  display: flex;
  align-items: center;
  background: var(--bs-light);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-secondary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-light);
  height: 235px;
}

.contact .contact-add-item .contact-icon {
  width: 90px;
  height: 90px;
  border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  background: var(--bs-primary);
  animation-name: icon-animat;
  animation-duration: 5s;
  animation-delay: 1s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  transition: 0.5s;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}
/*** copyright end ***/

/*** Package ***/

/* body {
  background-color: #f9f9f9;
  font-family: "Segoe UI", sans-serif;
  scroll-behavior: smooth;
} */

.trip-section {
  padding: 60px 20px;
  min-height: 65vh; /* Makes it fill the full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.trip-tag {
  background-color: #ea001e;
  color: white;
  font-size: 16px;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 15px;
}

.trip-title {
  font-size: 32px;
  font-weight: 700;
}

.trip-desc {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
}

.trip-info i {
  color: #ea001e;
  margin-right: 6px;
}

.btn-contact {
  background-color: #ea001e;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 8px;
  width: 100%;
  margin-top: 177px;
}

.btn-contact:hover {
  background-color: #ea001e;
}
.trip-part {
  min-height: 45vh;
}

.image-grid {
  display: grid;
  /* grid-template-columns: 3fr 2fr;
  grid-template-rows: 2fr 1fr; */
  gap: 15px;
  min-height: 65vh;
}

.image-grid img {
  width: 100%;
  height: 103%;
  object-fit: cover;
  border-radius: 16px;
}

.image-grid > div:first-child {
  grid-row: 1 / span 2;
}

.card-custom {
  border: none;
  background: transparent;
}
/***FAQs***/
.faq-item {
  margin-bottom: 20px;
}

.faq-item h6 {
  font-size: 18px;
  font-weight: 600;
  color: #121212;
  margin-bottom: 6px;
}

.faq-item p {
  font-size: 22px;
  color: rgba(18, 18, 18, 0.7);
  line-height: 1.6;
}

table th {
  width: 50%;
  background-color: #f8f9fa;
  font-weight: 600;
}
table td {
  color: #333;
}
/*** under package nav ***/
.nav-tabs-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
  border-bottom: 1px solid #e9ecef;
  justify-content: flex-start;
  margin-bottom: 0;
}

.nav-tabs .nav-item {
  margin-bottom: 0;
}

.nav-tabs .nav-link {
  border: none;
  background: none;
  color: #6c757d;
  font-weight: 500;
  font-size: 16px;
  padding: 15px 30px;
  margin-right: 40px;
  position: relative;
  border-radius: 0;
  transition: color 0.3s ease;
}

.nav-tabs .nav-link:last-child {
  margin-right: 0;
}

.nav-tabs .nav-link:hover {
  color: #333;
  background: none;
  border: none;
}

.nav-tabs .nav-link.active {
  color: #333;
  background: none;
  border: none;
  font-weight: 600;
}

.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #ea001e;
}

.nav-tabs .nav-link:focus {
  outline: none;
  box-shadow: none;
}
.section-1 {
  padding: 40px 20px;
}
.section {
  padding: 20px 20px;
}
.itinerary-section {
  padding: 20px;
  background-color: #f8f9fa;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.itinerary-card {
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px;
}
.section-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}
.itinerary-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}
.day-badge {
  background-color: #ea001e;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-right: 20px;
  min-width: 60px;
  text-align: center;
  flex-shrink: 0;
}
.itinerary-title {
  font-size: 19px;
  font-weight: 600;
}
.itinerary-content {
  flex: 1;
  margin-left: 12px;
}
.bullet-point {
  width: 8px;
  height: 8px;
  background-color: #ea001e;
  border-radius: 50%;
  position: absolute;
  left: 70px;
  top: 30px;
  z-index: 1;
}
.itinerary-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 72.5px;
  top: 50px;
  bottom: -20px;
  width: 2px;
  border-left: 2px dotted #ccc;
}



.card {
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px;
}

.card-rental {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px;
}

.card-rental p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 10px;
}

.card-rental h5 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 10px;
}

.card-rental h6 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 15px;
}

.rental-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.rental-item img.icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.rental-item span {
  flex: 1;
}

.card-same {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px;
  height: 410px;
}

.card-same p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: rgba(18, 18, 18, 0.6); /* #121212 with 80% opacity */
  margin-bottom: 8px;
}

.card-same h5 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 10px;
}

.card-same h6 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 15px;
}

.card-same1 {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 20px;
  height: 410px;
}

.card-same1 p {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: rgba(18, 18, 18, 0.6); /* #121212 with 80% opacity */
  margin-bottom: 8px;
}

.card-same1 h5 {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 10px;
}

.card-same1 h6 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(18, 18, 18, 0.8); /* #121212 with 80% opacity */
  margin-bottom: 15px;
}
.section-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.activities-title {
  font-size: 28px;
  font-weight: 700;
}
.activities-title span {
  color: #ea001e;
}

/*****packages cards ***/

.package-title {
  text-align: center;
  margin-bottom: 40px;
}

.package-title h2 {
  font-size: 36px;
  font-weight: 700;
}

.package-title span {
  color: #ea001e;
}

.card-custom {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background: white;
  transition: all 0.3s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  position: relative;
}

.badge-custom {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: #ea001e;
  color: white;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
}
.card-title-container {
  font-size: 19px;
}
.card-body-custom {
  padding: 20px;
}

.card-body-custom p {
  font-size: 14px;
  color: #555;
}

.icon-text {
  font-size: 14px;
  margin-bottom: 8px;
  color: #3e3c3c;
}

.icon-text img {
  color: #ea001e;
  margin-right: 6px;
}

.btn-view {
  background-color: #ea001e;
  color: white;
  width: 100%;
  border-radius: 6px;
  padding: 10px;
  font-weight: 600;
  margin-top: 20px;
}

.btn-view:hover {
  background-color: #c40017;
}
/****activities***/

.rafting-container {
  display: flex;
  gap: 30px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

.rafting-image {
  flex: 0 0 450px;
  height: fit fit-content;
background-image: url("img/rafting.png");
background-position: center;
background-size: cover;
background-repeat: no-repeat;
  position: relative;
}

.rafting-content {
  flex: 1;
  padding: 30px;
}

.rafting-title {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.rafting-description {
  font-size: 15px;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.info-icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-icon.red {
  background: #e74c3c;
  border-radius: 50%;
  position: relative;
}

.info-icon.red::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.info-icon.location {
  background: #3498db;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E")
    center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E")
    center/contain;
}

.info-text {
  color: #5a6c7d;
  flex: 1;
}

.content-card {
  background: white;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  padding: 25px;
  margin-top: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 25px;
}

.content-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.content-section p {
  font-size: 14px;
  color: #5a6c7d;
  line-height: 1.5;
  margin-bottom: 8px;
}

.seasonality-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.season-item {
  margin-bottom: 8px;
}

.season-label {
  font-weight: 500;
  color: #34495e;
  font-size: 14px;
}

.season-desc {
  color: #5a6c7d;
  font-size: 14px;
  margin-left: 0;
}

.pricing-section {
  margin-top: 30px;
  border-top: 1px solid #eee;
  padding-top: 25px;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.pricing-title {
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
}

.pricing-amount {
  font-size: 24px;
  font-weight: 700;
  color: #e74c3c;
}

.booking-details {
    display: flex;
    background: #fff7f7;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    gap: 16px;
}

.booking-details-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: -2px;
}

.booking-details-text {
  font-size: 13px;
  color: #5a6c7d;
  line-height: 1.5;
}

.card-img{
  background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.adventr-image {
    margin-top: 18px;
    height: 60px;
    width: 60px;
   
}
@media (max-width: 1440px){
  .btn-contact {
  margin-top: 139px;
}
.image-grid img {
  width: 100%;
  height: 100%;
 
}
}
@media (max-width: 1024px){
  .btn-contact {
  margin-top: 109px;
}
.image-grid img {
  width: 100%;
  height: 100%;
 
}
}

@media (max-width: 768px){
  .btn-contact {
  margin-top: 85px;
}
.image-grid img {
  width: 100%;
  height: 100%;
  
}
}

@media (max-width: 600px) {
.card-same1 {
  height: 262px;
}

  .card-rental h5 {
    font-family: "Lato", sans-serif;
    font-size: 18px;
}
  .nav-tabs .nav-link {
    padding: 12px 20px;
    margin-right: 20px;
    font-size: 14px;
  }
  .rafting-container {
    flex-direction: column;
  }
    .rafting-title {
        font-size: 20px;
        margin-top: -27px;
    }
    .trip-title {
    font-size: 22px;
    font-weight: 700;
}
.trip-part{
  margin-top: 20px;
}
.btn-contact {
    margin-top: 65px;
}
.custom-navbar{
  margin-top: -67px;
}
.itinerary-title {
    font-size: 14px;
    font-weight: 600;
}
.pricing-amount {
    font-size: 17px;
}
  .rafting-image {
    flex: none;
    height: 250px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .rafting-content {
    padding: 20px;
  }
  .back-to-top {
    position: fixed;
    right: 47px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
} 
.adventr-image{
  margin-left: 130px !important;
}
}

@media (max-width: 576px) {
  .nav-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .nav-tabs .nav-item {
    flex-shrink: 0;
  }

  .nav-tabs .nav-link {
    padding: 12px 16px;
    margin-right: 16px;
    font-size: 14px;
    white-space: nowrap;
  }
}

