@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 {
    font-family: 'Poppins', sans-serif;
}

.test-heading {
    color: #333;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    margin: 25px 0 20px;
}

.test-heading::after {
    content: "";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    height: 3px;
    background: #ffdc12;
    left: 0;
    right: 0;
    bottom: -10px;
}

.test-carousel {
    padding-bottom: 30px;
}

.test-carousel-item {
    color: #999;
    font-size: 14px;
    text-align: center;
    overflow: hidden;
    padding: 20px 0;
}

.test-img-box {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.test-img-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.test-star-rating i {
    font-size: 18px;
    color: #ffdc12;
}

.test-carousel-indicators [data-bs-target] {
    width: 18px;
    height: 0px;
    border-radius: 100px;
    background: #e2e2e2;
}

.test-carousel-indicators .active {
    background: black;
}

/* profile user layout */
.b-avatar {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0b3c70;
    color: white;
}

.btn-signin {
    background-color: #0c1e66;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 10px 10px;
}

.profile-section {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-header h2 {
    margin: 0;
}

.edit-btn {
    color: #007bff;
}

.profile-container {
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
}

.list-unstyled a {
    text-decoration: none;
}

.saved-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    align-items: center;
    text-align: center;
}

.icon {
    width: 100px;
    height: 100px;
}

/* for signin nav icons */
.footer-section {
    background-color: #2C3E66;
    color: #d4d9e2;
    padding: 45px 0;
}

.footer-section h5 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-section a {
    color: #d4d9e2;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffb606;
}

.footer-section .newsletter input[type="email"] {
    background-color: transparent;
    border: 1px solid #d4d9e2;
    color: #d4d9e2;
    padding: 10px;
    width: 100%;
    margin-bottom: 10px;
    border-radius: 5px;
}

.footer-section .newsletter input[type="email"]::placeholder {
    color: #d4d9e2;
}

.footer-section .newsletter button {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.footer-section .newsletter button:hover {
    background-color: #e65c00;
}

.footer-section p {
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-section .list-unstyled li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #ffffff50;
    color: #ffffff;
    font-size: 0.9rem;
}

.btn-custom-active {
    font-weight: bold;
    position: relative;
    color: #223B64;
}

.btn-custom-active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fbc02d;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
}

/* Custom SLider */
.custom-slider-container {
    width: 85%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    padding: 40px;
    border-radius: 10px;
    margin: 0 auto;
}

.custom-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.custom-card {
    display: flex;
    flex-shrink: 0;
    padding: 20px;
}

.custom-image-wrapper {
    width: 500px;
    height: 150px;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out;
}

.custom-image-wrapper img {
    width: 100%;
    height: 100%;
    /*object-fit: cover;*/
}

.custom-image-wrapper:hover {
    transform: scale(1.05);
}

.custom-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 10;
}

.custom-prev {
    left: 10px;
}

.custom-next {
    right: 10px;
}

/* For small (sm) and medium (md) screens */
@media (max-width: 991px) {
    .custom-image-wrapper {
        width: 250px;
        /* Adjust width for sm and md screens */
        height: 150px;
        /* Keep the height unchanged */
    }
}


/*
//header components css overlay */
.tab-content {
    height: 100%;
    font-size: 0.9rem;
    background-color: #fff;
}

.tab-content .fw-bold {
    font-size: 0.9rem;

}

.tab-content small.text-muted {
    font-size: 0.8rem;

}

/* Apply the style only for large screens and above */
@media (min-width: 992px) {
    .position-absolute.top-0.translate-middle-y {
        bottom: 330px;
    }
}

/* For smaller and medium screens, no specific bottom value will be applied (default behavior). */
@media (max-width: 991px) {
    .position-absolute.top-0.translate-middle-y {
        bottom: auto;
        /* Remove any specific bottom positioning */
    }
}


.myBtnSearch {
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
}

/* Style for the button box */
.bg-white.p-2 {
    background-color: #fff;
    padding: 1rem 1rem;
    border-radius: 15px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}


/* RESPONSIVENESS */
/* Prevent Horizontal Scrolling */
body,
html {
    overflow-x: hidden;
}

/* Full-Width Container for smaller screens */
.container-fluid {
    width: 100%;
}

/* Ensure the search section is contained within the viewport */
.search-box {
    width: 100%;
}

/* Responsive Card Layout */
.domestic-card {
    margin-bottom: 20px;
    width: 100%;
}

.domestic-card-horizontal .domestic-card-image {
    height: 250px;
}


/* Destination Cards Slider */
.destination-slider-container {
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.destination-slider {
    display: flex;
    transition: transform 0.5s ease;
}

.destination-card {
    display: flex;
    flex-shrink: 0;
    padding: 10px;
}

.destination-image-wrapper {
    width: 100%;
    width: 260px;
    /* Keep the max width fixed */
    height: 400px;
    /* Fix the height to 400px */
    object-fit: cover;
    /* Ensures the image covers the entire area without distortion */
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.destination-image-wrapper img {
    width: 100%;
    /* Ensure the image fits the wrapper's height */
    object-fit: cover;
    /* Ensures image fits within the container while maintaining aspect ratio */
}


.destination-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    color: black;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 10;
}

.destination-prev {
    left: 0px;
}

.destination-next {
    right: -10px;
}

@media (max-width: 768px) {
    .destination-slider-container {
        padding: 10px;
    }

    .destination-card {
        padding: 10px;
    }

    .destination-image-wrapper {
        max-width: 250px;
        height: 300px;
        /* Adjust height for smaller screens */
    }

    .destination-nav-button {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .destination-slider-container {
        width: 100%;
        padding: 10px;
    }

    .destination-card {
        padding: 5px;
    }

    .destination-image-wrapper {
        max-width: 200px;
        height: 300px;
        /* Adjust height for very small screens */
    }

    .destination-nav-button {
        width: 25px;
        height: 25px;
    }
}


/* Ensure Cards are responsive and occupy 100% width on smaller screens */
@media (max-width: 768px) {
    .domestic-card {
        width: 100%;
    }

    .domestic-card-horizontal {
        flex-direction: column;
    }

    .container {
        padding: 0 15px;
    }

    /* Adjust header section on mobile */
    header {
        height: auto;
    }
}

@media (max-width: 767px) {
    .tab-button {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .tab-content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .domestic-card-horizontal {
        flex-direction: column;
    }

    .domestic-card-image {
        height: auto;
    }

    .search-box {
        padding: 15px;
    }
}


#testimonials {
    max-width: 900px;
    margin: auto;
}

.carousel-caption {
    position: initial;
    z-index: 10;
    padding: 5rem 8rem;
    color: #333333;
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
    line-height: 2rem;
}

@media(max-width:767px) {
    .carousel-caption {
        padding: 3rem 2rem;
        color: #333333;
        font-size: 0.7rem;
        line-height: 1.5rem;
    }
}

.carousel-caption img {
    width: 6rem;
    border-radius: 5rem;
    margin-top: 2rem;
}

@media(max-width:767px) {
    .carousel-caption img {
        width: 4rem;
        border-radius: 4rem;
        margin-top: 1rem;
    }
}

#image-caption {
    font-style: normal;
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #333333;
}

@media(max-width:767px) {
    #image-caption {
        font-size: 0.6rem;
    }
}

.carousel-control-prev {
    justify-content: flex-start;
}

.carousel-control-next {
    justify-content: flex-end;
}

.carousel-control-prev,
.carousel-control-next {
    transition: none;
    opacity: unset;
}


.carousel-item {
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    transform: translateX(100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.carousel-item.prev,
.carousel-item.next {
    opacity: 0;
    transform: translateX(-100%);
}