.card-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.destination_bg {
    /* background-image: url('https://images.pexels.com/photos/2662086/pexels-photo-2662086.jpeg'); */
    background-size: cover;
    background: linear-gradient(220deg, rgba(0, 0, 0, .136), rgba(0, 0, 0, .176)), url('../images/slider-img-1.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 200px 0;
}

.destination_bg h2 {
    font-size: 110px;
}

.hero {
    padding: 120px 0 80px 0;
}

.travel-card {
    width: 100%;
    max-width: 380px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-img {
    position: relative;
    background-size: cover;
    background-position: top;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.travel-card:hover img {
    transform: scale(1.1);
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-img-box img {
    height: 500px;
    transition: .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.card-top {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.badge {
    background-color: var(--main-color);
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 8px;
    font-weight: bold;
}

.media-icons span {
    background: rgba(0, 0, 0, 0.4);
    margin-left: 8px;
    padding: 6px 8px;
    border-radius: 8px;
    font-size: 12px;
}
.center-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}
.center-btn a i{
    transform: rotate(-45deg);
}

.heart-icon {
    font-size: 18px;
    color: #fff;
    margin-left: auto;
}

.card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgb(0 0 0), transparent);
    
}

.location {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.bottom-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.bottom-details .info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.rating {
    position: absolute;
    bottom: 50px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 13px;
}

.rating i {
    color: #fbbf24;
}

/* package_details__content */
.package_details__content h2 {
    text-transform: capitalize;
    font-size: 34px;
    font-weight: 700;
    color: var(--main-color);
}

.package_details__content p {
    margin-top: 1rem;
    line-height: 28px;
}

.package_details__content h3 {
    margin-top: 2rem;
    border-top: 1px solid #ccc;
    padding-top: 2rem;
    font-size: 28px;
    font-weight: 700;
}

.package_details__content ul {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 20px !important;
}

.package_details__content ul li {
    list-style: disc !important;
}

.package_details__content ul li::marker {
    color: var(--main-color);
}

.destination_map {
    margin-top: 2rem;
}

.destination_map iframe {
    width: 100%;
    border-radius: 10px;
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    border-top: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    text-align: left;
    font-size: 16px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    color: var(--black-color);
    display: flex;
    gap: 4px;
    align-items: center;
    font-weight: normal;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: #f8f8f8;
}

.accordion-content {
    display: none;
    padding: 15px;
    font-size: 15px;
    color: #444;
    background-color: #fafafa;
    border-top: 1px solid #eee;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}





.trip-form-container {
    background-color: #dfffe3;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    position: sticky;
    top: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.trip-form-container h2 {
    margin-bottom: 25px !important;
    font-size: 22px;
    color: #072635;
}

.trip-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    gap: 16px;
}

.form-group input,
.form-group select {
    flex: 1;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 100%;
}

textarea {
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
}

button {
    background-color: var(--main-color);
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background-color: #022a36;
}



/* badal_wrapper */
.badal_wrapper {
    background-image: url('../images/badal.png');
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #02024b;
    padding: 325px 0px 110px 0px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;

}

.destination-grid-box .card-img {
    height: auto !important;
}

.adventure_heading {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-position: center;
    animation: moveBg 7s linear infinite;
    -webkit-animation: moveBg 7s linear infinite;
    background-color: #ffffff;
    object-fit: cover;
    background-repeat: repeat;
    background-image: url('../images/blog1.jpeg');
}

@keyframes moveBg {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.adventure_heading h2 {
    font-size: 12vw;
    line-height: 1em;
    text-align: center;
    font-weight: 700;
}

.attraction-heading {
    text-align: center;
}

.attraction-heading span {
    text-transform: uppercase;
}

.attraction-heading h2 {
    text-transform: capitalize;
    font-weight: 700;
    font-size: 45px;
    margin-top: 10px;
}

.attraction-heading p {
    max-width: 900px;
    margin-top: 10px !important;
    margin: 0 auto;
}

.attraction-destionation-content {
    position: relative;
}

.attraction-destionation {
    padding-bottom: 200px;
    padding-top: 0;
}

.destination-grid {
    position: absolute;
    top: 13rem;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 24px;
}

.destination-grid-box:nth-child(even) {
    margin-top: 40px !important;
}

.destination-grid-box {
    overflow: hidden;
}

.destination-grid-box:hover img {
    transform: scale(1.1);
    border-radius: 10px;
    transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
}

.destination-grid-box {
    border-radius: 10px;
}

.destination-grid img {
    transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
    width: 420px;
    height: 420px;
    border: 1px solid #ccc;
    object-fit: cover;
    border-radius: 10px;
}

.dedicate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    color: #fff;
    gap: 1rem;
}

.contact-number h6 {
    font-size: 20px;
}

.contact-number p {
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
}

.destination-img img {
    border-radius: 100px;
}

.dedicate h3 {
    font-size: 35px;
    color: var(--white-color);
    max-width: 356px;
    font-weight: 700;
}


@media(max-width:1440px) {
    .destination_bg h2 {
        font-size: 75px;
    }

    .hero-content {
        max-width: 1130px;
    }

    .contact-number p {
        font-size: 26px;
    }

    .destination-grid img {
        height: 350px;
        width: 350px;
    }

    .dedicate h3 {
        font-size: 28px;
    }
}

@media(max-width:1200px) {

    .adventure-text p,
    .features ul li {
        font-size: 14px;
    }

    .contact-number p {
        font-size: 22px;
        margin-top: 10px;
    }
}

@media(max-width:992px) {
    .destination_bg {
        padding: 100px 0;
    }

    .hero {
        padding: 80px 0;
    }

    .destination_bg h2 {
        font-size: 48px;
    }

    .trip-form-container {
        margin-top: 2rem;
    }

    .hero-content {
        max-width: 38.75rem;
        gap: 1.25rem;
    }

    .destination-grid img {
        height: 250px;
        width: 250px;
    }

    .badal_wrapper {
        padding: 175px 0px 110px 0px;
    }

    .dedicate h3 {
        font-size: 22px;
    }

    .contact-number p {
        font-size: 17px;
    }
}




/* Responsive */
@media (max-width: 768px) {

    .hero {
        padding: 50px 12px;
    }

    .attraction-heading h2 {
        font-size: 26px;
    }

    .destination-grid-box:nth-child(1),
    .destination-grid-box:nth-child(2) {
        display: none;
    }

    .dedicate {
        flex-wrap: wrap;
    }

    .card-img-box img {
        height: 275px;
    }

    .hero-content {
        gap: 1rem;
    }

    .package_details__content p,
    .package_details__content ul li {
        font-size: 15px;
        line-height: 25px;
        margin-top: 8px;
    }

    .package_details__content h2 {
        font-size: 21px;
    }

    .package_details__content h3 {
        font-size: 18px;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .package_details__content ul {
        margin-top: 1rem;
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }

    .card-container {
        justify-content: center;
    }

    .travel-card {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        gap: 8px;
    }

    .trip-form {
        gap: 8px;
    }

    .form-group input,
    .form-group select {
        min-width: 100%;
    }

    .trip-form-container {
        padding: 20px;
    }

    .card-img {
        height: 100%;
    }

    .badal_wrapper {
        padding: 175px 0px 50px 0px;
        background-position: top left;
    }

    .dedicate {
        margin-top: 20px;
    }

    .destination_bg {
        padding: 75px 0;
    }

    .destination_bg h2 {
        font-size: 32px;
    }

    .destination-grid {
        gap: 12px;
    }
}

@media(max-width:420px) {
    .destination-grid {
        top: 12rem;
    }

    .attraction-heading p {
        font-size: 13px;
    }

    .attraction-heading h2 {
        font-size: 22px;
    }

    .card-content h3 {
        font-size: 14px;
    }

    .card-content {
        padding: 12px;
    }

    .banner_form__input button {
        width: 100%;
    }
}