   .main-section {

        display: flex;
        flex-wrap: wrap !important;
        justify-content: center;

        position: relative;
    }

    .main-section {

    padding: 40px 90px 40px 90px;
    /* text-align: center; */
    justify-content: center;
    /* align-items: center; */
    color: var(--white-color);
    position: relative;


}

.main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 0;
}


.holiday-content h3 {
    font-size: var(--font-size-xxxl);
    font-weight: bold;
    color: #172A80;
    margin: 0px;
    padding: 10px 0px 0px 0px;
    text-align: center;
}

.holiday-content p {
    font-size: var(--font-size-xxl);
    font-weight: bold;
    text-align: center;
}

.holiday-content {

    position: relative;
    z-index: 1;


}
.content-section {
    display: flex;
    /* flex-wrap: wrap; */
    /* padding: 0px 30px 0px 30px;*/
    align-content: space-around;
}

.sub-content {
    width: 530px;
    margin: 0px;
}

.sub-content p {
    margin: 0px;
    padding: 0px 0px 0px 20px;
    font-size: var(--font-size-xl);
    font-weight: lighter;
    line-height: 30px;
    text-align: left;
}
.sub-content h1 {
    margin: 0px;
    padding: 0px 0px 0px 20px;
    font-size: var(--font-size-xxxl);

    text-align: left;
}

/* faqs style */
.faq-section {
    padding: 0px 0px;
}

.faq {
    width: 100%;
    margin: 0 auto;
}

.question {
    cursor: pointer;
    background-color: white;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid var(--black-color);
    text-align: left;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}


.symbol {
    float: right;
}

.answer.expanded {
    padding-top: 10px;
    /* Top padding when expanded */
    padding-bottom: 10px;
    /* Bottom padding when expanded */
}

.answer {
    white-space: normal;
    word-wrap: break-word;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0px 15px;
    overflow: hidden;
    max-height: 0px;

    border-left: 4px solid #172A80;
    border-radius: 0 0 5px 5px;


    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
    /* Add smooth padding transition */
}
.common-row {

    display: flex;

    flex-wrap: wrap;
    width: 100%;
    /* gap: 50px; */
    justify-content: space-between;
}
.three-card-col {
    width: 32%;
    margin: 9px 0px;
}
/* ======= Destination card Section Styling ========= */

.destinations {
    margin: 15px 0;
    opacity: 0;
    transform: translateX(-50px);
    overflow: hidden;
    transition: opacity 1s ease, transform 1s ease;
}

.destinations.visible {
    opacity: 1;
    transform: translateX(0);

}

.destinations h2 {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
}

.highlighted-text {
    display: inline-block;
    color: white;
    font-size: clamp(16px, 2vw, 20px);
    padding: 8px 16px;
    background: var(--tertiary-color);
    border-radius: 8px;
}

.destinations p {
    color: black;
    font-size: clamp(14px, 1.4vw, 16px);
    text-align: center;
}


.destination-cards {
    flex-wrap: nowrap !important;
    margin-left: 0px !important;
}

.destination-containter {
    overflow: hidden;
    /* margin: 20px 1px; */
        margin: 20px 12px;
    height: 40vh;
    min-height: 360px;
}

.destination-slide {

    padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    --bs-gutter-x: -0.5rem !important;


}

.destination-card {
    background: var(--white-color);
    overflow: hidden;
    aspect-ratio: 3.7 / 4;
    height: 100%;
    width: 100% !important;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateX(-200px);
    animation: slideInFromLeft 1s ease forwards;
    animation-delay: var(--destination-card-delay);
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.destination-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.destination-card img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.destination-card:hover img {
   
      transform: scale(1.1);
  filter:  brightness(1);
}

.destination-card-title {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--black-color);
    font-weight: bold;
    font-size: var(--font-size-xl);
    padding: 10px 0px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Pricing overlay */
.destination-card-price {
    position: absolute;
    top: 0;
    left: -5px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    font-size: var(--font-size-xsmall);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: left 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.destination-card-price button {
    font-size: var(--font-size-small);
    padding: 2px;
    color: white;
    background-color: #ff6600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

/* ========= Price list ========== */
.destination-card-price .price-list {

    margin: 40px 0px 0px 0px;
    padding: 6px;
    list-style: none;
    gap: 10px;
    z-index: 2;
    width: 100%;
    flex-wrap: wrap;
    align-items: flex-start;

}

.destination-card-price .price-list li a img {
    height: 30px;
    width: var(--logo-size-small);
    object-fit: contain;
}

.destination-card-price .price-list li a {

    background: #f9f9f9;
    padding: 4px 7px;
    border-radius: 0px 8px 8px 0px;
    font-size: 12px;
    color: var(--black-color);
    gap: 7px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.destination-card-price {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-list.show {
    opacity: 1;
    pointer-events: auto;
}

.destination-card-price .price-list li {
    margin: 10px 0px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.destination-card:hover .price-list li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.destination-card:hover .price-list li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.destination-card:hover .price-list li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.destination-card:hover .price-list li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.destination-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.destination-card:hover .destination-card {
    transform: translateY(-10px);
}

/* ========== Swiper Style =============*/
.swiper-container {
    width: 100%;
    position: relative;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 1 !important;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--black-color);
    z-index: 2;
}
/* ========= features  section style ============= */
.features-section {
    margin: 25px 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px
}

.feature-box {

    width: 22%;
    max-width: 22%;
    height: var(--logo-size-large);
    border: 1px solid #ccc;
    border-radius: 16px;
    text-align: center;
    padding: 10px;
    transition: all 0.4s ease;
    background-color: var(--tertiary-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background 0.5s ease, box-shadow 0.5s ease;
    position: relative;
}

.icon-wrapper {
    width: var(--logo-size-small);
}

.feature-box img {
    height: var(--icon-size-xlarge);
    transition: opacity 0.3s ease;
}

.feature-box p {
    font-size: var(--font-size-default);
    font-weight: 500;
    color: #fff;
    margin: 0;
    transition: color 0.1s ease;
}

.feature-box:hover {


    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(45deg, #E55820, #172A80);
    animation: gradientShift 3s ease infinite;
    color: #fff;
}

.normal-icon {
    transition: opacity 0.1s ease;
    opacity: 1;
    z-index: 1;
}

.hover-icon {
    transition: opacity 0.1s ease;
    opacity: 0;
    z-index: 2;
}
/* =========== confidence payment section design ======== */
.confidence-payment-section {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white-color);
    padding: 2px 0;
    margin-top: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-wrap: wrap;
}

.confidence,
.payment {
    text-align: center;
    padding: 5px;
}

.confidence h3,
.payment h3 {
    font-size: var(--font-size-xxl);
    font-weight: bold;
    margin: 0px 0px 10px 0px;
    color: var(--black-color);
}

.separator-confidence {
    width: 3px;
    height: var(--logo-size-medium);
    border-radius: 2px;
    background-color: #172A80;
    margin: 0 15px;
}

.confidence-logos,
.payment-logos {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}


.confidence-logos img,
.payment-logos img {
    max-width: 90px;
    object-fit: contain;
}

/* ============= subscription section style ============ */
.subscription-section {
    margin: 20px 0px 0px 0px;
    background: url('../assets/imgs/subscription.webp') no-repeat center center/cover;
    padding: 60px 20px;
    text-align: center;
    justify-content: center;
    align-items: center;
    color: var(--white-color);
    position: relative;
}

.subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.subscription-content {
    position: relative;
    z-index: 1;

}

.subscription-content p {
    font-size: var(--font-size-xxl);
    font-weight: bold;

}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.subscription-form input {
    padding: 10px 10px;
    text-align: center;
    font-size: var(--font-size-l);
    border-radius: 25px;
    border: 1px solid #ccc;
    min-width: 267px;
    max-width: 450px;
    outline: none;
}

.subscription-form input::placeholder {
    color: var(--black-color);
    opacity: 1;
}

.subscription-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 12px;
    gap: 10px;
}

.subscription-button button {
    padding: 10px 20px;
    font-size: var(--font-size-medium);
    background-color: #172A80;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.subscription-button button:hover {
    background-color: #0f1d5a;
}
@media (max-width: 992px) {
    .feature-box {
        max-width: 45%;
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
      .subscription-section {
        background: url('../assets/imgs/subscription-mobile.webp') no-repeat center center/cover;
    }
    .feature-box {
        max-width: 100%;
        flex: 1 1 100%;
    }
       /* .feature-box {
        width: 100%;
        max-width: 300px;
        margin: auto;
    } */
}

@media (max-width: 768px) {

   

    .feature p {
        font-size: 9px;
    }

    .feature {
        margin: 0px;
    }
    .separator {
        display: none;
    }

    .separator-confidence {
        display: none;
    }
   


    .confidence-logos img,
    .payment-logos img {

        max-width: 70px;
    }

    .confidence-logos,
    .payment-logos {

        gap: 10px;
    }

    .confidence h3,
    .payment h3 {
        font-size: var(--font-size-xl);
        font-weight: bold;

    }

    .confidence,
    .payment {
        text-align: center;
        padding: 5px;
    }

    .confidence-payment-section {

        padding: 0px;

    }
        .content-section {
        display: flex;
        flex-wrap: wrap !important;

        flex-direction: column-reverse;

    }

    .main-section {

        display: flex;
        flex-wrap: wrap !important;
        justify-content: center;

        position: relative;
    }

    .laptopView {
        display: none !important;
        /* Hide laptop view on mobile */
    }


    .MobileView {
        display: flex !important;
        align-items: center;
        flex-wrap: wrap !important;
    }

    .three-card-col {
        width: 100%;
        margin: 9px 0px;

    }

}


@media (max-width: 480px) {


    .confidence-logos img,
    .payment-logos img {
        max-width: 52px;
    }
    
    .sub-content {
        width: 270px !important;

    }

    .content-section {
        flex-wrap: wrap;
        /* padding: 0px 30px 0px 11px;*/
        flex-direction: column-reverse;
    }

    .flight-col {
        /* flex: 1; */
        margin: 9px 0px;
        width: 100%;
        /* min-width: 180px; */
    }

}


@media screen and (max-width: 620px) {


    .MobileView {

        flex-wrap: wrap;

    }

}
