/* ============================================================
   LIVEWELL PACKAGES – Zoho CSS v5 – HTML logo (no SVG)
   Scoped to #td-zoho-root
============================================================ */

#td-zoho-root {
    --primary: #292662;
    --primary-dark: #1e1b4b;
    --accent: #8d81bb;
    --tab-text: #8d81bb;
    --card-bg-1: #edeaf7;
    --card-bg-2: #e8ecf6;
    --card-bg-3: #ece8f5;
    --logo-bg-1: #ddd8f0;
    --logo-bg-2: #d8dcee;
    --logo-bg-3: #dbd6f0;
    --badge-bg-1: #dedad5;
    --badge-bg-2: #d8ddf0;
    --badge-bg-3: #dbd6f2;
    --text-dark: #1a1a2e;
    --text-mid: #4a4a6a;
    --border: #ccc8e4;
    --radius-card: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --shadow-card: 0 2px 14px rgba(41, 38, 98, 0.08);
    --shadow-hover: 0 8px 30px rgba(41, 38, 98, 0.15);
    --shadow-btn: 0 4px 18px rgba(41, 38, 98, 0.4);
}

/* ── Reset ── */
#td-zoho-root *,
#td-zoho-root *::before,
#td-zoho-root *::after {
    box-sizing: border-box ;
}
#td-zoho-root ul {
    list-style: none ;
    margin: 0 ;
    padding: 0 ;
}
#td-zoho-root img {
    display: block ;
    max-width: 100% ;
}
#td-zoho-root button {
    font-family: "Manrope", sans-serif ;
    cursor: pointer ;
    outline: none ;
}

/* ── Section ── */
#td-zoho-root .td-section {
    max-width: 100%;
    margin: 0 auto;
    font-family: "Manrope", sans-serif ;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   TABS
══════════════════════════════════════ */
#td-zoho-root .td-tabs {
    display: flex ;
    align-items: center ;
    gap: 2px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0;
    list-style: none ;
}
#td-zoho-root .td-tabs::-webkit-scrollbar {
    display: none;
}

#td-zoho-root .td-tab {
    flex-shrink: 0 ;
    padding: 9px 22px 11px ;
    border-radius: var(--radius-pill) ;
    font-size: 14px ;
    font-weight: 600 ;
    color: var(--tab-text) ;
    background: none ;
    border: none ;
    position: relative;
    bottom: -2px;
    transition:
        background 0.2s,
        color 0.2s;
    white-space: nowrap;
    line-height: 1;
    font-family: "Manrope", sans-serif ;
}
#td-zoho-root .td-tab:hover {
    color: var(--primary) ;
}
#td-zoho-root .td-tab.active {
    background: var(--primary) ;
    color: #fff ;
    border-radius: 15px 15px 0px 0px ;
}

/* ── Panes ── */
#td-zoho-root .td-pane {
    display: none ;
}
#td-zoho-root .td-pane.active {
    display: block ;
}

/* ══════════════════════════════════════
   CAROUSEL
══════════════════════════════════════ */
#td-zoho-root .td-carousel-wrap {
    position: relative ;
    /*padding: 0 28px ;*/
}
#td-zoho-root .td-carousel-clip {
    overflow: hidden ;
    padding: 10px 2px 18px ;
}
#td-zoho-root .td-grid {
    display: flex ;
    gap: 20px ;
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1) ;
    will-change: transform;
    align-items: stretch ;
    flex-wrap: nowrap ;
    margin: 0 ;
    padding: 0 ;
}

/* package img 
 
#td-zoho-root .td-logo-img {
  margin-left: -15px ;
  display: block ;
  height: 125px ;
  width: auto ;
  max-width: 100% ;
  object-fit: cover ;
  object-position: left center ;
  border-radius: var(--radius-sm) ;
}
 
*/ 
#td-zoho-root .td-logo-img {
    margin: 10px 5px 10px -5px;
    display: block;
    height: 105px;
}

@media (max-width: 1024px) {
  #td-zoho-root .td-logo-img { height: 95px ; }
}
 
@media (max-width: 640px) {
  #td-zoho-root .td-logo-img { height: 80px ; }
}
 
@media (max-width: 480px) {
  #td-zoho-root .td-logo-img { height: 88px ; }
}

/* ── Nav arrows ── */
#td-zoho-root .td-nav {
    position: absolute ;
    top: 50% ;
    transform: translateY(-50%) ;
    z-index: 10;
    width: 36px ;
    height: 36px ;
    border-radius: 50% ;
    background: #fff ;
    box-shadow: 0 2px 10px rgba(41, 38, 98, 0.18) ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 22px ;
    color: var(--primary) ;
    cursor: pointer ;
    border: none ;
    transition: background 0.2s ;
}
#td-zoho-root .td-nav:hover {
    background: var(--primary) ;
    color: #fff ;
}
#td-zoho-root .td-nav:disabled {
    opacity: 0.25 ;
    cursor: not-allowed ;
}
#td-zoho-root .td-nav:disabled:hover {
    background: #fff ;
    color: var(--primary) ;
}
#td-zoho-root .td-nav-prev {
    left: -25px ;
}
#td-zoho-root .td-nav-next {
    right: -25px ;
}

/* ══════════════════════════════════════
   CARD
══════════════════════════════════════ */
#td-zoho-root .td-card {
    flex: 0 0 calc((100% - 40px) / 3) ;
    min-width: 260px ;
    border-radius: var(--radius-card) ;
    padding: 18px ;
    padding-top: 0 ;
    display: flex ;
    flex-direction: column ;
    box-shadow: var(--shadow-card) ;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
    overflow: visible ;
    font-family: "Manrope", sans-serif ;
}
#td-zoho-root .td-card:hover {
    transform: translateY(-4px) ;
    box-shadow: var(--shadow-hover) ;
}

/* Alternating card backgrounds */
#td-zoho-root .td-card:nth-child(3n + 1) {
    background: var(--card-bg-1) ;
}
#td-zoho-root .td-card:nth-child(3n + 2) {
    background: var(--card-bg-2) ;
}
#td-zoho-root .td-card:nth-child(3n) {
    background: var(--card-bg-3) ;
}

@media (max-width: 1024px) {
    #td-zoho-root .td-card {
        flex: 0 0 calc((100% - 20px) / 2) ;
    }
}
@media (max-width: 640px) {
    #td-zoho-root .td-card {
        flex: 0 0 100% ;
        min-width: 0 ;
    }
}

/* ══════════════════════════════════════
   CARD HEADER
══════════════════════════════════════ */
#td-zoho-root .td-card-top {
    display: flex ;
    align-items: flex-start ;
    justify-content: space-between ;
    gap: 10px ;
}

/* ── Identity / Logo block ── */
#td-zoho-root .td-identity {
    flex: 1 ;
    min-width: 0 ;
}

/*

#td-zoho-root .td-logo-block {
    display: inline-flex ;
    flex-direction: column ;
    align-items: flex-start ;
    gap: 6px ;
    padding: 10px 12px 12px ;
    border-radius: var(--radius-sm) ;
    width: 100% ;
}
*/

/* TORRENT DIAGNOSTICS text row */
#td-zoho-root .td-logo-text {
    display: flex ;
    align-items: baseline ;
    gap: 5px ;
    line-height: 1 ;
}
#td-zoho-root .td-logo-brand {
    font-size: 11px ;
    font-weight: 800 ;
    color: var(--primary) ;
    letter-spacing: 1px ;
    font-family: "Manrope", sans-serif ;
    line-height: 1 ;
}
#td-zoho-root .td-logo-diag {
    font-size: 8px ;
    font-weight: 500 ;
    color: var(--accent) ;
    letter-spacing: 0.5px ;
    font-family: "Manrope", sans-serif ;
    line-height: 1 ;
}

/* LIVEWELL + subtitle box */
#td-zoho-root .td-title-box {
    display: flex ;
    flex-direction: column ;
    align-items: flex-start ;
    gap: 2px ;
    background: var(--primary) ;
    border-radius: 6px ;
    padding: 6px 10px 8px ;
    width: 100% ;
}
#td-zoho-root .td-title-livewell {
    font-size: 9px ;
    font-weight: 600 ;
    color: rgba(255, 255, 255, 0.6) ;
    letter-spacing: 2px ;
    font-family: "Manrope", sans-serif ;
    line-height: 1 ;
    display: block ;
}
#td-zoho-root .td-title-sub {
    font-size: 18px ;
    font-weight: 800 ;
    color: #ffffff ;
    letter-spacing: 0.2px ;
    font-family: "Manrope", sans-serif ;
    line-height: 1.1 ;
    display: block ;
}

/* ── Price column — WHITE bg only ── */
#td-zoho-root .td-price-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: #ffffff;
    padding: 20px 15px 25px;
    position: relative;
    min-width: 150px;
}
@media (max-width: 480px) {
#td-zoho-root .td-price-col {
  min-width: 100px;
   }
}

/* Ticket perforation dots */
#td-zoho-root .td-price-col::after {
    content: "" ;
    position: absolute ;
    bottom: 0 ;
    left: 0 ;
    right: 0 ;
    height: 11px ;
    background-image: radial-gradient(circle at 50% 100%, rgba(100, 80, 180, 0.18) 5px, transparent 5.5px) ;
    background-size: 13px 11px ;
    background-repeat: repeat-x ;
    background-position: 0 bottom ;
    pointer-events: none ;
}

#td-zoho-root .td-price {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

#td-zoho-root .td-save {
    text-decoration: line-through;
     background: #9b59b61c ;
    font-size: 12px ;
    font-weight: 600 ;
    color: var(--text-mid) ;
    padding: 4px 12px ;
    border-radius: var(--radius-pill) ;
    white-space: nowrap ;
    font-family: "Manrope", sans-serif ;
}
/* ══════════════════════════════════════
   CARD BODY
══════════════════════════════════════ */
#td-zoho-root .td-card-body-wrap {
    display: flex ;
    flex-direction: column ;
    gap: 8px ;
    flex: 1 ;
}

#td-zoho-root .td-divider {
    border: none ;
    border-top: 1.5px dashed var(--border) ;
    margin: 2px 0 ;
}

#td-zoho-root .td-param-label {
    font-size: 13px ;
    font-weight: 700 ;
    color: var(--text-dark) ;
    margin: 0 ;
    font-family: "Manrope", sans-serif ;
}

#td-zoho-root .td-view-btn {
    font-size: 12px ;
    font-weight: 600 ;
    color: var(--primary) ;
    text-decoration: underline ;
    text-underline-offset: 2px ;
    cursor: pointer ;
    margin-left: 4px ;
    background: none ;
    border: none ;
    padding: 0 ;
    font-family: "Manrope", sans-serif ;
}
#td-zoho-root .td-view-btn:hover {
    color: var(--accent) ;
}

#td-zoho-root .td-covers {
    display: flex ;
    flex-wrap: wrap ;
    font-size: 12px ;
    color: var(--text-mid) ;
    font-weight: 500 ;
    line-height: 1.9 ;
    font-family: "Manrope", sans-serif ;
}
#td-zoho-root .td-covers-item {
    white-space: nowrap ;
}
#td-zoho-root .td-covers-sep {
    margin: 0 5px ;
    color: #b8b5d5 ;
}

/* ── Footer ── */
#td-zoho-root .td-footer {
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    gap: 10px ;
    flex-wrap: nowrap ;
    margin-top: 4px ;
}

#td-zoho-root .td-fasting {
    font-size: 11px ;
    color: var(--text-dark) ;
    font-weight: 500 ;
    white-space: wrap ;
    flex-shrink: 1 ;
    min-width: 0 ;
    font-family: "Manrope", sans-serif ;
}

/* ── Book Now Button ── */
#td-zoho-root .td-book {
    display: inline-flex ;
    align-items: center ;
    gap: 10px ;
    background: var(--primary) ;
    color: #fff ;
    font-size: 14px ;
    font-weight: 700 ;
    padding: 7px 12px 7px 20px ;
    border-radius: 12px ;
    flex-shrink: 0 ;
    white-space: nowrap ;
    border: none ;
    box-shadow: var(--shadow-btn) ;
    cursor: pointer ;
    font-family: "Manrope", sans-serif ;
    transition:
        background 0.2s,
        transform 0.15s ;
    text-decoration: none ;
}
#td-zoho-root .td-book:hover {
    background: var(--primary-dark) ;
    transform: scale(1.03) ;
}

#td-zoho-root .td-book-arrow {
    width: 18px ;
    height: 18px ;
    border-radius: 8px ;
    background: #9283be ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 12px ;
    line-height: 1 ;
    color: #ffffff ;
    flex-shrink: 0 ;
}

/* ══════════════════════════════════════
   OVERLAY + DRAWER
══════════════════════════════════════ */
.td-overlay {
    display: none;
    position: fixed ;
    top: 0 ;
    left: 0 ;
    right: 0 ;
    bottom: 0 ;
    background: rgba(10, 8, 40, 0.4) ;
    z-index: 99999 ;
    backdrop-filter: blur(2px);
}
.td-overlay.open {
    display: block ;
}

.td-drawer {
    position: fixed ;
    top: 0 ;
    right: -440px ;
    width: 410px ;
    max-width: 94vw ;
    height: 100vh ;
    background: #fff ;
    z-index: 100000 ;
    box-shadow: -4px 0 36px rgba(41, 38, 98, 0.14) ;
    display: flex ;
    flex-direction: column ;
    transition: right 0.32s cubic-bezier(0.4, 0, 0.2, 1) ;
    overflow: hidden ;
    font-family: "Manrope", sans-serif ;
}
.td-drawer.open {
    right: 0 ;
}

.td-handle {
    display: none;
    justify-content: center;
    padding: 12px 0 4px;
    cursor: grab;
    flex-shrink: 0;
}
.td-handle span {
    width: 42px;
    height: 4px;
    background: #d0cae8;
    border-radius: 4px;
    display: block;
}
.td-drawer-head {
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    padding: 18px 24px 14px ;
    border-bottom: 1px solid #ede9f7 ;
    flex-shrink: 0 ;
}
.td-drawer-head h3 {
    font-size: 15px ;
    font-weight: 800 ;
    color: #292662 ;
    margin: 0 ;
}
.td-drawer-x {
    width: 32px ;
    height: 32px ;
    border-radius: 50% ;
    background: #f0edf8 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 17px ;
    color: #292662 ;
    flex-shrink: 0 ;
    cursor: pointer ;
    border: none ;
    transition: background 0.2s ;
}
.td-drawer-x:hover {
    background: #e0d9f0 ;
}
.td-drawer-body {
    flex: 1 ;
    overflow-y: auto ;
    padding: 14px 24px 36px ;
    scrollbar-width: thin;
    scrollbar-color: #d0cae8 transparent;
}
.td-drawer-body::-webkit-scrollbar {
    width: 4px;
}
.td-drawer-body::-webkit-scrollbar-thumb {
    background: #d0cae8;
    border-radius: 4px;
}
.td-acc-item {
    border-bottom: 1px solid #ede9f7 ;
}
.td-acc-trigger {
    width: 100% ;
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    gap: 8px ;
    padding: 13px 0 ;
    font-size: 13px ;
    font-weight: 700 ;
    color: #1a1a2e ;
    text-align: left ;
    background: none ;
    border: none ;
    cursor: pointer ;
    font-family: "Manrope", sans-serif ;
}
.td-acc-trigger:hover {
    color: #292662 ;
}
.td-acc-icon {
    flex-shrink: 0 ;
    width: 22px ;
    height: 22px ;
    border-radius: 50% ;
    background: #f0edf8 ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 11px ;
    color: #292662 ;
    transition: transform 0.22s ;
}
.td-acc-item.open .td-acc-icon {
    transform: rotate(180deg) ;
}
.td-acc-body {
    display: none;
    padding: 2px 0 14px 2px;
}
.td-acc-item.open .td-acc-body {
    display: block ;
}
.td-acc-body ul {
    display: flex ;
    flex-direction: column ;
    gap: 6px ;
    list-style: none ;
    margin: 0 ;
    padding: 0 ;
}
.td-acc-body li {
    font-size: 12.5px ;
    font-weight: 500 ;
    color: #4a4a6a ;
    padding-left: 15px ;
    position: relative ;
}
.td-acc-body li::before {
    content: "•";
    position: absolute ;
    left: 0 ;
    color: #9b59b6 ;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 640px) {
    .td-handle {
        display: flex ;
    }
    .td-drawer {
        top: auto ;
        right: 0 ;
        bottom: -100% ;
        width: 100% ;
        max-width: 100% ;
        height: auto ;
        max-height: 95vh ;
        border-radius: 20px 20px 0 0 ;
        box-shadow: 0 -4px 36px rgba(41, 38, 98, 0.16) ;
        transition: bottom 0.33s cubic-bezier(0.4, 0, 0.2, 1) ;
    }
    .td-drawer.open {
        bottom: 0 ;
        right: 0 ;
    }
    .td-drawer.peek {
        bottom: 0 ;
        max-height: 42vh ;
    }
    .td-drawer.full {
        max-height: 95vh ;
    }
    #td-zoho-root .td-carousel-wrap {
        padding: 0 20px ;
    }
    @media (max-width: 767px) {
    #td-zoho-root .td-carousel-wrap {
         padding: 0px ; 
    }
}
    #td-zoho-root .td-nav {
        width: 30px ;
        height: 30px ;
        font-size: 18px ;
    }
    #td-zoho-root .td-section {
        padding: 24px 16px 48px ;
    }
}
@media (max-width: 640px) {
  #td-zoho-root .td-section {
    padding: 15px ;
  }
}
@media (max-width: 480px) {
    #td-zoho-root .td-price {
        font-size: 20px ;
    }
    #td-zoho-root .td-book {
        font-size: 13px ;
        padding: 10px 10px 10px 16px ;
    }
    #td-zoho-root .td-book-arrow {
        width: 24px ;
        height: 24px ;
    }
}

/* end*/

.whytorrent figure.zpimage-data-ref:after {
    content: '';
    display: block;
    width: 1px;
    height: 60px;
    background-color: #292662;
    margin: 20px auto 0;
}
.consent .zpimage-with-text-container.zpimage-align-left figure {
    margin-inline-end: 0;
    margin-block-end: 0;
}
.brand-border-top:after {
    background-position: 35% center !important;
}
@media(max-width:767px){
.download-app {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
    .floating-form .zpform-outer {
     display: flex !important;
     gap: 5px !important;
        align-items: center !important;
        flex-direction: column;
}
    .floating-form li {
    width: 100%;
}
}
.consent .zpimagetext-container {
    display: inline-flex;
    gap: 5px;
}
.consent {
    text-align: center;
}
.fifth-section-img {
    background-image: url(/new-full-body.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}
@media (max-width: 1600px) {
    .new-design-full-body {
        background-position: bottom right;
    }
}

@media (max-width: 1340px) {
    .fifth-section-img {
        /* background-size: 51%; */
        /* background-position: 40em bottom; */
    }
}

@media (max-width: 991px) {
    .fifth-section-img {
        padding-bottom: 220px !important;
        background-size: 100%;
    }
}

@media (max-width: 767px) {
    .fifth-section-img {
    }
    .download-app {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}
}

.understand-your-health .zpimage {
    background: #ede9f4 ;
   
}
.brand-border-top {
    position: relative;
}
.brand-border-top:after {
    content: '';
    background: url(/border-top.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 28px;
    position: absolute;
    top: -14px;
    display: block;
}
.brand-border-bottom {
    position: relative;
}
.brand-border-bottom:after {
    content: '';
    background: url(/border-bottom.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 28px;
    position: absolute;
    bottom: -14px;
    display: block;
}
.footer a {
 color:#ffffff;   
}
.download-app .zpimage-with-text-container.zpimage-align-left figure {
    margin: 0 ;
    margin-right: 5px ;
}

.lead-form-box form ul.zpform-outer li {
    margin: 10px 0 ;
}

@media (max-width: 767px){
  .lead-form-box form ul.zpform-outer li {
    margin: 3px 0;
}
}

.header-right {
    flex-direction: row !important;
    justify-content: end !important;
    gap: 5px;
}

.floating-form .zpform-outer {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr auto ;
    grid-template-rows: auto auto ;
    gap: 10px ;
    align-items: end ;
}
.brand-border-bottom:after {
    background-position: right;
}
.hero-left {
    padding-inline-end: 30em !important;
}
@media (max-width: 767px){
    .hero-left {
    padding-inline-end: 0em !important;
}
}
/* Tablet */
@media (max-width: 991px) {
    .hero-left {
        padding-inline-end: 0px !important;
    }
}

.when-choose-1st .zpimage-with-text-container.zpimage-align-center figure {
    box-shadow: 0 0 0 5px #ffffff;
    border-radius: 50px;
}
@media(max-width:767px){
    .when-choose-1st .zpimage-with-text-container.zpimage-align-center figure{
box-shadow: 0 0 0 0px #ffffff;
   margin-right: 15px ;
}
}
.when-choose-2nd .zpimage-with-text-container.zpimage-align-center figure {
    box-shadow: 0 0 0 5px #ffffff;
    border-radius: 50px;
}
@media(max-width:767px){
    .when-choose-2nd .zpimage-with-text-container.zpimage-align-center figure{
box-shadow: 0 0 0 0px #ffffff;
   margin-right: 15px ;
}
}
.when-choose-1st .zpimage-with-text-container:before {
    content: '';
    background: #e1e8f6;
    height: 1px;
    width: 310px;
    position: absolute;
    top: 45px;
    left: 5px;
    right: 5px;
}
.when-choose-2nd .zpimage-with-text-container:before {
    content: '';
    background: #e1e8f6;
    height: 1px;
    width: 310px;
    position: absolute;
    top: 45px;
    left: 5px;
    right: 5px;
}

.when-choose-1st .zpimage {
    background: #e2e8f6;
    border-radius: 50px;
}
.when-choose-2nd .zpimage {
    background: #eee9f4;
    border-radius: 50px;
}
@media (min-width: 1400px) {
    .zprow-container {
        width: 95%;
        padding-inline-start:20px;
        padding-inline-end:20px;
    }
}
@media (min-width: 1300px) {
    .zprow-container {
        width: 95%;
        padding-inline-start:20px;
        padding-inline-end:20px;
    }
}

/*-----POPUP CODE-----*/

.zlp-inner-container {
    border-radius: 10px ;
}
div[element=CLOSEBUTTON] {
    padding: 6px ;
}
div[element=CLOSEBUTTON] svg {
    width: 10px ;
    height: 10px ;
}
li[type="terms_conditions"] .zlpform-label-container {
    display: none;
}
/*-----POPUP CODE-----*/


.whytorrentrow .zpelem-col {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
/*
.first-fold .zpimage-text h4 {
    margin: 10px 0;
}

.first-fold .zpimage-with-text-container.zpimage-align-left figure {
    margin-inline-end: 0;
    margin-block-end: 0;
}
*/
.whysection .zpimage-text h2 {
 margin:20px 0;   
}
.whysection .zpimage-with-text-container.zpimage-align-left figure {
    margin-block-end: 0;
    margin-inline-end: 10px;
}

.rtbs .zpimage-with-text-container.zpimage-align-left figure {
    margin-block-start: 0;
    margin-inline-end: 10px;
    margin-block-end: 0;
    margin-inline-start: 0;
}
.rtbs .zpelement {
    margin-block-start: 0px;
}

/* Hidden by default */
.floating-form {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  background: #fff;
  z-index: 9999;
  transition: bottom 0.35s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Visible state */
.zp-form-open .floating-form {
  bottom: 0;
}

/* Optional overlay effect */
.zp-form-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
}

/* Close button */
.floating-form-close {
    position: absolute;
    top: 2px;
    right: 2px;
    border: none;
    cursor: pointer;
    margin: 0;
    background: #e1e1e175;
    border-radius: 100px;
}



/* Show after first scroll */
html.zp-show-form .floating-form{
  transform: translateY(0) ;
  transition: transform 0.35s ease ;
}


.floating-form .zpcontainer-fluid {
    padding-inline-start: 0;
    padding-inline-end: 0;
}
.floating-form input:not(.zpbutton) {
    min-block-size: 0px;
}
.floating-form .zpform-field-container {
        max-inline-size: 100% !important;
    }

.floating-form ul.zpform-outer li {
 margin:0;
}

/*
/* Name */
.floating-form .zpform-outer > li:nth-of-type(1){
  grid-column: 1;
  grid-row: 1;
}

/* Email */
.floating-form .zpform-outer > li:nth-of-type(2){
  grid-column: 2;
  grid-row: 1;
}

/* Phone */
.floating-form .zpform-outer > li:nth-of-type(3){
  grid-column: 3;
  grid-row: 1;
}

/* BUTTON — force into row 1, col 4 */
.floating-form .zpform-outer > li:has(#zsform_submit){
  grid-column: 4;
  grid-row: 1;
  align-self: end ;
}

/* Terms — force full-width row 2 */
.floating-form .zpform-choice-input-container{
  grid-column: 1 / -1 ;
  grid-row: 2 ;
  margin-top: -4px ;
}


/* Button sizing */
.floating-form #zsform_submit {
    padding: 20px 30px;
    white-space: nowrap;
    width: 100%;
}
.lead-form-box #zsform_submit {
    padding: 10px 30px;
    white-space: nowrap;
    width: 100%;
}
/* Make label behave like a wrapper, not a block heading */
.floating-form .zpform-choice-input-container .zpform-label{
  display: flex ;
  align-items: flex-start ;
  gap: 0 ;
  padding: 0 ;
  margin: 0 ;
}

/* Hide the mandatory star */
.floating-form .zpform-choice-input-container .zpform-mandatory{
  display: none ;
}

/* Kill the stray text node height */
.floating-form .zpform-choice-input-container .zpform-label{
  line-height: 0 ;
  font-size: 0 ;
}

/* Restore font ONLY for checkbox text */
.floating-form .zpform-choice-input-container 
.zpform-choice-container,
.floating-form .zpform-choice-input-container 
.zpform-choice-container *{
  font-size: 14px ;
  line-height: 1.4 ;
  color: inherit ;
}

.callus-header .zpelement {
    margin-block-start: 0;
}
.callus-header .zpimage-headingtext-container a {
    color:var(--blue);
}
.callus-header .zpicon-container {
    align-items: flex-start;
}
.callus-header h3 {
    margin-bottom: 0 ;
}

.custom-img {
overflow: hidden;
}

.callus-header .zpimage-with-text-container.zpimage-align-left figure {
    margin-inline-end: 10px;
    margin-block-end: 0px;
}





/* ==============================
   TORRENT FAQ – PREMIUM STYLING
   ============================== */

.zpaccordion-container {
  max-width: 1100px ;
  margin: 0 auto ;
}

.zpaccordion {
    background: #ffffff !important;
    padding: 12px !important;
    margin: 0px;
    border-radius: 12px;
}

.zpaccordion:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07) ;
}

.zpaccordion-active {
  border-radius: 12px 12px 0 0 ;
}

.zpaccordion-name {
    font-weight: 600;
    color: #1a1d3a;
    line-height: 1.4;
    flex: 1;
    order: 1;
    margin: 0px !important;
}

/* Push icon to right using order */
.zpaccord-icon-inactive,
.zpaccord-icon-active {
  display: none ;
  flex-shrink: 0 ;
  margin-left: 0 ;
  margin-right: 0 ;
}

.zpaccord-icon-inactive {
  display: flex ;
  width: 25px ;
  height: 25px ;
  border-radius: 50% ;
  background-color: #9283BE ;
  align-items: center ;
  justify-content: center ;
}

.zpaccordion-active .zpaccord-icon-active {
  display: flex ;
  width: 25px ;
  height: 25px ;
  border-radius: 50% ;
  background-color: #9283BE ;
  align-items: center ;
  justify-content: center ;
}

.zpaccordion-active .zpaccord-icon-inactive {
  display: none ;
}

.zpaccord-icon-inactive svg, .zpaccord-icon-active svg {
    fill: #ffffff !important;
}

.zpaccord-icon-inactive .zpaccord-svg-icon-2,
.zpaccord-icon-active .zpaccord-svg-icon-2 {
  display: block ;
  width: 16px ;
  height: 16px ;
  fill: #ffffff ;
}
/* Answer panel — scoped tightly, no global span/div override */
.zpaccordion-content {
  background: #ffffff ;
  border-radius: 0 0 12px 12px ;
  margin-top: 0 ;
  padding-top: 0px ;
  margin-bottom: 15px ;
}

/* Scoped only to direct text paragraphs inside answer */
.zpaccordion-content > .zpaccordion-element-container p {
  font-size: 14px ;
  line-height: 1.75 ;
  color: #555555 ;
}

/* Remove injected fixed widths */
.zpaccordion-content div[style*="width:"] {
  width: auto ;
  max-width: 100% ;
}

@media (max-width: 767px) {
  .zpaccordion {
    padding: 18px ;
  }
  .zpaccordion-name {
    font-size: 14px ;
  }
  .zpaccordion-content {
    padding: 4px 18px 18px ;
  }
}
@media(max-width: 767px){
    .zpaccordion-content {
    padding: 0px 18px 0 18px ;
  }
}

.sub-heading span {
    color: #ffffff;
}
.sub-heading {
    background: linear-gradient(0deg, #c7b2d6, #9284be);
    display: inline-block;
    padding: 0px 10px;
    border-radius: 50px;
}

/* Test Care Section */
.test-care {
    background-image: url(/full-body-test1.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: left bottom;
    position: relative;
   z-index: -2;
}
.test-care:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(270deg, #282661 50%, transparent 70%);
     z-index: -1;
}
.test-care .zpimage-align-left figure {
    margin-inline-end: 10px;
    margin-block-end: 0;
}
.test-care h4.zpimage-heading {
    margin: 18px 0;
}
.test-care figure img {
        border-radius: 10px;
    }
.test-care .zpimage-text {
    display:none;
}



.key-benefits .zpelem-imageheadingtext h5.zpimage-heading {
 text-align:center;   
}


.pattern-img {
    position:relative;
}
.pattern-img img {
    border-radius:0 0 5px 5px;
}
.pattern-img:before {
content: '';
    display: block;
    background: url(/Flag%20-2-.png) no-repeat;
    width: 100%;
    height: 30px;
    background-size: 1400px;
    background-position: center;
    top: -14.8px;
    position: absolute;
    z-index: 1;
}

.footer-copyright a {
 color:#ffffff;   
}
.footer-copyright a:hover {
 color:#ffffff;   
}

@media (max-width: 1600px) {
.test-care {
    background-position: left bottom;
    }
}

@media (max-width: 1340px) {
.test-care {
        background-size: 48%;
        background-position: left bottom;
    }
}

@media (max-width: 1100px) {
.test-care {
        background-size: 55%;
        background-position: left bottom;
    }
}

@media (max-width: 1200px) {
.rtbs .zpimage-with-text-container.zpimage-align-left figure {
    margin-inline-end: 5px;
    }
    
    .rtbs .zprow .zpcol-md-3 {
        padding-inline-start: 5px;
    padding-inline-end: 5px;
    }
}


/* Mobile */
@media (max-width: 1024px){
  .zpform-outer{
    grid-template-columns: 1fr ;
  }

  .zpform-outer > li,
  .zpform-choice-input-container,
  .zpform-outer > li:has(#zsform_submit){
    grid-column: 1 / -1 ;
    grid-row: auto ;
  }

  #zsform_submit{
    width: 100% ;
  }
}


@media (max-width: 991px) {
     .test-care:before{
display:none;
    }
.key-benefits .zpimage-with-text-container {
        flex-wrap: wrap;
}
.test-care {
        padding-bottom: 500px ;
        background-size: 80% ;
        background-position: bottom left ;
    }
    .td-compare-grid {
    flex-wrap: wrap;
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    
    .callus-header {
        align-items: flex-end;
        padding-right: 0 ;
    }
    .pkg-bottom {
     font-size:11px;   
    }
    .test-care:before{
display:none;
    }
    .test-care .zpelement.zpelem-imageheadingtext {
    margin-block-start: 10px;
}
    .td-acc label {
    padding: 6px 14px;
    font-size: 12px;
}
    .td-content li {
    font-size: 12px;
    }
  /*
    .first-fold {
background-image: linear-gradient(0deg, rgba(69, 80, 162, 0) 30%, rgb(40 38 97 / 78%) 55%), url(/home-collection-phone.png) ;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center bottom;
        padding-bottom: 260px ;
    }
    .first-fold .zpelement {
    margin-block-start: 5px;
}
*/
   .whytorrent.zpbackground-attachment-fixed {
    background-attachment: scroll;
} 
.whytorrentrow .zpelem-col {
   grid-template-columns: repeat(1, 1fr);
    gap: 5px;
}
.when-choose-1st .zpimage-with-text-container:before {
    width: 50px;
    top: 25px;
    left: 4px;
    transform: rotate(90deg);
}
.when-choose-2nd .zpimage-with-text-container:before {
    width: 50px;
    top: 25px;
    left: 4px;
    transform: rotate(90deg);
}
  .zpaccordion {
    padding: 18px 18px;
  }

  .zpaccordion-name {
    font-size: 16px;
  }

  .zpaccordion-content {
    padding: 20px 18px;
  }

  .mobile-cta{
    display:inline-block;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    padding:0px;
    background:#fff;
    box-shadow:0 -6px 20px rgba(0,0,0,.15);
    z-index:999;
  }
  .mobile-cta .zpbutton-group-container {
    gap: 0;
}
.mobile-cta .zpcontainer-fluid {
    padding: 0;
}
    .mobile-cta .zpbutton-group-container .call-btn {
    width: 45%;
}
        .mobile-cta .zpbutton-group-container .lead-btn {
    width: 55%;
}
    
.mobile-cta .zpbutton-group-container .call-btn .zpbutton-type-primary .zpbutton-icon {
    margin-inline-end: 5px;
}
    .callus-header .zpicon-text-container {
    margin-top: 0;
    padding-inline-start: 0;
}
        .callus-header .zpicon-heading {
        padding-inline-start: 0;
    }
    .callus-header .zpicon-container .zpicon-size-md {
        display:none;
    }
    .test-care {
        padding-bottom: 300px ;
        background-size: 100% ;
        background-position: left bottom ;
}
        .test-care .zpimage-with-text-container {
        flex-wrap: nowrap;
    }
    .test-care h4.zpimage-heading {
    margin: 0;
}
     .test-care .zpimage-with-text-container.zpimage-align-left figure {
    margin-inline-end: 10px;
    margin-block-end: 0;
    }
        .zpimage-with-text-container {
        flex-wrap: nowrap;
        align-items: center;
    }
    .td-compare-grid {
    flex-direction: column;
}
    .td-card {
    min-width: 100%;
}
    .td-header h3 {
    font-size: 20px;
}
    .rtbs .zpcontainer-fluid {
    padding-inline-start: 0;
    padding-inline-end: 0;
}
    .rtbs .zpimage-with-text-container.zpimage-align-left figure {
    margin-inline-end: 5px;
}
    .rtbs .zprow .zpelem-col {
    margin: 3px 0px;
}
         div[element=PREOUTER] div[element=PREINNER][data-popup-type=modal] {
        height: 20vh ;
    }
}