/* ============================================
   Indscope Tabs Pro - Front Styles
   Built by AR Nayak (Indscope)
   ============================================ */

/* ====== SHARED ====== */
.itp-radial-tab-inner,
.itp-htab-inner,
.itp-rsc-tab-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
    cursor: pointer;
    transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.itp-radial-tab-item,
.itp-htab-item,
.itp-rsc-tab-item,
.itp-vt-tab-item {
    cursor: pointer;
}

.itp-radial-tab-img,
.itp-htab-img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    line-height: 1;
}

.itp-radial-tab-img img,
.itp-htab-img img { max-width: 100%; display: block; }

.itp-radial-tab-title,
.itp-htab-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

/* ====== WIDGET 1: RADIAL (Circle of tabs + center arrows) ====== */
.itp-radial-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.itp-radial-circle {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
}

.itp-radial-tab-item {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.itp-arrow,
.itp-rsc-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: #101E41;
    color: #ffffff;
    cursor: pointer;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
    z-index: 3;
    box-sizing: border-box !important;
    flex-shrink: 0;
    font-size: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.itp-arrow:hover,
.itp-rsc-arrow:hover {
    background: #00407C;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 64, 124, 0.4);
}

.itp-arrow svg,
.itp-rsc-arrow svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    stroke: #ffffff !important;
    fill: none !important;
    stroke-width: 2.5 !important;
}

.itp-arrow-prev { transform: translate(calc(-100% - 8px), -50%) !important; }
.itp-arrow-next { transform: translate(8px, -50%) !important; }

.itp-radial-content {
    width: 100%;
    overflow: hidden;
}

.itp-radial-content-panel,
.itp-htab-panel,
.itp-rsc-block-panel,
.itp-vt-block-panel {
    display: none;
    animation: itp-fade-in .4s ease;
}

.itp-radial-content-panel.itp-active,
.itp-htab-panel.itp-active,
.itp-rsc-block-panel.itp-active,
.itp-vt-block-panel.itp-active {
    display: block;
}

/* ====== WIDGET 2: HORIZONTAL TABS ====== */
.itp-htab-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.itp-htab-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.itp-htab-content {
    width: 100%;
    overflow: hidden;
}

/* ====== WIDGET 3: RADIAL + SIDE CONTENT ====== */
.itp-rsc-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.itp-rsc-block {
    flex: 0 0 45%;
    max-width: 45%;
    box-sizing: border-box;
}

.itp-rsc-tabs-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.itp-rsc-circle {
    position: relative;
    max-width: 100%;
}

.itp-rsc-tab-item {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
}

.itp-rsc-tab-inner {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    padding: 8px;
    box-sizing: border-box;
}

.itp-rsc-headline {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
}

.itp-rsc-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.itp-rsc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.itp-rsc-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    pointer-events: none;
}

.itp-rsc-name {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.itp-rsc-desc {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
}

.itp-rsc-btn,
.itp-vt-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #101E41;
    color: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.itp-rsc-btn:hover,
.itp-vt-btn:hover {
    background: #00407C;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 64, 124, 0.35);
}

.itp-rsc-btn svg,
.itp-vt-btn svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
}

/* Vertical / Horizontal arrow groups for radial side widget */
.itp-rsc-arrows-vertical .itp-rsc-arrow-prev { transform: translate(-50%, calc(-100% - 8px)) !important; }
.itp-rsc-arrows-vertical .itp-rsc-arrow-next { transform: translate(-50%, 8px) !important; }
.itp-rsc-arrows-horizontal .itp-rsc-arrow-prev { transform: translate(calc(-100% - 8px), -50%) !important; }
.itp-rsc-arrows-horizontal .itp-rsc-arrow-next { transform: translate(8px, -50%) !important; }

/* ====== WIDGET 4: VERTICAL TABS ====== */
.itp-vt-wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
}

.itp-vt-side-right { flex-direction: row-reverse; }

.itp-vt-tabs-col {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.itp-vt-tab-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 14px 20px;
    background: #f5f5f5;
    color: #222;
    border-radius: 8px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
    cursor: pointer;
}

.itp-vt-shape-circular .itp-vt-tab-item {
    border-radius: 50px;
}

.itp-vt-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.itp-vt-block {
    flex: 1;
    min-width: 0;
}

.itp-vt-headline {
    margin: 0 0 20px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.itp-vt-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.itp-vt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.itp-vt-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    pointer-events: none;
}

.itp-vt-name {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.05;
    text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.itp-vt-desc {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
}

/* ====== CARD CAROUSEL (shared) ====== */
.itp-carousel {
    width: 100%;
    padding: 10px 0 30px;
    position: relative;
}

.itp-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .3s ease, transform .3s ease;
}

.itp-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    transform: translateY(-4px);
}

.itp-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.itp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    box-sizing: border-box;
}

.itp-card-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.itp-card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #222;
    line-height: 1.3;
}

.itp-card-desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 16px;
    line-height: 1.55;
    flex: 1;
}

.itp-card-btn {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #101E41;
    color: #fff;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none;
    transition: transform .3s ease, box-shadow .3s ease;
    padding: 0 !important;
    line-height: 1 !important;
    box-sizing: border-box;
}

.itp-card-btn svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.5 !important;
    /* Nudge left by 1px to optically center the right-pointing arrow */
    margin-left: -1px;
    flex-shrink: 0;
}

.itp-card-btn:hover {
    background: #00407C;
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(0, 64, 124, 0.35);
}

.itp-carousel .swiper-button-prev,
.itp-carousel .swiper-button-next {
    width: 44px;
    height: 44px;
    background: #101E41;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    color: #ffffff;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.itp-carousel .swiper-button-prev:hover,
.itp-carousel .swiper-button-next:hover {
    background: #00407C;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 64, 124, 0.35);
}

.itp-carousel .swiper-button-prev::after,
.itp-carousel .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

/* ====== Animations ====== */
@keyframes itp-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ====== Mobile ====== */
@media (max-width: 991px) {
    .itp-rsc-block,
    .itp-vt-tabs-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-rsc-tabs-area {
        margin-top: 24px;
    }
    .itp-rsc-headline,
    .itp-vt-headline {
        font-size: 28px;
    }
    .itp-rsc-name,
    .itp-vt-name {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .itp-radial-circle,
    .itp-rsc-circle {
        width: 100% !important;
        height: auto !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 0 10px;
    }
    .itp-radial-tab-item,
    .itp-rsc-tab-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
    }
    .itp-arrow,
    .itp-rsc-arrow {
        position: static !important;
        transform: none !important;
        margin: 8px !important;
    }
}

/* ============================================
   v2.1.0 ADDITIONS
   ============================================ */

/* ====== VT: Circular Mode ====== */
.itp-vt-shape-circular .itp-vt-tabs-col {
    flex-direction: column;
}

.itp-vt-tab-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.itp-vt-tab-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
}

.itp-vt-tab-wrap:hover .itp-vt-tab-circle {
    transform: scale(1.05);
}

.itp-vt-tab-circle .itp-vt-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.itp-vt-circle-label {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: #222;
    line-height: 1.3;
    padding-bottom: 8px;
    transition: color .3s ease;
}

/* Underline (animates in on active) */
.itp-vt-circle-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 70%;
    height: 3px;
    background-color: #1e5fbf;
    border-bottom: 0 solid #1e5fbf;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
    opacity: 0;
}

.itp-vt-tab-wrap.itp-active .itp-vt-circle-label::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

/* Underline style variants */
.itp-vt-underline-dashed .itp-vt-circle-label::after {
    background-color: transparent;
    height: 0 !important;
    border-bottom: 3px dashed currentColor;
}
.itp-vt-underline-dotted .itp-vt-circle-label::after {
    background-color: transparent;
    height: 0 !important;
    border-bottom: 3px dotted currentColor;
}
.itp-vt-underline-double .itp-vt-circle-label::after {
    background-color: transparent;
    height: 0 !important;
    border-bottom: 5px double currentColor;
}
.itp-vt-underline-gradient .itp-vt-circle-label::after {
    background: linear-gradient(90deg, #1e5fbf 0%, #d91e5f 100%);
    border-radius: 2px;
}

/* If underline disabled */
.itp-vt-wrapper:not(.itp-vt-has-underline) .itp-vt-circle-label::after {
    display: none;
}

/* ====== WIDGET 5: ROUND TABS SHOWCASE ====== */
.itp-rts-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.itp-rts-dir-vertical {
    flex-direction: row;
    align-items: flex-start;
}

.itp-rts-dir-vertical .itp-rts-tabs {
    flex: 0 0 auto;
    flex-direction: column;
}

.itp-rts-dir-vertical .itp-rts-content-wrap {
    flex: 1;
    min-width: 0;
}

.itp-rts-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
}

.itp-rts-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.itp-rts-tab-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
}

.itp-rts-tab:hover .itp-rts-tab-circle {
    transform: scale(1.05);
}

.itp-rts-tab-circle i,
.itp-rts-tab-circle svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.itp-rts-tab-label {
    font-size: 13px;
    font-weight: 600;
    color: #222;
    text-align: center;
    transition: color .3s ease;
}

.itp-rts-content-wrap {
    width: 100%;
    background: #000;
    padding: 60px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.itp-rts-content-panel {
    display: none;
    animation: itp-fade-in .4s ease;
}

.itp-rts-content-panel.itp-active {
    display: block;
}

.itp-rts-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.itp-rts-img-right .itp-rts-content {
    flex-direction: row-reverse;
}

.itp-rts-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.itp-rts-image img {
    width: 100%;
    height: auto;
    display: block;
}

.itp-rts-text {
    flex: 1;
    min-width: 0;
}

.itp-rts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.itp-rts-badge::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffa500;
    flex-shrink: 0;
}

.itp-rts-headline {
    margin: 0 0 20px;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
}

.itp-rts-desc,
.itp-rts-desc p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.65;
    margin: 0 0 16px;
}

.itp-rts-desc p:last-child { margin-bottom: 0; }

.itp-rts-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.itp-rts-btn-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: #101E41;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.itp-rts-btn-1:hover {
    background: #00407C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0, 64, 124, 0.4);
}

.itp-rts-btn-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: transform .3s ease, background .3s ease;
}

.itp-rts-btn-2:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.1);
}

.itp-rts-play {
    width: 14px;
    height: 14px;
}

/* ====== RESPONSIVE (v2.1.0) ====== */
@media (max-width: 1024px) {
    .itp-rts-headline { font-size: 36px; }
    .itp-rts-content-wrap { padding: 40px; }
}

@media (max-width: 991px) {
    .itp-rts-content { flex-direction: column !important; }
    .itp-rts-image,
    .itp-rts-text {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-rts-headline { font-size: 32px; }

    .itp-vt-wrapper { flex-direction: column !important; }
    .itp-vt-side-right { flex-direction: column !important; }
    .itp-vt-tabs-col {
        flex: 0 0 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }
    .itp-vt-shape-circular .itp-vt-tabs-col {
        flex-direction: row !important;
    }
}

@media (max-width: 767px) {
    .itp-rts-content-wrap { padding: 28px 20px; }
    .itp-rts-headline { font-size: 26px; }
    .itp-rts-desc { font-size: 14px; }
    .itp-rts-btn-1, .itp-rts-btn-2 { padding: 12px 22px; font-size: 14px; }

    .itp-vt-tab-circle { width: 64px; height: 64px; }
    .itp-rts-tab-circle { width: 56px; height: 56px; }
}

/* ============================================
   v2.2.0: WIDGET 6 - ROUND TABS FREE CANVAS
   ============================================ */
.itp-rtfc-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.itp-rtfc-dir-vertical {
    flex-direction: row;
    align-items: flex-start;
}

.itp-rtfc-dir-vertical.itp-rtfc-vpos-right {
    flex-direction: row-reverse;
}

.itp-rtfc-dir-vertical .itp-rtfc-tabs {
    flex: 0 0 200px;
    flex-direction: column;
}

.itp-rtfc-dir-vertical .itp-rtfc-content-wrap {
    flex: 1;
    min-width: 0;
}

.itp-rtfc-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
}

.itp-rtfc-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.itp-rtfc-tab-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
}

.itp-rtfc-tab:hover .itp-rtfc-tab-circle {
    transform: scale(1.05);
}

.itp-rtfc-tab-circle i,
.itp-rtfc-tab-circle svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.itp-rtfc-tab-label {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: #222;
    text-align: center;
    transition: color .3s ease;
    padding-bottom: 6px;
}

/* Underline */
.itp-rtfc-tab-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 70%;
    height: 3px;
    background-color: #1e5fbf;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .35s ease;
    opacity: 0;
}

.itp-rtfc-has-underline .itp-rtfc-tab.itp-active .itp-rtfc-tab-label::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
}

.itp-rtfc-underline-dashed .itp-rtfc-tab.itp-active .itp-rtfc-tab-label::after {
    background-color: transparent;
    height: 0 !important;
    border-bottom: 3px dashed currentColor;
}
.itp-rtfc-underline-dotted .itp-rtfc-tab.itp-active .itp-rtfc-tab-label::after {
    background-color: transparent;
    height: 0 !important;
    border-bottom: 3px dotted currentColor;
}
.itp-rtfc-underline-double .itp-rtfc-tab.itp-active .itp-rtfc-tab-label::after {
    background-color: transparent;
    height: 0 !important;
    border-bottom: 5px double currentColor;
}
.itp-rtfc-underline-gradient .itp-rtfc-tab.itp-active .itp-rtfc-tab-label::after {
    background: linear-gradient(90deg, #1e5fbf 0%, #d91e5f 100%);
    border-radius: 2px;
}

.itp-rtfc-wrapper:not(.itp-rtfc-has-underline) .itp-rtfc-tab-label::after {
    display: none;
}

.itp-rtfc-content-wrap {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.itp-rtfc-content-panel {
    display: none;
}

.itp-rtfc-content-panel.itp-active {
    display: block;
}

/* Transitions */
.itp-rtfc-trans-fade .itp-rtfc-content-panel.itp-active {
    animation: itp-fade-in .4s ease;
}

.itp-rtfc-trans-slide-up .itp-rtfc-content-panel.itp-active {
    animation: itp-slide-up .4s ease;
}

.itp-rtfc-trans-slide-down .itp-rtfc-content-panel.itp-active {
    animation: itp-slide-down .4s ease;
}

.itp-rtfc-trans-zoom .itp-rtfc-content-panel.itp-active {
    animation: itp-zoom-in .4s ease;
}

.itp-rtfc-trans-none .itp-rtfc-content-panel.itp-active {
    animation: none;
}

@keyframes itp-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes itp-slide-down {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes itp-zoom-in {
    from { opacity: 0; transform: scale(0.95); }
    to   { opacity: 1; transform: scale(1); }
}

.itp-rtfc-empty {
    padding: 40px;
    text-align: center;
    color: #888;
    font-size: 14px;
    background: rgba(0,0,0,0.03);
    border: 2px dashed #ccc;
    border-radius: 8px;
}

@media (max-width: 991px) {
    .itp-rtfc-dir-vertical {
        flex-direction: column !important;
    }
    .itp-rtfc-dir-vertical .itp-rtfc-tabs {
        flex: 0 0 100% !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .itp-rtfc-tab-circle { width: 56px; height: 56px; }
}

/* ============================================
   v2.4.0: ROUND TABS SHOWCASE — Image Support + Pulse + Responsive
   ============================================ */

/* Image variant inside tab circle */
.itp-rts-tab-circle.itp-rts-visual-image {
    overflow: hidden;
    padding: 0;
}

.itp-rts-tab-circle.itp-rts-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Active state: smoother transition for ring */
.itp-rts-tab .itp-rts-tab-circle {
    transition: background .35s ease, color .35s ease, transform .35s ease, box-shadow .5s ease;
}

/* Animated pulse around active tab */
.itp-rts-pulse .itp-rts-tab.itp-active .itp-rts-tab-circle {
    animation: itp-rts-pulse-anim 2.2s ease-in-out infinite;
}

@keyframes itp-rts-pulse-anim {
    0%, 100% {
        box-shadow: 0 0 0 6px rgba(30, 95, 191, 0.35);
    }
    50% {
        box-shadow: 0 0 0 16px rgba(30, 95, 191, 0.0);
    }
}

/* Slight scale on active */
.itp-rts-tab.itp-active .itp-rts-tab-circle {
    transform: scale(1.05);
}

/* ============================================
   v2.4.0: STRONGER RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .itp-rts-headline { font-size: 36px; }
    .itp-rts-content-wrap { padding: 40px; }
    .itp-rts-content { gap: 40px; }
}

/* Tablet portrait */
@media (max-width: 991px) {
    .itp-rts-wrapper.itp-rts-dir-vertical {
        flex-direction: column !important;
    }
    .itp-rts-content {
        flex-direction: column !important;
        gap: 32px;
    }
    .itp-rts-image,
    .itp-rts-text {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-rts-image img {
        max-width: 70%;
        margin: 0 auto;
    }
    .itp-rts-headline { font-size: 32px; line-height: 1.15; }
    .itp-rts-desc, .itp-rts-desc p { font-size: 15px; }
}

/* Mobile */
@media (max-width: 767px) {
    .itp-rts-content-wrap { padding: 28px 20px; border-radius: 16px; }
    .itp-rts-headline { font-size: 26px; }
    .itp-rts-desc, .itp-rts-desc p { font-size: 14px; line-height: 1.6; }
    .itp-rts-badge { padding: 6px 14px; font-size: 11px; margin-bottom: 16px; }
    .itp-rts-btn-1, .itp-rts-btn-2 { padding: 12px 22px; font-size: 14px; }
    .itp-rts-buttons { gap: 12px; margin-top: 24px; }
    .itp-rts-tabs { gap: 12px; }
    .itp-rts-tab-circle { width: 56px !important; height: 56px !important; }
    .itp-rts-tab-circle i { font-size: 20px !important; }
    .itp-rts-tab-label { font-size: 11px; }
    .itp-rts-image img { max-width: 100%; }

    /* Reduce pulse intensity on mobile to save battery */
    .itp-rts-pulse .itp-rts-tab.itp-active .itp-rts-tab-circle {
        animation: itp-rts-pulse-anim 3s ease-in-out infinite;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .itp-rts-content-wrap { padding: 22px 16px; }
    .itp-rts-headline { font-size: 22px; }
    .itp-rts-buttons { flex-direction: column; }
    .itp-rts-btn-1, .itp-rts-btn-2 { width: 100%; }
}

/* ============================================
   ProV10.02 — Global pulse-ring keyframes
   (consumed via CSS variables --itp-ring-color and --itp-ring-size set per-widget;
    only activates when explicitly enabled by a widget's active-ring controls)
   ============================================ */
@keyframes itp-pulse-ring {
    0%, 100% {
        box-shadow: 0 0 0 var(--itp-ring-size, 8px) var(--itp-ring-color, rgba(30,95,191,0.35));
    }
    50% {
        box-shadow: 0 0 0 calc(var(--itp-ring-size, 8px) + 8px) transparent;
    }
}

/* ============================================
   ProV10.02 — Horizontal Image Tabs: Fill Mode + Overlay support
   (Image fill is a per-tab opt-in via tab_image_fit control)
   ============================================ */
.itp-htab-item.itp-htab-fill .itp-htab-inner {
    position: relative;
    overflow: hidden;
    padding: 0;
    border-radius: 50%;
}

.itp-htab-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: inherit;
    transition: transform .4s ease;
    z-index: 1;
}

.itp-htab-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 2;
    pointer-events: none;
    transition: background .3s ease, opacity .3s ease;
}

.itp-htab-fill .itp-htab-title {
    position: relative;
    z-index: 3;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    padding: 6px 10px;
    margin-top: auto;
    margin-bottom: 0;
    font-weight: 700;
}

.itp-htab-fill .itp-htab-inner {
    align-items: stretch;
    justify-content: flex-end;
}

.itp-htab-item.itp-htab-fill:hover .itp-htab-bg-image {
    transform: scale(1.06);
}

.itp-htab-item:not(.itp-htab-fill) .itp-htab-img img {
    object-fit: contain;
}

/* Title position helpers (only fill mode; class is added to wrapper inside widget render) */
.itp-htab-tpos-top .itp-htab-fill .itp-htab-inner    { justify-content: flex-start; }
.itp-htab-tpos-top .itp-htab-fill .itp-htab-title    { margin-top: 0; margin-bottom: auto; }
.itp-htab-tpos-center .itp-htab-fill .itp-htab-inner { justify-content: center; }
.itp-htab-tpos-center .itp-htab-fill .itp-htab-title { margin: auto 0; }
.itp-htab-tpos-bottom .itp-htab-fill .itp-htab-inner { justify-content: flex-end; }
.itp-htab-tpos-bottom .itp-htab-fill .itp-htab-title { margin-top: auto; margin-bottom: 0; }
.itp-htab-tpos-below .itp-htab-item                  { gap: 12px; }
.itp-htab-tpos-below .itp-htab-title-below {
    color: inherit;
    text-shadow: none;
    background: transparent;
    padding: 0;
}

/* ============================================
   ProV10.03 — ACCORDION TAB widget (itp-accordion-tab)
   All selectors scoped to .itp-at-* so no leakage.
   ============================================ */

.itp-at-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.itp-at-wrapper.itp-at-imgpos-right {
    flex-direction: row-reverse;
}

.itp-at-image-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.itp-at-product-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.itp-at-content-col {
    flex: 1;
    min-width: 0;
}

/* Title with two-color split */
.itp-at-title {
    margin: 0 0 20px 0;
    line-height: 1.2;
    font-weight: 700;
}
.itp-at-title-p1 { display: inline; }
.itp-at-title-p2 { display: inline; margin-left: 6px; }

/* Variants */
.itp-at-variants {
    margin-bottom: 30px;
}
.itp-at-variants-label {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}
.itp-at-variants-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.itp-at-variant {
    cursor: pointer;
    border: 2px solid #eaeaea;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    transition: border-color .25s ease, box-shadow .25s ease;
    background: #fff;
}
.itp-at-variant:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.itp-at-variant.itp-active {
    border-color: #d91e5f;
    box-shadow: 0 0 0 1px #d91e5f inset;
}
.itp-at-variant-thumb {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
}
.itp-at-variant-thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}
.itp-at-variant-name {
    font-size: 13px;
    margin-top: 8px;
    color: #444;
}

/* Accordion */
.itp-at-accordion {
    margin-bottom: 24px;
}
.itp-at-acc-item {
    border-bottom: 1px solid #e5e7eb;
}
.itp-at-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    cursor: pointer;
    user-select: none;
    transition: background .2s ease;
}
.itp-at-acc-header:hover {
    background: rgba(0,0,0,0.02);
}
.itp-at-acc-header:focus {
    outline: 2px solid #1e5fbf;
    outline-offset: 2px;
}
.itp-at-acc-title {
    flex: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 16px;
    color: #111;
}
.itp-at-acc-toggle {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    color: #1e5fbf;
    font-weight: 600;
    position: relative;
}
.itp-at-acc-toggle-minus,
.itp-at-acc-toggle-plus {
    display: inline-block;
    line-height: 1;
}
/* When closed, show "+", hide "-" */
.itp-at-acc-item:not(.itp-active) .itp-at-acc-toggle-minus { display: none; }
.itp-at-acc-item:not(.itp-active) .itp-at-acc-toggle-plus  { display: inline-block; }
/* When open, show "-", hide "+" */
.itp-at-acc-item.itp-active .itp-at-acc-toggle-minus { display: inline-block; }
.itp-at-acc-item.itp-active .itp-at-acc-toggle-plus  { display: none; }

.itp-at-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}
.itp-at-acc-item.itp-active .itp-at-acc-body {
    max-height: 3000px;
}
.itp-at-acc-body-inner {
    padding: 0 0 20px 0;
    color: #444;
    line-height: 1.6;
}

/* Content type: text */
.itp-at-text p { margin: 0 0 1em 0; }
.itp-at-text p:last-child { margin-bottom: 0; }
.itp-at-text strong { color: #111; font-weight: 700; }

/* Content type: icon box grid */
.itp-at-iconbox-grid {
    display: grid;
    gap: 16px;
}
.itp-at-iconbox-cols-1 { grid-template-columns: 1fr; }
.itp-at-iconbox-cols-2 { grid-template-columns: repeat(2, 1fr); }
.itp-at-iconbox-cols-3 { grid-template-columns: repeat(3, 1fr); }
.itp-at-iconbox-cols-4 { grid-template-columns: repeat(4, 1fr); }

.itp-at-iconbox {
    background: #fafafa;
    border-radius: 6px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.itp-at-iconbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.itp-at-iconbox-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}
.itp-at-iconbox-icon i  { font-size: 36px; color: #d91e5f; }
.itp-at-iconbox-icon svg { width: 36px; height: 36px; fill: #d91e5f; }
.itp-at-iconbox-title {
    font-size: 14px;
    color: #111;
    line-height: 1.4;
    font-weight: 600;
}
.itp-at-iconbox-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* Content type: icon list */
.itp-at-iconlist-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}
.itp-at-iconlist-item:last-child {
    margin-bottom: 0;
}
.itp-at-iconlist-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.itp-at-iconlist-icon i   { font-size: 16px; color: #d91e5f; }
.itp-at-iconlist-icon svg { width: 16px; height: 16px; fill: #d91e5f; }
.itp-at-iconlist-text {
    flex: 1;
    line-height: 1.6;
}
.itp-at-iconlist-label {
    font-weight: 700;
    color: #111;
    margin-right: 4px;
}
.itp-at-iconlist-value {
    color: #444;
}

/* CTA Button */
.itp-at-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #101E41;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease, opacity .25s ease;
    margin-top: 8px;
}
.itp-at-cta:hover {
    background: #00407C;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 64, 124, 0.35);
    color: #fff;
}
.itp-at-cta-icon {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform .25s ease;
}
.itp-at-cta:hover .itp-at-cta-icon {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .itp-at-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }
    .itp-at-image-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-at-iconbox-cols-3,
    .itp-at-iconbox-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .itp-at-iconbox-cols-2,
    .itp-at-iconbox-cols-3,
    .itp-at-iconbox-cols-4 {
        grid-template-columns: 1fr;
    }
    .itp-at-variant-thumb {
        width: 70px;
        height: 70px;
    }
}

/* ============================================
   ProV10.04 — INTERACTIVE HOTSPOT IMAGE widget
   All selectors prefixed .itp-hsi-* — no global leakage.
   ============================================ */

/* Wrapper: two-column layout */
.itp-hsi-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}
.itp-hsi-wrapper.itp-hsi-side-right { flex-direction: row-reverse; }
.itp-hsi-wrapper.itp-hsi-no-side .itp-hsi-trigger { flex: 1; }

/* Side content block */
.itp-hsi-side {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #6B7280;
    padding: 40px 32px;
    color: #fff;
}
.itp-hsi-side-title {
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}
.itp-hsi-side-desc {
    line-height: 1.6;
    color: #fff;
}
.itp-hsi-side-desc p { margin: 0 0 0.75em; }
.itp-hsi-side-desc p:last-child { margin-bottom: 0; }

/* Side CTA button (new default scheme: #101E41 / #00407C / white) */
.itp-hsi-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: #101E41;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background .25s ease, transform .25s ease;
    align-self: flex-start;
}
.itp-hsi-cta:hover {
    background: #00407C;
    color: #fff;
    transform: translateY(-1px);
}
.itp-hsi-cta-arrow {
    transition: transform .25s ease;
    color: #fff;
}
.itp-hsi-cta:hover .itp-hsi-cta-arrow { transform: translateX(3px); }

/* Trigger image (the click target) */
.itp-hsi-trigger {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    background: #fff;
    transition: opacity .25s ease;
}
.itp-hsi-trigger:focus { outline: 2px solid #00407C; outline-offset: 2px; }
.itp-hsi-trigger img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.itp-hsi-trigger-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(16, 30, 65, 0.75);
    opacity: 0;
    transition: opacity .3s ease;
    color: #fff;
}
.itp-hsi-trigger:hover .itp-hsi-trigger-overlay { opacity: 1; }
.itp-hsi-trigger-overlay-text {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}
.itp-hsi-trigger-overlay-icon svg { color: #fff; }

/* ===== MODAL ===== */
.itp-hsi-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}
.itp-hsi-modal.itp-active { display: flex; }
.itp-hsi-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}
.itp-hsi-modal-inner {
    position: relative;
    z-index: 2;
    width: 95vw;
    max-width: 1400px;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.itp-hsi-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 36px;
    height: 36px;
    line-height: 1;
    font-size: 28px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    border-radius: 50%;
    transition: background .2s ease;
}
.itp-hsi-modal-close:hover { background: rgba(255,255,255,0.15); }
.itp-hsi-modal-top {
    background: #101E41;
    color: #fff;
    padding: 14px 56px 14px 20px;
    font-size: 14px;
    text-align: center;
    flex-shrink: 0;
}
.itp-hsi-modal-bottom {
    background: #101E41;
    color: #fff;
    padding: 14px 20px;
    font-size: 13px;
    text-align: center;
    flex-shrink: 0;
}
.itp-hsi-modal-canvas {
    position: relative;
    flex: 1;
    min-height: 0;
    overflow: auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.itp-hsi-modal-image {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* ===== HOTSPOTS ===== */
.itp-hsi-hotspot {
    --itp-hs-size: 16px;
    --itp-hs-color: #d91e5f;
    --itp-hs-ring: rgba(217, 30, 95, 0.5);
    --itp-hs-speed: 1.8s;

    position: absolute;
    width: var(--itp-hs-size);
    height: var(--itp-hs-size);
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
}
.itp-hsi-hotspot:focus { outline: none; }
.itp-hsi-hotspot:focus .itp-hsi-hotspot-dot {
    box-shadow: 0 0 0 3px rgba(0, 64, 124, 0.5);
}

.itp-hsi-hotspot-dot {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--itp-hs-color);
    z-index: 2;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.itp-hsi-hotspot-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--itp-hs-ring);
    z-index: 1;
}

/* Pulse animation (only when global pulse is on) */
.itp-hsi-pulse-on .itp-hsi-hotspot-ring {
    animation: itp-hsi-pulse var(--itp-hs-speed) ease-out infinite;
}
.itp-hsi-pulse-on .itp-hsi-hotspot-dot {
    animation: itp-hsi-dot-pulse var(--itp-hs-speed) ease-in-out infinite;
}

@keyframes itp-hsi-pulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}
@keyframes itp-hsi-dot-pulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.15); }
}

/* ===== POPUP (tooltip on hotspot) ===== */
.itp-hsi-popup {
    position: absolute;
    background: #101E41;
    color: #fff;
    padding: 14px 16px;
    border-radius: 6px;
    max-width: 280px;
    min-width: 180px;
    width: max-content;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease, transform .25s ease;
    z-index: 10;
    line-height: 1.5;
    font-size: 13px;
}
.itp-hsi-hotspot:hover .itp-hsi-popup,
.itp-hsi-hotspot:focus .itp-hsi-popup,
.itp-hsi-hotspot.itp-active .itp-hsi-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.itp-hsi-popup-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.3;
}
.itp-hsi-popup-desc {
    color: #e5e7eb;
    font-size: 13px;
}
.itp-hsi-popup-desc p { margin: 0 0 0.5em; }
.itp-hsi-popup-desc p:last-child { margin-bottom: 0; }
.itp-hsi-popup-image {
    margin: -14px -16px 10px;
    overflow: hidden;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}
.itp-hsi-popup-image img {
    display: block;
    width: 100%;
    height: auto;
}
.itp-hsi-popup-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background: #101E41;
    color: #fff !important;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: background .2s ease;
    border: 1px solid rgba(255,255,255,0.2);
}
.itp-hsi-popup-link:hover { background: #00407C; }

/* Popup positions */
.itp-hsi-popup-pos-auto,
.itp-hsi-popup-pos-top {
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 6px);
}
.itp-hsi-hotspot:hover .itp-hsi-popup-pos-auto,
.itp-hsi-hotspot:hover .itp-hsi-popup-pos-top,
.itp-hsi-hotspot.itp-active .itp-hsi-popup-pos-auto,
.itp-hsi-hotspot.itp-active .itp-hsi-popup-pos-top {
    transform: translate(-50%, 0);
}
.itp-hsi-popup-pos-bottom {
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, -6px);
}
.itp-hsi-hotspot:hover .itp-hsi-popup-pos-bottom,
.itp-hsi-hotspot.itp-active .itp-hsi-popup-pos-bottom {
    transform: translate(-50%, 0);
}
.itp-hsi-popup-pos-left {
    right: calc(100% + 14px);
    top: 50%;
    transform: translate(6px, -50%);
}
.itp-hsi-hotspot:hover .itp-hsi-popup-pos-left,
.itp-hsi-hotspot.itp-active .itp-hsi-popup-pos-left {
    transform: translate(0, -50%);
}
.itp-hsi-popup-pos-right {
    left: calc(100% + 14px);
    top: 50%;
    transform: translate(-6px, -50%);
}
.itp-hsi-hotspot:hover .itp-hsi-popup-pos-right,
.itp-hsi-hotspot.itp-active .itp-hsi-popup-pos-right {
    transform: translate(0, -50%);
}

/* Body scroll lock when modal is open */
body.itp-hsi-modal-open { overflow: hidden; }

/* Responsive */
@media (max-width: 991px) {
    .itp-hsi-wrapper {
        flex-direction: column !important;
    }
    .itp-hsi-side {
        flex: 0 0 auto !important;
        max-width: 100% !important;
    }
    .itp-hsi-modal-inner {
        width: 100vw;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
    }
    .itp-hsi-popup {
        max-width: 240px;
    }
}
@media (max-width: 480px) {
    .itp-hsi-popup {
        max-width: 200px;
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* ============================================
   ProV10.07 — ABOUT SECTION widget (itp-about-section)
   All selectors scoped with .itp-as-* — no global leakage.
   ============================================ */

.itp-as-wrapper {
    background: #F3F5F8;
    padding: 60px 40px;
    width: 100%;
    box-sizing: border-box;
}

.itp-as-top-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}
.itp-as-wrapper.itp-as-imgpos-left .itp-as-top-row {
    flex-direction: row-reverse;
}

/* Content column */
.itp-as-content {
    flex: 0 0 60%;
    max-width: 60%;
    min-width: 0;
}

.itp-as-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d91e5f;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.itp-as-heading {
    color: #101E41;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
}

.itp-as-body {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
}
.itp-as-body p { margin: 0 0 1em 0; }
.itp-as-body p:last-child { margin-bottom: 0; }
.itp-as-body strong,
.itp-as-body b {
    color: #111;
    font-weight: 700;
}

/* CTA Link with gradient underline */
.itp-as-cta {
    --itp-as-uline-start: #d91e5f;
    --itp-as-uline-end:   #1e5fbf;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    color: #101E41;
    text-decoration: none;
    font-weight: 700;
    padding-bottom: 6px;
    background-image: linear-gradient(90deg, var(--itp-as-uline-start), var(--itp-as-uline-end));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 2px;
    transition: color .25s ease, background-size .25s ease;
}
.itp-as-cta:hover {
    color: #00407C;
    background-size: 100% 3px;
}
.itp-as-cta-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform .25s ease;
}
.itp-as-cta:hover .itp-as-cta-arrow {
    transform: translate(2px, -2px);
}

/* Image column */
.itp-as-image-col {
    flex: 1;
    min-width: 0;
}
.itp-as-image {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.itp-as-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Stats row */
.itp-as-stats-row {
    display: grid;
    gap: 16px;
    margin-top: 40px;
    width: 100%;
}
.itp-as-stats-cols-2 { grid-template-columns: repeat(2, 1fr); }
.itp-as-stats-cols-3 { grid-template-columns: repeat(3, 1fr); }
.itp-as-stats-cols-4 { grid-template-columns: repeat(4, 1fr); }

.itp-as-stat {
    background: #ffffff;
    border: 1px solid #A8C5E8;
    border-radius: 4px;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
    min-height: 100px;
}
.itp-as-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 30, 65, 0.08);
}
.itp-as-stat-number {
    color: #101E41;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
}
.itp-as-stat-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}
.itp-as-stat-text strong,
.itp-as-stat-text b { font-weight: 700; color: #101E41; }

/* Responsive */
@media (max-width: 991px) {
    .itp-as-top-row {
        flex-direction: column !important;
        gap: 30px;
    }
    .itp-as-content {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-as-stats-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .itp-as-stats-row { margin-top: 30px !important; }
}
@media (max-width: 600px) {
    .itp-as-wrapper { padding: 40px 20px; }
    .itp-as-stats-cols-3,
    .itp-as-stats-cols-4 { grid-template-columns: 1fr; }
    .itp-as-stat-number { font-size: 28px; }
}

/* ============================================
   ProV10.08 — HERO BANNER widget (itp-hero-banner)
   All selectors scoped with .itp-hb-* prefix.
   ============================================ */

.itp-hb-wrapper {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding: 60px 60px 60px 80px;
    background: linear-gradient(90deg, #9F1247 0%, #0E2546 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

/* Center decorative orb — color customizable via CSS variables */
.itp-hb-orb {
    --itp-hb-orb-center: #0F2754;
    --itp-hb-orb-glow:   #3A6CB0;

    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(
            circle at center,
            var(--itp-hb-orb-center) 0%,
            var(--itp-hb-orb-center) 30%,
            var(--itp-hb-orb-glow) 42%,
            var(--itp-hb-orb-center) 58%,
            transparent 80%
        );
    filter: blur(1px);
}

/* Content block (left side) */
.itp-hb-content {
    position: relative;
    z-index: 3;
    max-width: 500px;
    flex: 0 0 auto;
}

.itp-hb-heading {
    color: #fff;
    margin: 0;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 400;
}
.itp-hb-heading p {
    margin: 0 0 0.5em 0;
}
.itp-hb-heading p:last-child {
    margin-bottom: 0;
}
.itp-hb-heading strong,
.itp-hb-heading b {
    color: #fff;
    font-weight: 700;
}

/* CTA Link with gradient underline */
.itp-hb-cta-wrap {
    margin-top: 40px;
}
.itp-hb-cta {
    --itp-hb-uline-start: #d91e5f;
    --itp-hb-uline-end:   #1e5fbf;

    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding-bottom: 6px;
    background-image: linear-gradient(90deg, var(--itp-hb-uline-start), var(--itp-hb-uline-end));
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: 100% 2px;
    transition: color .25s ease, background-size .25s ease;
}
.itp-hb-cta:hover {
    color: #fff;
    background-size: 100% 3px;
}
.itp-hb-cta-arrow {
    display: inline-flex;
    align-items: center;
    transition: transform .25s ease;
}
.itp-hb-cta:hover .itp-hb-cta-arrow {
    transform: translate(2px, -2px);
}

/* Image column — absolutely positioned so it stays anchored when banner resizes */
.itp-hb-image-col {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    z-index: 2;
    line-height: 0;
}
.itp-hb-wrapper.itp-hb-img-left .itp-hb-image-col {
    right: auto;
    left: 40px;
}
.itp-hb-wrapper.itp-hb-img-left {
    flex-direction: row-reverse;
    padding: 60px 80px 60px 60px;
}
.itp-hb-wrapper.itp-hb-img-left .itp-hb-content {
    margin-left: auto;
}

.itp-hb-image {
    display: block;
    width: 420px;
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .itp-hb-wrapper {
        padding: 40px 30px !important;
        min-height: auto !important;
        flex-direction: column;
        text-align: center;
    }
    .itp-hb-content {
        max-width: 100% !important;
        margin: 0 auto;
    }
    .itp-hb-cta-wrap {
        text-align: center;
    }
    .itp-hb-cta {
        display: inline-flex;
    }
    .itp-hb-image-col {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        transform: none !important;
        margin-top: 30px;
    }
    .itp-hb-image {
        width: 300px !important;
        margin: 0 auto;
    }
    .itp-hb-orb {
        width: 400px !important;
        height: 400px !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        opacity: 0.7;
    }
}
@media (max-width: 480px) {
    .itp-hb-wrapper { padding: 30px 20px !important; }
    .itp-hb-heading { font-size: 22px; }
    .itp-hb-image { width: 240px !important; }
    .itp-hb-orb { display: none; }
}

/* ============================================
   ProV10.09 — ABOUT BLOCKS 1-4 widgets
   All selectors scoped with .itp-ab1-*, .itp-ab2-*, .itp-ab3-*, .itp-ab4-* prefixes.
   ============================================ */

/* ====== ABOUT BLOCK 1 — Centered intro + stats + gradient CTA ====== */
.itp-ab1-wrapper {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.itp-ab1-eyebrow {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 24px;
    line-height: 1.2;
}
.itp-ab1-heading {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    margin: 0 auto 24px auto;
    max-width: 900px;
}
.itp-ab1-sub {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 48px auto;
}
.itp-ab1-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto 48px auto;
}
.itp-ab1-stat {
    background: #F1F4F8;
    padding: 30px 20px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.itp-ab1-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: #1B4FB2;
    line-height: 1.1;
    margin-bottom: 8px;
}
.itp-ab1-stat-label {
    font-size: 15px;
    color: #222;
    line-height: 1.3;
}
.itp-ab1-cta-wrap {
    text-align: center;
    margin-top: 24px;
}
.itp-ab1-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(90deg, #d91e5f 0%, #1e5fbf 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}
.itp-ab1-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(217, 30, 95, 0.3);
}

/* ====== ABOUT BLOCK 2 — Image + content with accent ====== */
.itp-ab2-wrapper {
    position: relative;
    display: flex;
    background: #F1F4F8;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    gap: 60px;
}
.itp-ab2-wrapper.itp-ab2-img-right { flex-direction: row-reverse; }
.itp-ab2-image-col {
    flex: 0 0 50%;
    max-width: 50%;
    line-height: 0;
}
.itp-ab2-image-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
.itp-ab2-content-col {
    flex: 1;
    padding: 60px 60px 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.itp-ab2-wrapper.itp-ab2-img-right .itp-ab2-content-col {
    padding: 60px 0 60px 60px;
}
.itp-ab2-heading {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    line-height: 1.25;
}
.itp-ab2-body {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}
.itp-ab2-body p { margin: 0 0 1em 0; }
.itp-ab2-body p:last-child { margin-bottom: 0; }
.itp-ab2-body strong, .itp-ab2-body b { color: #111; font-weight: 700; }
.itp-ab2-accent {
    position: absolute;
    right: -140px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 30px solid #FBC9D6;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* ====== ABOUT BLOCK 3 — Navy title block + body + stats with dividers ====== */
.itp-ab3-wrapper {
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}
.itp-ab3-top-row {
    display: flex;
    align-items: stretch;
    gap: 40px;
    background: #ffffff;
}
.itp-ab3-title-block {
    flex: 0 0 42%;
    max-width: 42%;
    background: #0E4279;
    padding: 80px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.itp-ab3-heading {
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.itp-ab3-underline {
    width: 220px;
    height: 3px;
    background: #d91e5f;
    margin-top: 30px;
    position: relative;
    left: 50%;
}
.itp-ab3-body-col {
    flex: 1;
    padding: 40px 40px 40px 0;
    display: flex;
    align-items: center;
}
.itp-ab3-body {
    color: #222;
    font-size: 15px;
    line-height: 1.7;
}
.itp-ab3-body p { margin: 0 0 1em 0; }
.itp-ab3-body p:last-child { margin-bottom: 0; }
.itp-ab3-body strong, .itp-ab3-body b { color: #111; font-weight: 700; }

.itp-ab3-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #EAEEF4;
    padding: 50px 40px;
}
.itp-ab3-stat {
    position: relative;
    text-align: center;
    padding: 0 20px;
}
.itp-ab3-stat:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    border-left: 1px dashed #B0B8C5;
}
.itp-ab3-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #0E4279;
    line-height: 1.1;
    margin-bottom: 8px;
}
.itp-ab3-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #0E4279;
}

/* ====== ABOUT BLOCK 4 — Image + overlapping navy text block + accent ====== */
.itp-ab4-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.itp-ab4-wrapper.itp-ab4-img-right { flex-direction: row-reverse; }
.itp-ab4-image-col {
    flex: 0 0 55%;
    max-width: 55%;
    line-height: 0;
    position: relative;
    z-index: 1;
}
.itp-ab4-image-col img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}
.itp-ab4-block-col {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-left: -80px;
}
.itp-ab4-wrapper.itp-ab4-img-right .itp-ab4-block-col {
    margin-left: 0;
    margin-right: -80px;
}
.itp-ab4-block {
    background: #0E4279;
    padding: 50px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.itp-ab4-heading {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 24px 0;
    line-height: 1.3;
}
.itp-ab4-body {
    color: #E8EEF7;
    font-size: 15px;
    line-height: 1.7;
}
.itp-ab4-body p { margin: 0 0 1em 0; }
.itp-ab4-body p:last-child { margin-bottom: 0; }
.itp-ab4-body strong, .itp-ab4-body b { color: #ffffff; font-weight: 700; }
.itp-ab4-accent {
    width: 140px;
    height: 3px;
    background: #d91e5f;
    margin-top: 28px;
}

/* Responsive — all four blocks */
@media (max-width: 991px) {
    .itp-ab1-stats-row { grid-template-columns: repeat(2, 1fr); }
    .itp-ab1-heading { font-size: 28px; }
    .itp-ab2-wrapper {
        flex-direction: column !important;
        gap: 0 !important;
    }
    .itp-ab2-image-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-ab2-image-col img { height: 300px; }
    .itp-ab2-content-col,
    .itp-ab2-wrapper.itp-ab2-img-right .itp-ab2-content-col {
        padding: 40px 30px !important;
    }
    .itp-ab2-accent { display: none; }
    .itp-ab3-top-row {
        flex-direction: column;
        gap: 0;
    }
    .itp-ab3-title-block {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 50px 30px !important;
    }
    .itp-ab3-heading { font-size: 32px; }
    .itp-ab3-body-col { padding: 30px !important; }
    .itp-ab3-stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .itp-ab3-stat:not(:first-child)::before { display: none; }
    .itp-ab4-wrapper {
        flex-direction: column !important;
    }
    .itp-ab4-image-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-ab4-block-col,
    .itp-ab4-wrapper.itp-ab4-img-right .itp-ab4-block-col {
        margin: -40px 20px 0 20px !important;
    }
    .itp-ab4-image-col img { height: 280px; }
}
@media (max-width: 600px) {
    .itp-ab1-stats-row { grid-template-columns: 1fr; }
    .itp-ab1-heading { font-size: 22px; }
    .itp-ab1-stat-num { font-size: 28px; }
    .itp-ab3-stats-row { grid-template-columns: 1fr; }
    .itp-ab3-heading { font-size: 26px; }
    .itp-ab4-block { padding: 30px; }
}

/* ============================================
   ProV10.10 — PDF CAROUSEL widget (itp-pdf-carousel)
   CSS prefix: .itp-pc-*  — fully scoped, no leaks.
   Body scroll lock class: .itp-pc-modal-open
   ============================================ */

.itp-pc-wrapper {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    box-sizing: border-box;
}
.itp-pc-swiper {
    overflow: hidden;
    width: 100%;
}
.itp-pc-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

/* Slide inner — the white card showing the document thumbnail */
.itp-pc-slide-inner {
    display: block;
    width: 100%;
    height: 400px;
    background: #ffffff;
    border-radius: 4px;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    box-sizing: border-box;
    /* Make it look button-like when clickable */
    border: 0;
    text-align: inherit;
    color: inherit;
    font: inherit;
}
.itp-pc-slide-inner.itp-pc-clickable {
    cursor: pointer;
}
.itp-pc-slide-inner.itp-pc-clickable:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}
.itp-pc-slide-inner.itp-pc-clickable:focus-visible {
    outline: 2px solid #00407C;
    outline-offset: 3px;
}
a.itp-pc-slide-inner { text-decoration: none; }

.itp-pc-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.itp-pc-caption {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-top: 16px;
    line-height: 1.4;
}

/* Coverflow effect — side slides slightly dimmed */
.itp-pc-effect-coverflow .swiper-slide:not(.swiper-slide-active) .itp-pc-slide-inner {
    opacity: 0.65;
    transform: scale(0.92);
}
.itp-pc-effect-coverflow .swiper-slide-active .itp-pc-slide-inner {
    opacity: 1;
}

/* Navigation arrows — using new button color scheme */
.itp-pc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #101E41;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease, transform .25s ease;
    padding: 0;
}
.itp-pc-arrow:hover { background: #00407C; }
.itp-pc-arrow:focus-visible { outline: 2px solid #00407C; outline-offset: 3px; }
.itp-pc-arrow svg { stroke: #ffffff; }
.itp-pc-arrow-prev { left: 10px; }
.itp-pc-arrow-next { right: 10px; }
.itp-pc-arrow.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

/* Pagination dots */
.itp-pc-pagination {
    text-align: center;
    margin-top: 30px;
    position: relative !important;
    bottom: auto !important;
}
.itp-pc-pagination .swiper-pagination-bullet {
    background: #cccccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    transition: background .25s ease;
}
.itp-pc-pagination .swiper-pagination-bullet-active {
    background: #101E41;
}

/* =====================================================
   MODAL — PDF / image preview
   ===================================================== */
.itp-pc-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 999998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}
.itp-pc-modal.itp-active {
    display: flex;
    animation: itp-pc-fade-in .25s ease;
}
@keyframes itp-pc-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.itp-pc-modal-panel {
    background: #ffffff;
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: itp-pc-zoom-in .3s ease;
}
@keyframes itp-pc-zoom-in {
    from { transform: scale(0.94); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.itp-pc-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}
.itp-pc-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}
.itp-pc-modal-close {
    background: transparent;
    border: 0;
    color: #111;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}
.itp-pc-modal-close:hover { background: rgba(0,0,0,0.06); }
.itp-pc-modal-close:focus-visible { outline: 2px solid #00407C; outline-offset: 2px; }

.itp-pc-modal-body {
    flex: 1;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 0;
    min-height: 0;
}
.itp-pc-modal-body-pdf {
    padding: 0;
    background: #525659; /* PDF viewer default grey */
}
.itp-pc-modal-iframe {
    width: 100%;
    height: 100%;
    min-height: 70vh;
    border: 0;
    display: block;
}
.itp-pc-modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

/* Body scroll lock when modal is open */
body.itp-pc-modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991px) {
    .itp-pc-wrapper { padding: 40px 10px; }
    .itp-pc-slide-inner { height: 320px; }
    .itp-pc-arrow { width: 40px; height: 40px; }
    .itp-pc-arrow-prev { left: 4px; }
    .itp-pc-arrow-next { right: 4px; }
    .itp-pc-modal-iframe { min-height: 60vh; }
}
@media (max-width: 600px) {
    .itp-pc-wrapper { padding: 30px 10px; }
    .itp-pc-slide-inner { height: 280px; padding: 8px; }
    .itp-pc-caption { font-size: 13px; margin-top: 12px; }
    .itp-pc-modal { padding: 10px; }
    .itp-pc-modal-panel { max-height: 95vh; }
    .itp-pc-modal-header { padding: 12px 16px; }
    .itp-pc-modal-title { font-size: 16px; }
}

/* ============================================
   ProV10.11 — PRODUCT LIST BLOCK widget
   CSS prefix: .itp-pl-*  — fully scoped, no leaks.
   ============================================ */

.itp-pl-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    gap: 80px;
    box-sizing: border-box;
    overflow: hidden;
}
.itp-pl-wrapper.itp-pl-img-right {
    flex-direction: row-reverse;
}

/* Image column */
.itp-pl-image-col {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.itp-pl-image {
    display: block;
    max-width: 100%;
    max-height: 480px;
    width: auto;
    height: auto;
}

/* Content column */
.itp-pl-content-col {
    flex: 1;
    position: relative;
    z-index: 2;
    min-width: 0;
}
.itp-pl-heading {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    line-height: 1.25;
}
.itp-pl-body {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;
}
.itp-pl-body p { margin: 0 0 1em 0; }
.itp-pl-body p:last-child { margin-bottom: 0; }
.itp-pl-body strong, .itp-pl-body b { color: #111; font-weight: 700; }

/* CTAs row */
.itp-pl-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

/* Base CTA styles */
.itp-pl-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    box-sizing: border-box;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

/* Primary CTA — gradient pill */
.itp-pl-cta-primary {
    background: linear-gradient(90deg, #1e5fbf 0%, #d91e5f 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    border: 0;
}
.itp-pl-cta-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(30, 95, 191, 0.3);
}
.itp-pl-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease;
}
.itp-pl-cta-primary:hover .itp-pl-cta-arrow {
    transform: translateX(4px);
}

/* Secondary CTA — outline pill */
.itp-pl-cta-secondary {
    background: rgba(0,0,0,0);
    color: #111;
    border: 1px solid #dcdcdc;
    padding: 15px 36px;
    border-radius: 50px;
}
.itp-pl-cta-secondary:hover {
    background: #101E41;
    color: #ffffff;
    border-color: #101E41;
}

/* Decorative accent ring — conic gradient ring with hole via radial mask */
.itp-pl-accent {
    --itp-pl-accent-a: #B0D4E8;
    --itp-pl-accent-b: #F6B3B3;
    --itp-pl-accent-hole: 45%;

    position: absolute;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: conic-gradient(
        from 180deg,
        var(--itp-pl-accent-a) 0deg,
        var(--itp-pl-accent-a) 90deg,
        var(--itp-pl-accent-b) 200deg,
        var(--itp-pl-accent-a) 360deg
    );
    -webkit-mask: radial-gradient(circle, transparent var(--itp-pl-accent-hole), #000 calc(var(--itp-pl-accent-hole) + 1%));
            mask: radial-gradient(circle, transparent var(--itp-pl-accent-hole), #000 calc(var(--itp-pl-accent-hole) + 1%));
    z-index: 1;
    pointer-events: none;
    filter: blur(1px);
}

/* Responsive */
@media (max-width: 991px) {
    .itp-pl-wrapper {
        flex-direction: column !important;
        gap: 40px !important;
        padding: 50px 30px !important;
    }
    .itp-pl-image-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-pl-image { max-height: 320px; }
    .itp-pl-heading { font-size: 26px; }
    .itp-pl-accent {
        width: 240px !important;
        height: 240px !important;
        right: -120px !important;
        opacity: 0.5;
    }
}
@media (max-width: 600px) {
    .itp-pl-wrapper { padding: 40px 20px !important; }
    .itp-pl-cta-row {
        width: 100%;
    }
    .itp-pl-cta {
        flex: 1 1 auto;
        min-width: 0;
        padding: 14px 24px !important;
    }
    .itp-pl-heading { font-size: 22px; }
    .itp-pl-accent { display: none; }
}

/* ============================================
   ProV10.12 — ACCORDION TAB bug fixes
   - Per-variant accordion visibility toggle
   ============================================ */
.itp-at-variant-acc.itp-at-acc-hidden {
    display: none;
}

/* ============================================
   ProV10.13 — HERO STYLE 1 widget (itp-hero-style-1)
   CSS prefix: .itp-hs1-*  — fully scoped.
   ============================================ */
.itp-hs1-wrapper {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    color: #fff;
    box-sizing: border-box;
}
/* Background slideshow layers */
.itp-hs1-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.itp-hs1-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.itp-hs1-slide.itp-active { opacity: 1; }
.itp-hs1-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.itp-hs1-inner {
    position: relative;
    z-index: 2;
    padding: 80px 60px 120px 60px;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.itp-hs1-grid {
    display: flex;
    align-items: center;
    gap: 60px;
    flex: 1;
}
.itp-hs1-wrapper.itp-hs1-form-left .itp-hs1-grid { flex-direction: row-reverse; }
.itp-hs1-content { flex: 1; min-width: 0; }
.itp-hs1-form-col { flex: 0 0 auto; }

.itp-hs1-heading {
    margin: 0 0 18px 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
}
.itp-hs1-heading-p1 { color: #A23037; }
.itp-hs1-heading-p2 { color: #ffffff; }
.itp-hs1-subtitle {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 28px;
    max-width: 600px;
}
.itp-hs1-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.itp-hs1-stars {
    color: #F5B100;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: 1;
}
.itp-hs1-rating-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}
.itp-hs1-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.itp-hs1-badge {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.itp-hs1-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Form panel */
.itp-hs1-form {
    width: 440px;
    max-width: 100%;
    padding: 40px 36px;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.18);
}
.itp-hs1-form-heading {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}
/* Style shortcode-rendered form inputs to fit the dark panel */
.itp-hs1-form-body input[type="text"],
.itp-hs1-form-body input[type="email"],
.itp-hs1-form-body input[type="tel"],
.itp-hs1-form-body input[type="url"],
.itp-hs1-form-body input[type="number"],
.itp-hs1-form-body select,
.itp-hs1-form-body textarea {
    width: 100%;
    background: #ffffff;
    border: 0;
    border-radius: 4px;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #222;
    box-sizing: border-box;
}
.itp-hs1-form-body textarea { min-height: 100px; resize: vertical; }
.itp-hs1-form-body label { color: #fff; font-weight: 600; font-size: 14px; }
.itp-hs1-form-body input[type="submit"],
.itp-hs1-form-body button[type="submit"] {
    width: 100%;
    background: #A23037;
    color: #ffffff;
    border: 0;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    transition: background .25s ease;
    margin-top: 8px;
}
.itp-hs1-form-body input[type="submit"]:hover,
.itp-hs1-form-body button[type="submit"]:hover { background: #7E1D24; }

/* Bottom service cards */
.itp-hs1-cards-wrap {
    position: relative;
    z-index: 3;
    margin: 0 60px;
    padding-bottom: 30px;
}
.itp-hs1-cards {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    padding: 12px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.itp-hs1-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    text-align: left;
    line-height: 1.3;
}
.itp-hs1-card:hover {
    background: #ffffff;
    color: #A23037;
    transform: translateY(-2px);
}
.itp-hs1-card-icon {
    font-size: 18px;
    display: inline-flex;
    flex-shrink: 0;
}
.itp-hs1-card-icon svg { width: 1em; height: 1em; }

/* Responsive — Hero Style 1 */
@media (max-width: 991px) {
    .itp-hs1-inner { padding: 60px 30px 90px 30px; }
    .itp-hs1-grid { flex-direction: column !important; gap: 40px; align-items: stretch; }
    .itp-hs1-heading { font-size: 38px; }
    .itp-hs1-form { width: 100%; }
    .itp-hs1-cards-wrap { margin: 0 30px; }
    .itp-hs1-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .itp-hs1-wrapper { min-height: auto !important; }
    .itp-hs1-inner { padding: 40px 20px 80px 20px; }
    .itp-hs1-heading { font-size: 28px; }
    .itp-hs1-subtitle { font-size: 15px; }
    .itp-hs1-badge { width: 60px; height: 60px; }
    .itp-hs1-cards-wrap { margin: 0 20px; }
    .itp-hs1-cards { grid-template-columns: 1fr; }
    .itp-hs1-card { font-size: 13px; padding: 14px 18px; }
}

/* ============================================
   ProV10.13 — HERO STYLE 2 widget (itp-hero-style-2)
   CSS prefix: .itp-hs2-*  — fully scoped.
   ============================================ */
.itp-hs2-wrapper {
    position: relative;
    width: 100%;
    min-height: 640px;
    overflow: hidden;
    color: #fff;
    box-sizing: border-box;
}
.itp-hs2-bg { position: absolute; inset: 0; z-index: 0; }
.itp-hs2-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}
.itp-hs2-slide.itp-active { opacity: 1; }
.itp-hs2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}
.itp-hs2-inner {
    position: relative;
    z-index: 2;
    padding: 80px 60px;
    min-height: inherit;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.itp-hs2-grid-row {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}
.itp-hs2-content { flex: 1; min-width: 0; }
.itp-hs2-heading {
    margin: 0 0 20px 0;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
}
.itp-hs2-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.itp-hs2-stars {
    color: #F5B100;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}
.itp-hs2-rating-label { color: #ffffff; font-size: 15px; }
.itp-hs2-desc {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 32px 0;
    max-width: 560px;
}
.itp-hs2-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563EB;
    color: #ffffff;
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: background .25s ease, transform .25s ease;
}
.itp-hs2-cta:hover { background: #1D4ED8; color: #ffffff; transform: translateY(-2px); }
.itp-hs2-cta-icon { display: inline-flex; }

/* Right grid */
.itp-hs2-grid {
    flex: 0 0 auto;
    width: 52%;
    max-width: 700px;
}
.itp-hs2-grid-heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 18px 0;
    text-align: center;
}
.itp-hs2-grid-cards {
    display: grid;
    grid-template-columns: repeat(var(--itp-hs2-cols, 3), 1fr);
    gap: 12px;
}
.itp-hs2-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: rgba(15,30,60,0.55);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background .25s ease, transform .25s ease;
    text-align: center;
    gap: 10px;
    min-height: 110px;
    box-sizing: border-box;
}
.itp-hs2-card:hover { background: #2563EB; color: #ffffff; transform: translateY(-2px); }
.itp-hs2-card-icon {
    color: #ffffff;
    font-size: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.itp-hs2-card-icon svg { width: 1em; height: 1em; fill: currentColor; }
.itp-hs2-card-label {
    color: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive — Hero Style 2 */
@media (max-width: 991px) {
    .itp-hs2-inner { padding: 60px 30px; }
    .itp-hs2-grid-row { flex-direction: column !important; gap: 40px; align-items: stretch; }
    .itp-hs2-heading { font-size: 32px; }
    .itp-hs2-grid { width: 100% !important; max-width: 100% !important; }
    .itp-hs2-grid-cards { grid-template-columns: repeat(var(--itp-hs2-cols-tab, 3), 1fr); }
}
@media (max-width: 600px) {
    .itp-hs2-wrapper { min-height: auto !important; }
    .itp-hs2-inner { padding: 40px 20px; }
    .itp-hs2-heading { font-size: 24px; }
    .itp-hs2-desc { font-size: 15px; }
    .itp-hs2-grid-cards { grid-template-columns: repeat(var(--itp-hs2-cols-mob, 2), 1fr); }
    .itp-hs2-card { min-height: 90px; padding: 18px 10px; }
    .itp-hs2-card-icon { font-size: 28px; }
    .itp-hs2-card-label { font-size: 12px; }
}

/* ============================================
   ProV10.14 — CLIENTS SHOWCASE 1 widget (itp-clients-showcase-1)
   CSS prefix: .itp-cs1-*  — fully scoped, no leaks.
   ============================================ */
.itp-cs1-wrapper {
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    box-sizing: border-box;
}
.itp-cs1-row {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}
.itp-cs1-left {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
}
.itp-cs1-right {
    flex: 1;
    min-width: 0;
}

/* Number wrap — holds the pattern + big number text */
.itp-cs1-number-wrap {
    position: relative;
    display: inline-block;
    line-height: 1;
}
.itp-cs1-pattern {
    position: absolute;
    inset: -8% -8% -8% -8%;
    background-image: var(--itp-cs1-pattern-img, none);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Big number — image fills the inside of characters via background-clip */
.itp-cs1-number {
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 280px;
    font-weight: 900;
    line-height: 1;
    color: #0E4279;
    letter-spacing: -2px;
}
.itp-cs1-has-img .itp-cs1-number {
    background-image: var(--itp-cs1-num-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* Fallback: browsers without background-clip:text get the color */
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .itp-cs1-has-img .itp-cs1-number {
        color: #0E4279;
        background: none;
        -webkit-text-fill-color: initial;
    }
}

.itp-cs1-heading {
    color: #0F2C25;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Carousel wrap */
.itp-cs1-carousel-wrap {
    position: relative;
    width: 100%;
}
.itp-cs1-swiper {
    overflow: hidden;
    width: 100%;
}
.itp-cs1-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.itp-cs1-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 90px;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}
.itp-cs1-logo-link { cursor: pointer; }
.itp-cs1-logo-img {
    display: block;
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Nav arrows */
.itp-cs1-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #101E41;
    color: #ffffff;
    border: 0;
    cursor: pointer;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .25s ease;
    padding: 0;
}
.itp-cs1-arrow:hover { background: #00407C; }
.itp-cs1-arrow:focus-visible { outline: 2px solid #00407C; outline-offset: 3px; }
.itp-cs1-arrow svg { stroke: #ffffff; }
.itp-cs1-arrow-prev { left: -50px; }
.itp-cs1-arrow-next { right: -50px; }
.itp-cs1-arrow.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

/* Responsive */
@media (max-width: 991px) {
    .itp-cs1-wrapper { padding: 50px 30px; }
    .itp-cs1-row {
        flex-direction: column !important;
        gap: 40px;
        align-items: center;
        text-align: center;
    }
    .itp-cs1-left {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .itp-cs1-number { font-size: 200px; }
    .itp-cs1-heading { font-size: 26px; }
    .itp-cs1-arrow-prev { left: 4px; }
    .itp-cs1-arrow-next { right: 4px; }
}
@media (max-width: 600px) {
    .itp-cs1-wrapper { padding: 40px 20px; }
    .itp-cs1-number { font-size: 140px; }
    .itp-cs1-heading { font-size: 22px; }
    .itp-cs1-logo { min-height: 70px; padding: 8px 12px; }
    .itp-cs1-logo-img { max-height: 55px; }
}

/* ============================================
   ProV10.15 — HERO STYLE POINTER widget (itp-hero-style-pointer)
   CSS prefix: .itp-hsp-*  — fully scoped, no leaks.
   ============================================ */
.itp-hsp-wrapper {
    position: relative;
    width: 100%;
    min-height: 720px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    box-sizing: border-box;
}
.itp-hsp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 1;
    pointer-events: none;
}
.itp-hsp-inner {
    position: relative;
    z-index: 2;
    min-height: inherit;
    padding: 60px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.itp-hsp-content {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

/* Badge */
.itp-hsp-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 14px;
    flex-wrap: wrap;
}
.itp-hsp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #A9C5A0;
    color: #0F2C25;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
}
.itp-hsp-pill-icon {
    display: inline-flex;
    align-items: center;
    color: #0F2C25;
    font-size: 13px;
}
.itp-hsp-pill-icon svg { width: 1em; height: 1em; fill: currentColor; }
.itp-hsp-badge-after {
    color: #0F2C25;
    font-weight: 500;
}

/* Heading + Description */
.itp-hsp-heading {
    margin: 0 0 24px 0;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #0F2C25;
}
.itp-hsp-desc {
    margin: 0 0 36px 0;
    color: #0F2C25;
    font-size: 17px;
    line-height: 1.65;
    max-width: 540px;
}

/* CTAs */
.itp-hsp-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.itp-hsp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    transition: background .25s ease, color .25s ease, transform .25s ease;
    cursor: pointer;
}
.itp-hsp-cta-primary {
    background: #1A4F60;
    color: #ffffff;
    border: 0;
}
.itp-hsp-cta-primary:hover {
    background: #103848;
    color: #ffffff;
    transform: translateY(-2px);
}
.itp-hsp-cta-secondary {
    background: rgba(0,0,0,0);
    color: #0F2C25;
    border: 0;
}
.itp-hsp-cta-secondary:hover {
    color: #1A4F60;
}
.itp-hsp-cta-secondary svg { transition: transform .25s ease; }
.itp-hsp-cta-secondary:hover svg { transform: translateX(3px); }

/* Pointers layer */
.itp-hsp-pointers {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}
.itp-hsp-pointer {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: auto;
    cursor: pointer;
}
.itp-hsp-pointer:focus { outline: none; }
.itp-hsp-pointer:focus-visible .itp-hsp-pointer-dot {
    outline: 2px solid #00407C;
    outline-offset: 4px;
}

/* The dot itself */
.itp-hsp-pointer-dot {
    --itp-hsp-dot: #1A4F60;
    display: block;
    width: 14px;
    height: 14px;
    background: var(--itp-hsp-dot);
    border: 3px solid #ffffff;
    border-radius: 50%;
    box-sizing: content-box;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Pulse / blink animation (CSS variable for color, controllable via JS or controls) */
@keyframes itp-hsp-pulse-ring {
    0%   { box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 0 var(--itp-hsp-dot, #1A4F60); }
    70%  { box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 18px rgba(26,79,96,0); }
    100% { box-shadow: 0 2px 6px rgba(0,0,0,0.2), 0 0 0 0 rgba(26,79,96,0); }
}
.itp-hsp-pulse-on .itp-hsp-pointer-dot {
    animation: itp-hsp-pulse-ring 2s infinite;
}

/* Tooltip card — default state hidden */
.itp-hsp-tooltip {
    position: absolute;
    width: 200px;
    background: #ffffff;
    color: #0F2C25;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 0) scale(0.96);
    transform-origin: center;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
    z-index: 5;
}
a.itp-hsp-tooltip { color: #0F2C25; text-decoration: none; }
a.itp-hsp-tooltip:hover { text-decoration: none; }

/* Tooltip position variants — relative to the pointer center */
.itp-hsp-tip-top {
    bottom: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 4px) scale(0.96);
}
.itp-hsp-tip-bottom {
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, -4px) scale(0.96);
}
.itp-hsp-tip-right {
    left: calc(100% + 14px);
    top: 50%;
    transform: translate(-4px, -50%) scale(0.96);
}
.itp-hsp-tip-left {
    right: calc(100% + 14px);
    top: 50%;
    transform: translate(4px, -50%) scale(0.96);
}

/* Show tooltip on hover (desktop) — only when trigger=hover */
.itp-hsp-trigger-hover .itp-hsp-pointer:hover .itp-hsp-tooltip,
.itp-hsp-trigger-hover .itp-hsp-pointer:focus-within .itp-hsp-tooltip,
.itp-hsp-trigger-hover .itp-hsp-pointer.itp-hsp-tapped .itp-hsp-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.itp-hsp-trigger-hover .itp-hsp-pointer:hover .itp-hsp-tip-top,
.itp-hsp-trigger-hover .itp-hsp-pointer:focus-within .itp-hsp-tip-top,
.itp-hsp-trigger-hover .itp-hsp-pointer.itp-hsp-tapped .itp-hsp-tip-top { transform: translate(-50%, 0) scale(1); }
.itp-hsp-trigger-hover .itp-hsp-pointer:hover .itp-hsp-tip-bottom,
.itp-hsp-trigger-hover .itp-hsp-pointer:focus-within .itp-hsp-tip-bottom,
.itp-hsp-trigger-hover .itp-hsp-pointer.itp-hsp-tapped .itp-hsp-tip-bottom { transform: translate(-50%, 0) scale(1); }
.itp-hsp-trigger-hover .itp-hsp-pointer:hover .itp-hsp-tip-right,
.itp-hsp-trigger-hover .itp-hsp-pointer:focus-within .itp-hsp-tip-right,
.itp-hsp-trigger-hover .itp-hsp-pointer.itp-hsp-tapped .itp-hsp-tip-right { transform: translate(0, -50%) scale(1); }
.itp-hsp-trigger-hover .itp-hsp-pointer:hover .itp-hsp-tip-left,
.itp-hsp-trigger-hover .itp-hsp-pointer:focus-within .itp-hsp-tip-left,
.itp-hsp-trigger-hover .itp-hsp-pointer.itp-hsp-tapped .itp-hsp-tip-left { transform: translate(0, -50%) scale(1); }

/* Always-visible mode */
.itp-hsp-trigger-always .itp-hsp-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.itp-hsp-trigger-always .itp-hsp-tip-top    { transform: translate(-50%, 0) scale(1); }
.itp-hsp-trigger-always .itp-hsp-tip-bottom { transform: translate(-50%, 0) scale(1); }
.itp-hsp-trigger-always .itp-hsp-tip-right  { transform: translate(0, -50%) scale(1); }
.itp-hsp-trigger-always .itp-hsp-tip-left   { transform: translate(0, -50%) scale(1); }

/* Responsive */
@media (max-width: 991px) {
    .itp-hsp-inner { padding: 40px 30px; }
    .itp-hsp-heading { font-size: 38px; }
    .itp-hsp-desc { font-size: 16px; }
    .itp-hsp-tooltip { width: 170px; padding: 12px 14px; }
}
@media (max-width: 600px) {
    .itp-hsp-wrapper { min-height: auto !important; }
    .itp-hsp-inner { padding: 36px 20px; }
    .itp-hsp-heading { font-size: 28px; }
    .itp-hsp-desc { font-size: 15px; }
    .itp-hsp-cta { padding: 14px 24px !important; flex: 1 1 auto; justify-content: center; }
    .itp-hsp-tooltip { width: 150px; padding: 10px 12px; font-size: 12px; }
    /* Flip tooltip side automatically on small screens to keep it visible */
    .itp-hsp-pointer { z-index: 5; }
}

/* ============================================
   ProV10.16 — CLIENTS SHOWCASE 1: bottom full-width carousel
   ============================================ */
.itp-cs1-bottom {
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: transparent;
}
.itp-cs1-bottom-with-divider {
    border-top: 1px solid #E5E7EB;
}
.itp-cs1-bottom-swiper {
    overflow: hidden;
    width: 100%;
}
.itp-cs1-bottom-slide {
    height: auto;
    display: flex;
}
.itp-cs1-bottom-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 80px;
    padding: 10px 16px;
    border-radius: 0;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
}
.itp-cs1-bottom-logo-link { cursor: pointer; }
.itp-cs1-bottom-logo-img {
    display: block;
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Continuous marquee mode — linear timing */
.itp-cs1-bottom-marquee .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Responsive */
@media (max-width: 991px) {
    .itp-cs1-bottom { padding: 30px 20px; }
    .itp-cs1-bottom-logo { min-height: 70px; padding: 8px 12px; }
    .itp-cs1-bottom-logo-img { max-height: 50px; }
}
@media (max-width: 600px) {
    .itp-cs1-bottom { padding: 24px 16px; }
    .itp-cs1-bottom-logo { min-height: 60px; padding: 6px 10px; }
    .itp-cs1-bottom-logo-img { max-height: 45px; }
}

/* ============================================
   ProV10.17 — TESTIMONIAL BLOCK (itp-tst-*)
   ============================================ */
.itp-tst-wrapper {
    position: relative;
    width: 100%;
    background: #0E2C3D;
    padding: 80px 40px;
    box-sizing: border-box;
}
.itp-tst-head {
    text-align: center;
    margin-bottom: 56px;
}
.itp-tst-heading {
    margin: 0 auto 16px auto;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
}
.itp-tst-subtitle {
    margin: 0 auto;
    color: #9CA9B3;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
}
.itp-tst-carousel-wrap {
    position: relative;
    width: 100%;
}
.itp-tst-swiper {
    overflow: visible; /* allow center card to look bigger than container edges */
    padding-bottom: 0;
}
.itp-tst-slide {
    height: auto;
    display: flex;
}
.itp-tst-card {
    background: #143E55;
    border-radius: 14px;
    padding: 36px 32px;
    width: 100%;
    min-height: 380px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: opacity .4s ease;
    box-sizing: border-box;
}

/* Fade non-active slides when fade_inactive is on */
.itp-tst-fade .itp-tst-slide .itp-tst-card { opacity: 0.45; }
.itp-tst-fade .itp-tst-slide.swiper-slide-active .itp-tst-card { opacity: 1; }

/* Stars */
.itp-tst-stars {
    display: flex;
    gap: 4px;
    font-size: 18px;
    line-height: 1;
    margin-bottom: 16px;
}
.itp-tst-stars .itp-tst-star-on  { color: #F5B100; }
.itp-tst-stars .itp-tst-star-off { color: #3A5567; }

/* Quote */
.itp-tst-quote {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.6;
    margin: 0 0 28px 0;
    flex: 1;
}
.itp-tst-quote p { margin: 0 0 8px 0; }
.itp-tst-quote p:last-child { margin: 0; }

/* Author block */
.itp-tst-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}
.itp-tst-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #1F4E66;
}
.itp-tst-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.itp-tst-author-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.itp-tst-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.itp-tst-role {
    color: #9CA9B3;
    font-size: 13px;
    line-height: 1.3;
}

/* Pagination dots */
.itp-tst-pagination {
    position: relative;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.itp-tst-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #2D5163;
    opacity: 1;
    border-radius: 50%;
    transition: background .3s ease, transform .3s ease;
    margin: 0 4px;
}
.itp-tst-pagination .swiper-pagination-bullet-active {
    background: #1A8FA8;
    transform: scale(1.25);
}

/* Nav arrows */
.itp-tst-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #143E55;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .25s ease, transform .25s ease;
}
.itp-tst-arrow:hover {
    background: #1A8FA8;
    transform: translateY(-50%) scale(1.05);
}
.itp-tst-arrow svg { stroke: #ffffff; }
.itp-tst-arrow-prev { left: -8px; }
.itp-tst-arrow-next { right: -8px; }
.itp-tst-arrow.swiper-button-disabled { opacity: 0.4; cursor: not-allowed; }

/* Responsive */
@media (max-width: 991px) {
    .itp-tst-wrapper { padding: 60px 24px; }
    .itp-tst-heading { font-size: 32px; }
    .itp-tst-card { padding: 28px 24px; min-height: 320px; }
    .itp-tst-arrow-prev { left: 0; }
    .itp-tst-arrow-next { right: 0; }
}
@media (max-width: 600px) {
    .itp-tst-wrapper { padding: 48px 16px; }
    .itp-tst-head { margin-bottom: 36px; }
    .itp-tst-heading { font-size: 26px; }
    .itp-tst-subtitle { font-size: 14px; }
    .itp-tst-card { padding: 24px 20px; min-height: 280px; }
    .itp-tst-quote { font-size: 15px; }
    .itp-tst-arrow { width: 38px; height: 38px; }
}

/* ============================================
   ProV10.17 — CTA BLOCK (itp-ctb-*)
   ============================================ */
.itp-ctb-wrapper {
    width: 100%;
    background: #0E2C3D;
    padding: 80px 60px;
    box-sizing: border-box;
}
.itp-ctb-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.itp-ctb-img-right .itp-ctb-row { flex-direction: row-reverse; }

.itp-ctb-image-col {
    flex: 0 0 48%;
    max-width: 48%;
}
.itp-ctb-content-col {
    flex: 1;
    min-width: 0;
}
.itp-ctb-image {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

/* Heading + description */
.itp-ctb-heading {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
}
.itp-ctb-desc {
    margin: 0 0 32px 0;
    color: #9CA9B3;
    font-size: 16px;
    line-height: 1.6;
}

/* Form auto-styling — fits any shortcode (CF7, WPForms, Elementor, etc.) */
.itp-ctb-form { width: 100%; }
.itp-ctb-form form { width: 100%; }
.itp-ctb-form p { margin: 0 0 14px 0; }
.itp-ctb-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.itp-ctb-form select,
.itp-ctb-form textarea {
    width: 100%;
    background: #ffffff;
    color: #0E2C3D;
    border: 0;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    transition: box-shadow .25s ease;
    -webkit-appearance: none;
    appearance: none;
}
.itp-ctb-form select {
    /* Custom dropdown arrow */
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E2C3D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 48px;
}
.itp-ctb-form input::placeholder,
.itp-ctb-form textarea::placeholder { color: #9AA5B0; opacity: 1; }
.itp-ctb-form input:focus,
.itp-ctb-form select:focus,
.itp-ctb-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(26,143,168,0.25);
}

/* Submit button */
.itp-ctb-form input[type="submit"],
.itp-ctb-form button[type="submit"] {
    width: 100%;
    background: #1A8FA8;
    color: #ffffff;
    border: 0;
    padding: 18px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}
.itp-ctb-form input[type="submit"]:hover,
.itp-ctb-form button[type="submit"]:hover {
    background: #157287;
    transform: translateY(-1px);
}

/* CF7 helpers — turn first two text fields into a 2-column row when wrapped in .itp-ctb-row-2 */
.itp-ctb-form .itp-ctb-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Disclaimer */
.itp-ctb-disclaimer {
    margin: 18px 0 0 0;
    color: #7E8B95;
    font-size: 13px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 991px) {
    .itp-ctb-wrapper { padding: 60px 30px; }
    .itp-ctb-row { gap: 40px; }
    .itp-ctb-heading { font-size: 34px; }
    .itp-ctb-image { height: 380px; }
}
@media (max-width: 768px) {
    .itp-ctb-wrapper { padding: 48px 20px; }
    .itp-ctb-image-col,
    .itp-ctb-content-col { flex: 0 0 100%; max-width: 100%; }
    .itp-ctb-row { gap: 32px; }
    .itp-ctb-img-right .itp-ctb-row { flex-direction: column; }
    .itp-ctb-image { height: 280px; }
    .itp-ctb-heading { font-size: 28px; }
    .itp-ctb-form .itp-ctb-row-2 { grid-template-columns: 1fr; }
}

/* ============================================
   ProV10.19 — HERO STYLE SERVICE widget (itp-hero-style-service)
   CSS prefix: .itp-hss-*  — fully scoped, no leaks.
   ============================================ */
.itp-hss-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Background layer (slideshow or single image) */
.itp-hss-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.itp-hss-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.itp-hss-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.itp-hss-slide.itp-active { opacity: 1; }

/* Overlay */
.itp-hss-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0,0,0,0.4);
    pointer-events: none;
}

/* Inner layout */
.itp-hss-inner {
    position: relative;
    z-index: 3;
    min-height: inherit;
    display: flex;
    align-items: stretch;
    padding: 60px 60px 0;
    gap: 40px;
    box-sizing: border-box;
}
.itp-hss-form-left .itp-hss-inner { flex-direction: row-reverse; }

/* Left content column */
.itp-hss-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0;
}
.itp-hss-text { padding-top: 40px; }
.itp-hss-eyebrow {
    color: #1A8FA8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.itp-hss-heading {
    margin: 0;
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    max-width: 700px;
}

/* Breadcrumb card — sits at bottom-left of hero */
.itp-hss-breadcrumb {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 14px 28px 14px 14px;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
    margin-top: auto;
    box-sizing: border-box;
    max-width: 100%;
    flex-wrap: wrap;
}

/* Icon box (home icon) */
.itp-hss-bc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1A8FA8;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background .25s ease;
}
.itp-hss-bc-icon:hover { background: #147387; }
.itp-hss-bc-icon i { font-size: 18px; }
.itp-hss-bc-icon svg { width: 1.1em; height: 1.1em; fill: currentColor; }

/* Trail */
.itp-hss-bc-trail {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.itp-hss-bc-link {
    color: #0B2C42;
    text-decoration: none;
    transition: color .2s ease;
}
.itp-hss-bc-link:hover { color: #1A8FA8; }
.itp-hss-bc-current { color: #0B2C42; }
.itp-hss-bc-sep {
    color: #1A8FA8;
    font-weight: 700;
}

/* Form panel — same structure as Hero Style 1 */
.itp-hss-form-col {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 40px;
}
.itp-hss-form {
    width: 420px;
    max-width: 100%;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 36px 32px;
    border-radius: 8px;
    box-sizing: border-box;
}
.itp-hss-form-heading {
    margin: 0 0 22px 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}
.itp-hss-form-body { width: 100%; }
.itp-hss-form-body p { margin: 0 0 12px 0; }
.itp-hss-form-body input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.itp-hss-form-body select,
.itp-hss-form-body textarea {
    width: 100%;
    background: #ffffff;
    color: #1F2937;
    border: 0;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: box-shadow .25s ease;
}
.itp-hss-form-body select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}
.itp-hss-form-body textarea { min-height: 100px; resize: vertical; }
.itp-hss-form-body label { color: #ffffff; font-weight: 600; font-size: 14px; }
.itp-hss-form-body input::placeholder,
.itp-hss-form-body textarea::placeholder { color: #9CA3AF; opacity: 1; }
.itp-hss-form-body input:focus,
.itp-hss-form-body select:focus,
.itp-hss-form-body textarea:focus { box-shadow: 0 0 0 3px rgba(26,143,168,0.25); }

.itp-hss-form-body input[type="submit"],
.itp-hss-form-body button[type="submit"] {
    width: 100%;
    background: #1A8FA8;
    color: #ffffff;
    border: 0;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .25s ease, transform .25s ease;
}
.itp-hss-form-body input[type="submit"]:hover,
.itp-hss-form-body button[type="submit"]:hover {
    background: #147387;
    transform: translateY(-1px);
}

/* No-form layout — content takes full width */
.itp-hss-no-form .itp-hss-content { width: 100%; }

/* Responsive */
@media (max-width: 991px) {
    .itp-hss-wrapper { min-height: 500px; }
    .itp-hss-inner { padding: 40px 30px 0; gap: 30px; flex-direction: column; }
    .itp-hss-form-left .itp-hss-inner { flex-direction: column; }
    .itp-hss-heading { font-size: 38px; }
    .itp-hss-form-col { width: 100%; justify-content: stretch; padding-top: 20px; }
    .itp-hss-form { width: 100%; }
    .itp-hss-breadcrumb { padding: 12px 20px 12px 12px; gap: 12px; }
    .itp-hss-bc-icon { width: 40px; height: 40px; }
    .itp-hss-bc-trail { font-size: 12px; gap: 8px; }
}
@media (max-width: 600px) {
    .itp-hss-wrapper { min-height: auto !important; }
    .itp-hss-inner { padding: 30px 16px 0; }
    .itp-hss-heading { font-size: 26px; }
    .itp-hss-form { padding: 24px 20px; }
    .itp-hss-form-heading { font-size: 20px; }
    .itp-hss-bc-trail { font-size: 11px; }
}

/* ============================================
   ProV10.21 — FORM PANEL widget (itp-fp-*)
   Standalone styled form container. Works in popups, sections, anywhere.
   ============================================ */
.itp-fp-wrapper { width: 100%; }
.itp-fp-panel {
    width: 100%;
    max-width: 480px;
    background: rgba(255,255,255,0.10);
    padding: 36px 32px;
    border-radius: 8px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}
.itp-fp-heading-block { margin-bottom: 22px; }
.itp-fp-heading {
    margin: 0 0 8px 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}
.itp-fp-subheading {
    margin: 0;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}
.itp-fp-form { width: 100%; }
.itp-fp-form p { margin: 0 0 12px 0; }
.itp-fp-form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.itp-fp-form select,
.itp-fp-form textarea {
    width: 100%;
    background: #ffffff;
    color: #1F2937;
    border: 0;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.4;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: box-shadow .25s ease;
}
.itp-fp-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 44px;
}
.itp-fp-form textarea { min-height: 100px; resize: vertical; }
.itp-fp-form label { color: #ffffff; font-weight: 600; font-size: 14px; display: block; margin-bottom: 6px; }
.itp-fp-form input::placeholder,
.itp-fp-form textarea::placeholder { color: #9CA3AF; opacity: 1; }
.itp-fp-form input:focus,
.itp-fp-form select:focus,
.itp-fp-form textarea:focus { box-shadow: 0 0 0 3px rgba(26,143,168,0.25); }

.itp-fp-form input[type="submit"],
.itp-fp-form button[type="submit"] {
    width: 100%;
    background: #A23037;
    color: #ffffff;
    border: 0;
    padding: 16px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: background .25s ease, transform .25s ease;
}
.itp-fp-form input[type="submit"]:hover,
.itp-fp-form button[type="submit"]:hover {
    background: #7E1D24;
    transform: translateY(-1px);
}

/* Popup context safety — ensure the widget sits well inside Elementor popups */
.elementor-popup-modal .itp-fp-panel { max-width: 100%; }

/* Responsive */
@media (max-width: 600px) {
    .itp-fp-panel { padding: 24px 20px; }
    .itp-fp-heading { font-size: 20px; }
}

/* ============================================
   ProV10.22 — TEAM CAROUSEL widget (itp-team-*)
   ============================================ */
.itp-team-wrapper {
    position: relative;
    width: 100%;
    background: #ffffff;
    padding: 60px 40px;
    box-sizing: border-box;
}
.itp-team-head { text-align: center; margin-bottom: 48px; }
.itp-team-eyebrow {
    color: #1A8FA8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.itp-team-heading {
    margin: 0 0 12px 0;
    color: #0E2C3D;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}
.itp-team-subtitle {
    margin: 0 auto;
    color: #6B7280;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
}

/* Carousel */
.itp-team-carousel-wrap {
    position: relative;
    width: 100%;
}
.itp-team-swiper {
    overflow: hidden;
    padding: 4px; /* room for hover-lift shadow */
    margin: -4px;
}
.itp-team-slide {
    height: auto;
    display: flex;
}

/* Card */
.itp-team-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 16px 16px 24px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform .3s ease, box-shadow .3s ease;
}
.itp-team-card-link { cursor: pointer; }
.itp-team-hover-lift .itp-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

/* Photo */
.itp-team-photo {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #F3F4F6;
    display: block;
}
.itp-team-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .5s ease;
}
.itp-team-card:hover .itp-team-photo img { transform: scale(1.03); }

/* Info */
.itp-team-info { text-align: center; }
.itp-team-name {
    color: #0E2C3D;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 6px;
}
.itp-team-role {
    color: #6B7280;
    font-size: 14px;
    line-height: 1.4;
}

/* Accent bar */
.itp-team-bar {
    display: block;
    width: 60px;
    height: 3px;
    background: #0E2C3D;
    border-radius: 2px;
    margin: 16px auto 0;
}
.itp-team-info[style*="text-align: left"] .itp-team-bar,
.itp-team-info[style*="text-align:left"] .itp-team-bar { margin-left: 0; margin-right: auto; }
.itp-team-info[style*="text-align: right"] .itp-team-bar,
.itp-team-info[style*="text-align:right"] .itp-team-bar { margin-left: auto; margin-right: 0; }

/* Pagination */
.itp-team-pagination {
    position: relative;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.itp-team-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D1D5DB;
    opacity: 1;
    border-radius: 50%;
    transition: background .3s ease, transform .3s ease;
    margin: 0 4px;
}
.itp-team-pagination .swiper-pagination-bullet-active {
    background: #1A8FA8;
    transform: scale(1.25);
}

/* Nav arrows */
.itp-team-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #0E2C3D;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: background .25s ease, transform .25s ease;
}
.itp-team-arrow:hover {
    background: #1A8FA8;
    transform: translateY(-50%) scale(1.05);
}
.itp-team-arrow svg { stroke: #ffffff; }
.itp-team-arrow-prev { left: -12px; }
.itp-team-arrow-next { right: -12px; }
.itp-team-arrow.swiper-button-disabled { opacity: 0.4; cursor: not-allowed; }

/* Responsive */
@media (max-width: 991px) {
    .itp-team-wrapper { padding: 48px 24px; }
    .itp-team-heading { font-size: 32px; }
    .itp-team-name { font-size: 18px; }
    .itp-team-arrow-prev { left: 0; }
    .itp-team-arrow-next { right: 0; }
}
@media (max-width: 600px) {
    .itp-team-wrapper { padding: 40px 16px; }
    .itp-team-head { margin-bottom: 32px; }
    .itp-team-heading { font-size: 26px; }
    .itp-team-subtitle { font-size: 14px; }
    .itp-team-arrow { width: 36px; height: 36px; }
}
