body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Package details links styling */
.package-details-links {
  height: auto;
  min-height: 45px;
  position: sticky;
  top: 105px;
  z-index: 1020;
  width: 100%;
  border-bottom: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow-x: auto;
}

.package-details-links ul {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.package-details-links ul h2 {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100%;
  list-style-type: none;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}

.package-details-links .package-detail-link.active {
  position: relative;
}

.package-details-links .package-detail-link.active a {
  color: #29499A;
  font-weight: 600;
}

.package-details-links .package-detail-link.active:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background: #29499A;
}

.package-details-links .package-detail-link {
  display: inline-block;
  height: 100%;
}

.package-details-links .package-detail-link a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
  color: #595959;
  padding: 0 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.package-details-links .package-detail-link a:hover {
  color: #29499A;
}

/* Timeline styling */
.tourdetails {
  margin-top: 30px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
}

.tourdetails h2 {
  font-size: 22px;
  font-weight: 700;
  color: #29499A;
  margin-bottom: 5px;
}

.tourdetails h2+p {
  font-size: 14px;
  font-style: italic;
  color: #7a7a7a;
  margin-bottom: 20px;
}

ul.timeline {
  list-style-type: none;
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 30px;
}

ul.timeline:before {
  content: ' ';
  background: #29499a;
  display: inline-block;
  position: absolute;
  left: 16px;
  width: 4px;
  height: 100%;
  z-index: 400;
  border-radius: 1rem;
}

li.timeline-item {
  margin: 25px 0;
  padding-left: 15px;
}

li.timeline-item::before {
  content: ' ';
  background: #fff;
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  border: 3px solid #29499A;
  left: 11px;
  width: 14px;
  height: 14px;
  z-index: 400;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.timeline-arrow {
  border-top: 0.5rem solid transparent;
  border-right: 0.5rem solid #f8f9fa;
  border-bottom: 0.5rem solid transparent;
  display: block;
  position: absolute;
  left: 2rem;
}

/* Card styling */
.card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 15px;
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: 15px;
}

.card-header a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.card-header a:hover {
  color: #29499A;
}

.card-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #29499A;
}

.card-header h4 {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.card-body {
  padding: 20px;
  background-color: #fff;
}

.text-small {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Tab styling */
.tourdetails .nav {
  padding: 0;
  border-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.tourdetails .nav .nav-item {
  margin-bottom: 10px;
  flex: 1 1 auto;
}

.tourdetails .nav .nav-item .nav-link {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: #29499A;
  font-weight: 500;
  padding: 10px;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  background: rgba(207, 221, 255, .5);
  width: 100%;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tourdetails .nav .nav-item .nav-link.active {
  border-left: transparent;
  color: #fff;
  background: #29499A;
  font-weight: 700;
}

.tourdetails .tab-content {
  border: 1px solid #E5E5E5;
  border-top: 3px solid #29499A;
  border-radius: 0 0 8px 8px;
  background: #fff;
  overflow: hidden;
  padding: 20px;
}

/* Lists */
.package-section-list.bullet {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.package-section-list .list-item {
  font-size: 15px;
  color: #333;
  font-weight: 400;
  margin-top: 12px;
  padding-left: 25px;
  position: relative;
}

.package-section-list .list-item:before {
  content: "•";
  color: #29499A;
  position: absolute;
  left: 5px;
  font-size: 16px;
  font-weight: bold;
}

/* Package sidebar */
.userInfoWrapper {
  width: 100%;
  padding: 20px;
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  position: relative;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.box-header {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #E7E7E7;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: #29499A;
}

.package-landing .priceBox .label {
  font-size: 15px;
  font-weight: 600;
  color: #212221;
  line-height: 1.4;
}

.priceValueBox .actualPrice {
  font-size: 24px;
  font-weight: 700;
  color: #5cac33;
}

.priceValueBox .note {
  font-size: 12px;
  color: #595959;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 5px;
}

select {
  border-radius: 5px !important;
  color: #213f98;
  padding: 8px 10px;
  border: 2px solid #213f98;
  font-weight: 500;
  width: 100%;
  margin: 10px 0;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23213f98' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
}

.proceedingPatch {
  margin: 15px -20px -20px -20px;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}

.package-landing .btn-primary {
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  font-size: 15px;
  line-height: 18px;
  padding: 12px 20px;
  height: auto;
  display: inline-block;
  transition: .3s all ease;
  width: 100%;
  margin-top: 10px;
}

.package-landing .btn-primary:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 146, 61, 0.3);
}

.freecallus {
  margin: 20px 0;
}

.reviewInfo .label {
  font-size: 14px;
  color: #595959;
  min-width: 70px;
  font-weight: 700;
  line-height: 18px;
  display: block;
  margin-bottom: 5px;
}

.reviewInfo .value {
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  color: #333;
  margin-bottom: 15px;
}

/* Similar packages */
.Similarpack-section {
  padding: 30px 0;
}

.Similar-packages h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: #29499A;
}

.Similar-packages .Similar-box {
  padding: 15px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  background-color: #ffffff;
  margin: 15px 0px 20px 0px;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.Similar-packages .Similar-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.Similar-box .title {
  font-size: 17px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.Similar-box .title a {
  color: #29499A;
  transition: 0.3s;
}

.Similar-box .title a:hover {
  color: #f3923d;
}

.Similar-packages .Similar-box article ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.Similar-packages .Similar-box article ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(180deg, #f0f0f0 0%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50%;
  font-size: 12px;
  transition: all 0.3s ease;
}

.Similar-packages .Similar-box article ul li:hover {
  background: linear-gradient(180deg, #e0e0e0 0%, rgba(0, 0, 0, 0.05) 100%);
}

.Similar-box .Similar-img {
  position: relative;
  margin: -15px -15px 15px -15px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.Similar-box .Similar-img img {
  height: 200px;
  width: 100%;
  transition: all 0.8s;
  object-fit: cover;
}

.Similar-box:hover .Similar-img img {
  transform: scale(1.05);
}

.Similar-packages a .datetime {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #29499a;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
}

.Similar-box .Similar-rating {
  font-size: 13px;
  color: #f3923d;
  margin-bottom: 10px;
}

.package-price {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.package-price label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.color_price1 {
  font-size: 22px;
  color: #5cac33;
  font-weight: 700;
  margin: 10px 0;
}

/* Info sections container */
.info-sections-container {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.combined-info-box {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: all 0.3s ease;
}

.combined-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.content-box {
  padding: 30px;
  height: 100%;
}

.left-box {
  border-right: 1px dashed rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #29499A;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #29499A, #6c8cd5);
  border-radius: 2px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.feature-item span:first-child {
  color: #28a745;
  font-size: 18px;
}

.feature-item span:last-child {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.exclusion {
  margin-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  padding-top: 15px;
  background: #fff5f5;
}

.exclusion span:first-child {
  color: #dc3545;
}

.exclusion strong {
  color: #dc3545;
  font-weight: 600;
}

/* Tour info tabs */
.tourinformation .nav {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
  gap: 5px;
  margin-bottom: 15px;
}

.tourinformation .nav-item {
  flex: 1 1 auto;
  min-width: 120px;
}

/* Hero section styling */
.package-landing {
  padding-top: 30px;
}

.breadcrumbs {
  margin-bottom: 15px;
}

.breadcrumbs ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumbs li {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-right: 10px;
  position: relative;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #ccc;
}

.breadcrumbs a {
  color: #29499A;
  text-decoration: none;
}

.tourName {
  margin-bottom: 20px;
}

.package-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-right: 15px;
  margin-bottom: 15px;
}

.count-info {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.tourDays {
  background: #f3923d;
  color: white;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: inline-block;
}

.destinationCol {
  background: rgba(41, 73, 154, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #29499A;
  font-weight: 500;
  display: inline-block;
}

.destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.priceNDates {
  text-align: right;
}

.price-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  text-align: center;
}

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

.deal {
  background: #5cac33;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 15px;
  display: inline-block;
  text-transform: uppercase;
}

.priceStart {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}

.price-discounted {
  font-size: 24px;
  font-weight: 700;
  color: #29499A;
}

.selectDate .btn-primary {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 12px 15px;
}

.carousel-inner {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.carousel-control-prev, .carousel-control-next {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.9);
}

.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Tour Header */
.tour-header {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.destination-item {
  display: inline-flex;
  align-items: center;
  background: #f5f8ff;
  border: 1px solid #e1e7ff;
  border-radius: 30px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
}

.destination-item::before {
  content: "📍";
  margin-right: 5px;
}

.destination-days {
  color: #f3923d;
  font-weight: 600;
  margin-left: 4px;
}

/* PackageInclude section */
.packageIncludeNActions {
  margin-bottom: 20px;
}

.packageInclude {
  border: 1px solid #eaeaea;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;

}

.packageInclude h2 {
  
  
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #29499A;
}

.includeList {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.hotelInclude {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70px;
}

.iconsHolder {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7ff;
  border-radius: 50%;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.iconsHolder:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

.iconsHolder i {
  color: #29499A;
  font-size: 20px;
}

.hotelInclude span {
  font-size: 12px;
  color: #444;
  text-align: center;
}

/* Improve i-inclusions section */
.i-inclusions {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 10px;
  margin-top: 15px;
}

.i-inclusions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.i-inclusions li {
  display: flex;
  align-items: center;
}

.i-inclusions h5 {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .package-title {
    font-size: 20px;
  }
  
  .count-info {
    margin-top: 10px;
    display: flex;
    width: 100%;
  }
  
  .price-section {
    margin-top: 20px;
  }

  .package-details-links{
    padding: 10px;
    top: 101px;
  }

  .package-details-links ul h2 {
    font-size: 14px;
  }

  .package-details-links .package-detail-link a {
    font-size: 13px;
    padding: 10px 10px;
  }

  .tourdetails {
    padding: 15px;
  }

  .tourdetails h2 {
    font-size: 18px;
  }

  .tourdetails h2+p {
    font-size: 13px;
  }

  ul.timeline {
    padding-left: 1rem;
  }

  li.timeline-item {
    margin: 20px 0;
  }

  .card-header h3 {
    font-size: 14px;
  }

  .card-header h4 {
    font-size: 12px;
  }

  .card-body {
    padding: 15px;
  }

  .text-small {
    font-size: 13px;
  }

  .tourdetails .nav .nav-item .nav-link {
    font-size: 11px;
    padding: 8px;
  }

  .tourdetails .tab-content {
    padding: 15px;
  }

  .package-section-list .list-item {
    font-size: 14px;
  }

  .userInfoWrapper {
    padding: 15px;
  }

  .box-header {
    font-size: 14px;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  /* .package-landing .price {
    padding: 10px 0 0px;
  } */

  .package-landing .priceBox .label {
    font-size: 14px;
  }

  .priceValueBox .actualPrice {
    font-size: 20px;
  }

  .priceValueBox .note {
    font-size: 11px;
  }

  select {
    font-size: 14px;
    padding: 6px 8px;
  }

  .proceedingPatch {
    padding: 10px;
  }

  .package-landing .btn-primary {
    font-size: 14px;
    padding: 10px 15px;
  }

  .reviewInfo .label {
    font-size: 13px;
  }

  .reviewInfo .value {
    font-size: 14px;
  }

  .Similar-packages h3 {
    font-size: 16px;
  }

  .Similar-packages .Similar-box {
    padding: 10px;
  }

  .Similar-box .title {
    font-size: 15px;
  }

  .Similar-box .Similar-img img {
    height: 150px;
  }

  .Similar-packages a .datetime {
    font-size: 12px;
    padding: 3px 8px;
  }

  .Similar-box .Similar-rating {
    font-size: 12px;
  }

  .package-price {
    padding-top: 10px;
  }

  .package-price label {
    font-size: 13px;
  }

  .color_price1 {
    font-size: 20px;
  }

  .info-sections-container {
    padding: 40px 0;
  }

  .combined-info-box {
    margin: 0 15px;
  }

  .content-box {
    padding: 20px;
  }

  .section-title {
    font-size: 20px;
  }

  .feature-item {
    padding: 10px;
  }

  .feature-item span:first-child {
    font-size: 16px;
  }

  .feature-item span:last-child {
    font-size: 14px;
  }

  .exclusion {
    margin-top: 15px;
    padding-top: 10px;
  }

  .tourinformation .nav-item {
    min-width: 100px;
  }

  .breadcrumbs li {
    font-size: 11px;
  }

  .package-title {
    font-size: 20px;
  }

  .count-info {
    gap: 10px;
  }

  .tourDays {
    font-size: 13px;
    padding: 4px 8px;
  }

  .destinationCol {
    font-size: 13px;
    padding: 4px 8px;
  }

  .destinations {
    gap: 8px;
  }

  .price-box {
    padding: 10px;
  }

  .deal {
    font-size: 11px;
    padding: 2px 8px;
  }

  .priceStart {
    font-size: 11px;
  }

  .price-discounted {
    font-size: 20px;
  }

  .selectDate .btn-primary {
    font-size: 14px;
    padding: 10px 12px;
  }

  .carousel-item img {
    height: 300px;
  }

  .carousel-control-prev, .carousel-control-next {
    width: 35px;
    height: 35px;
  }

  .carousel-control-prev-icon, .carousel-control-next-icon {
    width: 18px;
    height: 18px;
  }

  .tour-header {
    padding: 20px 0 15px;
  }

  .destination-item {
    font-size: 13px;
    padding: 5px 10px;
  }

  .destination-days {
    font-size: 13px;
  }

  .packageInclude h2 {
    font-size: 16px;
  }

  .includeList {
    gap: 10px;
  }

  .hotelInclude {
    width: 60px;
  }

  .iconsHolder {
    width: 40px;
    height: 40px;
  }

  .iconsHolder i {
    font-size: 18px;
  }

  .hotelInclude span {
    font-size: 11px;
  }

  .i-inclusions {
    padding: 8px;
  }

  .i-inclusions h5 {
    font-size: 13px;
  }
}

/* Tour Information Tab Styling */
.tourinformation .nav-tabs {
  border-bottom: 1px solid #dee2e6;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tourinformation .nav-item {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.tourinformation .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  padding: 10px 15px;
  text-align: center;
  font-weight: 500;
  color: #29499A;
  background-color: rgba(207, 221, 255, 0.5);
  transition: all 0.3s ease;
}

.tourinformation .nav-link:hover {
  background-color: rgba(207, 221, 255, 0.8);
  border-color: #dee2e6;
}

.tourinformation .nav-link.active {
  color: #fff;
  background-color: #29499A;
  border-color: #29499A;
}

.tourinformation .tab-content {
  border: 1px solid #E5E5E5;
  border-top: 3px solid #29499A;
  border-radius: 0 0 8px 8px;
  background: #fff;
  padding: 20px;
}

.tourinformation .package-section-list.bullet {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tourinformation .list-item {
  font-size: 15px;
  color: #333;
  font-weight: 400;
  margin-top: 12px;
  padding-left: 25px;
  position: relative;
}

.tourinformation .list-item:before {
  /* content: "•"; */
  color: #29499A;
  position: absolute;
  left: 5px;
  font-size: 16px;
  font-weight: bold;
}


.tourinformation .no-dot .list-item:before {
  content:none;
}

.preparation-list p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .tourinformation .nav-tabs {
      display: flex;
      overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
  }
  
  .tourinformation .nav-tabs::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
  }
  
  .tourinformation .nav-item {
      flex: 0 0 auto;
      min-width: 120px;
  }
  
  .tourinformation .nav-link {
      padding: 8px 12px;
      font-size: 13px;
      white-space: nowrap;
  }
  
  .tourinformation .tab-content {
      padding: 15px;
  }
  
  .tourinformation .list-item {
      font-size: 14px;
  }
  
  .preparation-list p {
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .tourinformation .nav-item {
      min-width: 100px;
  }
  
  .tourinformation .nav-link {
      padding: 6px 10px;
      font-size: 12px;
  }
}

/* package carousel */
/* Essential carousel styling */
#myNewCarousel {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 25px;
}

#myNewCarousel .carousel-item {
  display: none;
  position: relative;
}

#myNewCarousel .carousel-item.active {
  display: block;
}

#myNewCarousel .carousel-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

#myNewCarousel .carousel-control-prev,
#myNewCarousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  opacity: 0.9;
}

#myNewCarousel .carousel-control-prev {
  left: 20px;
}

#myNewCarousel .carousel-control-next {
  right: 20px;
}

#myNewCarousel .carousel-control-prev:hover,
#myNewCarousel .carousel-control-next:hover {
  background: rgba(255,255,255,1);
}

#myNewCarousel .carousel-control-prev-icon,
#myNewCarousel .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 100%;
}

#myNewCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

#myNewCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

#myNewCarousel .carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

#myNewCarousel .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(255,255,255,0.6);
  border: 2px solid rgba(255,255,255,0.8);
  cursor: pointer;
}

#myNewCarousel .carousel-indicators li.active {
  background-color: white;
}

@media (max-width: 767px) {
  #myNewCarousel .carousel-item img {
      height: 250px;
  }
}

/* Tour Header Styling */
.tour-header {
background: linear-gradient(120deg, #ffffff 0%, #f8f9ff 100%);
border-radius: 12px;
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
position: relative;
overflow: hidden;
padding: 10px;
}

.tour-header::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 150px;
height: 150px;
background: rgba(41, 73, 154, 0.05);
border-radius: 50%;
transform: translate(50%, -50%);
}

.package-title {
font-size: 28px;
font-weight: 700;
color: #222;
margin-bottom: 15px;
position: relative;
padding-bottom: 8px;
border-bottom: 1px dashed #e3e3e3;
}

.count-info {
display: flex;
gap: 15px;
margin-bottom: 20px;
}

.tourDays {
display: flex;
align-items: center;
background: #f3f3f3;
border-left: 4px solid #29499A;
padding: 8px 15px;
border-radius: 4px;
font-size: 15px;
font-weight: 600;
color: #333;
box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tourDays span {
color: #666;
margin-left: 5px;
font-weight: 400;
}

.tourDays .semibold-font {
font-weight: 600;
color: #29499A;
}

.destinations-section {
margin-top: 20px;
}

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

.destination-item {
display: inline-flex;
align-items: center;
background: white;
border: 1px solid #e1e7ff;
border-radius: 30px;
padding: 7px;
font-size: 12px;
font-weight: 500;
color: #333;
box-shadow: 0 2px 6px rgba(0,0,0,0.03);
transition: all 0.3s ease;
}

.destination-item:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.destination-item::before {
content: "📍";
margin-right: 6px;
font-size: 15px;
}

.destination-days {
color: #f3923d;
font-weight: 600;
margin-left: 4px;
}

/* Price Section Styling */
.price-section {
background: white;
border-radius: 10px;
padding: 25px;
height: 100%;
border: 1px solid #eaeaea;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
position: relative;
text-align: center;
}

.price-section::after {
content: 'BEST DEAL';
position: absolute;
top: 0;
right: 0;
background: #f3923d;
color: white;
font-size: 10px;
font-weight: 700;
padding: 5px 10px;
border-radius: 0 0 0 10px;
}

.price-label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1px;
color: #777;
margin-bottom: 5px;
font-weight: 500;
}

.price-value {
font-size: 32px;
font-weight: 700;
color: #29499A;
margin-bottom: 5px;
}

.price-value small {
font-size: 14px;
color: #666;
}

.price-note {
font-size: 13px;
color: #5cac33;
margin-bottom: 20px;
}

.customize-btn {
background: linear-gradient(to right, #f3923d, #e97d2d);
color: white;
border: none;
padding: 12px 15px;
border-radius: 6px;
font-weight: 600;
font-size: 15px;
transition: all 0.3s ease;
width: 100%;
letter-spacing: 0.5px;
}

.customize-btn:hover {
background: linear-gradient(to right, #e97d2d, #d56b1e);
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(243, 146, 61, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
.tour-header {
  padding: 25px 15px;
}

.package-title {
  font-size: 22px;
}

.count-info {
  gap: 10px;
}

.tourDays {
  padding: 6px 12px;
  font-size: 14px;
}

.price-section {
  margin-top: 20px;
  padding: 20px;
}

.price-value {
  font-size: 26px;
}

.customize-btn {
  padding: 10px;
  font-size: 14px;
}
}

/* price section */