.sidebar {
    display: flex;
    gap: 50px;
}

.sidebar button {
    padding: 5px 50px;
    border-radius: 15px;
    font-size: 18px;
}

.cancel-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;

    max-width: 600px;
}

.cancel-icon {
    font-size: 1.5rem;
    color: #198754;
    /* Bootstrap green */
    flex-shrink: 0;
}

.cancel-text h5 {
    margin: 0;
    font-weight: 600;
    color: #198754;
}

.cancel-text p {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
}

.highlight-list {
    padding-left: 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.highlight-item i {
    color: #198754;
    /* green tick color */
    font-size: 1.2rem;
    margin-top: 3px;
}

.accordion {
    background-color: #f2f6ff;
    color: #00224e;
    cursor: pointer;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    font-size: 18px;
    margin-bottom: 5px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion:hover {
    background-color: #e6efff;
}

.accordion span.day-label {
    background-color: #f6bf41;
    color: #00224e;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
    margin-right: 10px;
    flex-shrink: 0;
}

.accordion-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion.active .arrow {
    transform: rotate(180deg);
}

.panel {
    padding: 15px 20px;
    background-color: #ffffff;
    display: none;
    overflow: hidden;
    border-left: 4px solid #f6bf41;
    margin-bottom: 10px;
    border-radius: 0 0 8px 8px;
    color: #333;
}


.confidence-box {
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 1rem;
}
@media (max-width: 768px) {
    .confidence-box {
        padding: 2rem;
        max-width: 500px;
        width: 100%;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 1rem;
    }
    
}

.confidence-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00224e;
}

.confidence-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature i {
    font-size: 1.5rem;
    color: #4376ab;
}

.feature p {
    margin: 0;
    font-size: 1rem;
}

.contact-box {
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 1rem;
}

@media (max-width: 768px) {
    
    .contact-box {
        padding: 2rem;
        max-width: 500px;
        width: 100%;
        text-align: center;
        border: 1px solid #ccc;
        border-radius: 1rem;
    }
}

.contact-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00224e;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    justify-content: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: #4376ab;
}

.contact-item p {
    margin: 0;
    font-size: 1rem;
    word-break: break-word;
}


.faq-container_travel {
    padding: 80px;
    width: 100%;
}
@media (max-width: 768px) {
    .faq-container_travel {
        padding: 10px;
        width: 100%;
    }
}

.faq-container_travel h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #00224e;
    margin-bottom: 2rem;
}

.faq-item_travel {
    background-color: #F2F6FF;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    transition: background 0.3s;
}

.faq-question_travel {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.faq-question_travel i {
    color: #4376ab;
    transition: transform 0.3s ease;
}

.faq-answer_travel {
    display: none;
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.faq-item_travel.active .faq-answer {
    display: block;
}

.faq-item_travel.active .faq-question i {
    transform: rotate(180deg);
}


/* .banner-section {
    background-color: #02050a;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
} */

.banner-section {
    /* background-image: url('assets/images/city-pages/dehradun.jpg');  */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    position: relative;
    /* padding: 40px 20px; */
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3); /* Optional overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
}


.banner-grid {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.banner-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 25%;
}

.banner-center-img {
    width: calc(50% - 40px);
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.banner-side-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-grid {
        flex-direction: column;
        align-items: center;
    }

    .banner-column {
        flex-direction: row;
        gap: 10px;
    }

    .banner-side-img {
        width: 100px;
        height: 130px;
    }

    .banner-center-img {
        width: 220px;
        height: 300px;
    }
}


.bfk-form-book {
    background-color: #fff;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;

}

.bkf-booking-form {
    background-color: #fff;
    padding: 10px 40px;
    border-radius: 5px;
    /* border: 1px solid #000;
    box-shadow: 0 0 10px #4376ab; */
    display: flex;
    width: 1200px;
    justify-content: space-between;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .bkf-booking-form {
        width: 100%;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
}

.bkf-form-group {
    display: flex;
    flex-direction: column;
}

.bkf-form-group:not(:nth-last-child(2)) {
    border-right: 1px solid #EAEAEA;
    padding-right: 15px;
}

.bkf-form-group label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #000;
}

.bkf-form-group input,
.bkf-form-group select {
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    min-width: 250px;
}

.bkf-form-group button {
    background-color: #4376AB;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 35px;
    font-size: 16px;
    border: none;
}

.bkf-form-group button:hover {
    background-color: #e0ac2d;
}


.tp-trusted-partners {
    text-align: center;
    padding: 70px 30px;
    overflow: hidden;
}

.tp-trusted-partners h2 {
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
}

.tp-divider-icon {
    font-size: 24px;
    color: #0056d2;
    margin-bottom: 30px;
}

.tp-slider-wrapper {
    overflow: hidden;
    max-width: 100%;
    position: relative;
}

.tp-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: max-content;
}

.tp-slide {
    min-width: 20%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
}

.tp-slide img {
    max-height: 60px;
    height: 60px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s;
}

.tp-slide img:hover {
    transform: scale(1.05);
}
@media (min-width: 769px) {
    .sidebaar_services{
        padding-left: 100px;
    }
}
