.tour-details-package-title {
    text-align: center;
    background: #0165b533;
    padding: 20px;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    color: var(--white-color);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--main-color);
  }


  h3.tour-details-deals-text {
    max-width: 250px;
  }

  h3.tour-details-deals-text a {
    color: var(--second-color);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
  }
  .tour-details-deals-thumb{
  min-width: 25%;
  }
  .tour-details-deals-dsc{
   max-width: 70%;
  }
    .tour-details-deals-thumb img {
    /* width: 90px !important; */
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
  }

  .tour-side-price span {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--font-heading);
    color: var(--main-color);
  }

  .related-price-box {
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, .8);
    color: var(--black-color);
    font-size: 13px;
    padding: 5px;
    border-radius: 0 5px 0 0;
  }

  .related-price-box span i {
    margin-right: 3px;
  }

  .tour-details-deals-box {
    border-radius: 20px;
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, .1);
  }
  h3.tour-details-deals-text {
    max-width: 250px;
  }

  h3.tour-details-deals-text a {
    color: var(--second-color);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;

  }

  h3.tour-details-deals-text a:hover {
    background-size: 100% 2px;
    font-size: 18px;
  }

  .tour-details-package-content,
  .tour-details-deals-content {
    padding: 30px;
    background: var(--white-color);
  }

  .tour-details-package-content {
    border-radius: 0 0 20px 20px;
  }

  .tour-details-deals-content {
    border-bottom: 1px solid #eee;
  }

  .blog-details-head{
        margin-bottom: 30px;
  }
  .blog-details-head h2{
    font-size: 30px;
    color: var(--main-color);
  }

  .blog-details-li {
    margin-top: 20px;
    gap: 20px;
  }

  .blog-details-li li {
    position: relative;
  }

  .blog-details-li li::after {
    position: absolute;
    content: "|";
    top: 0;
    right: -10px;
    color: #ddd;
    font-size: 16px;
  }

  .blog-details-li li:last-child:after {
    content: "";
  }

  .blog-details-li li i {
    margin-right: 7px;
    color: var(--second-color);
  }

  .blog-details-img img{
  border-radius: 20px;
  height: 600px;
  min-width: 100%;
  object-fit: cover;
  }
  .blog-card-date{
    right:30px;
    left: auto;
  }

  .tour-details-banner {
    overflow: hidden;
    margin-bottom: 20px;
    position: relative; /* Container for absolute positioning of children */
  }

  .tour-details-banner a {
    position: relative; /* Makes the entire area clickable */
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none; /* Removes text decoration from the link */
    z-index: 2; /* Ensures the anchor is on top */
  }

  .tour-details-banner .overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 19.04%, var(--main-color) 100%);
    border-radius: 10px;
    z-index: 1; /* Places the overlay below the clickable link */
  }

  .tour-details-banner img {
    min-width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    z-index: 0; /* Image sits at the bottom */
  }

  .banner-text-holder {
    width: calc(100% + 50px);
    height: auto;
    top: 0;
    left: -20px;
    padding: 35px;
    text-align: center;
    background-color: var(--second-color);
    transform: rotate(-15deg);
    transform-origin: 100% 100%;
    position: absolute;
    z-index: 3; /* Banner text appears above the overlay */
  }
