.tours-intro {
            position: relative;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-bottom: 5rem;
        }

        .tours-intro__bg-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .tours-intro__bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.65);
            transition: transform 0.5s ease;
        }

        .tours-intro:hover .tours-intro__bg-image {
            transform: scale(1.05);
        }

        .tours-intro__content {
            max-width: 800px;
            padding: 2rem;
            z-index: 1;
        }

        .tours-intro__title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .tours-intro__title-highlight {
            color: #149c9c;
        }

        .tours-intro__subtitle {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .tours-intro__separator {
            width: 80px;
            height: 3px;
            background-color: #149c9c;
            margin: 0 auto 1.5rem;
        }

        .tours-intro__description {
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        /* Tours Grid Layout */
.tours-container {
   padding: 0 1rem 5rem;
}

.tours-heading {
   text-align: center;
   margin-bottom: 3rem;
}

.tours-heading__title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #333;
   margin-bottom: 1rem;
}

.tours-heading__description {
   font-size: 1.1rem;
   color: #555;
   max-width: 700px;
   margin: 0 auto;
   line-height: 1.6;
}

.tours-grid {
   display: grid;
   grid-template-columns: repeat(1, 1fr);
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.tour-card {
   border-radius: 10px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   background-color: white;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: flex;
   flex-direction: column;
}

.tour-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tour-card__image-container {
   height: 250px;
   overflow: hidden;
}

.tour-card__image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.5s ease;
}

.tour-card:hover .tour-card__image {
   transform: scale(1.05);
}

.tour-card__content {
   padding: 1.5rem;
   display: flex;
   flex-direction: column;
   flex: 1;
}

.tour-card__duration {
   display: flex;
   align-items: center;
   color: #666;
   font-size: 0.9rem;
   margin-bottom: 0.75rem;
}

.tour-card__duration-icon {
   width: 16px;
   height: 16px;
   margin-right: 0.5rem;
   fill: none;
   stroke: #149c9c;
   stroke-width: 2;
}

.tour-card__title {
   font-size: 1.4rem;
   font-weight: 700;
   color: #333;
   margin-bottom: 0.5rem;
}

.tour-card__location {
   color: #666;
   margin-bottom: 1rem;
   font-size: 0.95rem;
}

.tour-card__rating {
   display: flex;
   align-items: center;
   margin-bottom: 0;
}

.tour-card__stars {
   display: flex;
   margin-right: 0.75rem;
}

.tour-card__star {
   color: #ffc107;
   font-size: 1rem;
}

.tour-card__reviews {
   color: #777;
   font-size: 0.9rem;
}

.tour-card__price {
   font-size: 1.5rem;
   font-weight: 700;
   color: #333;
   margin-top: auto;
   padding-top: 1.5rem;
}

.tour-card__price-label {
   font-size: 0.9rem;
   font-weight: 400;
   color: #777;
   margin-right: 0.5rem;
}


/* Tour Categories Section */
.tour-categories {
    padding: 5rem 1rem;
    background-color: #f8f8f8;
}

.categories-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.categories-heading__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.categories-heading__description {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: brightness(0.75);
}

.category-card:hover .category-card__image {
    transform: scale(1.05);
    filter: brightness(0.65);
}

.category-card__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.category-card__title {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.category-card__count {
    color: white;
    font-size: 1rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.tour-card-link {
    text-decoration: none;
    color: inherit;
  }
  
  .tour-card-link:hover .tour-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional hover effect */
  }

/* Responsive Design */
@media (min-width: 768px) {
    .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .tours-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .tours-intro {
        height: 60vh; 
        margin-bottom: 3rem;
    }

    .tours-container{
        padding-left: 0;
        padding-right: 0;
    }

    .tours-intro__title {
        font-size: 2.5rem;
    }

    .tours-intro__subtitle {
        font-size: 1.4rem;
    }

    .tours-intro__description {
        font-size: 1rem;
    }

    .tours-heading__title {
        font-size: 2rem;
    }

    .category-card {
        height: 180px;
    }

    .category-card__title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .tours-intro{
        height: 50vh;
    }
}