.collaboration_landing{
    width: 100%;
    height: auto;
    padding-top: 100px;
}
.collaboration_landing_header{
    width: 100%;
    height: 40vh;
    background-color: aqua;
    background-image: url(../../image/bannar.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.collaboration_landing_header h1{
    backdrop-filter: blur(1px);
    padding: 15vh 0px 0px 80px;
    color: #fff;
    font-size: 35px;

}
.collaboration_landing_header h1 a{
    text-decoration: none;
    color: #fff;
}
.tokyo_landing_page_conteinar{
    width: 100%;
    height: auto;
}
.tokyo_landing_page_conteinar_area{
    width: 90%;
    height: auto;
    margin: auto;
}
.tokyo_landing_page_conteinar_header h1{
    color: #9A1B28;
    padding: 15px 0px;
    font-size: 25px;

}
.tokyo_landing_page_conteinar_header h2{
    color: #9A1B28;
    padding: 15px 0px;
    font-size: 20px;

}
.tokyo_landing_page_conteinar_header p{
    text-align: justify;
    color: #666;
    padding: 0px 10px 20px 0px;
}
.tokyo_landing_page_conteinar_header h4{
    color: #444;
    padding: 10px 0px;
    font-size: 15px;
}
.tokyo_landing_page_conteinar_header a{
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    color: #9A1B28;
    transition: all 0.3s ease-in-out;
}
.tokyo_landing_page_conteinar_header a:hover{
    color: #22aa00;
}
.tokyo_main_list{
    padding-left: 30px;
}
.tokyo_main_list li{
    padding: 5px 0px;
    color: #666;
}
/* GNH Journey */
.Journey{
    width: 100%;
    height: auto;
    padding-top: 100px;
}
.Journey_header{
    width: 100%;
    height: 40vh;
    background-color: aqua;
    background-image: url(../../image/bannar.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.Journey_header h1{
    backdrop-filter: blur(1px);
    padding: 15vh 0px 0px 80px;
    color: #fff;
    font-size: 35px;

}
.Journey_header h1 a{
    text-decoration: none;
    color: #fff;
}
.gnh_journey_main_conteinar{
    width: 100%;
    height: auto;
    
}
.gnh_journey_main_conteinar_area{
    width: 90%;
    height: auto;
    margin: auto;
}

.gnh_journey_main_conteinar_header h1{
    color: #9A1B28;
    padding: 15px 0px;
    font-size: 25px;

}
.gnh_journey_main_conteinar_header_image{
    display: flex;
}
.journey_details_text{
    width: 50%;
}
.journey_img{
    width: 50%;
}
.journey_img img{
    width: 100%;

}
.journey_image {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    padding: 10px;
}
.journey_image img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 5px;
    transition: transform 0.3s;
}
.journey_image img:hover { transform: scale(1.02); }
.journey_lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 100px;
    z-index: 9999;
}
.journey_lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
}
.close_gallery {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

.prev { left: 20px; }
.next { right: 20px; }


.gnh_journey_main_conteinar_details p{
    text-align: justify;
    color: #666;
    padding: 0px 10px 20px 0px;
}
.gnh_journey_main_conteinar_details h3{
    color: #444;
    padding: 10px 0px;
    font-size: 18px;
}
.gnh_journey_main_conteinar_area a{
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    color: #9A1B28;
    transition: all 0.3s ease-in-out;
}
.gnh_journey_main_conteinar_area a:hover{
    color: #22aa00;
}
.gnh_journey_main_conteinar_details_list{
    padding-left: 30px;
}
.gnh_journey_main_conteinar_details_list li{
    padding: 5px 0px;
    color: #666;
}


@media only screen and (max-width: 1050px) {
    .collaboration_landing_header h1{
        padding: 15vh 0px 0px 30px;
    }
    .gnh_journey_main_conteinar_header_image{
        display: block;
    }
    .journey_details_text{
        width: 100%;
    }
    .journey_img{
        width: 100%;
    }
    .journey_lightbox {
        margin-top: 80px;
        height: 50vh;
    }
    
  }