* {
    margin: 0px;
    padding: 0px;
}

/* imp css start */
.btn {
    background-color: #FF9B45;
    border-color: #FF9B45;
    color: #fff;
}

.btn:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.text-primary {
    color: #0436a5 !important;
}

/* imp css end */


/* header start */
.navbar-nav .nav-link {
    transition: all 0.3s ease;
}

.navbar {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    background: #ffffff;
}

.navbar-nav .nav-link:hover {
    color: #0077b6;
    transform: scale(1.05);
}

.navbar-toggler {
    padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
    font-size: var(--bs-navbar-toggler-font-size);
    line-height: 1;
    color: var(--bs-navbar-color);
    background-color: #ffffff;
    border: var(--bs-border-width) solid rgb(255 255 255 / 0%);
    border-radius: var(--bs-navbar-toggler-border-radius);
    transition: var(--bs-navbar-toggler-transition);
}

/* header end  */


/* === travel-banner start == */
.travel-banner {
    margin-top: 65px;
}

.travel-banner {
    background-image: url('../images/travel_banner.jpg');
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
}

.travel-banner .search-box {
    margin-top: 10px;
    background-color: rgb(255 255 255 / 35%);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* === travel-banner end === */


/* featured-destinations start */
.featured-destinations .destination-card .card {
    height: 280px;
    transition: transform 0.3s ease;
}

.featured-destinations .destination-card .card:hover {
    transform: scale(1.03);
}

.featured-destinations .destination-card .card-img {
    object-fit: cover;
    height: 100%;
    transition: transform 0.4s ease;
}

.featured-destinations .destination-card:hover .card-img {
    transform: scale(1.05);
}

.featured-destinations .destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    height: 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.featured-destinations .price-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ffc107;
    color: #000;
    padding: 6px 12px;
    font-weight: 600;
    border-radius: 30px;
    font-size: 0.875rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* featured-destinations end */


/* why-us-section start */
/* .why-us-section {
    min-height: 500px;
} */

.why-us-section {
    background-image: url('../images/location_banner.jpg');
    width: 100%;
    /* height: 550px; */
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .why-us-section .p-5 {
        padding: 2rem !important;
    }
}
/* why-us-section end */


/* footer section start */
footer {
    background-color: whitesmoke;
    color: #000;
}

footer ul {
    list-style: none;
    padding-left: 0px;
    line-height: 35px;
}

footer a {
    font-weight: 500;
    color: #000000;
    text-decoration: none;
}

footer a:hover {
    color: #0436a5;
}

/* footer section end */