* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'SUSE', sans-serif;
}

.wrapper {
    display: flex;
    width: 100%;
}

/* theme background  */
.bg-theme {
    background-color: #F7941D;
}

li {
    list-style: none !important;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #7386D5;
    color: #fff;
    transition: all 0.3s;
}

.large_h {
    font-size: 7ch;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.search-bar div {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.search-bar div:last-child {
    margin-right: 0;
}

.search-bar input {
    border: none;
    outline: none;
    width: 100px;
    background: transparent;
}

.search-bar button {
    background-color: #F7941D;
    border: none;
    border-radius: 50%;
    padding: 10px;
}

.search-bar i {
    margin-right: 10px;
}

.search-bar input[type="date"] {
    width: 120px;
}


.text-color {
    color: #F7941D;
}

.top-destination {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
    border-radius: 10px;
}

.top-destination h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.top-destination p {
    color: #777;
    margin-bottom: 30px;
}

.search-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.search-box input,
.search-box select {
    border-radius: 30px;
    padding: 10px 20px;
}

.search-box button {
    background-color: #F7941D;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 10px 30px;
}

/* STYLING FOR CSS  */
/* testimonials  */
/* Testimonials Section    */
.testimonials-clean {
    color: #F7941D;
    background-color: #f9f9f9;
}

.testimonials-clean p {
    color: #7d8285;
}

.testimonials-clean h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}

@media (max-width:767px) {
    .testimonials-clean h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
}

.testimonials-clean .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.testimonials-clean .intro p {
    margin-bottom: 0;
}

.testimonials-clean .people {
    padding: 50px 0 20px;
}

.testimonials-clean .item {
    margin-bottom: 32px;
}

@media (min-width:768px) {
    .testimonials-clean .item {
        height: 220px;
    }
}

.testimonials-clean .item .box {
    padding: 30px;
    background-color: #fff;
    position: relative;
}

.testimonials-clean .item .box:after {
    content: '';
    position: absolute;
    left: 30px;
    bottom: -24px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-width: 12px 15px;
    border-top-color: #fff;
}

.testimonials-clean .item .author {
    margin-top: 28px;
    padding-left: 25px;
}

.testimonials-clean .item .name {
    font-weight: bold;
    margin-bottom: 2px;
    color: inherit;
}

.testimonials-clean .item .title {
    font-size: 13px;
    color: #9da9ae;
}

.testimonials-clean .item .description {
    font-size: 15px;
    margin-bottom: 0;
}

.testimonials-clean .item img {
    max-width: 40px;
    float: left;
    margin-right: 12px;
    margin-top: -5px;
}

.bg-contact {
    --bsb-overlay-opacity: 0.7;
    background-image: url('../images/park.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}


/* carousel  */
.carousel-bg {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    /* Adjust the blur */
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    /* Ensure the text is above the background */
}

.carousel-caption h1,
.carousel-caption p {
    color: #fff;
}

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* Dark overlay to improve text readability */
    z-index: 1;
}

.carousel-indicators [data-bs-target] {
    background-color: #ffcc00;
    /* Customize indicator color */
}

/* custom btn  */
/* Custom Button Styles */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    /* Rounded button */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    /* Add shadow for depth */
    text-decoration: none;
}

.custom-btn i {
    margin-right: 10px;
    font-size: 1.4rem;
    /* Icon size */
}

/* Button Hover Effects */
.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
}

/* Get Started Button Specific Styling */
.btn-warning.custom-btn {
    background: linear-gradient(45deg, #ffcc00, #ff9900);
    color: #fff;
    border: none;
}

.btn-warning.custom-btn:hover {
    background: linear-gradient(45deg, #ff9900, #ff6600);
    color: #fff;
}

/* Watch Video Button Specific Styling */
.btn-outline-light.custom-btn {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

.btn-outline-light.custom-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffcc00;
    color: #ffcc00;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-btn {
        font-size: 1rem;
        padding: 10px 20px;
        border-radius: 40px;
    }
    
    .carousel-caption {
        width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .custom-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
        border-radius: 30px;
    }

    .carousel-caption h1 {
        font-size: 1.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }
}


.video-col {
    position: relative;
    height: auto;
    /* Allow height to adjust automatically */
    max-height: 400px;
    /* Set a maximum height for the video */
    overflow: hidden;
    /* Hide any overflow to ensure it doesn't break the layout */
}

.video-bg {
    width: 100%;
    height: 100%;
    max-height: 100%;
    /* Ensure the video height is constrained by the column's height */
    object-fit: cover;
    /* Maintain the aspect ratio and cover the column */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.content-col {
    padding: 20px;
    z-index: 2;
}


/* styling for animated button  */
.bg-about {
    --bsb-overlay-opacity: 0.7;
    background-image: url('../images/zebra.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay with 50% opacity */
    z-index: 1;
    /* Layer it behind the text */
}

.bg-about h5,
.bg-about h1 {
    z-index: 2;
    /* Bring text above the overlay */
    color: #fff;
    /* Ensure the text is white for contrast */
}


/* Arrow Down Icon */
.arrow-down {
    position: absolute;
    bottom: 100px;
    font-size: 2.5rem;
    color: #fff;
    text-decoration: none;
    z-index: 2;
    animation: bounce 2s infinite;
}

.arrow-down i {
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.arrow-down:hover i {
    color: #ffcc00;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}