@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

body {
    font-family: "DM Sans", sans-serif;
}

.Compare_Packages_section {
    padding-top: 40px;
}

.Compare_Packages_section .container {
    max-width: 1230px;
}

.ucp-main-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 25px;
    color: #222;
}

/* --- Radio Button Styling --- */
.ucp-type-label {
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 15px;
}

.ucp-radio-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;

}

.ucp-custom-radio {
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
}

.ucp-custom-radio input {
    display: none;
}

.ucp-radio-dot {
    height: 22px;
    width: 22px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.ucp-custom-radio input:checked~.ucp-radio-dot {
    border-color: #ff5a1f;
}

.ucp-custom-radio input:checked~.ucp-radio-dot::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ff5a1f;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ucp-label-main {
    font-size: 1.05rem;
    font-weight: 500;
    margin-right: 5px;
}

.ucp-label-sub {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ucp-note-text {
    color: #000;
    font-size: 18px;
    margin: 15px 0 20px 0;
}

/* --- Table Styling (As per Image) --- */
.ucp-table-container {
    border: 1px solid #e5e0d5;
    background-color: #fff;
}

.ucp-table-header-box {
    background-color: #fff;
    padding: 15px 20px;

}

.ucp-table-header-box h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
    text-transform: uppercase;
}

.ucp-comp-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
    min-width: 900px;
    /* Ensures table doesn't squeeze too much */
}

.ucp-comp-table th,
.ucp-comp-table td {
    padding: 15px 20px;
    border: 1px solid #e5e0d5;
    vertical-align: middle;
    text-align: center;
}

/* First Column Alignment */
.ucp-comp-table td:first-child {
    text-align: left;
    border-left: 0px;
    width: 300px;
}

/* Headers background */
.ucp-comp-table thead th {
    background-color: #fff;
    font-weight: 700;
    border-left: 0px;
}

.ucp-price-title {
    font-size: 1.1rem;
    color: #000;
    display: block;
}

.ucp-price-amt {
    font-size: 1rem;
    color: #000;
    display: block;
}



/* Content Styling */
.ucp-feature-title {
    font-size: 16px !important;
    font-weight: 600;
    color: #000;
}

.ucp-feature-sub {
    font-size: 0.85rem;
    color: #777;
    display: block;
}

.ucp-check-mark {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: bold;
}

.ucp-table-footer {
    padding: 10px 20px;
    font-style: italic;
    color: #888;
    font-size: 0.9rem;
}

/* Icon styling */
.ucp-icon-box {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

/* Content Switch Animation */
.ucp-content-pane {
    display: none;
}

.ucp-content-pane.active {
    display: block;
    animation: fadeIn 0.4s;
    padding-bottom: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scrollable container for mobile */
.ucp-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid #e5e0d5;
}

@media (max-width: 576px) {
    
    .ucp-type-label {
        margin-bottom: 10px;
        display: block;
    }

    .ucp-radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}



/* popup banner start css  */
/* --- Banners --- */
.bb-custom-banner {
    padding: 45px;
    align-items: center;
    gap: 40px;
    border-radius: 8px;
    background: var(--Sunset-50, #fff4e5);
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.bb-icon-text-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bb-check-circle {
    background-color: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bb-banner-msg {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    color: #000;
    margin: 0px;
}

.bb-highlight {
    color: #f26522;
}

.bb-open-btn {
    border: 1px solid #f26522;
    color: #f26522;
    background: transparent;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.bb-open-btn:hover {
    background: #f26522;
    color: white;
}

/* --- Popup Modal --- */
.bb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.bb-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bb-modal-box {
    background: white;
    width: 90%;
    max-width: 850px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    transform: translateY(-20px);
    transition: 0.4s;
}

.bb-modal-overlay.active .bb-modal-box {
    transform: translateY(0);
}

/* CLOSE ICON STYLES (Ye naya hai) */
.bb-modal-close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    border: none;
    color: #333;
    transition: 0.3s;
    font-size: 27px;
}

.bb-modal-close-icon:hover {
    background: #f26522;
    color: white;
    transform: rotate(90deg);
}

.bb-modal-img {
    width: 45%;
    position: relative;
    height: 440px;
}

.bb-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .bb-modal-img::after {
content: '';
position: absolute;
top: 0;
right: -1px;
height: 100%;
width: 50px;
background: white;
border-radius: 40px 0 0 40px;
} */

.bb-modal-form {
    width: 55%;
    padding: 40px;
    position: relative;
}

.bb-form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.bb-input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    outline: none;
}

.bb-phone-flex {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.bb-country-label {
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    gap: 5px;
}

.bb-submit-btn {
    width: 100%;
    background: #f26522;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .bb-icon-text-wrap {
        flex-direction: column;
    }

    .bb-custom-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .bb-modal-box {
        flex-direction: column;
        height: 90vh;
        overflow-y: auto;
    }

    .bb-modal-img {
        width: 100%;
        height: 200px;
    }

    .bb-modal-img::after {
        display: none;
    }

    .bb-modal-form {
        width: 100%;
        padding: 25px;
    }
}


/* 4 sldier start */

:root {
    --bnb-orange: #f47352;
    --bnb-dark: #1a1a1a;
    --bnb-gray: #f2f2f2;
    --bnb-text-muted: #666;
}





/* Header Styles */
.bnb-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0px 30px;
}

.bnb-title {
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.2;
    max-width: 650px;
}

/* Navigation Buttons */
.bnb-nav-wrapper {
    display: flex;
    gap: 12px;
}

.bnb-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f5f5f5;
}

.bnb-nav-btn.next {
    background-color: #fff0ed;
    color: var(--bnb-orange);
}

.bnb-nav-btn:hover {
    transform: scale(1.1);
    background-color: #e0e0e0;
}


.swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    height: 480px;
    position: relative;
    background: #000;
}

.bnb-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

/* Feature Labels (Tooltips on Image) */
.bnb-feature-label {
    position: absolute;
    z-index: 10;
    color: #fff;
    background: rgba(0, 0, 0, 0.75);
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    backdrop-filter: blur(4px);
    border-left: 3px solid #fff;
    pointer-events: none;
}

.bnb-feature-label span {
    display: block;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

/* Dashed Line Drawing */
.bnb-pointer-line {
    position: absolute;
    border-top: 1px dashed rgba(255, 255, 255, 0.5);
    border-left: 1px dashed rgba(255, 255, 255, 0.5);
    z-index: 5;
}

/* Tab Switcher */
.bnb-tabs-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.bnb-tab-container {
    background: #f0f0f0;
    padding: 6px;
    border-radius: 12px;
    display: inline-flex;
    gap: 5px;
}

.bnb-tab-btn {
    padding: 12px 30px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--bnb-text-muted);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bnb-tab-btn.active {
    background: var(--bnb-dark);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hide/Show logic */
.bnb-slider-group {
    display: none;
}

.bnb-slider-group.active {
    display: block;
    animation: slideUpFade 0.6s ease forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 768px) {
    .bnb-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .swiper-slide {
        height: 350px;
    }

    .bnb-tab-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

/* four sldier end */


/* faq start */

:root {
    --bnc-primary-orange: #f47352;
    --bnc-text-dark: #212529;
    --bnc-border-color: #e0e0e0;
    --bnc-bg-light: #fdfdfd;
}



.bnc-faq-section {
    padding: 50px 0;
}

/* FAQ Styling */
.bnc-faq-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

.bnc-faq-container {
    max-width: 100%;
}

.bnc-faq-item {
    border-bottom: 1px solid var(--bnc-border-color);
    padding: 20px 0;
}

.bnc-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0px 0;
    transition: 0.3s;
}

.bnc-form-input:focus {
    border: 1px solid #f26522;
    outline: none;
    box-shadow: none;
}

.bnc-faq-question {
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

.bnc-faq-icon {
    transition: transform 0.4s ease;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Content Smoothness */
.bnc-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    color: #666;
    line-height: 1.6;
}

.bnc-faq-content p {
    margin-bottom: 0px;
}

.bnc-faq-item.active .bnc-faq-content {
    max-height: 1000px;
    transition: max-height 1s ease-in;
    padding-top: 15px;
}

.bnc-faq-item.active .bnc-faq-icon {
    transform: rotate(180deg);
}

/* Sticky Form Sidebar */
.bnc-faq-sidebar {
    position: sticky;
    top: 20px;
    /* Jaha scroll karne par rukega */
    z-index: 100;
}

.bnc-faq-form-card {
    background: #fff;
    border: 1px solid var(--bnc-border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bnc-faq-form-title {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.bnc-form-input {
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    padding: 10px 15px;
    font-size: 15px;
}

/* Phone Input Styling */
.bnc-phone-group {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bnc-country-code {
    background: #f8f8f8;
    padding: 10px;
    display: flex;
    align-items: center;
    border-right: 1px solid #ccc;
    gap: 5px;
    font-size: 14px;
}

.bnc-phone-group input {
    border: none;
    width: 100%;
    padding: 10px 15px;
    outline: none;
}

.bnc-faq-btn-submit {
    background-color: var(--bnc-primary-orange);
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
    margin-top: 10px;
}

.bnc-faq-btn-submit:hover {
    background-color: #e06342;
    transform: translateY(-2px);
}

.bnc-faq-privacy {
    font-size: 11px;
    color: #888;
    margin-top: 15px;
    line-height: 1.4;
}

.bnc-faq-privacy a {
    color: var(--bnc-primary-orange);
    text-decoration: none;
}

.only_mobile_view {
    display: none;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .ucp-table-responsive {
    
        border-right: 1px solid #e5e0d5;
}
    .ucp-table-header-box{
        justify-content: space-between;
    }
    .comp-top-row {
        display: none !important;
    }

    .only_mobile_view {
        display: contents;
    }

    .bnc-faq-sidebar {
        position: relative;
        top: 0;
        margin-top: 50px;
    }

    .bnc-faq-title {
        font-size: 26px;
    }
}


/* sticky part start and toogle  */


.comp-pkg-container {
    flex: 1;
    text-align: center;
    padding: 20px;
    width: calc(100% / 5);
}

.comp-top-row {
    position: sticky;
    top: 64px;
    background-color: rgb(255 251 245);
    z-index: 1;
    margin-top: 5px;
    height: 80px;
    align-items: flex-end;
    flex-shrink: 0;
    border: 2px solid #f0e3d3;
    display: flex;
    width: 100%;
    border-top: 1px solid #f0e3d3;
    border-bottom: 1px solid #f0e3d3;
}


.ucp-table-header-box {
    display: flex;
    gap: 15px;
    align-items: center;
    cursor: pointer;

}

.ucp-table-header-box h4 {
    margin: 0;
}

.ucp-table-header-box i {
    transition: 0.3s ease;
    font-size: 22px;
    line-height: normal;
}

.main_table_data {
    display: none;

}

/* Active state */
.ucp-table-wrapper.active .main_table_data {
    display: block;
}

.ucp-table-wrapper.active .ucp-table-header-box i {
    transform: rotate(180deg);
}