.card-img-top {
    height: 220px;
    object-fit: cover;
}

.card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}



.tour-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

}

.tour-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.tour-body {
    padding: 15px 0 20px;
}

.tour-body h6 {
    font-weight: 600;
    color: #2f2f8f;
    margin-bottom: 5px;
}

.tour-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.get-btn {
    margin-top: 20px;
    font-size: 12px;
    color: grey;
    background: #80808030;
}

.get-btn:hover {
    font-size: 12px;
    color: grey;
    background: #80808030;
}

.one-line-title {
    padding: 0px 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.read-more {
    background-color: #2f2f8f;
    color: white;
}

.read-more:hover {
    background-color: #ff4a2f;
    color: white;
}




.view-btn {
    margin-top: 20px;
    font-size: 12px;
    border: 1px solid #2f2f8f;
    color: #2f2f8f;
}

.view-btn:hover {
    font-size: 12px;
    border: 1px solid #2f2f8f;
    color: #2f2f8f;
}

.attraction-card {
    margin-top: 30px;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.attraction-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card .card-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.hotel-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-section {
    padding-top: 50px;
}

.hotel-card img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.hotel-card .card-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}


/* FAQ Section */
.faq-section {
    padding: 80px 0;
}


.accordion-item {
    border: none;
    border-bottom: 1px solid #e2e2e2;
    background: transparent;
}


.accordion-button {
    padding: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: #777;
    background: transparent;
    box-shadow: none;
}


.accordion-button:focus {
    box-shadow: none;
}


.accordion-button:not(.collapsed) {
    color: #ff4a2f;
    background: transparent;
    box-shadow: none;
}


.accordion-body {
    padding: 0 0 20px 0;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}


.accordion-button::after {
    background-size: 14px;
}