
/* 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;
}

.btn {
    background: linear-gradient(45deg, orange, darkorange);
    /* Gradient from orange to darkorange */
    border-radius: 20px;
    border: none;
    /* Remove the border to make the gradient seamless */
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    /* Smooth transitions */
    box-shadow: 0px 5px 10px rgba(255, 140, 0, 0.4);
    /* Soft orange shadow */
}

.btn:hover {
    background: linear-gradient(45deg, #ffd700, orange);
    /* Hover gradient with yellowish tint */
    transform: translateY(-3px);
    /* Slight lift effect */
    box-shadow: 0px 8px 15px rgba(255, 165, 0, 0.6);
    /* Brighter shadow on hover */
}

.btn:active {
    background: linear-gradient(45deg, darkorange, #ff4500);
    /* Active state gradient with darker orange */
    transform: translateY(1px);
    /* Button slightly pressed down */
    box-shadow: 0px 3px 6px rgba(255, 140, 0, 0.4);
    /* Reduced shadow on click */
}


/*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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;

}

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;
}

/* Header styling*/

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;


}

.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 1fr;
    /* Three equal columns */
    gap: 5px;
    /* 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 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;

}



/* destinations grid */

/* Ordered List for Grid Headings */
.grid-packages {
    width: fit-content;
}

.grid-heading-packages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Ensure grid layout */
    grid-gap: 200px;
}

/* Individual Grid Items */
.grid-heading-packages li {
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.244);

    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

/* Headings */
.grid-heading-packages li h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;

}

/* Unordered List for Package Details */
.package-details-packages {
    list-style-type: none;
    /* Remove bullets for inner list */
    padding-left: 0;
    text-align: left;
    width: auto;
    height: auto;

}

.package-details-packages li {
    margin-bottom: 5px;
    font-size: 10px;
    color: #555;
}

/* Anchor Tag Styling */
.package-details-packages li a {
    text-decoration: none;
    color: #007bff;
    /* Link color */
}

.package-details-packages li a:hover {
    text-decoration: underline;
    /* Underline on hover */
}

/* Hover effect for grid item */
.grid-heading-packages li:hover {
    background-color: #f1f1f1;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.grid-dropdown-packages ol ul li a {
    text-decoration: none;
    list-style-type: none;
    color: #000000;
    font-size: 15px;
}


/* Dropdown menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    width: fit-content;
}

.dropdown-item:hover {

    background-color: #000000;
    color: #ff9800;
}

.dropdown-menu h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #ff9800;
    padding: 10px 20px;
}

.dropdown-menu hr {
    margin: 5px 0;
    border: 0;
    border-top: 1px solid #ff9800;
}

.btn-warning {
    background-color: #ff9800;
    border: none;
    padding: 8px 20px;
    font-size: 0.7rem;
    text-size-adjust: 1rem;

}

.btn-warning a {
    color: white;
    text-decoration: none;

}

.btn-warning a:hover {
    color: #000000;
    text-decoration: none;
}


/* Ensure that the dropdown menu is hidden by default */
.months {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

/* Show the dropdown menu on hover */
ul:hover .months {
    display: block;
}

/* Style the individual items */
.months li {
    padding: 10px;
}

.months li a {
    text-decoration: none;
    color: black;
}

.months li a:hover {
    background-color: #f1f1f1;
}

.enquiry-link {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
}

/* Remove caret arrows from dropdowns */
.no-arrow .dropdown-toggle::after {
    display: none !important;
}




/* destination */
.grid-dropdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 3 columns */
    grid-template-rows: repeat(3, auto);
    /* 3 rows */

}

.grid-dropdown :hover {
    background-color: orange;
    color: white;

}

.grid-dropdown a {
    list-style-type: none;
    text-decoration: none;
    color: #000000;
    padding: 3px;
}

.grid-item {
    padding: 10px;


    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
}

.grid-item img {
    width: 100px;
    /* Remove the extra space between '70' and 'px' */
    height: 0px;
}



/* subdropdown */

.dropdown-container {
    display: flex;
    flex-direction: column;
    width: 150px;
    margin: 20px auto;
}

.subdropdown {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.subdropdown-button {
    background-color: darkorange;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: left;
}

.subdropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.subdropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;

}

.subdropdown-content a:hover {
    background-color: #ff9800;
    /* Highlight with orange color */
    color: white;
    /* Change text color for better contrast */
}

.subdropdown:hover .subdropdown-content {
    display: block;
}

.subdropdown:hover .subdropdown-button {
    background-color: #ffffff;
}

.custom-dropdown-menu {

    background-color: rgba(0, 0, 0, 0);
}




/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;
        /* Full width on small screens */
        padding: 10px;
    }

    .subdropdown-button {
        font-size: 14px;
        padding: 10px;
        width: 100%;
    }

    .subdropdown-content {
        width: 100%;
        /* Full width for subdropdown content */
    }

    h5 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .subdropdown-button {
        font-size: 12px;
        padding: 8px;
    }

    h5 {
        font-size: 16px;
    }
}







/* 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;
    }
}















/*upper footer styling*/
.ul a:hover {
    text-decoration: none;
    color: #ffa703;
}

.h {
    width: 100%;
    border-width: 0.4rem;
}



.ul ul {
    list-style-type: none;

    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line on small screens */
    justify-content: center;
    /* Center items horizontally */
}

.ul li {
    margin: 10px;
    /* Add margin for spacing */
    list-style-type: none;

}

.ul li a {
    margin: 10px;
    /* Add margin for spacing */
    list-style-type: none;
    text-decoration: none;
    color: #000000;
    font-weight: bold;

}

@media (max-width: 768px) {
    .ul ul {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center items horizontally */
    }

    .ul li {
        width: 100%;
        /* Full width for each item */
        text-align: center;
        /* Center text */
        margin: 5px 0;
        /* Vertical margin for spacing */
    }

    .ul img {
        width: 30px;
        /* Adjust image size for smaller screens */
    }
}


/* Footer Styling */
footer {
    background-color: darkorange;

    color: white;

    width: 100%;
    /* or any other appropriate value */




}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.footer-col {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style-type: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: darkorange;
}

.social-links a {
    margin-right: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: darkorange;
}

.footer-bottom {
    background-color: darkorange;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
}