header {
    background: transparent;
    padding: 10px 20px;
    width: 100%;
    top: 0;
    z-index: 1000;

}


/* Navbar styling */
.navbar-light {
    background: transparent;
    position: fixed;
    width: 100%;
    margin-left: -19px;
}

.navbar-logo img {

    height: 30px;
    margin-right: 90%;
    width: 200px;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 0px;

}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ff9800;
    background-color: transparent;
}

.navbar-toggler {
    border: none;
    background: transparent;
}



/*packages*/
.grid-packages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Three equal columns */
    gap: 20px;
    /* Space between grid items */
    width: 100%;
    /* Expand to fill available width */
}

.packageul {
    list-style: none;
    padding-left: 0;
}

.grid-packages ul a {
    text-decoration: none;
    color: black;
}

.grid-packages ul a:hover {
    color: orange;
}

.grid-packages h6 {
    color: orange;
}

#ul-packages-1 li,
#ul-packages-2 li,
#ul-packages-3 li,
#ul-packages-4 li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

#ul-packages-1 li::before,
#ul-packages-2 li::before,
#ul-packages-3 li::before,
#ul-packages-4 li::before {
    content: url('INDEX IMAGES/ico.png');
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 10px;
    display: block;
}

/* international grid*/
.dropdown-menu {
    width: fit-content;
    height: fit-content;
}


.dropdown-menu .grid-dropdown {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-template-rows: 30% 30% 30%;
    width: 320px;
    top: 90px;
    left: -10rem;
    padding: 3px;

}

.dropdown-menu .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-template-rows: 30% 30% 30%;
    width: 320px;
    top: 90px;
    left: -10rem;
    padding: 3px;

}

.dropdown-menu .grid-item img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

.dropdown-menu .subdropdown-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.dropdown-menu .subdropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-menu .subdropdown:hover .subdropdown-content {
    display: block;
}


/* time to visit grid */
.time .timeul li a {
    list-style-type: none;
    color: black;
    text-decoration: none;
}

.time-to-visit {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.timeul li a {
    list-style-type: none;
    text-decoration: none;

}

.timeul li a :hover {
    background-color: darkorange;

}







/* Style for the flex container */
.image-row-shortimg {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Allow wrapping of items on smaller screens */
}

/* Style for each image container */
.image-container-shortimg {
    position: relative;
    width: 250px;
    /* Reduced width */
    height: 160px;
    /* Reduced height */
}

/* Style for the image */
.image-container-shortimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style for the overlay */
.overlay-shortimg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Style for the text within the overlay */
.overlay-text-shortimg {
    text-align: center;
    font-size: 14px;
}

/* Style for the anchor tag (optional) */
.image-link-shortimg {
    text-decoration: none;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {

    /* Stack the images vertically on smaller screens */
    .image-row-shortimg {
        flex-direction: column;
        align-items: center;
    }

    /* Adjust the size of the image container */
    .image-container-shortimg {
        width: 240px;
        /* Reduced width for smaller screens */
        height: 140px;
        /* Adjusted height */
    }

    /* Reduce font size for smaller screens */
    .overlay-text-shortimg {
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    /* Further reduce image container size for very small screens */
    .image-container-shortimg {
        width: 200px;
        height: 120px;
    }

    /* Further reduce font size for very small screens */
    .overlay-text-shortimg {
        font-size: 10px;
    }
}



/*button styling*/
h1 {
    color: orange;
    text-transform: uppercase;
    font-size: 2rem;
}

.home {
    text-decoration: none;
    list-style-type: none;
    color: black;
    font-size: large;
    font-style: bold;
}



/*Main page settings */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


body {
    -webkit-user-select: none;
    /* For Safari */
    -moz-user-select: none;
    /* For Firefox */
    -ms-user-select: none;
    /* For IE and Edge */
    user-select: none;
    /* Standard */
}


.fade-text {
    opacity: 0;
    animation: fadeIn 5s forwards;
    /* Automatically fades in over 3 seconds */

    color: #ddd;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media only screen and (max-width: 768px) {
    .responsive-bg {
        background-size: cover;
        background-position: center;
        height: 50vh;
        /* Adjust the height for smaller screens */
        width: 100vw;
    }

    .imgcontainer {
        width: 300px;
        /* Smaller container size for smaller screens */
        height: 300px;
    }

    .fade-text h1 {
        font-size: 24px;
        /* Adjust font size for smaller screens */
    }
}

@media only screen and (max-width: 480px) {
    .responsive-bg {
        background-size: cover;
        background-position: center;
        height: 40vh;
        /* Further adjust the height for very small screens */
        width: 100vw;
    }

    .imgcontainer {
        width: 200px;
        /* Smaller container size for very small screens */
        height: 200px;
    }

    .fade-text h1 {
        font-size: 18px;
        /* Smaller font size for very small screens */
    }
}

.readmore-container {
    position: relative;
    background-color: white;
    width: 100%;
    max-width: 90vw;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.readmore-content {
    line-height: 1.6;
    max-height: 1.6em;
    /* Show only one line of text */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

.readmore-fade-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 20px;
    /* Match the height of one line */
    background: linear-gradient(transparent, white);
}

.readmore-btn {
    background-color: darkorange;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

/*navigation*/
.navigationul {
    display: flex;
    gap: 15px;

    list-style-type: none;
    color: rgb(255, 255, 255);
    background-color: #f3f3f3;
}

.navigationul :hover {
    color: orange;
}

.navigationul a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.home {
    text-decoration: none;
    list-style-type: none;
    color: black;
    font-size: large;
    font-style: bold;
}



/* General reset */

.btnbtn-warning {

    background-color: black;
}






/* Read more */

.container-last {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.read-more-last {
    position: relative;
    margin-bottom: 20px;
    width: 90%;
    max-width: 1200px;
    text-align: justify;
}

.content-last {
    overflow: hidden;
    max-height: 20px;
    /* Adjust to show one line initially */
    transition: max-height 0.4s ease;
}

.read-more-last .show-last {
    display: inline;
    cursor: pointer;
    color: rgb(0, 0, 0);
    margin-top: 10px;
    font-weight: 700;
    margin-left: 90%;

}

.read-more-last.expanded .content-last {
    max-height: 1000px;
    /* Large enough to show full content */
}

.show-last-text {
    color: orange;
}

h4 {
    color: orange;
    margin-bottom: 10px;
}

/* Responsive design for smaller screens */
@media (max-width: 600px) {
    .content-last {
        max-height: 18px;
    }

    .read-more-last .show-last {

        margin-left: 65%;

    }

}

/* Style for the flex container */
.image-row {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
}

/* Style for each image container */
.image-container {
    position: relative;
    width: 320px;
    height: 300px;
}

/* Style for the image */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Style for the overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

}


/* Style for the text within the overlay */


/* Style for the anchor tag (optional) */
.image-link {
    text-decoration: none;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-row {
        flex-direction: column;
        /* Stack images vertically */
        align-items: center;
        /* Center-align images in column layout */
    }

    .image-container {
        width: 200px;
        height: 100px;
    }

    .overlay-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .image-row {
        gap: 10px;
        /* Reduce gap between images */
    }

    .image-container {
        width: 300px;
        height: 200px;
    }

    .overlay-text {
        font-size: 12px;
    }
}















