@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700&display=swap');

:root{
    --orange: #ffa500;
}

*{
    font-family: 'Nunito', sans-serif;
    margin:0; padding:0;
    box-sizing:border-box;
    text-transform: capitalize;
    outline: none; border: none;
    text-decoration: none;
    transition: all .2s linear;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::selection{
    background:var(--orange);
    color: #ffff;
}

html{
    font-size:62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

section{
    padding:2rem 9%;
}
.heading{
    text-align:center;
    padding: 2.5rem 0;
}

.heading span{
    font-size: 3.5rem;
    background: #000;
    color: var(--orange);
    border-radius: .5rem;
    padding: .2rem 1rem;

}

.heading span.space{
    background: none;

}
header{
    position:fixed;
    top:0; left:0; right:0;
    background: #333;
    z-index:1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 9%;  
}

header .logo{
    font-size: 2.5rem;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
    display: inline-block; 
    align-items: center; 
}
header .logo img {
    width: 90px; 
    height: auto;
    margin-right: 10px; 
    vertical-align: middle; 
    margin-top: -10px; 
}

header .logo span{
    color: var(--orange);
}

header .navbar a {
    color: #fff;
    font-size: 2rem;
    margin: 0 1.5rem;
    text-decoration: none; 
}

header .navbar a:hover {
    color: var(--orange);
    text-decoration: none; 
}


header .icons i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 2rem;
}

header .icons i:hover{
    color:var(--orange);
}

header .search-bar-container{
    position: absolute;
    top: 100%; left:0; right:0;
    padding:1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    z-index: 1001;

    Clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

header .search-bar-container.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .search-bar-container #search-bar{
    width:100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
    border-radius: .5rem;
}

header .search-bar-container label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;  
}

header.search-bar-container label:hover{
    color: #FFA500;
}

#menu-bar{ 
    color: #fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}

.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;

}

.home .content{
    text-align: center;
}

.home .content h3{
    font-size: 4.5rem;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0.3rem .5rem rgba(0,0,0,.1);
}

.home .content p{
    font-size: 2.5rem;
    color: #fff;
    padding: .5rem 0;
}

.home .content a{
    font-size: 1.5rem;
    color: #fff;
    padding: .7rem .5rem;

}

.home .btn { 
    margin-top: 50px;
    background-color: orange; 
    color: white;
    padding: 1rem 2rem; 
    border: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
}

.home .btn:hover {
    background-color: darkorange; 
}

.home .content a.btn {
    font-size: 1.5rem;
    color: #fff;
    padding: .7rem 4rem; 
    margin-top: 20px; 
    display: inline-block; 
}
.home .video-container video{
    position: absolute;
    top:0; left:0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.home .controls{
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0,0,0,.7);
    position: relative;
    top: 10rem;
}

.home .controls .vid-btn{ 
    height: 1rem;
    width: 1rem;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    margin: 0 .5rem;
}

.home .controls .vid-btn.active{
    background: #4361ee;
}

.holiday{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;
}

.holiday-img img{
    width: 100%;
    height: auto; 
    border-radius: 10px;
}

.holiday-text h5{
    font-size: 17px;
    font-weight: 800;
    color: #e68943;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.holiday-text h2{
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.holiday-text p{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 25px;
    color: #000;
    margin-bottom: 35;

}


.holiday .holiday-text .contact-button{
    margin-top: 15px;
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: black;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.holiday .holiday-text .contact-button:hover {
    background-color: orange;
}


.journey {
    background-color: #F3FAFE;
    text-align: center;
    padding: 20px 0;
}

.journey .container {
    display: inline-block;
    max-width: 1200px;
    padding: 0 50px;
    margin: 0 auto;
}

.journey h2 {
    margin-top: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 4rem;
}

.journey p {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 14px;
}

.journey .container .journey_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.journey .country_card p {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 12px;
    margin-left: 30px;
    text-align: left;
    font-style: italic;
}

.journey .container .journey_grid .country_card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.journey .container .journey_grid .country_card .image-container {
    position: relative;
    overflow: hidden;
}

.journey .container .journey_grid .country_card img.images {
    width: 100%;
    height: auto;
    margin-bottom: 6px;
    transition: transform 0.3s ease-in-out;
}

.journey .container .journey_grid .country_card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    text-align: center;
}

.journey .container .journey_grid .country_card:hover .overlay {
    opacity: 1;
}

.journey .container .journey_grid .country_card .place {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0b0b0b;
    cursor: pointer;
    margin-bottom: 10px;
}

.journey .container .journey_grid .country_card .place img {
    margin-right: 0px;
    width: 24px;
    height: 24px;
}

.journey .container .journey_grid .country_card .price-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    margin-top: 25px;
}

.journey .container .journey_grid .country_card .price-info img {
    width: 24px;
    height: 24px;
}

.journey .container .journey_grid .country_card .price-info span {
    font-style: italic;
    font-weight: 300;
    font-size: 13px;
    color: #000000;
    text-align: right;
    display: inline-block;
    font-weight: bold;
}

.journey .container .journey_grid .country_card .place span {
    font-weight: bold;
    font-size: 14px;
}

.journey .container .journey_grid .country_card .description {
    text-align: left;
}

.journey .container .journey_grid .country_card .description span {
    font-weight: 400;
    font-size: 12px;
    text-align: justify;
    display: block;
}

.journey .container .journey_grid .country_card:hover img.images {
    filter: blur(2px);
}

.insight{
    background-color: rgb(86, 152, 186);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
    position: relative; 
    z-index: 1; 

}
.insight .container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 1rem 0;
}

.insight .container h2 {
    margin-bottom: 20px; 
    font-size: 21px;
    font-weight: bold;
    color: #fff;/*#e68943;*/
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
    text-align: center;
    text-shadow:
    1px 1px 0 #FFF;
}

.insight .container .box{
    flex: 1 1 40rem;
}

.insight .container .box img {
    width: 50%; 
    display: block;
    margin: 0 auto;
    transform: transform 0.7s;
}

.insight .container .box img:hover{
    transform: scale(1.1);
}

.insight .container .box h4{
    color: #fff;
    font-size: 15px;
    padding: 0rem 0;
    text-align: center;
}

.insight .container .box p{
    color: #282626;
    font-size: 1.5rem;
    padding: 0rem 0;
    text-align: center;
}


.book .title {
    margin-top: 15px;
    font-size: 2.2rem; 
    font-weight: bold; 
    text-align: center; 
    margin-bottom: 30px; 
    color: #000; 
}

.book form {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    padding: 2rem;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
    max-width: 800px; 
    margin: auto; 
}

.book form .inputBox {
    flex: 1 1 40%; 
    padding: 0.5rem;
}

.book form .inputBox h3 {
    font-weight: 600;
    font-size: 1.5rem;
}

.book form .inputBox input {
    width: 100%;
    padding: 1rem;
    border: .1rem solid rgba(0,0,0,.1);
    font-size: 1.7rem;
    color: #333;
}

.book .btn {
    background-color: orange; 
    color: white; 
    padding: 1rem 2rem; 
    border: none; 
    border-radius: 0.5rem; 
    font-size: 1.5rem; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    margin-top: 1rem;
}

.book .btn:hover {
    background-color: #4361ee; 
}



.international{
    background-color: #ffffff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 9rem;

}



.international-img img{
    
    width: 120%;
    height: auto; 
    border-radius: 3px;
    transform: scaleX(-1); 
}

.international .international-text h5{
    font-size: 17px;
    font-weight: 800;
    color: #e68943;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 20px;
}

.international .international-text a{
    font-size: 12px;
}

.international .international-text h2{
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.international .international-text p{
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 25px;
    color: #000;
    margin-bottom: 35;

}


.international .international-text .contact-button{
    margin-top: 15px;
    display: inline-block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: black;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.international .international-text .contact-button:hover {
    background-color: orange;
}



.international .international-text .download-btn {
    background-color: #020202;
}

.international .international-text .download-btn:hover {
    background-color: #ecac21;
}

.international .international-text .download-btn::after {
    content: '\2193'; 
    margin-left: 5px; 
}

.international .international-text .download-btn {
    padding-right: 22px;
    background-image: url('path-to-your-icon.svg');
    background-position: right center;
    background-repeat: no-repeat;
}
.international .international-text .btn {
    display: inline-block;
    padding: 7px 14px;
    background-color: #000000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-bottom: 28px;
}

.travel {
    padding: 20px 60px;
    background-color: #102b6a;
    text-align: center;
}

.travel h2 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 4rem;
}

.travel p {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.travel .card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.travel .card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.travel .card-content {
    padding: 15px;
    text-align: left;
    box-sizing: border-box;
}

.travel .feature-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, auto));
    align-items: center;
    text-align: center;
    gap: 3rem;
}

.travel .feature-content .row-img {
    overflow: hidden;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    margin-bottom: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-sizing: border-box;
}

.travel .feature-content .row h4 {
    font-size: 2rem;
    padding: 1rem 0;
    text-align: center;
}

.travel .feature-content .row-img img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s;
}

.travel .feature-content .row-img img:hover {
    transform: scale(1.5);
}

.travel .card-container .card img {
    transition: transform 0.7s;
}

.travel .card-container .card img:hover {
    transform: scale(1.2);
}

.travel .feature-content .btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 0.875rem;
}

.travel .feature-content .download-btn {
    background-color: #edb53a;
}

.travel .feature-content .download-btn:hover {
    background-color: #0056b3;
}


.travel .feature-content .download-btn::after {
    content: '\2193'; 
    margin-left: 5px; 
}

.travel .feature-content .download-btn {
    padding-right: 22px;
    background-image: url('path-to-your-icon.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.travel .card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.travel .card-content h3 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.travel .card-content p {
    color: #666;
    font-size: 13px;
    margin-bottom: 15px;
}

.travel .card-content .btn {
    display: inline-block;
    padding: 8px 15px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.travel .card-content .btn:hover {
    background-color: #45a049;
}

.travel .card-content .download-btn {
    background-color: #007bff;
}

.travel .card-content .download-btn:hover {
    background-color: #0056b3;
}

.travel .card-content .download-btn::after {
    content: '\2193'; 
    margin-left: 5px; 
}

.travel .card-content .download-btn {
    padding-right: 25px;
    background-image: url('path-to-your-icon.svg');
    background-position: right center;
    background-repeat: no-repeat;
}

.navbar a[href="#rentaka"] {
    background-color: orange; 
    padding: 5px 10px;
    color: white;
    border-radius: 0px;
    text-decoration: none;
    transition: background-color 0.3s ease; 
}


.navbar a[href="#rentaka"].active {
    background-color: #4361ee; 
}

.navbar a[href="#rentaka"]:hover {
    background-color: #4361ee;
}


.ads {
    background-color: #000000; 
    color: #fff; 
    padding: 2px 0; 
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}


.ad-row {
    width: 70%; 
    padding: 20px; 
    box-sizing: border-box; 
}

.ad-row img {
    max-width: 30%; 
}

.ad-row h2 {
    font-size: 2rem;
    margin-bottom: 10px; 
}

.ad-row p {
    font-size: 1.2rem; 
    line-height: 1.6; /
}

.ad-row .btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.ad-row .btn:hover {
    background-color: #555; 
    color: #fff; 
}

.gallery {
    padding: 60px;
    background-color:#405c4f;
}

.gallery h2 {
    font-size: 4rem;
    margin-bottom: 0px;
    text-align: center;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    grid-auto-rows: 200px; /
}


.gallery-grid img {
    margin-top: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
}

.gallery .line {
    width: 50px;
    height: 3px;
    background-color: #d3c6c6;
    margin: 10px auto;
}

.gallery-grid img:nth-child(1) {
    grid-row: span 2; /* Span 2 row */
}

.gallery-grid img:nth-child(2) {
    grid-row: span 1;
}

.gallery-grid img:nth-child(3) {
    grid-row: span 2;
}

.gallery-grid img:nth-child(4) {
    grid-row: span 1;
}

.gallery-grid img:nth-child(5) {
    grid-row: span 3; /* Span 3 row */
}

.gallery-grid img:nth-child(6) {
    grid-row: span 1;
}

.gallery-grid img:nth-child(7) {
    grid-row: span 2;
}

.gallery-grid img:nth-child(8) {
    grid-row: span 1;
}

.gallery-grid img:hover {
  
    box-shadow: 0 8px 16px rgba(195, 190, 190, 0.836);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.event {
    padding: 70px;
    background-color: #3f3b3b; 
}

.event .title {
    text-align: center;
    margin-bottom: 20px;
}

.event .title h1 {
    font-size: 4rem;
    margin-bottom: 0px;
    text-align: center;
    color: #ffffff; 
}

.event .title .line {
    width: 50px;
    height: 3px;
    background-color: #d3c6c6;
    margin: 10px auto;
}


.event .row {

    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns for wide screens */
    gap: 20px; /* Space between columns */
}

.event .col {
    flex: 1; 
    margin: 10px;
    padding: 15px;
    background-color: #fff; 
    border: 1px solid #ddd; 
    border-radius: 0px; 
    box-shadow: 0 2px 5px rgba(222, 214, 214, 0.1); 
    display: flex;
    flex-direction: column; 
    align-items: center;
}

.event .col img {
    width: 100%; 
    height: auto; 
    border-radius: 0px; 
}

.event .col img:hover {
    box-shadow: 0 8px 16px rgba(106, 102, 102, 0.836);
}

.event .col h4 {
    padding: 7px;
    font-weight: bold;
    font-size: 20px;
    margin-top: 10px;
    color: #333;
    text-align: center; 
}

.event .col p {
    color: #666; 
    font-size: 12px;
    margin-top: 5px;
    letter-spacing: 0px;
    padding-left: 20px; 
    padding-right: 20px; 
    text-align: justify;
}


footer {
    font-family: Arial;
    font-size: 16px;
    color: white;
    background-color: #050505;
    width: 100%;
    padding: 5px 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px; 
}

.footer-logo { /* untuk logo pb holiday */
    max-width: 80%; 
    height: auto; 
    display: block; 
    margin: 0 auto; 
}

.col-sm-4 {
    flex: 1;
    min-width: 200px;
    margin-bottom: 15px; 
}


.col-sm-4 .list-unstyled li {
    margin-top: 10px;
    align-items: center;
}

ul {
    list-style-type: none; /*untuk remove bullet*/
    padding: 0;           
    margin: 0;           
}

ul li {
    margin-left: 0;     
}

ul li a {
    color: white;        
    text-decoration: none; 
    display: block;      
    padding: 5px 0;      
}

ul li a:hover {
    color: lightgray;     
}

.service-hours{
    margin-top: 15px;
}

.service-hours h5 {
    font-size: 16px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
}

.social-icons img.social-icon {
    width: 30px;
    height: auto;
}

.footer-line {
    border-top: 1px solid #ffffff;
    margin: 20px 0;
    width: 100%;
}

.footer-address {
    flex: 1;
    min-width: 200px;
}

.footer-address a {
    color: #ffffff;
    text-decoration: none;
}

.footer-address a:hover {
    color: #dddddd;
    text-decoration: underline;
}

footer .img-fluid {
    max-width: 100%;
    height: auto;
}

.phone-number {
    font-family: 'Jost', sans-serif;
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-2 {
    text-align: right;
    color: white;
    margin-top: 10px;
    padding: 10px;
}

@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .col-sm-4 {
        flex: none;
        min-width: 100%;
        margin-bottom: 20px;
        align-items: center;
    }

    .col-sm-4 ul li {
        text-align: center;
        justify-content: center;
    }


    .service-hours h5,
    .text-white,
    .phone-number,
    .footer-content p,
    .footer-address a {
        font-size: 20px; /* Adjust this size as needed */
    }

    .service-hours, .social-icons, .footer-address {
        text-align: center; 
        margin-left: 0;
    }

    .social-icons {
        gap: 15px;
    }

    .footer-line {
        margin: 30px 0; 
    }
    .footer-logo {
        max-width: 30%; /* untuk logo pb holiday */
    }
}


@media (max-width: 450px) {
    footer {
        padding: 10px 15px; 
    }

    .service-hours h5, .phone-number {
        font-size: 14px; 
    }

    .social-icons img.social-icon {
        width: 25px; 
    }

    .footer-content {
        flex-direction: column; 
    }

    
    .service-hours h5,
    .text-white,
    .footer-content p,
    .footer-address a {
        font-size: 16px; /* Adjust this size as needed */
    }

    .phone-number {
        font-size: 15px; 
    }
    

    .col-sm-4 {
        min-width: 100%; 
        margin-bottom: 20px; 
    }

    .footer-line {
        margin: 20px 0; 
    }

    .mt-2 {
        font-size: 14px; 
    }
    .footer-logo {
        max-width: 50%; /* untuk logo pb holiday */
    }
    .footer .address-container a{
        font-size: 1rem;
    }
}

@media (max-width:1200px){
    html{
        font-size:55%;
    }
}

@media (max-width:991px){
   header{
    padding: 2rem;
   }
   section{
    padding: 2rem;
   }

}

@media (max-width:991px){
    #menu-bar{
        display: initial;
    }

    header .navbar{
        position: absolute;
        top:100%; right:0; left:0;
        background: #333;
        border-top: .1rem solid rgba(255,255,255,.2);
        padding: 1rem 2rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    header .navbar a{
        display: block;
        border-radius: .5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        background: #222;
    }
    .home .content h3 {
        font-size: 3rem;
        font-weight: bold;
    }

    .home .content p {
        font-size: 2.3rem;
    }

    .home .content a,
    .home .btn {
        font-size: 1.4rem;
        padding: .6rem 1.5rem;
    }

    .home .btn {
        margin-top: 40px;
    }

    .home .content a.btn {
        padding: .6rem 3rem;
        margin-top: 18px;
        font-size: 2rem;
    }

    .home .controls {
        padding: .8rem;
        top: 7rem;
    }

    .home .controls .vid-btn {
        height: .9rem;
        width: .9rem;
    }
    .holiday {
        grid-template-columns: 1fr; 
        gap: 4rem;
        text-align: center; 
    }

    .holiday-img img {
        width: 55%; 
        margin: 0 auto;
        border-radius: 8px;
    }

    .holiday-text h5 {
        margin-top: 40px;
        font-size: 16px; 
        letter-spacing: 5px;
        margin-bottom: 15px; 
    }

    .holiday-text h2 {
        font-size: 2.8rem; 
        margin-bottom: 15px;
        padding:0 5px 0 5px;
    }

    .holiday-text p {
        text-align: center;
        font-size: 1.6rem;
        line-height: 22px; 
        margin-bottom: 25px; 
        padding : 0 50px 0 50px;
    }

    .holiday .holiday-text .contact-button {
        padding: 7px 25px; 
        font-size: 2rem; 

    }


    
    .insight .container h2 {
        font-size: 2.3rem;
        letter-spacing: 4px;
        text-align: center; 
        grid-column: span 2; /* Make the heading span across both columns */
    }

    
    .insight .container .box img {
        width: 35%; /* Adjust the width as needed */
        margin: 0 auto; 
    }
    
    .insight .container .box h4 {
        font-size: 2.5rem;
        font-weight: bold;
    }
    
    .insight .container .box p {
        font-size: 1.2rem;
    }


    .insight .container {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }
    
    .insight .container .box {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .insight .container .box:nth-child(6) {
        grid-column: 1 / 3; /* Span across both columns */
        justify-self: center; /* Center the last box */
    }
    .insight .container .box:nth-child(6) img {
        width: 29%; /* Set width for the last image to match others */
        height: auto; /* Maintain aspect ratio */
    }
    
     
    .international {
        grid-template-columns: 1fr;
        gap: 4rem; 
        padding: 1rem;
        text-align: center; 
    }

    .international-img {
        display: flex; 
        justify-content: center; 
        align-items: center; 
        margin-right: 25px;
    }

    .international-img img {
        width: 100%;
        max-width: 60%; 
        height: auto;
        border-radius: 5px;
        transform: scaleX(1);
        
    }

    .international .international-text {
        padding: 0 1rem;
    }

    .international .international-text h5 {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 15px; 
    }

    .international .international-text h2 {
        padding: 0px 10px 0px 10px;
        font-size: 2rem; 
        line-height: 1.3;
        margin-bottom: 15px; 
    }

    .international .international-text p {
        font-size: 1.9rem; 
        line-height: 1.6; 
        margin-bottom: 40px; 
    }

    .international .international-text .contact-button {
        font-size: 12px;
        padding: 6px 15px; 
        margin-bottom: 10px;
    }

    .gallery {
        padding: 40px; 
    }

    .gallery h2 {
        font-size: 3rem; 
        margin-bottom: 20px; 
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 8px; 
        grid-auto-rows: 170px; 
    }

    .gallery-grid img {
        margin-top: 10px; 
        object-fit: cover;
    }

    .gallery .line {
        width: 40px; 
        height: 2px; 
        background-color: #d3c6c6;
        margin: 10px auto; 
    }

    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(5),
    .gallery-grid img:nth-child(7) {
        grid-row: span 1; /* Adjust to fit 2-column layout */
    }

    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(4),
    .gallery-grid img:nth-child(6),
    .gallery-grid img:nth-child(8) {
        grid-row: span 1; /* Adjust to fit 2-column layout */
    }

    .event {
        padding: 80px; /* Reduce padding */
      
    }

    .event .title h1 {
        font-size: 3rem; /* Reduce font size */
        margin-bottom: 10px; /* Adjust bottom margin */
    }

    .event .title .line {
        width: 40px; /* Reduce line width */
        height: 2px; /* Reduce line height */
    }

    .event .row {
        flex-direction: column; /* Stack columns vertically */
        grid-template-columns: repeat(2, 1fr);
    }

    .event .col {
        flex: 1 1 auto; /* Allow columns to grow and shrink */
        margin: 10px 0; /* Adjust margin for vertical stacking */
        padding: 10px; /* Reduce padding */
        background-color: #fff; 
        border: 1px solid #ddd; 
        border-radius: 5px; /* Add border-radius */
        box-shadow: 0 2px 5px rgba(222, 214, 214, 0.1); 
        display: flex;
        flex-direction: column; 
        align-items: center;
    }

    .event .col img {
        width: 100%; 
        height: auto; 
        border-radius: 5px; /* Add border-radius */
    }

    .event .col h4 {
        padding: 5px; /* Reduce padding */
        font-weight: bold;
        font-size: 18px; /* Reduce font size */
        margin-top: 10px; 
        color: #333;
        text-align: center; 
    }

    .event .col p {
        color: #666; 
        font-size: 14px; /* Increase font size slightly */
        margin-top: 5px;
        text-align: left;
        padding-left: 10px; /* Adjust padding */
        padding-right: 10px; /* Adjust padding */
    }
    
    .journey .container {
        padding: 0 20px;
    }

    .journey h2 {
        font-size: 3rem;
        margin-top: 10px;
        font-weight: bold;
    }

    .journey p {
        font-size: 1.7rem;
    }

    .journey .container .journey_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey .country_card p {
        margin-left: 15px;
        font-size: 1.5rem;
    }

    .journey .container .journey_grid .country_card {
        padding: 15px;
    }

    .journey .container .journey_grid .country_card .place img {
        width: 20px;
        height: 20px;
    }

    .journey .container .journey_grid .country_card .price-info img {
        width: 20px;
        height: 20px;
    }

    .journey .container .journey_grid .country_card .price-info span {
        font-size: 1.6rem;
        font-weight: bold;
    }

    .journey .container .journey_grid .country_card .place span {
        font-size: 1.8rem;
        
    }

    .journey .container .journey_grid .country_card .description span {
        font-size: 1.7rem;
    }

    .travel {
        padding: 20px 30px; /* Adjust padding for medium screens */
    }

    .travel h2 {
        font-size: 3rem; /* Smaller font size */
        font-weight: bold;
    }

    .travel p {
        font-size: 1.7rem; /* Smaller font size */
    }

    .travel .card-container {
        flex-direction: row; /* Two-column layout */
        justify-content: space-between; /* Space between cards */
    }

    .travel .card {
        flex: 1 1 calc(50% - 20px); /* Two columns */
        margin-bottom: 20px; /* Space between cards */
    }

    .travel .feature-content {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Adjust grid layout */
        gap: 2rem; /* Reduced gap */
    }

    .travel .feature-content .row-img {
        width: 100px; /* Adjust image size */
        height: 100px; /* Adjust image size */
    }

    .travel .feature-content .row h4 {
        font-size: 1.5rem; /* Smaller font size */
    }

    .travel .card-content h3 {
        font-size: 14px; /* Smaller font size */
    }

    .travel .card-content p {
        font-size: 1.5rem; /* Smaller font size */
    }

    .travel .card-content .btn,
    .travel .card-content .download-btn {
        font-size: 1.6rem; /* Smaller font size */
        padding: 9px 13px;  /* Adjust padding */
    }

    .travel .card img {
        height: 120px; /* Adjust image height */
    }
}




 @media (max-width:450px){
    html{
        font-size:50%;
    }
    .home .content h3 {
        font-size: 2.7rem;
        font-weight: bold;
    }

    .home .content p {
        font-size: 2rem;
    }

    .home .content a,
    .home .btn {
        font-size: 1.2rem;
        padding: .5rem 1rem;
    }

    .home .btn {
        margin-top: 30px;
    }

    .home .content a.btn {
        padding: .5rem 2rem;
        margin-top: 15px;
    }

    .home .controls {
        padding: .5rem;
        top: 5rem;
    }

    .home .controls .vid-btn {
        height: .8rem;
        width: .8rem;
    }

    .holiday {
        grid-template-columns: 1fr;
        gap: 2rem; 
    }
    
    .holiday-img img {
        border-radius: 5px; 
    }

    .holiday-text h5 {
        margin-top: 20px;
        font-size: 14px; 
        letter-spacing: 4px; 
    }

    .holiday-text h2 {
        font-size: 2.5rem;
    }

    .holiday-text p {
        font-size: 1.6rem;
        line-height: 20px; 
        margin-bottom: 20px; 
        margin: 0 auto;   
        max-width: 90%;
        text-align: justify;
        padding : 0 0px 0 0px;
    }

    .holiday-text p::after {
        content: "";
        display: inline-block;
        width: 100%;
      }
    .holiday .holiday-text .contact-button {
        padding: 6px 15px; 
        font-size: 1.5rem; 
    }

    .insight .container {
        display: grid;
        gap: 5rem; 
        text-align: center; 
    }

    .insight .container h2 {
        font-size: 16px;
        letter-spacing: 2px;
        text-align: center; /
    }

    .insight .container .box img {
        width: 70%; /* Adjust the width as needed */
        margin: 0 auto; 
    }

    .insight .container .box h4 {
        font-size: 2rem;
        margin-top:5px;
        font-weight: bold;
    }

    .insight .container .box p {
        font-size: 1rem;
    }

    .insight .container .box:nth-child(6) img {
        width: 40%; /* Set width for the last image to match others */
        height: auto; /* Maintain aspect ratio */
    }

    .international {
        grid-template-columns: 1fr; 
        gap: 2rem; 
        padding: 0.5rem; 
    }
    .international {
        grid-template-columns: 1fr; 
        gap: 2rem; 
        padding: 0.5rem; 
        text-align: center; 
    }

    .international-img {
        display: flex; 
        justify-content: center; 
        align-items: center; 
    }

    .international-img img {
        width: 100%;
        max-width: 100%; 
        height: auto;
        border-radius: 3px; 
        transform: scaleX(1);
        margin-right: 25px;
    }

    .international .international-text {
        padding: 0 0.5rem; 
    }

    .international .international-text h5 {
        font-size: 12px; 
        letter-spacing: 2px; 
        margin-bottom: 10px; 
    }

    .international .international-text h2 {
        font-size: 1.9rem; 
        line-height: 1.4; 
        margin-bottom: 10px; 
        padding: 0 20px 0 20px;
    }

    .international .international-text p {
        font-size: 1.8rem; 
        line-height: 1.5; 
        margin-bottom: 35px;
        padding: 0 10px 0 10px;
    }

    .international .international-text .contact-button {
        font-size: 1.5rem;
        /* padding: 5px 5px;  */

    }
    
    .gallery {
        padding: 20px;
    }

    .gallery h2 {
        font-size: 2rem; 
        margin-bottom: 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr; 
        gap: 5px; 
        grid-auto-rows: 120px; 
    }

    .gallery-grid img {
        margin-top: 5px; 
        object-fit: cover; 
    }

    .gallery .line {
        width: 30px; 
        height: 2px;
        background-color: #d3c6c6;
        margin: 10px auto; 
    }

    .gallery-grid img:nth-child(1),
    .gallery-grid img:nth-child(2),
    .gallery-grid img:nth-child(3),
    .gallery-grid img:nth-child(4),
    .gallery-grid img:nth-child(5),
    .gallery-grid img:nth-child(6),
    .gallery-grid img:nth-child(7),
    .gallery-grid img:nth-child(8) {
        grid-row: span 1; 
    }

    .event {
        padding: 20px;
    }

    .event .title h1 {
        font-size: 2.5rem; 
        margin-bottom: 10px;
        font-weight: bold;
    }

    .event .title .line {
        width: 30px; 
        height: 2px; 
    }

    .event .row {
        flex-direction: column;
        grid-template-columns: 1fr; 
    }

    .event .col {
        flex: 1 1 auto; 
        margin: 10px 0;
        padding: 10px; 
        background-color: #fff; 
        border: 1px solid #ddd; 
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(222, 214, 214, 0.1); 
        display: flex;
        flex-direction: column; 
        align-items: center;
    }

    .event .col img {
        width: 100%; 
        height: auto; 
        border-radius: 5px; 
    }

    .event .col h4 {
        padding: 5px;
        font-weight: bold;
        font-size: 16px; 
        margin-top: 10px; 
        color: #333;
        text-align: center; 
    }

    .event .col p {
        color: #666; 
        font-size: 12px;
        margin-top: 5px;
        text-align: justify;
        padding-left: 5px; 
        padding-right: 5px; 
    }

    .journey .container {
        padding: 0 10px;
    }

    .journey h2 {
        font-size: 2.5rem;
    }

    .journey p {
        font-size: 1.5rem;
        margin-top: 5px;  
        margin-bottom: 20px; 
        padding: 0 5px 2px 5px;
        line-height: 2.2rem;
        letter-spacing: 0.6px;
    }

    .journey .container .journey_grid {
        grid-template-columns: 1fr;
    }

    .journey .country_card p {
        margin-left: 10px;
        font-size: 1.6rem;
    }

    .journey .container .journey_grid .country_card {
        padding: 10px;
    }

    .journey .container .journey_grid .country_card .place img {
        width: 16px;
        height: 16px;
    }

    .journey .container .journey_grid .country_card .price-info img {
        width: 16px;
        height: 16px;
    }

    .journey .container .journey_grid .country_card .price-info span {
        font-size: 1.7rem;
        font-weight: bold;
    }

    .journey .container .journey_grid .country_card .place span {
        font-size: 1.9rem;
    }

    .journey .container .journey_grid .country_card .description span {
        font-size: 1.7rem;
    }

    .travel {
        padding: 20px 10px; 
    }

    .travel h2 {
        font-size: 2.5rem; 
    }

    .travel p {
        font-size: 1.7rem;
    }

    .travel .card-container {
        flex-direction: column; 
        align-items: center; 
    }

    .travel .card {
        flex: 1 1 100%; 
        margin-bottom: 20px; 
    }

    .travel .feature-content {
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }

    .travel .feature-content .row-img {
        width: 80px; 
        height: 80px; 
    }

    .travel .feature-content .row h4 {
        font-size: 1.2rem;
    }

    .travel .card-content h3 {
        font-size: 1.8rem; 
    }

    .travel .card-content p {
        font-size: 1.7rem; 
    }

    .travel .card-content .btn,
    .travel .card-content .download-btn {
        font-size: 1.6rem; 
        padding: 8px 12px; 
    }

    .travel .card img {
        height: 100px; 
    }

}
